From 4865d33d5d2342e04a0692cbb8579bf412a04e38 Mon Sep 17 00:00:00 2001 From: Lukasz Ostrowski Date: Thu, 9 Feb 2023 10:41:54 +0100 Subject: [PATCH] Add Klaviyo (#112) * Add Klaviyo * Update schema * Fix build * Empty commit to trigger deploy --- .changeset/large-apes-deny.md | 5 + apps/klaviyo/.env.example | 9 + apps/klaviyo/.eslintrc | 3 + apps/klaviyo/.graphqlrc.yml | 20 + apps/klaviyo/README.md | 85 + .../AccessWarning/AccessWarning.tsx | 34 + .../components/LoadingPage/LoadingPage.tsx | 20 + apps/klaviyo/components/LoadingPage/styles.ts | 14 + apps/klaviyo/docs/connect-with-klaviyo.md | 45 + .../klaviyo/docs/readme-assets/app-screen.png | Bin 0 -> 80464 bytes .../docs/readme-assets/flow-creation.png | Bin 0 -> 23317 bytes .../docs/readme-assets/flow-screen.png | Bin 0 -> 23840 bytes .../klaviyo/docs/readme-assets/new-metric.png | Bin 0 -> 20091 bytes .../docs/readme-assets/trigger-metric.png | Bin 0 -> 30102 bytes .../docs/readme-assets/trigger-setup.png | Bin 0 -> 43375 bytes apps/klaviyo/generated/graphql.ts | 82847 ++++++++++++++++ apps/klaviyo/generated/schema.graphql | 26689 +++++ .../graphql/fragments/AddressFragment.graphql | 17 + .../fragments/MetadataFragment.graphql | 4 + .../graphql/fragments/MoneyFragment.graphql | 4 + .../graphql/fragments/OrderFragment.graphql | 89 + .../graphql/fragments/PaymentFragment.graphql | 19 + .../fragments/TaxedMoneyFragment.graphql | 9 + .../mutations/UpdateAppMetadata.graphql | 10 + .../graphql/queries/FetchAppDetails.graphql | 9 + apps/klaviyo/graphql/schema.graphql | 26596 +++++ apps/klaviyo/hooks/theme-synchronizer.tsx | 33 + apps/klaviyo/hooks/useAppApi.ts | 64 + apps/klaviyo/lib/graphql.ts | 48 + apps/klaviyo/lib/klaviyo.ts | 31 + apps/klaviyo/lib/metadata.ts | 61 + apps/klaviyo/lib/ui/app-columns-layout.tsx | 21 + apps/klaviyo/lib/ui/app-icon.tsx | 28 + apps/klaviyo/lib/ui/main-bar.tsx | 67 + apps/klaviyo/next-env.d.ts | 5 + apps/klaviyo/next.config.js | 43 + apps/klaviyo/package.json | 57 + apps/klaviyo/pages/_app.tsx | 57 + apps/klaviyo/pages/_document.tsx | 19 + apps/klaviyo/pages/_error.tsx | 75 + apps/klaviyo/pages/api/configuration.ts | 72 + apps/klaviyo/pages/api/manifest.ts | 31 + apps/klaviyo/pages/api/register.ts | 26 + .../pages/api/webhooks/customer-created.ts | 112 + .../pages/api/webhooks/fulfillment-created.ts | 117 + .../pages/api/webhooks/order-created.ts | 87 + .../pages/api/webhooks/order-fully-paid.ts | 88 + apps/klaviyo/pages/configuration.tsx | 261 + apps/klaviyo/pnpm-lock.yaml | 9046 ++ apps/klaviyo/public/favicon.ico | Bin 0 -> 25931 bytes apps/klaviyo/public/vercel.svg | 4 + apps/klaviyo/saleor-app.ts | 55 + apps/klaviyo/sentry.client.config.js | 17 + apps/klaviyo/sentry.server.config.js | 17 + apps/klaviyo/styles/globals.css | 26 + apps/klaviyo/tsconfig.json | 20 + apps/klaviyo/types.ts | 17 + apps/klaviyo/utils/useDashboardNotifier.ts | 12 + pnpm-lock.yaml | 1630 +- turbo.json | 17 + 60 files changed, 148782 insertions(+), 10 deletions(-) create mode 100644 .changeset/large-apes-deny.md create mode 100644 apps/klaviyo/.env.example create mode 100644 apps/klaviyo/.eslintrc create mode 100644 apps/klaviyo/.graphqlrc.yml create mode 100644 apps/klaviyo/README.md create mode 100644 apps/klaviyo/components/AccessWarning/AccessWarning.tsx create mode 100644 apps/klaviyo/components/LoadingPage/LoadingPage.tsx create mode 100644 apps/klaviyo/components/LoadingPage/styles.ts create mode 100644 apps/klaviyo/docs/connect-with-klaviyo.md create mode 100644 apps/klaviyo/docs/readme-assets/app-screen.png create mode 100644 apps/klaviyo/docs/readme-assets/flow-creation.png create mode 100644 apps/klaviyo/docs/readme-assets/flow-screen.png create mode 100644 apps/klaviyo/docs/readme-assets/new-metric.png create mode 100644 apps/klaviyo/docs/readme-assets/trigger-metric.png create mode 100644 apps/klaviyo/docs/readme-assets/trigger-setup.png create mode 100644 apps/klaviyo/generated/graphql.ts create mode 100644 apps/klaviyo/generated/schema.graphql create mode 100644 apps/klaviyo/graphql/fragments/AddressFragment.graphql create mode 100644 apps/klaviyo/graphql/fragments/MetadataFragment.graphql create mode 100644 apps/klaviyo/graphql/fragments/MoneyFragment.graphql create mode 100644 apps/klaviyo/graphql/fragments/OrderFragment.graphql create mode 100644 apps/klaviyo/graphql/fragments/PaymentFragment.graphql create mode 100644 apps/klaviyo/graphql/fragments/TaxedMoneyFragment.graphql create mode 100644 apps/klaviyo/graphql/mutations/UpdateAppMetadata.graphql create mode 100644 apps/klaviyo/graphql/queries/FetchAppDetails.graphql create mode 100644 apps/klaviyo/graphql/schema.graphql create mode 100644 apps/klaviyo/hooks/theme-synchronizer.tsx create mode 100644 apps/klaviyo/hooks/useAppApi.ts create mode 100644 apps/klaviyo/lib/graphql.ts create mode 100644 apps/klaviyo/lib/klaviyo.ts create mode 100644 apps/klaviyo/lib/metadata.ts create mode 100644 apps/klaviyo/lib/ui/app-columns-layout.tsx create mode 100644 apps/klaviyo/lib/ui/app-icon.tsx create mode 100644 apps/klaviyo/lib/ui/main-bar.tsx create mode 100644 apps/klaviyo/next-env.d.ts create mode 100644 apps/klaviyo/next.config.js create mode 100644 apps/klaviyo/package.json create mode 100644 apps/klaviyo/pages/_app.tsx create mode 100644 apps/klaviyo/pages/_document.tsx create mode 100644 apps/klaviyo/pages/_error.tsx create mode 100644 apps/klaviyo/pages/api/configuration.ts create mode 100644 apps/klaviyo/pages/api/manifest.ts create mode 100644 apps/klaviyo/pages/api/register.ts create mode 100644 apps/klaviyo/pages/api/webhooks/customer-created.ts create mode 100644 apps/klaviyo/pages/api/webhooks/fulfillment-created.ts create mode 100644 apps/klaviyo/pages/api/webhooks/order-created.ts create mode 100644 apps/klaviyo/pages/api/webhooks/order-fully-paid.ts create mode 100644 apps/klaviyo/pages/configuration.tsx create mode 100644 apps/klaviyo/pnpm-lock.yaml create mode 100644 apps/klaviyo/public/favicon.ico create mode 100644 apps/klaviyo/public/vercel.svg create mode 100644 apps/klaviyo/saleor-app.ts create mode 100644 apps/klaviyo/sentry.client.config.js create mode 100644 apps/klaviyo/sentry.server.config.js create mode 100644 apps/klaviyo/styles/globals.css create mode 100644 apps/klaviyo/tsconfig.json create mode 100644 apps/klaviyo/types.ts create mode 100644 apps/klaviyo/utils/useDashboardNotifier.ts diff --git a/.changeset/large-apes-deny.md b/.changeset/large-apes-deny.md new file mode 100644 index 0000000..c2478e4 --- /dev/null +++ b/.changeset/large-apes-deny.md @@ -0,0 +1,5 @@ +--- +"saleor-app-klaviyo": major +--- + +Add Klaviyo app to workspace diff --git a/apps/klaviyo/.env.example b/apps/klaviyo/.env.example new file mode 100644 index 0000000..ed25d30 --- /dev/null +++ b/apps/klaviyo/.env.example @@ -0,0 +1,9 @@ +APL=file +# Optional +# Regex pattern consumed conditionally to restrcit app installation to specific urls. +# See api/register.tsx +# Leave empty to allow all domains +# Example: "https:\/\/.*.saleor.cloud\/graphql\/" to enable Saleor Cloud APIs +ALLOWED_DOMAIN_PATTERN= +# Encryption key used by the EncryptedSettingsManager. Required by the production builds +SECRET_KEY= \ No newline at end of file diff --git a/apps/klaviyo/.eslintrc b/apps/klaviyo/.eslintrc new file mode 100644 index 0000000..0784400 --- /dev/null +++ b/apps/klaviyo/.eslintrc @@ -0,0 +1,3 @@ +{ + "extends": ["saleor"] +} diff --git a/apps/klaviyo/.graphqlrc.yml b/apps/klaviyo/.graphqlrc.yml new file mode 100644 index 0000000..9cbf367 --- /dev/null +++ b/apps/klaviyo/.graphqlrc.yml @@ -0,0 +1,20 @@ +schema: graphql/schema.graphql +documents: [graphql/**/*.graphql, ./**/*.ts, ./**/*.tsx] +extensions: + codegen: + overwrite: true + generates: + generated/graphql.ts: + config: + dedupeFragments: true + plugins: + - typescript + - typescript-operations + - urql-introspection + - typescript-urql: + documentVariablePrefix: "Untyped" + fragmentVariablePrefix: "Untyped" + - typed-document-node + generated/schema.graphql: + plugins: + - schema-ast diff --git a/apps/klaviyo/README.md b/apps/klaviyo/README.md new file mode 100644 index 0000000..0bc4293 --- /dev/null +++ b/apps/klaviyo/README.md @@ -0,0 +1,85 @@ +# Saleor App Klaviyo + +Simple Klaviyo example app for Saleor + +![](docs/readme-assets/app-screen.png) + +### What's included? + +- 🧩 Connection between Saleor and Klaviyo +- 🏆 4 built-in, example webhooks, that trigger Klaviyo metrics +- 🎨 Add new webhooks with ease + +### The stack + +Klaviyo app is based on App Template - you can check it [here](https://github.com/saleor/saleor-app-template) + +## How to use this project + +### Requirements + +- [node v16](http://nodejs.com) +- [pnpm](https://pnpm.io/) +- Saleor Cloud account (free!) or local instance +- [Saleor CLI](https://docs.saleor.io/docs/3.x/developer/cli) + +### Saleor CLI for the win 🚀 + +[Saleor CLI](https://github.com/saleor/saleor-cli) is designed to save you from the repetitive chores around Saleor development, including creating Apps. It will take the burden of spawning new apps locally, connecting them with Saleor environments, and establishing a tunnel for local development in seconds. + +[Full Saleor CLI reference](https://docs.saleor.io/docs/3.x/developer/cli) + +### Local development + +1. Make sure you have installed required tools +2. Clone repository +3. Install app dependencies with `pnpm i` +4. Start dev server `pnpm dev` +5. To install app in your Saleor Instance and expose dev server to it, run in the separate terminal `saleor app tunnel` +6. Now you can access the app configuration at [your dashboard]/apps and click on [klavio] +7. Read how to connect the app with the Klaviyo [here](https://github.com/saleor/saleor-app-template) + +### Local development without CLI + +Add URL of your Saleor instance to the `.env` file: + +``` +NEXT_PUBLIC_SALEOR_HOST_URL=https://your-saleor-instance.com +``` + +Install dependencies `pnpm install` + +Start local server `pnpm run dev` + +Follow the guide [how install your app](https://docs.saleor.io/docs/3.x/developer/extending/apps/installing-apps#installation-using-graphql-api) and use tunneling tools like [localtunnel](https://github.com/localtunnel/localtunnel) or [ngrok](https://ngrok.com/) in order to expose your local server. + +If you use [saleor-dashboard](https://github.com/saleor/saleor-dashboard) and your local server is exposed, you can install your app by following this link: + +``` +[YOUR_SALEOR_DASHBOARD_URL]/apps/install?manifestUrl=[YOUR_APPS_MANIFEST_URL] +``` + +### Generated schema and typings + +Commands `build` and `dev` would generate schema and typed functions using Saleor's GraphQL endpoint. Commit `generated` folder to your repo as they are necessary for queries and keeping track of the schema changes. + +[Learn more](https://www.graphql-code-generator.com/) about GraphQL code generation. + +### Storing registration data - APL + +During registration process Saleor API pass the auth token to the app. With this token App can query Saleor API with privileged access (depending on requested permissions during the installation). +To store this data, app-template use a different [APL interfaces](https://github.com/saleor/saleor-app-sdk/blob/main/docs/apl.md). + +The choice of the APL is done using `APL` environment variable. If value is not set, FileAPL is used. Available choices: + +- `file`: no additional setup is required. Good choice for local development. Can't be used for multi tenant-apps or be deployed (not intended for production) +- `upstash`: use [Upstash](https://upstash.com/) Redis as storage method. Free account required. Can be used for development and production and supports multi-tenancy. Requires `UPSTASH_URL` and `UPSTASH_TOKEN` environment variables to be set +- `vercel`: used by deployments from the Marketplace. It's single-tenant only and only supported by Vercel deployments done with Saleor CLI. Requires `SALEOR_REGISTER_APP_URL` and `SALEOR_DEPLOYMENT_TOKEN` environment variables to be set (handled automatically by the Saleor CLI) + +If you want to use your own database, you can implement your own APL. [Check the documentation to read more.](https://github.com/saleor/saleor-app-sdk/blob/main/docs/apl.md) + +### Learn more about Saleor Apps + +[Apps guide](https://docs.saleor.io/docs/3.x/developer/extending/apps/key-concepts) + +[Configuring apps in dashboard](https://docs.saleor.io/docs/3.x/dashboard/apps) diff --git a/apps/klaviyo/components/AccessWarning/AccessWarning.tsx b/apps/klaviyo/components/AccessWarning/AccessWarning.tsx new file mode 100644 index 0000000..19cdb8e --- /dev/null +++ b/apps/klaviyo/components/AccessWarning/AccessWarning.tsx @@ -0,0 +1,34 @@ +import { Typography } from "@material-ui/core"; +import React from "react"; + +type WarningCause = + | "not_in_iframe" + | "missing_access_token" + | "invalid_access_token" + | "unknown_cause"; + +interface AccessWarningProps { + cause?: WarningCause; +} + +const warnings: Record = { + not_in_iframe: "The view can only be displayed in the iframe.", + missing_access_token: "App doesn't have an access token.", + invalid_access_token: "Access token is invalid.", + unknown_cause: "Something went wrong.", +}; + +function AccessWarning({ cause = "unknown_cause" }: AccessWarningProps) { + return ( +
+ + App can't be accessed outside of the Saleor Dashboard + + + ❌ {warnings[cause]} + +
+ ); +} + +export default AccessWarning; diff --git a/apps/klaviyo/components/LoadingPage/LoadingPage.tsx b/apps/klaviyo/components/LoadingPage/LoadingPage.tsx new file mode 100644 index 0000000..02b98e9 --- /dev/null +++ b/apps/klaviyo/components/LoadingPage/LoadingPage.tsx @@ -0,0 +1,20 @@ +import { CircularProgress, Typography } from "@material-ui/core"; +import React from "react"; + +import { useStyles } from "./styles"; + +function LoadingPage() { + const classes = useStyles(); + + return ( +
+ + + + Attempting connection to Saleor Dashboard + +
+ ); +} + +export default LoadingPage; diff --git a/apps/klaviyo/components/LoadingPage/styles.ts b/apps/klaviyo/components/LoadingPage/styles.ts new file mode 100644 index 0000000..b392343 --- /dev/null +++ b/apps/klaviyo/components/LoadingPage/styles.ts @@ -0,0 +1,14 @@ +import { makeStyles } from "@saleor/macaw-ui"; + +const useStyles = makeStyles((theme) => ({ + loaderContainer: { + display: "flex", + flexDirection: "column", + alignItems: "center", + }, + message: { + marginTop: theme.spacing(4), + }, +})); + +export { useStyles }; diff --git a/apps/klaviyo/docs/connect-with-klaviyo.md b/apps/klaviyo/docs/connect-with-klaviyo.md new file mode 100644 index 0000000..9335558 --- /dev/null +++ b/apps/klaviyo/docs/connect-with-klaviyo.md @@ -0,0 +1,45 @@ +# How to connect your App with Klavio + +## Installation + +Follow [readme](../README.md) and deploy app. Then, install it in your Saleor Dashboard + +## Creating Klaviyo account + +Before we continue, you need a Klaviyo account. You can sign up [here](https://www.klaviyo.com/). + +## Accessing your public key + +To access your public key, please follow this [Klaviyo document](https://help.klaviyo.com/hc/en-us/articles/115005062267-How-to-Manage-Your-Account-s-API-Keys). + +## Dashboard configuration + +1. Open Dashboard and navigate to the "Apps" section. +2. Find your fresh installed Klaviyo app. +3. Paste your public key into the input field and save. + +## Triggering the initial webhook + +First and foremost, you need to perform an initial API call to Klaviyo, which will create a metric (of which the name you can configure in the Klaviyo App configuration screen). + +Let's navigate to "Customers" and create the first, dummy customer. + +Then, open Klavio [Metrics page](https://www.klaviyo.com/analytics/metrics). + +Your Metric should be visible on the list: + +![](readme-assets/new-metric.png) + +## Creating a flow + +Now, you can create your first flow + +1. Open the [flow creation page](https://www.klaviyo.com/flows/create). +2. Click "Create from scratch" and name your flow. + [](readme-assets/flow-creation.png) +3. Create a new trigger with "Metric". + [](readme-assets/trigger-setup.png) +4. Your freshly sent Metric should be available. + [](readme-assets/trigger-metric.png) +5. Now you can proceed to create your flow. Feel free to welcome your user. + [](readme-assets/flow-screen.png) diff --git a/apps/klaviyo/docs/readme-assets/app-screen.png b/apps/klaviyo/docs/readme-assets/app-screen.png new file mode 100644 index 0000000000000000000000000000000000000000..3051e0b613ff516afda4cdba29192a28af2c8e5e GIT binary patch literal 80464 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 literal 0 HcmV?d00001 diff --git a/apps/klaviyo/docs/readme-assets/flow-creation.png b/apps/klaviyo/docs/readme-assets/flow-creation.png new file mode 100644 index 0000000000000000000000000000000000000000..4cb581c559a36c282666a86a3dcc46bee8a26358 GIT binary patch literal 23317 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 literal 0 HcmV?d00001 diff --git a/apps/klaviyo/docs/readme-assets/flow-screen.png b/apps/klaviyo/docs/readme-assets/flow-screen.png new file mode 100644 index 0000000000000000000000000000000000000000..208f25bb4a9f22df59d073cefb4f7e67a9839a85 GIT binary patch literal 23840 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 literal 0 HcmV?d00001 diff --git a/apps/klaviyo/docs/readme-assets/new-metric.png b/apps/klaviyo/docs/readme-assets/new-metric.png new file mode 100644 index 0000000000000000000000000000000000000000..33c5580b26d3381a98c62662c09902e07dc1f07b GIT binary patch literal 20091 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 Y5UVDE?JUU96Yn3hvvoi-Q6AC%0*5Y@W&i*H literal 0 HcmV?d00001 diff --git a/apps/klaviyo/docs/readme-assets/trigger-metric.png b/apps/klaviyo/docs/readme-assets/trigger-metric.png new file mode 100644 index 0000000000000000000000000000000000000000..85a469859ad73af941e98dd37da986903c3315d1 GIT binary patch literal 30102 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 literal 0 HcmV?d00001 diff --git a/apps/klaviyo/docs/readme-assets/trigger-setup.png b/apps/klaviyo/docs/readme-assets/trigger-setup.png new file mode 100644 index 0000000000000000000000000000000000000000..f18b5781eedf79682590b04ae512f2bce641d32a GIT binary patch literal 43375 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 = T | null; +export type InputMaybe = Maybe; +export type Exact = { [K in keyof T]: T[K] }; +export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; +export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; +export type Omit = Pick>; +/** All built-in and custom scalars, mapped to their actual values */ +export type Scalars = { + ID: string; + String: string; + Boolean: boolean; + Int: number; + Float: number; + /** + * The `Date` scalar type represents a Date + * value as specified by + * [iso8601](https://en.wikipedia.org/wiki/ISO_8601). + */ + Date: any; + /** + * The `DateTime` scalar type represents a DateTime + * value as specified by + * [iso8601](https://en.wikipedia.org/wiki/ISO_8601). + */ + DateTime: any; + /** + * The `GenericScalar` scalar type represents a generic + * GraphQL scalar value that could be: + * String, Boolean, Int, Float, List or Object. + */ + GenericScalar: any; + JSONString: any; + /** + * Metadata is a map of key-value pairs, both keys and values are `String`. + * + * Example: + * ``` + * { + * "key1": "value1", + * "key2": "value2" + * } + * ``` + */ + Metadata: any; + /** + * Positive Decimal scalar implementation. + * + * Should be used in places where value must be positive. + */ + PositiveDecimal: any; + UUID: any; + /** Variables of this type must be set to null in mutations. They will be replaced with a filename from a following multipart part containing a binary file. See: https://github.com/jaydenseric/graphql-multipart-request-spec. */ + Upload: any; + WeightScalar: any; + /** _Any value scalar as defined by Federation spec. */ + _Any: any; +}; + +/** + * Create a new address for the customer. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ +export type AccountAddressCreate = { + __typename?: 'AccountAddressCreate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + address?: Maybe
; + errors: Array; + /** A user instance for which the address was created. */ + user?: Maybe; +}; + +/** Delete an address of the logged-in user. Requires one of the following permissions: MANAGE_USERS, IS_OWNER. */ +export type AccountAddressDelete = { + __typename?: 'AccountAddressDelete'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + address?: Maybe
; + errors: Array; + /** A user instance for which the address was deleted. */ + user?: Maybe; +}; + +/** Updates an address of the logged-in user. Requires one of the following permissions: MANAGE_USERS, IS_OWNER. */ +export type AccountAddressUpdate = { + __typename?: 'AccountAddressUpdate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + address?: Maybe
; + errors: Array; + /** A user object for which the address was edited. */ + user?: Maybe; +}; + +/** + * Remove user account. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ +export type AccountDelete = { + __typename?: 'AccountDelete'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + user?: Maybe; +}; + +export type AccountError = { + __typename?: 'AccountError'; + /** A type of address that causes the error. */ + addressType?: Maybe; + /** The error code. */ + code: AccountErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum AccountErrorCode { + AccountNotConfirmed = 'ACCOUNT_NOT_CONFIRMED', + ActivateOwnAccount = 'ACTIVATE_OWN_ACCOUNT', + ActivateSuperuserAccount = 'ACTIVATE_SUPERUSER_ACCOUNT', + ChannelInactive = 'CHANNEL_INACTIVE', + DeactivateOwnAccount = 'DEACTIVATE_OWN_ACCOUNT', + DeactivateSuperuserAccount = 'DEACTIVATE_SUPERUSER_ACCOUNT', + DeleteNonStaffUser = 'DELETE_NON_STAFF_USER', + DeleteOwnAccount = 'DELETE_OWN_ACCOUNT', + DeleteStaffAccount = 'DELETE_STAFF_ACCOUNT', + DeleteSuperuserAccount = 'DELETE_SUPERUSER_ACCOUNT', + DuplicatedInputItem = 'DUPLICATED_INPUT_ITEM', + GraphqlError = 'GRAPHQL_ERROR', + Inactive = 'INACTIVE', + Invalid = 'INVALID', + InvalidCredentials = 'INVALID_CREDENTIALS', + InvalidPassword = 'INVALID_PASSWORD', + JwtDecodeError = 'JWT_DECODE_ERROR', + JwtInvalidCsrfToken = 'JWT_INVALID_CSRF_TOKEN', + JwtInvalidToken = 'JWT_INVALID_TOKEN', + JwtMissingToken = 'JWT_MISSING_TOKEN', + JwtSignatureExpired = 'JWT_SIGNATURE_EXPIRED', + LeftNotManageablePermission = 'LEFT_NOT_MANAGEABLE_PERMISSION', + MissingChannelSlug = 'MISSING_CHANNEL_SLUG', + NotFound = 'NOT_FOUND', + OutOfScopeGroup = 'OUT_OF_SCOPE_GROUP', + OutOfScopePermission = 'OUT_OF_SCOPE_PERMISSION', + OutOfScopeUser = 'OUT_OF_SCOPE_USER', + PasswordEntirelyNumeric = 'PASSWORD_ENTIRELY_NUMERIC', + PasswordTooCommon = 'PASSWORD_TOO_COMMON', + PasswordTooShort = 'PASSWORD_TOO_SHORT', + PasswordTooSimilar = 'PASSWORD_TOO_SIMILAR', + Required = 'REQUIRED', + Unique = 'UNIQUE' +} + +export type AccountInput = { + /** Billing address of the customer. */ + defaultBillingAddress?: InputMaybe; + /** Shipping address of the customer. */ + defaultShippingAddress?: InputMaybe; + /** Given name. */ + firstName?: InputMaybe; + /** User language code. */ + languageCode?: InputMaybe; + /** Family name. */ + lastName?: InputMaybe; +}; + +/** Register a new user. */ +export type AccountRegister = { + __typename?: 'AccountRegister'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + /** Informs whether users need to confirm their email address. */ + requiresConfirmation?: Maybe; + user?: Maybe; +}; + +export type AccountRegisterInput = { + /** Slug of a channel which will be used to notify users. Optional when only one channel exists. */ + channel?: InputMaybe; + /** The email address of the user. */ + email: Scalars['String']; + /** Given name. */ + firstName?: InputMaybe; + /** User language code. */ + languageCode?: InputMaybe; + /** Family name. */ + lastName?: InputMaybe; + /** User public metadata. */ + metadata?: InputMaybe>; + /** Password. */ + password: Scalars['String']; + /** Base of frontend URL that will be needed to create confirmation URL. */ + redirectUrl?: InputMaybe; +}; + +/** + * Sends an email with the account removal link for the logged-in user. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ +export type AccountRequestDeletion = { + __typename?: 'AccountRequestDeletion'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; +}; + +/** + * Sets a default address for the authenticated user. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ +export type AccountSetDefaultAddress = { + __typename?: 'AccountSetDefaultAddress'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + /** An updated user instance. */ + user?: Maybe; +}; + +/** + * Updates the account of the logged-in user. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ +export type AccountUpdate = { + __typename?: 'AccountUpdate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + user?: Maybe; +}; + +/** Represents user address data. */ +export type Address = Node & ObjectWithMetadata & { + __typename?: 'Address'; + city: Scalars['String']; + cityArea: Scalars['String']; + companyName: Scalars['String']; + /** Shop's default country. */ + country: CountryDisplay; + countryArea: Scalars['String']; + firstName: Scalars['String']; + id: Scalars['ID']; + /** Address is user's default billing address. */ + isDefaultBillingAddress?: Maybe; + /** Address is user's default shipping address. */ + isDefaultShippingAddress?: Maybe; + lastName: Scalars['String']; + /** + * List of public metadata items. Can be accessed without permissions. + * + * Added in Saleor 3.10. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.10. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.10. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + phone?: Maybe; + postalCode: Scalars['String']; + /** + * List of private metadata items. Requires staff permissions to access. + * + * Added in Saleor 3.10. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.10. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.10. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + streetAddress1: Scalars['String']; + streetAddress2: Scalars['String']; +}; + + +/** Represents user address data. */ +export type AddressMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents user address data. */ +export type AddressMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents user address data. */ +export type AddressPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents user address data. */ +export type AddressPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +/** + * Creates user address. + * + * Requires one of the following permissions: MANAGE_USERS. + */ +export type AddressCreate = { + __typename?: 'AddressCreate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + address?: Maybe
; + errors: Array; + /** A user instance for which the address was created. */ + user?: Maybe; +}; + +/** + * Event sent when new address is created. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type AddressCreated = Event & { + __typename?: 'AddressCreated'; + /** The address the event relates to. */ + address?: Maybe
; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Deletes an address. + * + * Requires one of the following permissions: MANAGE_USERS. + */ +export type AddressDelete = { + __typename?: 'AddressDelete'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + address?: Maybe
; + errors: Array; + /** A user instance for which the address was deleted. */ + user?: Maybe; +}; + +/** + * Event sent when address is deleted. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type AddressDeleted = Event & { + __typename?: 'AddressDeleted'; + /** The address the event relates to. */ + address?: Maybe
; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type AddressInput = { + /** City. */ + city?: InputMaybe; + /** District. */ + cityArea?: InputMaybe; + /** Company or organization. */ + companyName?: InputMaybe; + /** Country. */ + country?: InputMaybe; + /** State or province. */ + countryArea?: InputMaybe; + /** Given name. */ + firstName?: InputMaybe; + /** Family name. */ + lastName?: InputMaybe; + /** Phone number. */ + phone?: InputMaybe; + /** Postal code. */ + postalCode?: InputMaybe; + /** Address. */ + streetAddress1?: InputMaybe; + /** Address. */ + streetAddress2?: InputMaybe; +}; + +/** + * Sets a default address for the given user. + * + * Requires one of the following permissions: MANAGE_USERS. + */ +export type AddressSetDefault = { + __typename?: 'AddressSetDefault'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + /** An updated user instance. */ + user?: Maybe; +}; + +/** An enumeration. */ +export enum AddressTypeEnum { + Billing = 'BILLING', + Shipping = 'SHIPPING' +} + +/** + * Updates an address. + * + * Requires one of the following permissions: MANAGE_USERS. + */ +export type AddressUpdate = { + __typename?: 'AddressUpdate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + address?: Maybe
; + errors: Array; + /** A user object for which the address was edited. */ + user?: Maybe; +}; + +/** + * Event sent when address is updated. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type AddressUpdated = Event & { + __typename?: 'AddressUpdated'; + /** The address the event relates to. */ + address?: Maybe
; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type AddressValidationData = { + __typename?: 'AddressValidationData'; + addressFormat: Scalars['String']; + addressLatinFormat: Scalars['String']; + allowedFields: Array; + cityAreaChoices: Array; + cityAreaType: Scalars['String']; + cityChoices: Array; + cityType: Scalars['String']; + countryAreaChoices: Array; + countryAreaType: Scalars['String']; + countryCode: Scalars['String']; + countryName: Scalars['String']; + postalCodeExamples: Array; + postalCodeMatchers: Array; + postalCodePrefix: Scalars['String']; + postalCodeType: Scalars['String']; + requiredFields: Array; + upperFields: Array; +}; + +/** Represents allocation. */ +export type Allocation = Node & { + __typename?: 'Allocation'; + id: Scalars['ID']; + /** + * Quantity allocated for orders. + * + * Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + */ + quantity: Scalars['Int']; + /** + * The warehouse were items were allocated. + * + * Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + */ + warehouse: Warehouse; +}; + +/** + * Determine the allocation strategy for the channel. + * + * PRIORITIZE_SORTING_ORDER - allocate stocks according to the warehouses' order + * within the channel + * + * PRIORITIZE_HIGH_STOCK - allocate stock in a warehouse with the most stock + */ +export enum AllocationStrategyEnum { + PrioritizeHighStock = 'PRIORITIZE_HIGH_STOCK', + PrioritizeSortingOrder = 'PRIORITIZE_SORTING_ORDER' +} + +/** Represents app data. */ +export type App = Node & ObjectWithMetadata & { + __typename?: 'App'; + /** Description of this app. */ + aboutApp?: Maybe; + /** JWT token used to authenticate by thridparty app. */ + accessToken?: Maybe; + /** URL to iframe with the app. */ + appUrl?: Maybe; + /** + * URL to iframe with the configuration for the app. + * @deprecated This field will be removed in Saleor 4.0. Use `appUrl` instead. + */ + configurationUrl?: Maybe; + /** The date and time when the app was created. */ + created?: Maybe; + /** + * Description of the data privacy defined for this app. + * @deprecated This field will be removed in Saleor 4.0. Use `dataPrivacyUrl` instead. + */ + dataPrivacy?: Maybe; + /** URL to details about the privacy policy on the app owner page. */ + dataPrivacyUrl?: Maybe; + /** + * App's dashboard extensions. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + extensions: Array; + /** Homepage of the app. */ + homepageUrl?: Maybe; + id: Scalars['ID']; + /** Determine if app will be set active or not. */ + isActive?: Maybe; + /** + * URL to manifest used during app's installation. + * + * Added in Saleor 3.5. + */ + manifestUrl?: Maybe; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + /** Name of the app. */ + name?: Maybe; + /** List of the app's permissions. */ + permissions?: Maybe>; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** Support page for the app. */ + supportUrl?: Maybe; + /** + * Last 4 characters of the tokens. + * + * Requires one of the following permissions: MANAGE_APPS, OWNER. + */ + tokens?: Maybe>; + /** Type of the app. */ + type?: Maybe; + /** Version number of the app. */ + version?: Maybe; + /** + * List of webhooks assigned to this app. + * + * Requires one of the following permissions: MANAGE_APPS, OWNER. + */ + webhooks?: Maybe>; +}; + + +/** Represents app data. */ +export type AppMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents app data. */ +export type AppMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents app data. */ +export type AppPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents app data. */ +export type AppPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +/** + * Activate the app. + * + * Requires one of the following permissions: MANAGE_APPS. + */ +export type AppActivate = { + __typename?: 'AppActivate'; + app?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + appErrors: Array; + errors: Array; +}; + +export type AppCountableConnection = { + __typename?: 'AppCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type AppCountableEdge = { + __typename?: 'AppCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: App; +}; + +/** Creates a new app. Requires the following permissions: AUTHENTICATED_STAFF_USER and MANAGE_APPS. */ +export type AppCreate = { + __typename?: 'AppCreate'; + app?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + appErrors: Array; + /** The newly created authentication token. */ + authToken?: Maybe; + errors: Array; +}; + +/** + * Deactivate the app. + * + * Requires one of the following permissions: MANAGE_APPS. + */ +export type AppDeactivate = { + __typename?: 'AppDeactivate'; + app?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + appErrors: Array; + errors: Array; +}; + +/** + * Deletes an app. + * + * Requires one of the following permissions: MANAGE_APPS. + */ +export type AppDelete = { + __typename?: 'AppDelete'; + app?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + appErrors: Array; + errors: Array; +}; + +/** + * Delete failed installation. + * + * Requires one of the following permissions: MANAGE_APPS. + */ +export type AppDeleteFailedInstallation = { + __typename?: 'AppDeleteFailedInstallation'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + appErrors: Array; + appInstallation?: Maybe; + errors: Array; +}; + +/** + * Event sent when app is deleted. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type AppDeleted = Event & { + __typename?: 'AppDeleted'; + /** The application the event relates to. */ + app?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type AppError = { + __typename?: 'AppError'; + /** The error code. */ + code: AppErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of permissions which causes the error. */ + permissions?: Maybe>; +}; + +/** An enumeration. */ +export enum AppErrorCode { + Forbidden = 'FORBIDDEN', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + InvalidManifestFormat = 'INVALID_MANIFEST_FORMAT', + InvalidPermission = 'INVALID_PERMISSION', + InvalidStatus = 'INVALID_STATUS', + InvalidUrlFormat = 'INVALID_URL_FORMAT', + ManifestUrlCantConnect = 'MANIFEST_URL_CANT_CONNECT', + NotFound = 'NOT_FOUND', + OutOfScopeApp = 'OUT_OF_SCOPE_APP', + OutOfScopePermission = 'OUT_OF_SCOPE_PERMISSION', + Required = 'REQUIRED', + Unique = 'UNIQUE' +} + +/** Represents app data. */ +export type AppExtension = Node & { + __typename?: 'AppExtension'; + /** JWT token used to authenticate by thridparty app extension. */ + accessToken?: Maybe; + app: App; + id: Scalars['ID']; + /** Label of the extension to show in the dashboard. */ + label: Scalars['String']; + /** Place where given extension will be mounted. */ + mount: AppExtensionMountEnum; + /** List of the app extension's permissions. */ + permissions: Array; + /** Type of way how app extension will be opened. */ + target: AppExtensionTargetEnum; + /** URL of a view where extension's iframe is placed. */ + url: Scalars['String']; +}; + +export type AppExtensionCountableConnection = { + __typename?: 'AppExtensionCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type AppExtensionCountableEdge = { + __typename?: 'AppExtensionCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: AppExtension; +}; + +export type AppExtensionFilterInput = { + mount?: InputMaybe>; + target?: InputMaybe; +}; + +/** All places where app extension can be mounted. */ +export enum AppExtensionMountEnum { + CustomerDetailsMoreActions = 'CUSTOMER_DETAILS_MORE_ACTIONS', + CustomerOverviewCreate = 'CUSTOMER_OVERVIEW_CREATE', + CustomerOverviewMoreActions = 'CUSTOMER_OVERVIEW_MORE_ACTIONS', + NavigationCatalog = 'NAVIGATION_CATALOG', + NavigationCustomers = 'NAVIGATION_CUSTOMERS', + NavigationDiscounts = 'NAVIGATION_DISCOUNTS', + NavigationOrders = 'NAVIGATION_ORDERS', + NavigationPages = 'NAVIGATION_PAGES', + NavigationTranslations = 'NAVIGATION_TRANSLATIONS', + OrderDetailsMoreActions = 'ORDER_DETAILS_MORE_ACTIONS', + OrderOverviewCreate = 'ORDER_OVERVIEW_CREATE', + OrderOverviewMoreActions = 'ORDER_OVERVIEW_MORE_ACTIONS', + ProductDetailsMoreActions = 'PRODUCT_DETAILS_MORE_ACTIONS', + ProductOverviewCreate = 'PRODUCT_OVERVIEW_CREATE', + ProductOverviewMoreActions = 'PRODUCT_OVERVIEW_MORE_ACTIONS' +} + +/** + * All available ways of opening an app extension. + * + * POPUP - app's extension will be mounted as a popup window + * APP_PAGE - redirect to app's page + */ +export enum AppExtensionTargetEnum { + AppPage = 'APP_PAGE', + Popup = 'POPUP' +} + +/** + * Fetch and validate manifest. + * + * Requires one of the following permissions: MANAGE_APPS. + */ +export type AppFetchManifest = { + __typename?: 'AppFetchManifest'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + appErrors: Array; + errors: Array; + manifest?: Maybe; +}; + +export type AppFilterInput = { + isActive?: InputMaybe; + search?: InputMaybe; + type?: InputMaybe; +}; + +export type AppInput = { + /** Name of the app. */ + name?: InputMaybe; + /** List of permission code names to assign to this app. */ + permissions?: InputMaybe>; +}; + +/** Install new app by using app manifest. Requires the following permissions: AUTHENTICATED_STAFF_USER and MANAGE_APPS. */ +export type AppInstall = { + __typename?: 'AppInstall'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + appErrors: Array; + appInstallation?: Maybe; + errors: Array; +}; + +export type AppInstallInput = { + /** Determine if app will be set active or not. */ + activateAfterInstallation?: InputMaybe; + /** Name of the app to install. */ + appName?: InputMaybe; + /** Url to app's manifest in JSON format. */ + manifestUrl?: InputMaybe; + /** List of permission code names to assign to this app. */ + permissions?: InputMaybe>; +}; + +/** Represents ongoing installation of app. */ +export type AppInstallation = Job & Node & { + __typename?: 'AppInstallation'; + appName: Scalars['String']; + /** Created date time of job in ISO 8601 format. */ + createdAt: Scalars['DateTime']; + id: Scalars['ID']; + manifestUrl: Scalars['String']; + /** Job message. */ + message?: Maybe; + /** Job status. */ + status: JobStatusEnum; + /** Date time of job last update in ISO 8601 format. */ + updatedAt: Scalars['DateTime']; +}; + +/** + * Event sent when new app is installed. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type AppInstalled = Event & { + __typename?: 'AppInstalled'; + /** The application the event relates to. */ + app?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type AppManifestExtension = { + __typename?: 'AppManifestExtension'; + /** Label of the extension to show in the dashboard. */ + label: Scalars['String']; + /** Place where given extension will be mounted. */ + mount: AppExtensionMountEnum; + /** List of the app extension's permissions. */ + permissions: Array; + /** Type of way how app extension will be opened. */ + target: AppExtensionTargetEnum; + /** URL of a view where extension's iframe is placed. */ + url: Scalars['String']; +}; + +export type AppManifestWebhook = { + __typename?: 'AppManifestWebhook'; + /** The asynchronous events that webhook wants to subscribe. */ + asyncEvents?: Maybe>; + /** The name of the webhook. */ + name: Scalars['String']; + /** Subscription query of a webhook */ + query: Scalars['String']; + /** The synchronous events that webhook wants to subscribe. */ + syncEvents?: Maybe>; + /** The url to receive the payload. */ + targetUrl: Scalars['String']; +}; + +/** + * Retry failed installation of new app. + * + * Requires one of the following permissions: MANAGE_APPS. + */ +export type AppRetryInstall = { + __typename?: 'AppRetryInstall'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + appErrors: Array; + appInstallation?: Maybe; + errors: Array; +}; + +export enum AppSortField { + /** Sort apps by creation date. */ + CreationDate = 'CREATION_DATE', + /** Sort apps by name. */ + Name = 'NAME' +} + +export type AppSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort apps by the selected field. */ + field: AppSortField; +}; + +/** + * Event sent when app status has changed. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type AppStatusChanged = Event & { + __typename?: 'AppStatusChanged'; + /** The application the event relates to. */ + app?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** Represents token data. */ +export type AppToken = Node & { + __typename?: 'AppToken'; + /** Last 4 characters of the token. */ + authToken?: Maybe; + id: Scalars['ID']; + /** Name of the authenticated token. */ + name?: Maybe; +}; + +/** + * Creates a new token. + * + * Requires one of the following permissions: MANAGE_APPS. + */ +export type AppTokenCreate = { + __typename?: 'AppTokenCreate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + appErrors: Array; + appToken?: Maybe; + /** The newly created authentication token. */ + authToken?: Maybe; + errors: Array; +}; + +/** + * Deletes an authentication token assigned to app. + * + * Requires one of the following permissions: MANAGE_APPS. + */ +export type AppTokenDelete = { + __typename?: 'AppTokenDelete'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + appErrors: Array; + appToken?: Maybe; + errors: Array; +}; + +export type AppTokenInput = { + /** ID of app. */ + app: Scalars['ID']; + /** Name of the token. */ + name?: InputMaybe; +}; + +/** Verify provided app token. */ +export type AppTokenVerify = { + __typename?: 'AppTokenVerify'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + appErrors: Array; + errors: Array; + /** Determine if token is valid or not. */ + valid: Scalars['Boolean']; +}; + +/** Enum determining type of your App. */ +export enum AppTypeEnum { + /** Local Saleor App. The app is fully manageable from dashboard. You can change assigned permissions, add webhooks, or authentication token */ + Local = 'LOCAL', + /** Third party external App. Installation is fully automated. Saleor uses a defined App manifest to gather all required information. */ + Thirdparty = 'THIRDPARTY' +} + +/** + * Updates an existing app. + * + * Requires one of the following permissions: MANAGE_APPS. + */ +export type AppUpdate = { + __typename?: 'AppUpdate'; + app?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + appErrors: Array; + errors: Array; +}; + +/** + * Event sent when app is updated. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type AppUpdated = Event & { + __typename?: 'AppUpdated'; + /** The application the event relates to. */ + app?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** An enumeration. */ +export enum AreaUnitsEnum { + SqCm = 'SQ_CM', + SqFt = 'SQ_FT', + SqInch = 'SQ_INCH', + SqKm = 'SQ_KM', + SqM = 'SQ_M', + SqYd = 'SQ_YD' +} + +/** + * Assigns storefront's navigation menus. + * + * Requires one of the following permissions: MANAGE_MENUS, MANAGE_SETTINGS. + */ +export type AssignNavigation = { + __typename?: 'AssignNavigation'; + errors: Array; + /** Assigned navigation menu. */ + menu?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + menuErrors: Array; +}; + +/** + * Represents assigned attribute to variant with variant selection attached. + * + * Added in Saleor 3.1. + */ +export type AssignedVariantAttribute = { + __typename?: 'AssignedVariantAttribute'; + /** Attribute assigned to variant. */ + attribute: Attribute; + /** Determines, whether assigned attribute is allowed for variant selection. Supported variant types for variant selection are: ['dropdown', 'boolean', 'swatch', 'numeric'] */ + variantSelection: Scalars['Boolean']; +}; + +/** Custom attribute of a product. Attributes can be assigned to products and variants at the product type level. */ +export type Attribute = Node & ObjectWithMetadata & { + __typename?: 'Attribute'; + /** Whether the attribute can be displayed in the admin product list. Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. */ + availableInGrid: Scalars['Boolean']; + /** List of attribute's values. */ + choices?: Maybe; + /** The entity type which can be used as a reference. */ + entityType?: Maybe; + /** + * External ID of this attribute. + * + * Added in Saleor 3.10. + */ + externalReference?: Maybe; + /** Whether the attribute can be filtered in dashboard. Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. */ + filterableInDashboard: Scalars['Boolean']; + /** Whether the attribute can be filtered in storefront. Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. */ + filterableInStorefront: Scalars['Boolean']; + id: Scalars['ID']; + /** The input type to use for entering attribute values in the dashboard. */ + inputType?: Maybe; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + /** Name of an attribute displayed in the interface. */ + name?: Maybe; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + productTypes: ProductTypeCountableConnection; + productVariantTypes: ProductTypeCountableConnection; + /** Internal representation of an attribute name. */ + slug?: Maybe; + /** The position of the attribute in the storefront navigation (0 by default). Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. */ + storefrontSearchPosition: Scalars['Int']; + /** Returns translated attribute fields for the given language code. */ + translation?: Maybe; + /** The attribute type. */ + type?: Maybe; + /** The unit of attribute values. */ + unit?: Maybe; + /** Whether the attribute requires values to be passed or not. Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. */ + valueRequired: Scalars['Boolean']; + /** Whether the attribute should be visible or not in storefront. Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. */ + visibleInStorefront: Scalars['Boolean']; + /** Flag indicating that attribute has predefined choices. */ + withChoices: Scalars['Boolean']; +}; + + +/** Custom attribute of a product. Attributes can be assigned to products and variants at the product type level. */ +export type AttributeChoicesArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +/** Custom attribute of a product. Attributes can be assigned to products and variants at the product type level. */ +export type AttributeMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Custom attribute of a product. Attributes can be assigned to products and variants at the product type level. */ +export type AttributeMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Custom attribute of a product. Attributes can be assigned to products and variants at the product type level. */ +export type AttributePrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Custom attribute of a product. Attributes can be assigned to products and variants at the product type level. */ +export type AttributePrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Custom attribute of a product. Attributes can be assigned to products and variants at the product type level. */ +export type AttributeProductTypesArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Custom attribute of a product. Attributes can be assigned to products and variants at the product type level. */ +export type AttributeProductVariantTypesArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Custom attribute of a product. Attributes can be assigned to products and variants at the product type level. */ +export type AttributeTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Deletes attributes. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ +export type AttributeBulkDelete = { + __typename?: 'AttributeBulkDelete'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + attributeErrors: Array; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; +}; + +export enum AttributeChoicesSortField { + /** Sort attribute choice by name. */ + Name = 'NAME', + /** Sort attribute choice by slug. */ + Slug = 'SLUG' +} + +export type AttributeChoicesSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort attribute choices by the selected field. */ + field: AttributeChoicesSortField; +}; + +export type AttributeCountableConnection = { + __typename?: 'AttributeCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type AttributeCountableEdge = { + __typename?: 'AttributeCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: Attribute; +}; + +/** Creates an attribute. */ +export type AttributeCreate = { + __typename?: 'AttributeCreate'; + attribute?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + attributeErrors: Array; + errors: Array; +}; + +export type AttributeCreateInput = { + /** Whether the attribute can be displayed in the admin product list. */ + availableInGrid?: InputMaybe; + /** The entity type which can be used as a reference. */ + entityType?: InputMaybe; + /** + * External ID of this attribute. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** Whether the attribute can be filtered in dashboard. */ + filterableInDashboard?: InputMaybe; + /** Whether the attribute can be filtered in storefront. */ + filterableInStorefront?: InputMaybe; + /** The input type to use for entering attribute values in the dashboard. */ + inputType?: InputMaybe; + /** Whether the attribute is for variants only. */ + isVariantOnly?: InputMaybe; + /** Name of an attribute displayed in the interface. */ + name: Scalars['String']; + /** Internal representation of an attribute name. */ + slug?: InputMaybe; + /** The position of the attribute in the storefront navigation (0 by default). */ + storefrontSearchPosition?: InputMaybe; + /** The attribute type. */ + type: AttributeTypeEnum; + /** The unit of attribute values. */ + unit?: InputMaybe; + /** Whether the attribute requires values to be passed or not. */ + valueRequired?: InputMaybe; + /** List of attribute's values. */ + values?: InputMaybe>; + /** Whether the attribute should be visible or not in storefront. */ + visibleInStorefront?: InputMaybe; +}; + +/** + * Event sent when new attribute is created. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type AttributeCreated = Event & { + __typename?: 'AttributeCreated'; + /** The attribute the event relates to. */ + attribute?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Deletes an attribute. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ +export type AttributeDelete = { + __typename?: 'AttributeDelete'; + attribute?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + attributeErrors: Array; + errors: Array; +}; + +/** + * Event sent when attribute is deleted. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type AttributeDeleted = Event & { + __typename?: 'AttributeDeleted'; + /** The attribute the event relates to. */ + attribute?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** An enumeration. */ +export enum AttributeEntityTypeEnum { + Page = 'PAGE', + Product = 'PRODUCT', + ProductVariant = 'PRODUCT_VARIANT' +} + +export type AttributeError = { + __typename?: 'AttributeError'; + /** The error code. */ + code: AttributeErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum AttributeErrorCode { + AlreadyExists = 'ALREADY_EXISTS', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND', + Required = 'REQUIRED', + Unique = 'UNIQUE' +} + +export type AttributeFilterInput = { + availableInGrid?: InputMaybe; + /** + * Specifies the channel by which the data should be filtered. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + */ + channel?: InputMaybe; + filterableInDashboard?: InputMaybe; + filterableInStorefront?: InputMaybe; + ids?: InputMaybe>; + inCategory?: InputMaybe; + inCollection?: InputMaybe; + isVariantOnly?: InputMaybe; + metadata?: InputMaybe>; + search?: InputMaybe; + slugs?: InputMaybe>; + type?: InputMaybe; + valueRequired?: InputMaybe; + visibleInStorefront?: InputMaybe; +}; + +export type AttributeInput = { + /** The boolean value of the attribute. */ + boolean?: InputMaybe; + /** The date range that the returned values should be in. In case of date/time attributes, the UTC midnight of the given date is used. */ + date?: InputMaybe; + /** The date/time range that the returned values should be in. */ + dateTime?: InputMaybe; + /** Internal representation of an attribute name. */ + slug: Scalars['String']; + /** Internal representation of a value (unique per attribute). */ + values?: InputMaybe>; + /** The range that the returned values should be in. */ + valuesRange?: InputMaybe; +}; + +/** An enumeration. */ +export enum AttributeInputTypeEnum { + Boolean = 'BOOLEAN', + Date = 'DATE', + DateTime = 'DATE_TIME', + Dropdown = 'DROPDOWN', + File = 'FILE', + Multiselect = 'MULTISELECT', + Numeric = 'NUMERIC', + PlainText = 'PLAIN_TEXT', + Reference = 'REFERENCE', + RichText = 'RICH_TEXT', + Swatch = 'SWATCH' +} + +/** + * Reorder the values of an attribute. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ +export type AttributeReorderValues = { + __typename?: 'AttributeReorderValues'; + /** Attribute from which values are reordered. */ + attribute?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + attributeErrors: Array; + errors: Array; +}; + +export enum AttributeSortField { + /** Sort attributes based on whether they can be displayed or not in a product grid. */ + AvailableInGrid = 'AVAILABLE_IN_GRID', + /** Sort attributes by the filterable in dashboard flag */ + FilterableInDashboard = 'FILTERABLE_IN_DASHBOARD', + /** Sort attributes by the filterable in storefront flag */ + FilterableInStorefront = 'FILTERABLE_IN_STOREFRONT', + /** Sort attributes by the variant only flag */ + IsVariantOnly = 'IS_VARIANT_ONLY', + /** Sort attributes by name */ + Name = 'NAME', + /** Sort attributes by slug */ + Slug = 'SLUG', + /** Sort attributes by their position in storefront */ + StorefrontSearchPosition = 'STOREFRONT_SEARCH_POSITION', + /** Sort attributes by the value required flag */ + ValueRequired = 'VALUE_REQUIRED', + /** Sort attributes by visibility in the storefront */ + VisibleInStorefront = 'VISIBLE_IN_STOREFRONT' +} + +export type AttributeSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort attributes by the selected field. */ + field: AttributeSortField; +}; + +export type AttributeTranslatableContent = Node & { + __typename?: 'AttributeTranslatableContent'; + /** + * Custom attribute of a product. + * @deprecated This field will be removed in Saleor 4.0. Get model fields from the root level queries. + */ + attribute?: Maybe; + id: Scalars['ID']; + name: Scalars['String']; + /** Returns translated attribute fields for the given language code. */ + translation?: Maybe; +}; + + +export type AttributeTranslatableContentTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Creates/updates translations for an attribute. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ +export type AttributeTranslate = { + __typename?: 'AttributeTranslate'; + attribute?: Maybe; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + translationErrors: Array; +}; + +export type AttributeTranslation = Node & { + __typename?: 'AttributeTranslation'; + id: Scalars['ID']; + /** Translation language. */ + language: LanguageDisplay; + name: Scalars['String']; +}; + +/** An enumeration. */ +export enum AttributeTypeEnum { + PageType = 'PAGE_TYPE', + ProductType = 'PRODUCT_TYPE' +} + +/** + * Updates attribute. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ +export type AttributeUpdate = { + __typename?: 'AttributeUpdate'; + attribute?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + attributeErrors: Array; + errors: Array; +}; + +export type AttributeUpdateInput = { + /** New values to be created for this attribute. */ + addValues?: InputMaybe>; + /** Whether the attribute can be displayed in the admin product list. */ + availableInGrid?: InputMaybe; + /** + * External ID of this product. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** Whether the attribute can be filtered in dashboard. */ + filterableInDashboard?: InputMaybe; + /** Whether the attribute can be filtered in storefront. */ + filterableInStorefront?: InputMaybe; + /** Whether the attribute is for variants only. */ + isVariantOnly?: InputMaybe; + /** Name of an attribute displayed in the interface. */ + name?: InputMaybe; + /** IDs of values to be removed from this attribute. */ + removeValues?: InputMaybe>; + /** Internal representation of an attribute name. */ + slug?: InputMaybe; + /** The position of the attribute in the storefront navigation (0 by default). */ + storefrontSearchPosition?: InputMaybe; + /** The unit of attribute values. */ + unit?: InputMaybe; + /** Whether the attribute requires values to be passed or not. */ + valueRequired?: InputMaybe; + /** Whether the attribute should be visible or not in storefront. */ + visibleInStorefront?: InputMaybe; +}; + +/** + * Event sent when attribute is updated. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type AttributeUpdated = Event & { + __typename?: 'AttributeUpdated'; + /** The attribute the event relates to. */ + attribute?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** Represents a value of an attribute. */ +export type AttributeValue = Node & { + __typename?: 'AttributeValue'; + /** Represents the boolean value of the attribute value. */ + boolean?: Maybe; + /** Represents the date value of the attribute value. */ + date?: Maybe; + /** Represents the date/time value of the attribute value. */ + dateTime?: Maybe; + /** + * External ID of this attribute value. + * + * Added in Saleor 3.10. + */ + externalReference?: Maybe; + /** Represents file URL and content type (if attribute value is a file). */ + file?: Maybe; + id: Scalars['ID']; + /** The input type to use for entering attribute values in the dashboard. */ + inputType?: Maybe; + /** Name of a value displayed in the interface. */ + name?: Maybe; + /** Represents the text of the attribute value, plain text without formating. */ + plainText?: Maybe; + /** The ID of the attribute reference. */ + reference?: Maybe; + /** + * Represents the text of the attribute value, includes formatting. + * + * Rich text format. For reference see https://editorjs.io/ + */ + richText?: Maybe; + /** Internal representation of a value (unique per attribute). */ + slug?: Maybe; + /** Returns translated attribute value fields for the given language code. */ + translation?: Maybe; + /** Represent value of the attribute value (e.g. color values for swatch attributes). */ + value?: Maybe; +}; + + +/** Represents a value of an attribute. */ +export type AttributeValueTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Deletes values of attributes. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ +export type AttributeValueBulkDelete = { + __typename?: 'AttributeValueBulkDelete'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + attributeErrors: Array; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; +}; + +export type AttributeValueCountableConnection = { + __typename?: 'AttributeValueCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type AttributeValueCountableEdge = { + __typename?: 'AttributeValueCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: AttributeValue; +}; + +/** + * Creates a value for an attribute. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type AttributeValueCreate = { + __typename?: 'AttributeValueCreate'; + /** The updated attribute. */ + attribute?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + attributeErrors: Array; + attributeValue?: Maybe; + errors: Array; +}; + +export type AttributeValueCreateInput = { + /** File content type. */ + contentType?: InputMaybe; + /** + * External ID of this attribute value. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** URL of the file attribute. Every time, a new value is created. */ + fileUrl?: InputMaybe; + /** Name of a value displayed in the interface. */ + name: Scalars['String']; + /** + * Represents the text of the attribute value, plain text without formating. + * + * DEPRECATED: this field will be removed in Saleor 4.0.The plain text attribute hasn't got predefined value, so can be specified only from instance that supports the given attribute. + */ + plainText?: InputMaybe; + /** + * Represents the text of the attribute value, includes formatting. + * + * Rich text format. For reference see https://editorjs.io/ + * + * DEPRECATED: this field will be removed in Saleor 4.0.The rich text attribute hasn't got predefined value, so can be specified only from instance that supports the given attribute. + */ + richText?: InputMaybe; + /** Represent value of the attribute value (e.g. color values for swatch attributes). */ + value?: InputMaybe; +}; + +/** + * Event sent when new attribute value is created. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type AttributeValueCreated = Event & { + __typename?: 'AttributeValueCreated'; + /** The attribute value the event relates to. */ + attributeValue?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Deletes a value of an attribute. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ +export type AttributeValueDelete = { + __typename?: 'AttributeValueDelete'; + /** The updated attribute. */ + attribute?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + attributeErrors: Array; + attributeValue?: Maybe; + errors: Array; +}; + +/** + * Event sent when attribute value is deleted. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type AttributeValueDeleted = Event & { + __typename?: 'AttributeValueDeleted'; + /** The attribute value the event relates to. */ + attributeValue?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type AttributeValueFilterInput = { + ids?: InputMaybe>; + search?: InputMaybe; +}; + +export type AttributeValueInput = { + /** Represents the boolean value of the attribute value. */ + boolean?: InputMaybe; + /** File content type. */ + contentType?: InputMaybe; + /** Represents the date value of the attribute value. */ + date?: InputMaybe; + /** Represents the date/time value of the attribute value. */ + dateTime?: InputMaybe; + /** + * Attribute value ID. + * + * Added in Saleor 3.9. + */ + dropdown?: InputMaybe; + /** URL of the file attribute. Every time, a new value is created. */ + file?: InputMaybe; + /** ID of the selected attribute. */ + id?: InputMaybe; + /** + * List of attribute value IDs. + * + * Added in Saleor 3.9. + */ + multiselect?: InputMaybe>; + /** + * Numeric value of an attribute. + * + * Added in Saleor 3.9. + */ + numeric?: InputMaybe; + /** Plain text content. */ + plainText?: InputMaybe; + /** List of entity IDs that will be used as references. */ + references?: InputMaybe>; + /** Text content in JSON format. */ + richText?: InputMaybe; + /** + * Attribute value ID. + * + * Added in Saleor 3.9. + */ + swatch?: InputMaybe; + /** The value or slug of an attribute to resolve. If the passed value is non-existent, it will be created. This field will be removed in Saleor 4.0. */ + values?: InputMaybe>; +}; + +/** + * Represents attribute value. If no ID provided, value will be resolved. + * + * Added in Saleor 3.9. + */ +export type AttributeValueSelectableTypeInput = { + /** ID of an attribute value. */ + id?: InputMaybe; + /** The value or slug of an attribute to resolve. If the passed value is non-existent, it will be created. */ + value?: InputMaybe; +}; + +export type AttributeValueTranslatableContent = Node & { + __typename?: 'AttributeValueTranslatableContent'; + /** + * Associated attribute that can be translated. + * + * Added in Saleor 3.9. + */ + attribute?: Maybe; + /** + * Represents a value of an attribute. + * @deprecated This field will be removed in Saleor 4.0. Get model fields from the root level queries. + */ + attributeValue?: Maybe; + id: Scalars['ID']; + name: Scalars['String']; + /** Attribute plain text value. */ + plainText?: Maybe; + /** + * Attribute value. + * + * Rich text format. For reference see https://editorjs.io/ + */ + richText?: Maybe; + /** Returns translated attribute value fields for the given language code. */ + translation?: Maybe; +}; + + +export type AttributeValueTranslatableContentTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Creates/updates translations for an attribute value. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ +export type AttributeValueTranslate = { + __typename?: 'AttributeValueTranslate'; + attributeValue?: Maybe; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + translationErrors: Array; +}; + +export type AttributeValueTranslation = Node & { + __typename?: 'AttributeValueTranslation'; + id: Scalars['ID']; + /** Translation language. */ + language: LanguageDisplay; + name: Scalars['String']; + /** Attribute plain text value. */ + plainText?: Maybe; + /** + * Attribute value. + * + * Rich text format. For reference see https://editorjs.io/ + */ + richText?: Maybe; +}; + +export type AttributeValueTranslationInput = { + name?: InputMaybe; + /** Translated text. */ + plainText?: InputMaybe; + /** + * Translated text. + * + * Rich text format. For reference see https://editorjs.io/ + */ + richText?: InputMaybe; +}; + +/** + * Updates value of an attribute. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ +export type AttributeValueUpdate = { + __typename?: 'AttributeValueUpdate'; + /** The updated attribute. */ + attribute?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + attributeErrors: Array; + attributeValue?: Maybe; + errors: Array; +}; + +export type AttributeValueUpdateInput = { + /** File content type. */ + contentType?: InputMaybe; + /** + * External ID of this attribute value. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** URL of the file attribute. Every time, a new value is created. */ + fileUrl?: InputMaybe; + /** Name of a value displayed in the interface. */ + name?: InputMaybe; + /** + * Represents the text of the attribute value, plain text without formating. + * + * DEPRECATED: this field will be removed in Saleor 4.0.The plain text attribute hasn't got predefined value, so can be specified only from instance that supports the given attribute. + */ + plainText?: InputMaybe; + /** + * Represents the text of the attribute value, includes formatting. + * + * Rich text format. For reference see https://editorjs.io/ + * + * DEPRECATED: this field will be removed in Saleor 4.0.The rich text attribute hasn't got predefined value, so can be specified only from instance that supports the given attribute. + */ + richText?: InputMaybe; + /** Represent value of the attribute value (e.g. color values for swatch attributes). */ + value?: InputMaybe; +}; + +/** + * Event sent when attribute value is updated. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type AttributeValueUpdated = Event & { + __typename?: 'AttributeValueUpdated'; + /** The attribute value the event relates to. */ + attributeValue?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type BulkAttributeValueInput = { + /** The boolean value of an attribute to resolve. If the passed value is non-existent, it will be created. */ + boolean?: InputMaybe; + /** ID of the selected attribute. */ + id?: InputMaybe; + /** The value or slug of an attribute to resolve. If the passed value is non-existent, it will be created. */ + values?: InputMaybe>; +}; + +export type BulkProductError = { + __typename?: 'BulkProductError'; + /** List of attributes IDs which causes the error. */ + attributes?: Maybe>; + /** List of channel IDs which causes the error. */ + channels?: Maybe>; + /** The error code. */ + code: ProductErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** Index of an input list item that caused the error. */ + index?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of attribute values IDs which causes the error. */ + values?: Maybe>; + /** List of warehouse IDs which causes the error. */ + warehouses?: Maybe>; +}; + +export type BulkStockError = { + __typename?: 'BulkStockError'; + /** List of attributes IDs which causes the error. */ + attributes?: Maybe>; + /** The error code. */ + code: ProductErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** Index of an input list item that caused the error. */ + index?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of attribute values IDs which causes the error. */ + values?: Maybe>; +}; + +/** + * Synchronous webhook for calculating checkout/order taxes. + * + * Added in Saleor 3.7. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CalculateTaxes = Event & { + __typename?: 'CalculateTaxes'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + taxBase: TaxableObject; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type CardInput = { + /** Payment method nonce, a token returned by the appropriate provider's SDK. */ + code: Scalars['String']; + /** Card security code. */ + cvc?: InputMaybe; + /** Information about currency and amount. */ + money: MoneyInput; +}; + +export type CatalogueInput = { + /** Categories related to the discount. */ + categories?: InputMaybe>; + /** Collections related to the discount. */ + collections?: InputMaybe>; + /** Products related to the discount. */ + products?: InputMaybe>; + /** + * Product variant related to the discount. + * + * Added in Saleor 3.1. + */ + variants?: InputMaybe>; +}; + +/** Represents a single category of products. Categories allow to organize products in a tree-hierarchies which can be used for navigation in the storefront. */ +export type Category = Node & ObjectWithMetadata & { + __typename?: 'Category'; + /** List of ancestors of the category. */ + ancestors?: Maybe; + backgroundImage?: Maybe; + /** List of children of the category. */ + children?: Maybe; + /** + * Description of the category. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: Maybe; + /** + * Description of the category. + * + * Rich text format. For reference see https://editorjs.io/ + * @deprecated This field will be removed in Saleor 4.0. Use the `description` field instead. + */ + descriptionJson?: Maybe; + id: Scalars['ID']; + level: Scalars['Int']; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + name: Scalars['String']; + parent?: Maybe; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** List of products in the category. Requires the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. */ + products?: Maybe; + seoDescription?: Maybe; + seoTitle?: Maybe; + slug: Scalars['String']; + /** Returns translated category fields for the given language code. */ + translation?: Maybe; +}; + + +/** Represents a single category of products. Categories allow to organize products in a tree-hierarchies which can be used for navigation in the storefront. */ +export type CategoryAncestorsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Represents a single category of products. Categories allow to organize products in a tree-hierarchies which can be used for navigation in the storefront. */ +export type CategoryBackgroundImageArgs = { + format?: InputMaybe; + size?: InputMaybe; +}; + + +/** Represents a single category of products. Categories allow to organize products in a tree-hierarchies which can be used for navigation in the storefront. */ +export type CategoryChildrenArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Represents a single category of products. Categories allow to organize products in a tree-hierarchies which can be used for navigation in the storefront. */ +export type CategoryMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a single category of products. Categories allow to organize products in a tree-hierarchies which can be used for navigation in the storefront. */ +export type CategoryMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents a single category of products. Categories allow to organize products in a tree-hierarchies which can be used for navigation in the storefront. */ +export type CategoryPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a single category of products. Categories allow to organize products in a tree-hierarchies which can be used for navigation in the storefront. */ +export type CategoryPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents a single category of products. Categories allow to organize products in a tree-hierarchies which can be used for navigation in the storefront. */ +export type CategoryProductsArgs = { + after?: InputMaybe; + before?: InputMaybe; + channel?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +/** Represents a single category of products. Categories allow to organize products in a tree-hierarchies which can be used for navigation in the storefront. */ +export type CategoryTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Deletes categories. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type CategoryBulkDelete = { + __typename?: 'CategoryBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +export type CategoryCountableConnection = { + __typename?: 'CategoryCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type CategoryCountableEdge = { + __typename?: 'CategoryCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: Category; +}; + +/** + * Creates a new category. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type CategoryCreate = { + __typename?: 'CategoryCreate'; + category?: Maybe; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +/** + * Event sent when new category is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CategoryCreated = Event & { + __typename?: 'CategoryCreated'; + /** The category the event relates to. */ + category?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Deletes a category. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type CategoryDelete = { + __typename?: 'CategoryDelete'; + category?: Maybe; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +/** + * Event sent when category is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CategoryDeleted = Event & { + __typename?: 'CategoryDeleted'; + /** The category the event relates to. */ + category?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type CategoryFilterInput = { + ids?: InputMaybe>; + metadata?: InputMaybe>; + search?: InputMaybe; + slugs?: InputMaybe>; +}; + +export type CategoryInput = { + /** Background image file. */ + backgroundImage?: InputMaybe; + /** Alt text for a product media. */ + backgroundImageAlt?: InputMaybe; + /** + * Category description. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: InputMaybe; + /** + * Fields required to update the category metadata. + * + * Added in Saleor 3.8. + */ + metadata?: InputMaybe>; + /** Category name. */ + name?: InputMaybe; + /** + * Fields required to update the category private metadata. + * + * Added in Saleor 3.8. + */ + privateMetadata?: InputMaybe>; + /** Search engine optimization fields. */ + seo?: InputMaybe; + /** Category slug. */ + slug?: InputMaybe; +}; + +export enum CategorySortField { + /** Sort categories by name. */ + Name = 'NAME', + /** Sort categories by product count. */ + ProductCount = 'PRODUCT_COUNT', + /** Sort categories by subcategory count. */ + SubcategoryCount = 'SUBCATEGORY_COUNT' +} + +export type CategorySortingInput = { + /** + * Specifies the channel in which to sort the data. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + */ + channel?: InputMaybe; + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort categories by the selected field. */ + field: CategorySortField; +}; + +export type CategoryTranslatableContent = Node & { + __typename?: 'CategoryTranslatableContent'; + /** + * Represents a single category of products. + * @deprecated This field will be removed in Saleor 4.0. Get model fields from the root level queries. + */ + category?: Maybe; + /** + * Description of the category. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: Maybe; + /** + * Description of the category. + * + * Rich text format. For reference see https://editorjs.io/ + * @deprecated This field will be removed in Saleor 4.0. Use the `description` field instead. + */ + descriptionJson?: Maybe; + id: Scalars['ID']; + name: Scalars['String']; + seoDescription?: Maybe; + seoTitle?: Maybe; + /** Returns translated category fields for the given language code. */ + translation?: Maybe; +}; + + +export type CategoryTranslatableContentTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Creates/updates translations for a category. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ +export type CategoryTranslate = { + __typename?: 'CategoryTranslate'; + category?: Maybe; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + translationErrors: Array; +}; + +export type CategoryTranslation = Node & { + __typename?: 'CategoryTranslation'; + /** + * Translated description of the category. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: Maybe; + /** + * Translated description of the category. + * + * Rich text format. For reference see https://editorjs.io/ + * @deprecated This field will be removed in Saleor 4.0. Use the `description` field instead. + */ + descriptionJson?: Maybe; + id: Scalars['ID']; + /** Translation language. */ + language: LanguageDisplay; + name?: Maybe; + seoDescription?: Maybe; + seoTitle?: Maybe; +}; + +/** + * Updates a category. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type CategoryUpdate = { + __typename?: 'CategoryUpdate'; + category?: Maybe; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +/** + * Event sent when category is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CategoryUpdated = Event & { + __typename?: 'CategoryUpdated'; + /** The category the event relates to. */ + category?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** Represents channel. */ +export type Channel = Node & { + __typename?: 'Channel'; + /** + * Shipping methods that are available for the channel. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + availableShippingMethodsPerCountry?: Maybe>; + /** + * List of shippable countries for the channel. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + countries?: Maybe>; + /** + * A currency that is assigned to the channel. + * + * Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + */ + currencyCode: Scalars['String']; + /** + * Default country for the channel. Default country can be used in checkout to determine the stock quantities or calculate taxes when the country was not explicitly provided. + * + * Added in Saleor 3.1. + * + * Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + */ + defaultCountry: CountryDisplay; + /** + * Whether a channel has associated orders. + * + * Requires one of the following permissions: MANAGE_CHANNELS. + */ + hasOrders: Scalars['Boolean']; + id: Scalars['ID']; + /** + * Whether the channel is active. + * + * Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + */ + isActive: Scalars['Boolean']; + /** + * Name of the channel. + * + * Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + */ + name: Scalars['String']; + /** Slug of the channel. */ + slug: Scalars['String']; + /** + * Define the stock setting for this channel. + * + * Added in Saleor 3.7. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + */ + stockSettings: StockSettings; + /** + * List of warehouses assigned to this channel. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + */ + warehouses: Array; +}; + + +/** Represents channel. */ +export type ChannelAvailableShippingMethodsPerCountryArgs = { + countries?: InputMaybe>; +}; + +/** + * Activate a channel. + * + * Requires one of the following permissions: MANAGE_CHANNELS. + */ +export type ChannelActivate = { + __typename?: 'ChannelActivate'; + /** Activated channel. */ + channel?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + channelErrors: Array; + errors: Array; +}; + +/** + * Creates new channel. + * + * Requires one of the following permissions: MANAGE_CHANNELS. + */ +export type ChannelCreate = { + __typename?: 'ChannelCreate'; + channel?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + channelErrors: Array; + errors: Array; +}; + +export type ChannelCreateInput = { + /** List of shipping zones to assign to the channel. */ + addShippingZones?: InputMaybe>; + /** + * List of warehouses to assign to the channel. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + addWarehouses?: InputMaybe>; + /** Currency of the channel. */ + currencyCode: Scalars['String']; + /** + * Default country for the channel. Default country can be used in checkout to determine the stock quantities or calculate taxes when the country was not explicitly provided. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + defaultCountry: CountryCode; + /** isActive flag. */ + isActive?: InputMaybe; + /** Name of the channel. */ + name: Scalars['String']; + /** Slug of the channel. */ + slug: Scalars['String']; + /** + * The channel stock settings. + * + * Added in Saleor 3.7. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + stockSettings?: InputMaybe; +}; + +/** + * Event sent when new channel is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ChannelCreated = Event & { + __typename?: 'ChannelCreated'; + /** The channel the event relates to. */ + channel?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Deactivate a channel. + * + * Requires one of the following permissions: MANAGE_CHANNELS. + */ +export type ChannelDeactivate = { + __typename?: 'ChannelDeactivate'; + /** Deactivated channel. */ + channel?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + channelErrors: Array; + errors: Array; +}; + +/** + * Delete a channel. Orders associated with the deleted channel will be moved to the target channel. Checkouts, product availability, and pricing will be removed. + * + * Requires one of the following permissions: MANAGE_CHANNELS. + */ +export type ChannelDelete = { + __typename?: 'ChannelDelete'; + channel?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + channelErrors: Array; + errors: Array; +}; + +export type ChannelDeleteInput = { + /** ID of channel to migrate orders from origin channel. */ + channelId: Scalars['ID']; +}; + +/** + * Event sent when channel is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ChannelDeleted = Event & { + __typename?: 'ChannelDeleted'; + /** The channel the event relates to. */ + channel?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type ChannelError = { + __typename?: 'ChannelError'; + /** The error code. */ + code: ChannelErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of shipping zone IDs which causes the error. */ + shippingZones?: Maybe>; + /** List of warehouses IDs which causes the error. */ + warehouses?: Maybe>; +}; + +/** An enumeration. */ +export enum ChannelErrorCode { + AlreadyExists = 'ALREADY_EXISTS', + ChannelsCurrencyMustBeTheSame = 'CHANNELS_CURRENCY_MUST_BE_THE_SAME', + ChannelWithOrders = 'CHANNEL_WITH_ORDERS', + DuplicatedInputItem = 'DUPLICATED_INPUT_ITEM', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND', + Required = 'REQUIRED', + Unique = 'UNIQUE' +} + +/** + * Reorder the warehouses of a channel. + * + * Added in Saleor 3.7. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_CHANNELS. + */ +export type ChannelReorderWarehouses = { + __typename?: 'ChannelReorderWarehouses'; + /** Channel within the warehouses are reordered. */ + channel?: Maybe; + errors: Array; +}; + +/** + * Event sent when channel status has changed. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ChannelStatusChanged = Event & { + __typename?: 'ChannelStatusChanged'; + /** The channel the event relates to. */ + channel?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Update a channel. + * + * Requires one of the following permissions: MANAGE_CHANNELS. + */ +export type ChannelUpdate = { + __typename?: 'ChannelUpdate'; + channel?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + channelErrors: Array; + errors: Array; +}; + +export type ChannelUpdateInput = { + /** List of shipping zones to assign to the channel. */ + addShippingZones?: InputMaybe>; + /** + * List of warehouses to assign to the channel. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + addWarehouses?: InputMaybe>; + /** + * Default country for the channel. Default country can be used in checkout to determine the stock quantities or calculate taxes when the country was not explicitly provided. + * + * Added in Saleor 3.1. + */ + defaultCountry?: InputMaybe; + /** isActive flag. */ + isActive?: InputMaybe; + /** Name of the channel. */ + name?: InputMaybe; + /** List of shipping zones to unassign from the channel. */ + removeShippingZones?: InputMaybe>; + /** + * List of warehouses to unassign from the channel. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + removeWarehouses?: InputMaybe>; + /** Slug of the channel. */ + slug?: InputMaybe; + /** + * The channel stock settings. + * + * Added in Saleor 3.7. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + stockSettings?: InputMaybe; +}; + +/** + * Event sent when channel is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ChannelUpdated = Event & { + __typename?: 'ChannelUpdated'; + /** The channel the event relates to. */ + channel?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** Checkout object. */ +export type Checkout = Node & ObjectWithMetadata & { + __typename?: 'Checkout'; + /** + * Collection points that can be used for this order. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + availableCollectionPoints: Array; + /** List of available payment gateways. */ + availablePaymentGateways: Array; + /** + * Shipping methods that can be used with this checkout. + * @deprecated This field will be removed in Saleor 4.0. Use `shippingMethods` instead. + */ + availableShippingMethods: Array; + billingAddress?: Maybe
; + channel: Channel; + created: Scalars['DateTime']; + /** + * The delivery method selected for this checkout. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + deliveryMethod?: Maybe; + discount?: Maybe; + discountName?: Maybe; + /** + * Determines whether checkout prices should include taxes when displayed in a storefront. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + displayGrossPrices: Scalars['Boolean']; + /** Email of a customer. */ + email?: Maybe; + /** List of gift cards associated with this checkout. */ + giftCards: Array; + id: Scalars['ID']; + /** Returns True, if checkout requires shipping. */ + isShippingRequired: Scalars['Boolean']; + /** Checkout language code. */ + languageCode: LanguageCodeEnum; + lastChange: Scalars['DateTime']; + /** A list of checkout lines, each containing information about an item in the checkout. */ + lines: Array; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + note: Scalars['String']; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** The number of items purchased. */ + quantity: Scalars['Int']; + shippingAddress?: Maybe
; + /** + * The shipping method related with checkout. + * @deprecated This field will be removed in Saleor 4.0. Use `deliveryMethod` instead. + */ + shippingMethod?: Maybe; + /** Shipping methods that can be used with this checkout. */ + shippingMethods: Array; + /** The price of the shipping, with all the taxes included. */ + shippingPrice: TaxedMoney; + /** + * Date when oldest stock reservation for this checkout expires or null if no stock is reserved. + * + * Added in Saleor 3.1. + */ + stockReservationExpires?: Maybe; + /** The price of the checkout before shipping, with taxes included. */ + subtotalPrice: TaxedMoney; + /** + * Returns True if checkout has to be exempt from taxes. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + taxExemption: Scalars['Boolean']; + /** The checkout's token. */ + token: Scalars['UUID']; + /** The sum of the the checkout line prices, with all the taxes,shipping costs, and discounts included. */ + totalPrice: TaxedMoney; + /** + * List of transactions for the checkout. Requires one of the following permissions: MANAGE_CHECKOUTS, HANDLE_PAYMENTS. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + transactions?: Maybe>; + translatedDiscountName?: Maybe; + user?: Maybe; + voucherCode?: Maybe; +}; + + +/** Checkout object. */ +export type CheckoutMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Checkout object. */ +export type CheckoutMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Checkout object. */ +export type CheckoutPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Checkout object. */ +export type CheckoutPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +/** Adds a gift card or a voucher to a checkout. */ +export type CheckoutAddPromoCode = { + __typename?: 'CheckoutAddPromoCode'; + /** The checkout with the added gift card or voucher. */ + checkout?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + checkoutErrors: Array; + errors: Array; +}; + +export type CheckoutAddressValidationRules = { + /** Determines if an error should be raised when the provided address doesn't match the expected format. Example: using letters for postal code when the numbers are expected. */ + checkFieldsFormat?: InputMaybe; + /** Determines if an error should be raised when the provided address doesn't have all the required fields. The list of required fields is dynamic and depends on the country code (use the `addressValidationRules` query to fetch them). Note: country code is mandatory for all addresses regardless of the rules provided in this input. */ + checkRequiredFields?: InputMaybe; + /** Determines if Saleor should apply normalization on address fields. Example: converting city field to uppercase letters. */ + enableFieldsNormalization?: InputMaybe; +}; + +/** Update billing address in the existing checkout. */ +export type CheckoutBillingAddressUpdate = { + __typename?: 'CheckoutBillingAddressUpdate'; + /** An updated checkout. */ + checkout?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + checkoutErrors: Array; + errors: Array; +}; + +/** Completes the checkout. As a result a new order is created and a payment charge is made. This action requires a successful payment before it can be performed. In case additional confirmation step as 3D secure is required confirmationNeeded flag will be set to True and no order created until payment is confirmed with second call of this mutation. */ +export type CheckoutComplete = { + __typename?: 'CheckoutComplete'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + checkoutErrors: Array; + /** Confirmation data used to process additional authorization steps. */ + confirmationData?: Maybe; + /** Set to true if payment needs to be confirmed before checkout is complete. */ + confirmationNeeded: Scalars['Boolean']; + errors: Array; + /** Placed order. */ + order?: Maybe; +}; + +export type CheckoutCountableConnection = { + __typename?: 'CheckoutCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type CheckoutCountableEdge = { + __typename?: 'CheckoutCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: Checkout; +}; + +/** Create a new checkout. */ +export type CheckoutCreate = { + __typename?: 'CheckoutCreate'; + checkout?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + checkoutErrors: Array; + /** + * Whether the checkout was created or the current active one was returned. Refer to checkoutLinesAdd and checkoutLinesUpdate to merge a cart with an active checkout. + * @deprecated This field will be removed in Saleor 4.0. Always returns `true`. + */ + created?: Maybe; + errors: Array; +}; + +export type CheckoutCreateInput = { + /** Billing address of the customer. */ + billingAddress?: InputMaybe; + /** Slug of a channel in which to create a checkout. */ + channel?: InputMaybe; + /** The customer's email address. */ + email?: InputMaybe; + /** Checkout language code. */ + languageCode?: InputMaybe; + /** A list of checkout lines, each containing information about an item in the checkout. */ + lines: Array; + /** The mailing address to where the checkout will be shipped. Note: the address will be ignored if the checkout doesn't contain shippable items. */ + shippingAddress?: InputMaybe; + /** + * The checkout validation rules that can be changed. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + validationRules?: InputMaybe; +}; + +/** + * Event sent when new checkout is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CheckoutCreated = Event & { + __typename?: 'CheckoutCreated'; + /** The checkout the event relates to. */ + checkout?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Sets the customer as the owner of the checkout. + * + * Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_USER. + */ +export type CheckoutCustomerAttach = { + __typename?: 'CheckoutCustomerAttach'; + /** An updated checkout. */ + checkout?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + checkoutErrors: Array; + errors: Array; +}; + +/** + * Removes the user assigned as the owner of the checkout. + * + * Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_USER. + */ +export type CheckoutCustomerDetach = { + __typename?: 'CheckoutCustomerDetach'; + /** An updated checkout. */ + checkout?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + checkoutErrors: Array; + errors: Array; +}; + +/** + * Updates the delivery method (shipping method or pick up point) of the checkout. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CheckoutDeliveryMethodUpdate = { + __typename?: 'CheckoutDeliveryMethodUpdate'; + /** An updated checkout. */ + checkout?: Maybe; + errors: Array; +}; + +/** Updates email address in the existing checkout object. */ +export type CheckoutEmailUpdate = { + __typename?: 'CheckoutEmailUpdate'; + /** An updated checkout. */ + checkout?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + checkoutErrors: Array; + errors: Array; +}; + +export type CheckoutError = { + __typename?: 'CheckoutError'; + /** A type of address that causes the error. */ + addressType?: Maybe; + /** The error code. */ + code: CheckoutErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** List of line Ids which cause the error. */ + lines?: Maybe>; + /** The error message. */ + message?: Maybe; + /** List of varint IDs which causes the error. */ + variants?: Maybe>; +}; + +/** An enumeration. */ +export enum CheckoutErrorCode { + BillingAddressNotSet = 'BILLING_ADDRESS_NOT_SET', + ChannelInactive = 'CHANNEL_INACTIVE', + CheckoutNotFullyPaid = 'CHECKOUT_NOT_FULLY_PAID', + DeliveryMethodNotApplicable = 'DELIVERY_METHOD_NOT_APPLICABLE', + EmailNotSet = 'EMAIL_NOT_SET', + GiftCardNotApplicable = 'GIFT_CARD_NOT_APPLICABLE', + GraphqlError = 'GRAPHQL_ERROR', + InactivePayment = 'INACTIVE_PAYMENT', + InsufficientStock = 'INSUFFICIENT_STOCK', + Invalid = 'INVALID', + InvalidShippingMethod = 'INVALID_SHIPPING_METHOD', + MissingChannelSlug = 'MISSING_CHANNEL_SLUG', + NotFound = 'NOT_FOUND', + NoLines = 'NO_LINES', + PaymentError = 'PAYMENT_ERROR', + ProductNotPublished = 'PRODUCT_NOT_PUBLISHED', + ProductUnavailableForPurchase = 'PRODUCT_UNAVAILABLE_FOR_PURCHASE', + QuantityGreaterThanLimit = 'QUANTITY_GREATER_THAN_LIMIT', + Required = 'REQUIRED', + ShippingAddressNotSet = 'SHIPPING_ADDRESS_NOT_SET', + ShippingMethodNotApplicable = 'SHIPPING_METHOD_NOT_APPLICABLE', + ShippingMethodNotSet = 'SHIPPING_METHOD_NOT_SET', + ShippingNotRequired = 'SHIPPING_NOT_REQUIRED', + TaxError = 'TAX_ERROR', + UnavailableVariantInChannel = 'UNAVAILABLE_VARIANT_IN_CHANNEL', + Unique = 'UNIQUE', + VoucherNotApplicable = 'VOUCHER_NOT_APPLICABLE', + ZeroQuantity = 'ZERO_QUANTITY' +} + +export type CheckoutFilterInput = { + channels?: InputMaybe>; + created?: InputMaybe; + customer?: InputMaybe; + metadata?: InputMaybe>; + search?: InputMaybe; +}; + +/** + * Filter shipping methods for checkout. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CheckoutFilterShippingMethods = Event & { + __typename?: 'CheckoutFilterShippingMethods'; + /** The checkout the event relates to. */ + checkout?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** + * Shipping methods that can be used with this checkout. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + shippingMethods?: Maybe>; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** Update language code in the existing checkout. */ +export type CheckoutLanguageCodeUpdate = { + __typename?: 'CheckoutLanguageCodeUpdate'; + /** An updated checkout. */ + checkout?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + checkoutErrors: Array; + errors: Array; +}; + +/** Represents an item in the checkout. */ +export type CheckoutLine = Node & ObjectWithMetadata & { + __typename?: 'CheckoutLine'; + id: Scalars['ID']; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + quantity: Scalars['Int']; + /** Indicates whether the item need to be delivered. */ + requiresShipping: Scalars['Boolean']; + /** The sum of the checkout line price, taxes and discounts. */ + totalPrice: TaxedMoney; + /** The sum of the checkout line price, without discounts. */ + undiscountedTotalPrice: Money; + /** The unit price of the checkout line, without discounts. */ + undiscountedUnitPrice: Money; + /** The unit price of the checkout line, with taxes and discounts. */ + unitPrice: TaxedMoney; + variant: ProductVariant; +}; + + +/** Represents an item in the checkout. */ +export type CheckoutLineMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents an item in the checkout. */ +export type CheckoutLineMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents an item in the checkout. */ +export type CheckoutLinePrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents an item in the checkout. */ +export type CheckoutLinePrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +export type CheckoutLineCountableConnection = { + __typename?: 'CheckoutLineCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type CheckoutLineCountableEdge = { + __typename?: 'CheckoutLineCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: CheckoutLine; +}; + +/** Deletes a CheckoutLine. */ +export type CheckoutLineDelete = { + __typename?: 'CheckoutLineDelete'; + /** An updated checkout. */ + checkout?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + checkoutErrors: Array; + errors: Array; +}; + +export type CheckoutLineInput = { + /** + * Flag that allow force splitting the same variant into multiple lines by skipping the matching logic. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + forceNewLine?: InputMaybe; + /** + * Fields required to update the object's metadata. + * + * Added in Saleor 3.8. + */ + metadata?: InputMaybe>; + /** + * Custom price of the item. Can be set only by apps with `HANDLE_CHECKOUTS` permission. When the line with the same variant will be provided multiple times, the last price will be used. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + price?: InputMaybe; + /** The number of items purchased. */ + quantity: Scalars['Int']; + /** ID of the product variant. */ + variantId: Scalars['ID']; +}; + +export type CheckoutLineUpdateInput = { + /** + * ID of the line. + * + * Added in Saleor 3.6. + */ + lineId?: InputMaybe; + /** + * Custom price of the item. Can be set only by apps with `HANDLE_CHECKOUTS` permission. When the line with the same variant will be provided multiple times, the last price will be used. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + price?: InputMaybe; + /** The number of items purchased. Optional for apps, required for any other users. */ + quantity?: InputMaybe; + /** + * ID of the product variant. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use `lineId` instead. + */ + variantId?: InputMaybe; +}; + +/** Adds a checkout line to the existing checkout.If line was already in checkout, its quantity will be increased. */ +export type CheckoutLinesAdd = { + __typename?: 'CheckoutLinesAdd'; + /** An updated checkout. */ + checkout?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + checkoutErrors: Array; + errors: Array; +}; + +/** Deletes checkout lines. */ +export type CheckoutLinesDelete = { + __typename?: 'CheckoutLinesDelete'; + /** An updated checkout. */ + checkout?: Maybe; + errors: Array; +}; + +/** Updates checkout line in the existing checkout. */ +export type CheckoutLinesUpdate = { + __typename?: 'CheckoutLinesUpdate'; + /** An updated checkout. */ + checkout?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + checkoutErrors: Array; + errors: Array; +}; + +/** + * Event sent when checkout metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CheckoutMetadataUpdated = Event & { + __typename?: 'CheckoutMetadataUpdated'; + /** The checkout the event relates to. */ + checkout?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** Create a new payment for given checkout. */ +export type CheckoutPaymentCreate = { + __typename?: 'CheckoutPaymentCreate'; + /** Related checkout object. */ + checkout?: Maybe; + errors: Array; + /** A newly created payment. */ + payment?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + paymentErrors: Array; +}; + +/** Remove a gift card or a voucher from a checkout. */ +export type CheckoutRemovePromoCode = { + __typename?: 'CheckoutRemovePromoCode'; + /** The checkout with the removed gift card or voucher. */ + checkout?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + checkoutErrors: Array; + errors: Array; +}; + +/** Update shipping address in the existing checkout. */ +export type CheckoutShippingAddressUpdate = { + __typename?: 'CheckoutShippingAddressUpdate'; + /** An updated checkout. */ + checkout?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + checkoutErrors: Array; + errors: Array; +}; + +/** Updates the shipping method of the checkout. */ +export type CheckoutShippingMethodUpdate = { + __typename?: 'CheckoutShippingMethodUpdate'; + /** An updated checkout. */ + checkout?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + checkoutErrors: Array; + errors: Array; +}; + +export enum CheckoutSortField { + /** Sort checkouts by creation date. */ + CreationDate = 'CREATION_DATE', + /** Sort checkouts by customer. */ + Customer = 'CUSTOMER', + /** Sort checkouts by payment. */ + Payment = 'PAYMENT' +} + +export type CheckoutSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort checkouts by the selected field. */ + field: CheckoutSortField; +}; + +/** + * Event sent when checkout is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CheckoutUpdated = Event & { + __typename?: 'CheckoutUpdated'; + /** The checkout the event relates to. */ + checkout?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type CheckoutValidationRules = { + /** The validation rules that can be applied to provided billing address data. */ + billingAddress?: InputMaybe; + /** The validation rules that can be applied to provided shipping address data. */ + shippingAddress?: InputMaybe; +}; + +export type ChoiceValue = { + __typename?: 'ChoiceValue'; + raw?: Maybe; + verbose?: Maybe; +}; + +/** Represents a collection of products. */ +export type Collection = Node & ObjectWithMetadata & { + __typename?: 'Collection'; + backgroundImage?: Maybe; + /** Channel given to retrieve this collection. Also used by federation gateway to resolve this object in a federated query. */ + channel?: Maybe; + /** + * List of channels in which the collection is available. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + channelListings?: Maybe>; + /** + * Description of the collection. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: Maybe; + /** + * Description of the collection. + * + * Rich text format. For reference see https://editorjs.io/ + * @deprecated This field will be removed in Saleor 4.0. Use the `description` field instead. + */ + descriptionJson?: Maybe; + id: Scalars['ID']; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + name: Scalars['String']; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** List of products in this collection. */ + products?: Maybe; + seoDescription?: Maybe; + seoTitle?: Maybe; + slug: Scalars['String']; + /** Returns translated collection fields for the given language code. */ + translation?: Maybe; +}; + + +/** Represents a collection of products. */ +export type CollectionBackgroundImageArgs = { + format?: InputMaybe; + size?: InputMaybe; +}; + + +/** Represents a collection of products. */ +export type CollectionMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a collection of products. */ +export type CollectionMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents a collection of products. */ +export type CollectionPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a collection of products. */ +export type CollectionPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents a collection of products. */ +export type CollectionProductsArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +/** Represents a collection of products. */ +export type CollectionTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Adds products to a collection. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type CollectionAddProducts = { + __typename?: 'CollectionAddProducts'; + /** Collection to which products will be added. */ + collection?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + collectionErrors: Array; + errors: Array; +}; + +/** + * Deletes collections. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type CollectionBulkDelete = { + __typename?: 'CollectionBulkDelete'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + collectionErrors: Array; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; +}; + +/** Represents collection channel listing. */ +export type CollectionChannelListing = Node & { + __typename?: 'CollectionChannelListing'; + channel: Channel; + id: Scalars['ID']; + isPublished: Scalars['Boolean']; + /** @deprecated This field will be removed in Saleor 4.0. Use the `publishedAt` field to fetch the publication date. */ + publicationDate?: Maybe; + /** + * The collection publication date. + * + * Added in Saleor 3.3. + */ + publishedAt?: Maybe; +}; + +export type CollectionChannelListingError = { + __typename?: 'CollectionChannelListingError'; + /** List of attributes IDs which causes the error. */ + attributes?: Maybe>; + /** List of channels IDs which causes the error. */ + channels?: Maybe>; + /** The error code. */ + code: ProductErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of attribute values IDs which causes the error. */ + values?: Maybe>; +}; + +/** + * Manage collection's availability in channels. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type CollectionChannelListingUpdate = { + __typename?: 'CollectionChannelListingUpdate'; + /** An updated collection instance. */ + collection?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + collectionChannelListingErrors: Array; + errors: Array; +}; + +export type CollectionChannelListingUpdateInput = { + /** List of channels to which the collection should be assigned. */ + addChannels?: InputMaybe>; + /** List of channels from which the collection should be unassigned. */ + removeChannels?: InputMaybe>; +}; + +export type CollectionCountableConnection = { + __typename?: 'CollectionCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type CollectionCountableEdge = { + __typename?: 'CollectionCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: Collection; +}; + +/** + * Creates a new collection. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type CollectionCreate = { + __typename?: 'CollectionCreate'; + collection?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + collectionErrors: Array; + errors: Array; +}; + +export type CollectionCreateInput = { + /** Background image file. */ + backgroundImage?: InputMaybe; + /** Alt text for an image. */ + backgroundImageAlt?: InputMaybe; + /** + * Description of the collection. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: InputMaybe; + /** Informs whether a collection is published. */ + isPublished?: InputMaybe; + /** + * Fields required to update the collection metadata. + * + * Added in Saleor 3.8. + */ + metadata?: InputMaybe>; + /** Name of the collection. */ + name?: InputMaybe; + /** + * Fields required to update the collection private metadata. + * + * Added in Saleor 3.8. + */ + privateMetadata?: InputMaybe>; + /** List of products to be added to the collection. */ + products?: InputMaybe>; + /** + * Publication date. ISO 8601 standard. + * + * DEPRECATED: this field will be removed in Saleor 4.0. + */ + publicationDate?: InputMaybe; + /** Search engine optimization fields. */ + seo?: InputMaybe; + /** Slug of the collection. */ + slug?: InputMaybe; +}; + +/** + * Event sent when new collection is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CollectionCreated = Event & { + __typename?: 'CollectionCreated'; + /** The collection the event relates to. */ + collection?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when new collection is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CollectionCreatedCollectionArgs = { + channel?: InputMaybe; +}; + +/** + * Deletes a collection. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type CollectionDelete = { + __typename?: 'CollectionDelete'; + collection?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + collectionErrors: Array; + errors: Array; +}; + +/** + * Event sent when collection is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CollectionDeleted = Event & { + __typename?: 'CollectionDeleted'; + /** The collection the event relates to. */ + collection?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when collection is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CollectionDeletedCollectionArgs = { + channel?: InputMaybe; +}; + +export type CollectionError = { + __typename?: 'CollectionError'; + /** The error code. */ + code: CollectionErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of products IDs which causes the error. */ + products?: Maybe>; +}; + +/** An enumeration. */ +export enum CollectionErrorCode { + CannotManageProductWithoutVariant = 'CANNOT_MANAGE_PRODUCT_WITHOUT_VARIANT', + DuplicatedInputItem = 'DUPLICATED_INPUT_ITEM', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND', + Required = 'REQUIRED', + Unique = 'UNIQUE' +} + +export type CollectionFilterInput = { + /** + * Specifies the channel by which the data should be filtered. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + */ + channel?: InputMaybe; + ids?: InputMaybe>; + metadata?: InputMaybe>; + published?: InputMaybe; + search?: InputMaybe; + slugs?: InputMaybe>; +}; + +export type CollectionInput = { + /** Background image file. */ + backgroundImage?: InputMaybe; + /** Alt text for an image. */ + backgroundImageAlt?: InputMaybe; + /** + * Description of the collection. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: InputMaybe; + /** Informs whether a collection is published. */ + isPublished?: InputMaybe; + /** + * Fields required to update the collection metadata. + * + * Added in Saleor 3.8. + */ + metadata?: InputMaybe>; + /** Name of the collection. */ + name?: InputMaybe; + /** + * Fields required to update the collection private metadata. + * + * Added in Saleor 3.8. + */ + privateMetadata?: InputMaybe>; + /** + * Publication date. ISO 8601 standard. + * + * DEPRECATED: this field will be removed in Saleor 4.0. + */ + publicationDate?: InputMaybe; + /** Search engine optimization fields. */ + seo?: InputMaybe; + /** Slug of the collection. */ + slug?: InputMaybe; +}; + +/** + * Event sent when collection metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CollectionMetadataUpdated = Event & { + __typename?: 'CollectionMetadataUpdated'; + /** The collection the event relates to. */ + collection?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when collection metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CollectionMetadataUpdatedCollectionArgs = { + channel?: InputMaybe; +}; + +export enum CollectionPublished { + Hidden = 'HIDDEN', + Published = 'PUBLISHED' +} + +/** + * Remove products from a collection. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type CollectionRemoveProducts = { + __typename?: 'CollectionRemoveProducts'; + /** Collection from which products will be removed. */ + collection?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + collectionErrors: Array; + errors: Array; +}; + +/** + * Reorder the products of a collection. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type CollectionReorderProducts = { + __typename?: 'CollectionReorderProducts'; + /** Collection from which products are reordered. */ + collection?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + collectionErrors: Array; + errors: Array; +}; + +export enum CollectionSortField { + /** + * Sort collections by availability. + * + * This option requires a channel filter to work as the values can vary between channels. + */ + Availability = 'AVAILABILITY', + /** Sort collections by name. */ + Name = 'NAME', + /** Sort collections by product count. */ + ProductCount = 'PRODUCT_COUNT', + /** + * Sort collections by publication date. + * + * This option requires a channel filter to work as the values can vary between channels. + */ + PublicationDate = 'PUBLICATION_DATE', + /** + * Sort collections by publication date. + * + * This option requires a channel filter to work as the values can vary between channels. + */ + PublishedAt = 'PUBLISHED_AT' +} + +export type CollectionSortingInput = { + /** + * Specifies the channel in which to sort the data. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + */ + channel?: InputMaybe; + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort collections by the selected field. */ + field: CollectionSortField; +}; + +export type CollectionTranslatableContent = Node & { + __typename?: 'CollectionTranslatableContent'; + /** + * Represents a collection of products. + * @deprecated This field will be removed in Saleor 4.0. Get model fields from the root level queries. + */ + collection?: Maybe; + /** + * Description of the collection. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: Maybe; + /** + * Description of the collection. + * + * Rich text format. For reference see https://editorjs.io/ + * @deprecated This field will be removed in Saleor 4.0. Use the `description` field instead. + */ + descriptionJson?: Maybe; + id: Scalars['ID']; + name: Scalars['String']; + seoDescription?: Maybe; + seoTitle?: Maybe; + /** Returns translated collection fields for the given language code. */ + translation?: Maybe; +}; + + +export type CollectionTranslatableContentTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Creates/updates translations for a collection. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ +export type CollectionTranslate = { + __typename?: 'CollectionTranslate'; + collection?: Maybe; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + translationErrors: Array; +}; + +export type CollectionTranslation = Node & { + __typename?: 'CollectionTranslation'; + /** + * Translated description of the collection. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: Maybe; + /** + * Translated description of the collection. + * + * Rich text format. For reference see https://editorjs.io/ + * @deprecated This field will be removed in Saleor 4.0. Use the `description` field instead. + */ + descriptionJson?: Maybe; + id: Scalars['ID']; + /** Translation language. */ + language: LanguageDisplay; + name?: Maybe; + seoDescription?: Maybe; + seoTitle?: Maybe; +}; + +/** + * Updates a collection. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type CollectionUpdate = { + __typename?: 'CollectionUpdate'; + collection?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + collectionErrors: Array; + errors: Array; +}; + +/** + * Event sent when collection is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CollectionUpdated = Event & { + __typename?: 'CollectionUpdated'; + /** The collection the event relates to. */ + collection?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when collection is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CollectionUpdatedCollectionArgs = { + channel?: InputMaybe; +}; + +/** Stores information about a single configuration field. */ +export type ConfigurationItem = { + __typename?: 'ConfigurationItem'; + /** Help text for the field. */ + helpText?: Maybe; + /** Label for the field. */ + label?: Maybe; + /** Name of the field. */ + name: Scalars['String']; + /** Type of the field. */ + type?: Maybe; + /** Current value of the field. */ + value?: Maybe; +}; + +export type ConfigurationItemInput = { + /** Name of the field to update. */ + name: Scalars['String']; + /** Value of the given field to update. */ + value?: InputMaybe; +}; + +/** An enumeration. */ +export enum ConfigurationTypeFieldEnum { + Boolean = 'BOOLEAN', + Multiline = 'MULTILINE', + Output = 'OUTPUT', + Password = 'PASSWORD', + Secret = 'SECRET', + Secretmultiline = 'SECRETMULTILINE', + String = 'STRING' +} + +/** Confirm user account with token sent by email during registration. */ +export type ConfirmAccount = { + __typename?: 'ConfirmAccount'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + /** An activated user account. */ + user?: Maybe; +}; + +/** + * Confirm the email change of the logged-in user. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ +export type ConfirmEmailChange = { + __typename?: 'ConfirmEmailChange'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + /** A user instance with a new email. */ + user?: Maybe; +}; + +/** An enumeration. */ +export enum CountryCode { + Ad = 'AD', + Ae = 'AE', + Af = 'AF', + Ag = 'AG', + Ai = 'AI', + Al = 'AL', + Am = 'AM', + Ao = 'AO', + Aq = 'AQ', + Ar = 'AR', + As = 'AS', + At = 'AT', + Au = 'AU', + Aw = 'AW', + Ax = 'AX', + Az = 'AZ', + Ba = 'BA', + Bb = 'BB', + Bd = 'BD', + Be = 'BE', + Bf = 'BF', + Bg = 'BG', + Bh = 'BH', + Bi = 'BI', + Bj = 'BJ', + Bl = 'BL', + Bm = 'BM', + Bn = 'BN', + Bo = 'BO', + Bq = 'BQ', + Br = 'BR', + Bs = 'BS', + Bt = 'BT', + Bv = 'BV', + Bw = 'BW', + By = 'BY', + Bz = 'BZ', + Ca = 'CA', + Cc = 'CC', + Cd = 'CD', + Cf = 'CF', + Cg = 'CG', + Ch = 'CH', + Ci = 'CI', + Ck = 'CK', + Cl = 'CL', + Cm = 'CM', + Cn = 'CN', + Co = 'CO', + Cr = 'CR', + Cu = 'CU', + Cv = 'CV', + Cw = 'CW', + Cx = 'CX', + Cy = 'CY', + Cz = 'CZ', + De = 'DE', + Dj = 'DJ', + Dk = 'DK', + Dm = 'DM', + Do = 'DO', + Dz = 'DZ', + Ec = 'EC', + Ee = 'EE', + Eg = 'EG', + Eh = 'EH', + Er = 'ER', + Es = 'ES', + Et = 'ET', + Eu = 'EU', + Fi = 'FI', + Fj = 'FJ', + Fk = 'FK', + Fm = 'FM', + Fo = 'FO', + Fr = 'FR', + Ga = 'GA', + Gb = 'GB', + Gd = 'GD', + Ge = 'GE', + Gf = 'GF', + Gg = 'GG', + Gh = 'GH', + Gi = 'GI', + Gl = 'GL', + Gm = 'GM', + Gn = 'GN', + Gp = 'GP', + Gq = 'GQ', + Gr = 'GR', + Gs = 'GS', + Gt = 'GT', + Gu = 'GU', + Gw = 'GW', + Gy = 'GY', + Hk = 'HK', + Hm = 'HM', + Hn = 'HN', + Hr = 'HR', + Ht = 'HT', + Hu = 'HU', + Id = 'ID', + Ie = 'IE', + Il = 'IL', + Im = 'IM', + In = 'IN', + Io = 'IO', + Iq = 'IQ', + Ir = 'IR', + Is = 'IS', + It = 'IT', + Je = 'JE', + Jm = 'JM', + Jo = 'JO', + Jp = 'JP', + Ke = 'KE', + Kg = 'KG', + Kh = 'KH', + Ki = 'KI', + Km = 'KM', + Kn = 'KN', + Kp = 'KP', + Kr = 'KR', + Kw = 'KW', + Ky = 'KY', + Kz = 'KZ', + La = 'LA', + Lb = 'LB', + Lc = 'LC', + Li = 'LI', + Lk = 'LK', + Lr = 'LR', + Ls = 'LS', + Lt = 'LT', + Lu = 'LU', + Lv = 'LV', + Ly = 'LY', + Ma = 'MA', + Mc = 'MC', + Md = 'MD', + Me = 'ME', + Mf = 'MF', + Mg = 'MG', + Mh = 'MH', + Mk = 'MK', + Ml = 'ML', + Mm = 'MM', + Mn = 'MN', + Mo = 'MO', + Mp = 'MP', + Mq = 'MQ', + Mr = 'MR', + Ms = 'MS', + Mt = 'MT', + Mu = 'MU', + Mv = 'MV', + Mw = 'MW', + Mx = 'MX', + My = 'MY', + Mz = 'MZ', + Na = 'NA', + Nc = 'NC', + Ne = 'NE', + Nf = 'NF', + Ng = 'NG', + Ni = 'NI', + Nl = 'NL', + No = 'NO', + Np = 'NP', + Nr = 'NR', + Nu = 'NU', + Nz = 'NZ', + Om = 'OM', + Pa = 'PA', + Pe = 'PE', + Pf = 'PF', + Pg = 'PG', + Ph = 'PH', + Pk = 'PK', + Pl = 'PL', + Pm = 'PM', + Pn = 'PN', + Pr = 'PR', + Ps = 'PS', + Pt = 'PT', + Pw = 'PW', + Py = 'PY', + Qa = 'QA', + Re = 'RE', + Ro = 'RO', + Rs = 'RS', + Ru = 'RU', + Rw = 'RW', + Sa = 'SA', + Sb = 'SB', + Sc = 'SC', + Sd = 'SD', + Se = 'SE', + Sg = 'SG', + Sh = 'SH', + Si = 'SI', + Sj = 'SJ', + Sk = 'SK', + Sl = 'SL', + Sm = 'SM', + Sn = 'SN', + So = 'SO', + Sr = 'SR', + Ss = 'SS', + St = 'ST', + Sv = 'SV', + Sx = 'SX', + Sy = 'SY', + Sz = 'SZ', + Tc = 'TC', + Td = 'TD', + Tf = 'TF', + Tg = 'TG', + Th = 'TH', + Tj = 'TJ', + Tk = 'TK', + Tl = 'TL', + Tm = 'TM', + Tn = 'TN', + To = 'TO', + Tr = 'TR', + Tt = 'TT', + Tv = 'TV', + Tw = 'TW', + Tz = 'TZ', + Ua = 'UA', + Ug = 'UG', + Um = 'UM', + Us = 'US', + Uy = 'UY', + Uz = 'UZ', + Va = 'VA', + Vc = 'VC', + Ve = 'VE', + Vg = 'VG', + Vi = 'VI', + Vn = 'VN', + Vu = 'VU', + Wf = 'WF', + Ws = 'WS', + Ye = 'YE', + Yt = 'YT', + Za = 'ZA', + Zm = 'ZM', + Zw = 'ZW' +} + +export type CountryDisplay = { + __typename?: 'CountryDisplay'; + /** Country code. */ + code: Scalars['String']; + /** Country name. */ + country: Scalars['String']; + /** + * Country tax. + * @deprecated This field will be removed in Saleor 4.0. Use `TaxClassCountryRate` type to manage tax rates per country. + */ + vat?: Maybe; +}; + +export type CountryFilterInput = { + /** Boolean for filtering countries by having shipping zone assigned.If 'true', return countries with shipping zone assigned.If 'false', return countries without any shipping zone assigned.If the argument is not provided (null), return all countries. */ + attachedToShippingZones?: InputMaybe; +}; + +export type CountryRateInput = { + /** Country in which this rate applies. */ + countryCode: CountryCode; + /** Tax rate value provided as percentage. Example: provide `23` to represent `23%` tax rate. */ + rate: Scalars['Float']; +}; + +export type CountryRateUpdateInput = { + /** Country in which this rate applies. */ + countryCode: CountryCode; + /** Tax rate value provided as percentage. Example: provide `23` to represent `23%` tax rate. Provide `null` to remove the particular rate. */ + rate?: InputMaybe; +}; + +/** Create JWT token. */ +export type CreateToken = { + __typename?: 'CreateToken'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + /** CSRF token required to re-generate access token. */ + csrfToken?: Maybe; + errors: Array; + /** JWT refresh token, required to re-generate access token. */ + refreshToken?: Maybe; + /** JWT token, required to authenticate. */ + token?: Maybe; + /** A user instance. */ + user?: Maybe; +}; + +export type CreditCard = { + __typename?: 'CreditCard'; + /** Card brand. */ + brand: Scalars['String']; + /** Two-digit number representing the card’s expiration month. */ + expMonth?: Maybe; + /** Four-digit number representing the card’s expiration year. */ + expYear?: Maybe; + /** First 4 digits of the card number. */ + firstDigits?: Maybe; + /** Last 4 digits of the card number. */ + lastDigits: Scalars['String']; +}; + +/** + * Deletes customers. + * + * Requires one of the following permissions: MANAGE_USERS. + */ +export type CustomerBulkDelete = { + __typename?: 'CustomerBulkDelete'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; +}; + +/** + * Creates a new customer. + * + * Requires one of the following permissions: MANAGE_USERS. + */ +export type CustomerCreate = { + __typename?: 'CustomerCreate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + user?: Maybe; +}; + +/** + * Event sent when new customer user is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CustomerCreated = Event & { + __typename?: 'CustomerCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The user the event relates to. */ + user?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Deletes a customer. + * + * Requires one of the following permissions: MANAGE_USERS. + */ +export type CustomerDelete = { + __typename?: 'CustomerDelete'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + user?: Maybe; +}; + +/** History log of the customer. */ +export type CustomerEvent = Node & { + __typename?: 'CustomerEvent'; + /** App that performed the action. */ + app?: Maybe; + /** Number of objects concerned by the event. */ + count?: Maybe; + /** Date when event happened at in ISO 8601 format. */ + date?: Maybe; + id: Scalars['ID']; + /** Content of the event. */ + message?: Maybe; + /** The concerned order. */ + order?: Maybe; + /** The concerned order line. */ + orderLine?: Maybe; + /** Customer event type. */ + type?: Maybe; + /** User who performed the action. */ + user?: Maybe; +}; + +/** An enumeration. */ +export enum CustomerEventsEnum { + AccountActivated = 'ACCOUNT_ACTIVATED', + AccountCreated = 'ACCOUNT_CREATED', + AccountDeactivated = 'ACCOUNT_DEACTIVATED', + CustomerDeleted = 'CUSTOMER_DELETED', + DigitalLinkDownloaded = 'DIGITAL_LINK_DOWNLOADED', + EmailAssigned = 'EMAIL_ASSIGNED', + EmailChanged = 'EMAIL_CHANGED', + EmailChangedRequest = 'EMAIL_CHANGED_REQUEST', + NameAssigned = 'NAME_ASSIGNED', + NoteAdded = 'NOTE_ADDED', + NoteAddedToOrder = 'NOTE_ADDED_TO_ORDER', + PasswordChanged = 'PASSWORD_CHANGED', + PasswordReset = 'PASSWORD_RESET', + PasswordResetLinkSent = 'PASSWORD_RESET_LINK_SENT', + PlacedOrder = 'PLACED_ORDER' +} + +export type CustomerFilterInput = { + dateJoined?: InputMaybe; + /** + * Filter by ids. + * + * Added in Saleor 3.8. + */ + ids?: InputMaybe>; + metadata?: InputMaybe>; + numberOfOrders?: InputMaybe; + placedOrders?: InputMaybe; + search?: InputMaybe; + updatedAt?: InputMaybe; +}; + +export type CustomerInput = { + /** Billing address of the customer. */ + defaultBillingAddress?: InputMaybe; + /** Shipping address of the customer. */ + defaultShippingAddress?: InputMaybe; + /** The unique email address of the user. */ + email?: InputMaybe; + /** + * External ID of the customer. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** Given name. */ + firstName?: InputMaybe; + /** User account is active. */ + isActive?: InputMaybe; + /** User language code. */ + languageCode?: InputMaybe; + /** Family name. */ + lastName?: InputMaybe; + /** A note about the user. */ + note?: InputMaybe; +}; + +/** + * Event sent when customer user metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CustomerMetadataUpdated = Event & { + __typename?: 'CustomerMetadataUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The user the event relates to. */ + user?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Updates an existing customer. + * + * Requires one of the following permissions: MANAGE_USERS. + */ +export type CustomerUpdate = { + __typename?: 'CustomerUpdate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + user?: Maybe; +}; + +/** + * Event sent when customer user is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type CustomerUpdated = Event & { + __typename?: 'CustomerUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The user the event relates to. */ + user?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type DateRangeInput = { + /** Start date. */ + gte?: InputMaybe; + /** End date. */ + lte?: InputMaybe; +}; + +export type DateTimeRangeInput = { + /** Start date. */ + gte?: InputMaybe; + /** End date. */ + lte?: InputMaybe; +}; + +/** + * Deactivate all JWT tokens of the currently authenticated user. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ +export type DeactivateAllUserTokens = { + __typename?: 'DeactivateAllUserTokens'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; +}; + +/** Delete metadata of an object. To use it, you need to have access to the modified object. */ +export type DeleteMetadata = { + __typename?: 'DeleteMetadata'; + errors: Array; + item?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + metadataErrors: Array; +}; + +/** Delete object's private metadata. To use it, you need to be an authenticated staff user or an app and have access to the modified object. */ +export type DeletePrivateMetadata = { + __typename?: 'DeletePrivateMetadata'; + errors: Array; + item?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + metadataErrors: Array; +}; + +/** + * Represents a delivery method chosen for the checkout. `Warehouse` type is used when checkout is marked as "click and collect" and `ShippingMethod` otherwise. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type DeliveryMethod = ShippingMethod | Warehouse; + +export type DigitalContent = Node & ObjectWithMetadata & { + __typename?: 'DigitalContent'; + automaticFulfillment: Scalars['Boolean']; + contentFile: Scalars['String']; + id: Scalars['ID']; + maxDownloads?: Maybe; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** Product variant assigned to digital content. */ + productVariant: ProductVariant; + urlValidDays?: Maybe; + /** List of URLs for the digital variant. */ + urls?: Maybe>; + useDefaultSettings: Scalars['Boolean']; +}; + + +export type DigitalContentMetafieldArgs = { + key: Scalars['String']; +}; + + +export type DigitalContentMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +export type DigitalContentPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +export type DigitalContentPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +export type DigitalContentCountableConnection = { + __typename?: 'DigitalContentCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type DigitalContentCountableEdge = { + __typename?: 'DigitalContentCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: DigitalContent; +}; + +/** + * Create new digital content. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type DigitalContentCreate = { + __typename?: 'DigitalContentCreate'; + content?: Maybe; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + variant?: Maybe; +}; + +/** + * Remove digital content assigned to given variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type DigitalContentDelete = { + __typename?: 'DigitalContentDelete'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + variant?: Maybe; +}; + +export type DigitalContentInput = { + /** Overwrite default automatic_fulfillment setting for variant. */ + automaticFulfillment?: InputMaybe; + /** Determines how many times a download link can be accessed by a customer. */ + maxDownloads?: InputMaybe; + /** + * Fields required to update the digital content metadata. + * + * Added in Saleor 3.8. + */ + metadata?: InputMaybe>; + /** + * Fields required to update the digital content private metadata. + * + * Added in Saleor 3.8. + */ + privateMetadata?: InputMaybe>; + /** Determines for how many days a download link is active since it was generated. */ + urlValidDays?: InputMaybe; + /** Use default digital content settings for this product. */ + useDefaultSettings: Scalars['Boolean']; +}; + +/** + * Update digital content. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type DigitalContentUpdate = { + __typename?: 'DigitalContentUpdate'; + content?: Maybe; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + variant?: Maybe; +}; + +export type DigitalContentUploadInput = { + /** Overwrite default automatic_fulfillment setting for variant. */ + automaticFulfillment?: InputMaybe; + /** Represents an file in a multipart request. */ + contentFile: Scalars['Upload']; + /** Determines how many times a download link can be accessed by a customer. */ + maxDownloads?: InputMaybe; + /** + * Fields required to update the digital content metadata. + * + * Added in Saleor 3.8. + */ + metadata?: InputMaybe>; + /** + * Fields required to update the digital content private metadata. + * + * Added in Saleor 3.8. + */ + privateMetadata?: InputMaybe>; + /** Determines for how many days a download link is active since it was generated. */ + urlValidDays?: InputMaybe; + /** Use default digital content settings for this product. */ + useDefaultSettings: Scalars['Boolean']; +}; + +export type DigitalContentUrl = Node & { + __typename?: 'DigitalContentUrl'; + content: DigitalContent; + created: Scalars['DateTime']; + downloadNum: Scalars['Int']; + id: Scalars['ID']; + /** UUID of digital content. */ + token: Scalars['UUID']; + /** URL for digital content. */ + url?: Maybe; +}; + +/** + * Generate new URL to digital content. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type DigitalContentUrlCreate = { + __typename?: 'DigitalContentUrlCreate'; + digitalContentUrl?: Maybe; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +export type DigitalContentUrlCreateInput = { + /** Digital content ID which URL will belong to. */ + content: Scalars['ID']; +}; + +export type DiscountError = { + __typename?: 'DiscountError'; + /** List of channels IDs which causes the error. */ + channels?: Maybe>; + /** The error code. */ + code: DiscountErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of products IDs which causes the error. */ + products?: Maybe>; +}; + +/** An enumeration. */ +export enum DiscountErrorCode { + AlreadyExists = 'ALREADY_EXISTS', + CannotManageProductWithoutVariant = 'CANNOT_MANAGE_PRODUCT_WITHOUT_VARIANT', + DuplicatedInputItem = 'DUPLICATED_INPUT_ITEM', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND', + Required = 'REQUIRED', + Unique = 'UNIQUE' +} + +export enum DiscountStatusEnum { + Active = 'ACTIVE', + Expired = 'EXPIRED', + Scheduled = 'SCHEDULED' +} + +export enum DiscountValueTypeEnum { + Fixed = 'FIXED', + Percentage = 'PERCENTAGE' +} + +/** An enumeration. */ +export enum DistanceUnitsEnum { + Cm = 'CM', + Ft = 'FT', + Inch = 'INCH', + Km = 'KM', + M = 'M', + Yd = 'YD' +} + +/** Represents shop's domain. */ +export type Domain = { + __typename?: 'Domain'; + /** The host name of the domain. */ + host: Scalars['String']; + /** Inform if SSL is enabled. */ + sslEnabled: Scalars['Boolean']; + /** Shop's absolute URL. */ + url: Scalars['String']; +}; + +/** + * Deletes draft orders. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type DraftOrderBulkDelete = { + __typename?: 'DraftOrderBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +/** + * Completes creating an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type DraftOrderComplete = { + __typename?: 'DraftOrderComplete'; + errors: Array; + /** Completed order. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +/** + * Creates a new draft order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type DraftOrderCreate = { + __typename?: 'DraftOrderCreate'; + errors: Array; + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +export type DraftOrderCreateInput = { + /** Billing address of the customer. */ + billingAddress?: InputMaybe; + /** ID of the channel associated with the order. */ + channelId?: InputMaybe; + /** A note from a customer. Visible by customers in the order summary. */ + customerNote?: InputMaybe; + /** Discount amount for the order. */ + discount?: InputMaybe; + /** + * External ID of this order. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** Variant line input consisting of variant ID and quantity of products. */ + lines?: InputMaybe>; + /** URL of a view where users should be redirected to see the order details. URL in RFC 1808 format. */ + redirectUrl?: InputMaybe; + /** Shipping address of the customer. */ + shippingAddress?: InputMaybe; + /** ID of a selected shipping method. */ + shippingMethod?: InputMaybe; + /** Customer associated with the draft order. */ + user?: InputMaybe; + /** Email address of the customer. */ + userEmail?: InputMaybe; + /** ID of the voucher associated with the order. */ + voucher?: InputMaybe; +}; + +/** + * Event sent when new draft order is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type DraftOrderCreated = Event & { + __typename?: 'DraftOrderCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The order the event relates to. */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Deletes a draft order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type DraftOrderDelete = { + __typename?: 'DraftOrderDelete'; + errors: Array; + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +/** + * Event sent when draft order is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type DraftOrderDeleted = Event & { + __typename?: 'DraftOrderDeleted'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The order the event relates to. */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type DraftOrderInput = { + /** Billing address of the customer. */ + billingAddress?: InputMaybe; + /** ID of the channel associated with the order. */ + channelId?: InputMaybe; + /** A note from a customer. Visible by customers in the order summary. */ + customerNote?: InputMaybe; + /** Discount amount for the order. */ + discount?: InputMaybe; + /** + * External ID of this order. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** URL of a view where users should be redirected to see the order details. URL in RFC 1808 format. */ + redirectUrl?: InputMaybe; + /** Shipping address of the customer. */ + shippingAddress?: InputMaybe; + /** ID of a selected shipping method. */ + shippingMethod?: InputMaybe; + /** Customer associated with the draft order. */ + user?: InputMaybe; + /** Email address of the customer. */ + userEmail?: InputMaybe; + /** ID of the voucher associated with the order. */ + voucher?: InputMaybe; +}; + +/** + * Deletes order lines. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type DraftOrderLinesBulkDelete = { + __typename?: 'DraftOrderLinesBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +/** + * Updates a draft order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type DraftOrderUpdate = { + __typename?: 'DraftOrderUpdate'; + errors: Array; + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +/** + * Event sent when draft order is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type DraftOrderUpdated = Event & { + __typename?: 'DraftOrderUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The order the event relates to. */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type Event = { + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** Event delivery. */ +export type EventDelivery = Node & { + __typename?: 'EventDelivery'; + /** Event delivery attempts. */ + attempts?: Maybe; + createdAt: Scalars['DateTime']; + /** Webhook event type. */ + eventType: WebhookEventTypeEnum; + id: Scalars['ID']; + /** Event payload. */ + payload?: Maybe; + /** Event delivery status. */ + status: EventDeliveryStatusEnum; +}; + + +/** Event delivery. */ +export type EventDeliveryAttemptsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + +/** Event delivery attempts. */ +export type EventDeliveryAttempt = Node & { + __typename?: 'EventDeliveryAttempt'; + /** Event delivery creation date and time. */ + createdAt: Scalars['DateTime']; + /** Delivery attempt duration. */ + duration?: Maybe; + id: Scalars['ID']; + /** Request headers for delivery attempt. */ + requestHeaders?: Maybe; + /** Delivery attempt response content. */ + response?: Maybe; + /** Response headers for delivery attempt. */ + responseHeaders?: Maybe; + /** Delivery attempt response status code. */ + responseStatusCode?: Maybe; + /** Event delivery status. */ + status: EventDeliveryStatusEnum; + /** Task id for delivery attempt. */ + taskId?: Maybe; +}; + +export type EventDeliveryAttemptCountableConnection = { + __typename?: 'EventDeliveryAttemptCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type EventDeliveryAttemptCountableEdge = { + __typename?: 'EventDeliveryAttemptCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: EventDeliveryAttempt; +}; + +export enum EventDeliveryAttemptSortField { + /** Sort event delivery attempts by created at. */ + CreatedAt = 'CREATED_AT' +} + +export type EventDeliveryAttemptSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort attempts by the selected field. */ + field: EventDeliveryAttemptSortField; +}; + +export type EventDeliveryCountableConnection = { + __typename?: 'EventDeliveryCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type EventDeliveryCountableEdge = { + __typename?: 'EventDeliveryCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: EventDelivery; +}; + +export type EventDeliveryFilterInput = { + eventType?: InputMaybe; + status?: InputMaybe; +}; + +/** + * Retries event delivery. + * + * Requires one of the following permissions: MANAGE_APPS. + */ +export type EventDeliveryRetry = { + __typename?: 'EventDeliveryRetry'; + /** Event delivery. */ + delivery?: Maybe; + errors: Array; +}; + +export enum EventDeliverySortField { + /** Sort event deliveries by created at. */ + CreatedAt = 'CREATED_AT' +} + +export type EventDeliverySortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort deliveries by the selected field. */ + field: EventDeliverySortField; +}; + +export enum EventDeliveryStatusEnum { + Failed = 'FAILED', + Pending = 'PENDING', + Success = 'SUCCESS' +} + +export type ExportError = { + __typename?: 'ExportError'; + /** The error code. */ + code: ExportErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum ExportErrorCode { + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND', + Required = 'REQUIRED' +} + +/** History log of export file. */ +export type ExportEvent = Node & { + __typename?: 'ExportEvent'; + /** App which performed the action. Requires one of the following permissions: OWNER, MANAGE_APPS. */ + app?: Maybe; + /** Date when event happened at in ISO 8601 format. */ + date: Scalars['DateTime']; + /** The ID of the object. */ + id: Scalars['ID']; + /** Content of the event. */ + message: Scalars['String']; + /** Export event type. */ + type: ExportEventsEnum; + /** User who performed the action. Requires one of the following permissions: OWNER, MANAGE_STAFF. */ + user?: Maybe; +}; + +/** An enumeration. */ +export enum ExportEventsEnum { + ExportedFileSent = 'EXPORTED_FILE_SENT', + ExportDeleted = 'EXPORT_DELETED', + ExportFailed = 'EXPORT_FAILED', + ExportFailedInfoSent = 'EXPORT_FAILED_INFO_SENT', + ExportPending = 'EXPORT_PENDING', + ExportSuccess = 'EXPORT_SUCCESS' +} + +/** Represents a job data of exported file. */ +export type ExportFile = Job & Node & { + __typename?: 'ExportFile'; + app?: Maybe; + /** Created date time of job in ISO 8601 format. */ + createdAt: Scalars['DateTime']; + /** List of events associated with the export. */ + events?: Maybe>; + id: Scalars['ID']; + /** Job message. */ + message?: Maybe; + /** Job status. */ + status: JobStatusEnum; + /** Date time of job last update in ISO 8601 format. */ + updatedAt: Scalars['DateTime']; + /** The URL of field to download. */ + url?: Maybe; + user?: Maybe; +}; + +export type ExportFileCountableConnection = { + __typename?: 'ExportFileCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type ExportFileCountableEdge = { + __typename?: 'ExportFileCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: ExportFile; +}; + +export type ExportFileFilterInput = { + app?: InputMaybe; + createdAt?: InputMaybe; + status?: InputMaybe; + updatedAt?: InputMaybe; + user?: InputMaybe; +}; + +export enum ExportFileSortField { + CreatedAt = 'CREATED_AT', + LastModifiedAt = 'LAST_MODIFIED_AT', + Status = 'STATUS', + UpdatedAt = 'UPDATED_AT' +} + +export type ExportFileSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort export file by the selected field. */ + field: ExportFileSortField; +}; + +/** + * Export gift cards to csv file. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ +export type ExportGiftCards = { + __typename?: 'ExportGiftCards'; + errors: Array; + /** The newly created export file job which is responsible for export data. */ + exportFile?: Maybe; +}; + +export type ExportGiftCardsInput = { + /** Type of exported file. */ + fileType: FileTypesEnum; + /** Filtering options for gift cards. */ + filter?: InputMaybe; + /** List of gift cards IDs to export. */ + ids?: InputMaybe>; + /** Determine which gift cards should be exported. */ + scope: ExportScope; +}; + +export type ExportInfoInput = { + /** List of attribute ids witch should be exported. */ + attributes?: InputMaybe>; + /** List of channels ids which should be exported. */ + channels?: InputMaybe>; + /** List of product fields witch should be exported. */ + fields?: InputMaybe>; + /** List of warehouse ids witch should be exported. */ + warehouses?: InputMaybe>; +}; + +/** + * Export products to csv file. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ExportProducts = { + __typename?: 'ExportProducts'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + exportErrors: Array; + /** The newly created export file job which is responsible for export data. */ + exportFile?: Maybe; +}; + +export type ExportProductsInput = { + /** Input with info about fields which should be exported. */ + exportInfo?: InputMaybe; + /** Type of exported file. */ + fileType: FileTypesEnum; + /** Filtering options for products. */ + filter?: InputMaybe; + /** List of products IDs to export. */ + ids?: InputMaybe>; + /** Determine which products should be exported. */ + scope: ExportScope; +}; + +export enum ExportScope { + /** Export all products. */ + All = 'ALL', + /** Export the filtered products. */ + Filter = 'FILTER', + /** Export products with given ids. */ + Ids = 'IDS' +} + +export type ExternalAuthentication = { + __typename?: 'ExternalAuthentication'; + /** ID of external authentication plugin. */ + id: Scalars['String']; + /** Name of external authentication plugin. */ + name?: Maybe; +}; + +/** Prepare external authentication url for user by custom plugin. */ +export type ExternalAuthenticationUrl = { + __typename?: 'ExternalAuthenticationUrl'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + /** The data returned by authentication plugin. */ + authenticationData?: Maybe; + errors: Array; +}; + +/** Logout user by custom plugin. */ +export type ExternalLogout = { + __typename?: 'ExternalLogout'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + /** The data returned by authentication plugin. */ + logoutData?: Maybe; +}; + +export type ExternalNotificationError = { + __typename?: 'ExternalNotificationError'; + /** The error code. */ + code: ExternalNotificationErrorCodes; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum ExternalNotificationErrorCodes { + ChannelInactive = 'CHANNEL_INACTIVE', + InvalidModelType = 'INVALID_MODEL_TYPE', + NotFound = 'NOT_FOUND', + Required = 'REQUIRED' +} + +/** + * Trigger sending a notification with the notify plugin method. Serializes nodes provided as ids parameter and includes this data in the notification payload. + * + * Added in Saleor 3.1. + */ +export type ExternalNotificationTrigger = { + __typename?: 'ExternalNotificationTrigger'; + errors: Array; +}; + +export type ExternalNotificationTriggerInput = { + /** External event type. This field is passed to a plugin as an event type. */ + externalEventType: Scalars['String']; + /** Additional payload that will be merged with the one based on the bussines object ID. */ + extraPayload?: InputMaybe; + /** The list of customers or orders node IDs that will be serialized and included in the notification payload. */ + ids: Array; +}; + +/** Obtain external access tokens for user by custom plugin. */ +export type ExternalObtainAccessTokens = { + __typename?: 'ExternalObtainAccessTokens'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + /** CSRF token required to re-generate external access token. */ + csrfToken?: Maybe; + errors: Array; + /** The refresh token, required to re-generate external access token. */ + refreshToken?: Maybe; + /** The token, required to authenticate. */ + token?: Maybe; + /** A user instance. */ + user?: Maybe; +}; + +/** Refresh user's access by custom plugin. */ +export type ExternalRefresh = { + __typename?: 'ExternalRefresh'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + /** CSRF token required to re-generate external access token. */ + csrfToken?: Maybe; + errors: Array; + /** The refresh token, required to re-generate external access token. */ + refreshToken?: Maybe; + /** The token, required to authenticate. */ + token?: Maybe; + /** A user instance. */ + user?: Maybe; +}; + +/** Verify external authentication data by plugin. */ +export type ExternalVerify = { + __typename?: 'ExternalVerify'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + /** Determine if authentication data is valid or not. */ + isValid: Scalars['Boolean']; + /** User assigned to data. */ + user?: Maybe; + /** External data. */ + verifyData?: Maybe; +}; + +export type File = { + __typename?: 'File'; + /** Content type of the file. */ + contentType?: Maybe; + /** The URL of the file. */ + url: Scalars['String']; +}; + +/** An enumeration. */ +export enum FileTypesEnum { + Csv = 'CSV', + Xlsx = 'XLSX' +} + +/** + * Upload a file. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + * + * Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + */ +export type FileUpload = { + __typename?: 'FileUpload'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + uploadErrors: Array; + uploadedFile?: Maybe; +}; + +/** Represents order fulfillment. */ +export type Fulfillment = Node & ObjectWithMetadata & { + __typename?: 'Fulfillment'; + created: Scalars['DateTime']; + fulfillmentOrder: Scalars['Int']; + id: Scalars['ID']; + /** List of lines for the fulfillment. */ + lines?: Maybe>; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + status: FulfillmentStatus; + /** User-friendly fulfillment status. */ + statusDisplay?: Maybe; + trackingNumber: Scalars['String']; + /** Warehouse from fulfillment was fulfilled. */ + warehouse?: Maybe; +}; + + +/** Represents order fulfillment. */ +export type FulfillmentMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents order fulfillment. */ +export type FulfillmentMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents order fulfillment. */ +export type FulfillmentPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents order fulfillment. */ +export type FulfillmentPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +/** + * Approve existing fulfillment. + * + * Added in Saleor 3.1. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type FulfillmentApprove = { + __typename?: 'FulfillmentApprove'; + errors: Array; + /** An approved fulfillment. */ + fulfillment?: Maybe; + /** Order which fulfillment was approved. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +/** + * Event sent when fulfillment is approved. + * + * Added in Saleor 3.7. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type FulfillmentApproved = Event & { + __typename?: 'FulfillmentApproved'; + /** The fulfillment the event relates to. */ + fulfillment?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The order the fulfillment belongs to. */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Cancels existing fulfillment and optionally restocks items. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type FulfillmentCancel = { + __typename?: 'FulfillmentCancel'; + errors: Array; + /** A canceled fulfillment. */ + fulfillment?: Maybe; + /** Order which fulfillment was cancelled. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +export type FulfillmentCancelInput = { + /** ID of a warehouse where items will be restocked. Optional when fulfillment is in WAITING_FOR_APPROVAL state. */ + warehouseId?: InputMaybe; +}; + +/** + * Event sent when fulfillment is canceled. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type FulfillmentCanceled = Event & { + __typename?: 'FulfillmentCanceled'; + /** The fulfillment the event relates to. */ + fulfillment?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The order the fulfillment belongs to. */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Event sent when new fulfillment is created. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type FulfillmentCreated = Event & { + __typename?: 'FulfillmentCreated'; + /** The fulfillment the event relates to. */ + fulfillment?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The order the fulfillment belongs to. */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** Represents line of the fulfillment. */ +export type FulfillmentLine = Node & { + __typename?: 'FulfillmentLine'; + id: Scalars['ID']; + orderLine?: Maybe; + quantity: Scalars['Int']; +}; + +/** + * Event sent when fulfillment metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type FulfillmentMetadataUpdated = Event & { + __typename?: 'FulfillmentMetadataUpdated'; + /** The fulfillment the event relates to. */ + fulfillment?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The order the fulfillment belongs to. */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Refund products. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type FulfillmentRefundProducts = { + __typename?: 'FulfillmentRefundProducts'; + errors: Array; + /** A refunded fulfillment. */ + fulfillment?: Maybe; + /** Order which fulfillment was refunded. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +/** + * Return products. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type FulfillmentReturnProducts = { + __typename?: 'FulfillmentReturnProducts'; + errors: Array; + /** Order which fulfillment was returned. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; + /** A replace fulfillment. */ + replaceFulfillment?: Maybe; + /** A draft order which was created for products with replace flag. */ + replaceOrder?: Maybe; + /** A return fulfillment. */ + returnFulfillment?: Maybe; +}; + +/** An enumeration. */ +export enum FulfillmentStatus { + Canceled = 'CANCELED', + Fulfilled = 'FULFILLED', + Refunded = 'REFUNDED', + RefundedAndReturned = 'REFUNDED_AND_RETURNED', + Replaced = 'REPLACED', + Returned = 'RETURNED', + WaitingForApproval = 'WAITING_FOR_APPROVAL' +} + +/** + * Updates a fulfillment for an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type FulfillmentUpdateTracking = { + __typename?: 'FulfillmentUpdateTracking'; + errors: Array; + /** A fulfillment with updated tracking. */ + fulfillment?: Maybe; + /** Order for which fulfillment was updated. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +export type FulfillmentUpdateTrackingInput = { + /** If true, send an email notification to the customer. */ + notifyCustomer?: InputMaybe; + /** Fulfillment tracking number. */ + trackingNumber?: InputMaybe; +}; + +/** Payment gateway client configuration key and value pair. */ +export type GatewayConfigLine = { + __typename?: 'GatewayConfigLine'; + /** Gateway config key. */ + field: Scalars['String']; + /** Gateway config value for key. */ + value?: Maybe; +}; + +/** A gift card is a prepaid electronic payment card accepted in stores. They can be used during checkout by providing a valid gift card codes. */ +export type GiftCard = Node & ObjectWithMetadata & { + __typename?: 'GiftCard'; + /** + * App which created the gift card. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_APPS, OWNER. + */ + app?: Maybe; + /** + * Slug of the channel where the gift card was bought. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + boughtInChannel?: Maybe; + /** Gift card code. Can be fetched by a staff member with MANAGE_GIFT_CARD when gift card wasn't yet used and by the gift card owner. */ + code: Scalars['String']; + created: Scalars['DateTime']; + /** + * The user who bought or issued a gift card. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + createdBy?: Maybe; + /** + * Email address of the user who bought or issued gift card. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_USERS, OWNER. + */ + createdByEmail?: Maybe; + currentBalance: Money; + /** Code in format which allows displaying in a user interface. */ + displayCode: Scalars['String']; + /** + * End date of gift card. + * @deprecated This field will be removed in Saleor 4.0. Use `expiryDate` field instead. + */ + endDate?: Maybe; + /** + * List of events associated with the gift card. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + events: Array; + expiryDate?: Maybe; + id: Scalars['ID']; + initialBalance: Money; + isActive: Scalars['Boolean']; + /** Last 4 characters of gift card code. */ + last4CodeChars: Scalars['String']; + lastUsedOn?: Maybe; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** + * Related gift card product. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + product?: Maybe; + /** + * Start date of gift card. + * @deprecated This field will be removed in Saleor 4.0. + */ + startDate?: Maybe; + /** + * The gift card tag. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + tags: Array; + /** + * The customer who used a gift card. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + usedBy?: Maybe; + /** + * Email address of the customer who used a gift card. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + usedByEmail?: Maybe; + /** + * The customer who bought a gift card. + * @deprecated This field will be removed in Saleor 4.0. Use `createdBy` field instead. + */ + user?: Maybe; +}; + + +/** A gift card is a prepaid electronic payment card accepted in stores. They can be used during checkout by providing a valid gift card codes. */ +export type GiftCardEventsArgs = { + filter?: InputMaybe; +}; + + +/** A gift card is a prepaid electronic payment card accepted in stores. They can be used during checkout by providing a valid gift card codes. */ +export type GiftCardMetafieldArgs = { + key: Scalars['String']; +}; + + +/** A gift card is a prepaid electronic payment card accepted in stores. They can be used during checkout by providing a valid gift card codes. */ +export type GiftCardMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** A gift card is a prepaid electronic payment card accepted in stores. They can be used during checkout by providing a valid gift card codes. */ +export type GiftCardPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** A gift card is a prepaid electronic payment card accepted in stores. They can be used during checkout by providing a valid gift card codes. */ +export type GiftCardPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +/** + * Activate a gift card. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ +export type GiftCardActivate = { + __typename?: 'GiftCardActivate'; + errors: Array; + /** Activated gift card. */ + giftCard?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + giftCardErrors: Array; +}; + +/** + * Adds note to the gift card. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ +export type GiftCardAddNote = { + __typename?: 'GiftCardAddNote'; + errors: Array; + /** Gift card note created. */ + event?: Maybe; + /** Gift card with the note added. */ + giftCard?: Maybe; +}; + +export type GiftCardAddNoteInput = { + /** Note message. */ + message: Scalars['String']; +}; + +/** + * Activate gift cards. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ +export type GiftCardBulkActivate = { + __typename?: 'GiftCardBulkActivate'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; +}; + +/** + * Create gift cards. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ +export type GiftCardBulkCreate = { + __typename?: 'GiftCardBulkCreate'; + /** Returns how many objects were created. */ + count: Scalars['Int']; + errors: Array; + /** List of created gift cards. */ + giftCards: Array; +}; + +export type GiftCardBulkCreateInput = { + /** Balance of the gift card. */ + balance: PriceInput; + /** The number of cards to issue. */ + count: Scalars['Int']; + /** The gift card expiry date. */ + expiryDate?: InputMaybe; + /** Determine if gift card is active. */ + isActive: Scalars['Boolean']; + /** The gift card tags. */ + tags?: InputMaybe>; +}; + +/** + * Deactivate gift cards. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ +export type GiftCardBulkDeactivate = { + __typename?: 'GiftCardBulkDeactivate'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; +}; + +/** + * Delete gift cards. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ +export type GiftCardBulkDelete = { + __typename?: 'GiftCardBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; +}; + +export type GiftCardCountableConnection = { + __typename?: 'GiftCardCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type GiftCardCountableEdge = { + __typename?: 'GiftCardCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: GiftCard; +}; + +/** + * Creates a new gift card. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ +export type GiftCardCreate = { + __typename?: 'GiftCardCreate'; + errors: Array; + giftCard?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + giftCardErrors: Array; +}; + +export type GiftCardCreateInput = { + /** + * The gift card tags to add. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + addTags?: InputMaybe>; + /** Balance of the gift card. */ + balance: PriceInput; + /** + * Slug of a channel from which the email should be sent. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + channel?: InputMaybe; + /** + * Code to use the gift card. + * + * DEPRECATED: this field will be removed in Saleor 4.0. The code is now auto generated. + */ + code?: InputMaybe; + /** + * End date of the gift card in ISO 8601 format. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use `expiryDate` from `expirySettings` instead. + */ + endDate?: InputMaybe; + /** + * The gift card expiry date. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + expiryDate?: InputMaybe; + /** + * Determine if gift card is active. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + isActive: Scalars['Boolean']; + /** + * The gift card note from the staff member. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + note?: InputMaybe; + /** + * Start date of the gift card in ISO 8601 format. + * + * DEPRECATED: this field will be removed in Saleor 4.0. + */ + startDate?: InputMaybe; + /** Email of the customer to whom gift card will be sent. */ + userEmail?: InputMaybe; +}; + +/** + * Event sent when new gift card is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type GiftCardCreated = Event & { + __typename?: 'GiftCardCreated'; + /** The gift card the event relates to. */ + giftCard?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Deactivate a gift card. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ +export type GiftCardDeactivate = { + __typename?: 'GiftCardDeactivate'; + errors: Array; + /** Deactivated gift card. */ + giftCard?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + giftCardErrors: Array; +}; + +/** + * Delete gift card. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ +export type GiftCardDelete = { + __typename?: 'GiftCardDelete'; + errors: Array; + giftCard?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + giftCardErrors: Array; +}; + +/** + * Event sent when gift card is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type GiftCardDeleted = Event & { + __typename?: 'GiftCardDeleted'; + /** The gift card the event relates to. */ + giftCard?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type GiftCardError = { + __typename?: 'GiftCardError'; + /** The error code. */ + code: GiftCardErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of tag values that cause the error. */ + tags?: Maybe>; +}; + +/** An enumeration. */ +export enum GiftCardErrorCode { + AlreadyExists = 'ALREADY_EXISTS', + DuplicatedInputItem = 'DUPLICATED_INPUT_ITEM', + ExpiredGiftCard = 'EXPIRED_GIFT_CARD', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND', + Required = 'REQUIRED', + Unique = 'UNIQUE' +} + +/** + * History log of the gift card. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type GiftCardEvent = Node & { + __typename?: 'GiftCardEvent'; + /** App that performed the action. Requires one of the following permissions: MANAGE_APPS, OWNER. */ + app?: Maybe; + /** The gift card balance. */ + balance?: Maybe; + /** Date when event happened at in ISO 8601 format. */ + date?: Maybe; + /** Email of the customer. */ + email?: Maybe; + /** The gift card expiry date. */ + expiryDate?: Maybe; + id: Scalars['ID']; + /** Content of the event. */ + message?: Maybe; + /** Previous gift card expiry date. */ + oldExpiryDate?: Maybe; + /** The list of old gift card tags. */ + oldTags?: Maybe>; + /** The order ID where gift card was used or bought. */ + orderId?: Maybe; + /** User-friendly number of an order where gift card was used or bought. */ + orderNumber?: Maybe; + /** The list of gift card tags. */ + tags?: Maybe>; + /** Gift card event type. */ + type?: Maybe; + /** User who performed the action. Requires one of the following permissions: MANAGE_USERS, MANAGE_STAFF, OWNER. */ + user?: Maybe; +}; + +export type GiftCardEventBalance = { + __typename?: 'GiftCardEventBalance'; + /** Current balance of the gift card. */ + currentBalance: Money; + /** Initial balance of the gift card. */ + initialBalance?: Maybe; + /** Previous current balance of the gift card. */ + oldCurrentBalance?: Maybe; + /** Previous initial balance of the gift card. */ + oldInitialBalance?: Maybe; +}; + +export type GiftCardEventFilterInput = { + orders?: InputMaybe>; + type?: InputMaybe; +}; + +/** An enumeration. */ +export enum GiftCardEventsEnum { + Activated = 'ACTIVATED', + BalanceReset = 'BALANCE_RESET', + Bought = 'BOUGHT', + Deactivated = 'DEACTIVATED', + ExpiryDateUpdated = 'EXPIRY_DATE_UPDATED', + Issued = 'ISSUED', + NoteAdded = 'NOTE_ADDED', + Resent = 'RESENT', + SentToCustomer = 'SENT_TO_CUSTOMER', + TagsUpdated = 'TAGS_UPDATED', + Updated = 'UPDATED', + UsedInOrder = 'USED_IN_ORDER' +} + +export type GiftCardFilterInput = { + code?: InputMaybe; + currency?: InputMaybe; + currentBalance?: InputMaybe; + initialBalance?: InputMaybe; + isActive?: InputMaybe; + metadata?: InputMaybe>; + products?: InputMaybe>; + tags?: InputMaybe>; + used?: InputMaybe; + usedBy?: InputMaybe>; +}; + +/** + * Event sent when gift card metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type GiftCardMetadataUpdated = Event & { + __typename?: 'GiftCardMetadataUpdated'; + /** The gift card the event relates to. */ + giftCard?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Resend a gift card. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ +export type GiftCardResend = { + __typename?: 'GiftCardResend'; + errors: Array; + /** Gift card which has been sent. */ + giftCard?: Maybe; +}; + +export type GiftCardResendInput = { + /** Slug of a channel from which the email should be sent. */ + channel: Scalars['String']; + /** Email to which gift card should be send. */ + email?: InputMaybe; + /** ID of a gift card to resend. */ + id: Scalars['ID']; +}; + +/** Gift card related settings from site settings. */ +export type GiftCardSettings = { + __typename?: 'GiftCardSettings'; + /** The gift card expiry period settings. */ + expiryPeriod?: Maybe; + /** The gift card expiry type settings. */ + expiryType: GiftCardSettingsExpiryTypeEnum; +}; + +export type GiftCardSettingsError = { + __typename?: 'GiftCardSettingsError'; + /** The error code. */ + code: GiftCardSettingsErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum GiftCardSettingsErrorCode { + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + Required = 'REQUIRED' +} + +/** An enumeration. */ +export enum GiftCardSettingsExpiryTypeEnum { + ExpiryPeriod = 'EXPIRY_PERIOD', + NeverExpire = 'NEVER_EXPIRE' +} + +/** + * Update gift card settings. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ +export type GiftCardSettingsUpdate = { + __typename?: 'GiftCardSettingsUpdate'; + errors: Array; + /** Gift card settings. */ + giftCardSettings?: Maybe; +}; + +export type GiftCardSettingsUpdateInput = { + /** Defines gift card expiry period. */ + expiryPeriod?: InputMaybe; + /** Defines gift card default expiry settings. */ + expiryType?: InputMaybe; +}; + +export enum GiftCardSortField { + /** + * Sort gift cards by created at. + * + * Added in Saleor 3.8. + */ + CreatedAt = 'CREATED_AT', + /** Sort gift cards by current balance. */ + CurrentBalance = 'CURRENT_BALANCE', + /** Sort gift cards by product. */ + Product = 'PRODUCT', + /** Sort gift cards by used by. */ + UsedBy = 'USED_BY' +} + +export type GiftCardSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort gift cards by the selected field. */ + field: GiftCardSortField; +}; + +/** + * Event sent when gift card status has changed. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type GiftCardStatusChanged = Event & { + __typename?: 'GiftCardStatusChanged'; + /** The gift card the event relates to. */ + giftCard?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * The gift card tag. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type GiftCardTag = Node & { + __typename?: 'GiftCardTag'; + id: Scalars['ID']; + name: Scalars['String']; +}; + +export type GiftCardTagCountableConnection = { + __typename?: 'GiftCardTagCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type GiftCardTagCountableEdge = { + __typename?: 'GiftCardTagCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: GiftCardTag; +}; + +export type GiftCardTagFilterInput = { + search?: InputMaybe; +}; + +/** + * Update a gift card. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ +export type GiftCardUpdate = { + __typename?: 'GiftCardUpdate'; + errors: Array; + giftCard?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + giftCardErrors: Array; +}; + +export type GiftCardUpdateInput = { + /** + * The gift card tags to add. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + addTags?: InputMaybe>; + /** + * The gift card balance amount. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + balanceAmount?: InputMaybe; + /** + * End date of the gift card in ISO 8601 format. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use `expiryDate` from `expirySettings` instead. + */ + endDate?: InputMaybe; + /** + * The gift card expiry date. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + expiryDate?: InputMaybe; + /** + * The gift card tags to remove. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + removeTags?: InputMaybe>; + /** + * Start date of the gift card in ISO 8601 format. + * + * DEPRECATED: this field will be removed in Saleor 4.0. + */ + startDate?: InputMaybe; +}; + +/** + * Event sent when gift card is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type GiftCardUpdated = Event & { + __typename?: 'GiftCardUpdated'; + /** The gift card the event relates to. */ + giftCard?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** Represents permission group data. */ +export type Group = Node & { + __typename?: 'Group'; + id: Scalars['ID']; + name: Scalars['String']; + /** List of group permissions */ + permissions?: Maybe>; + /** True, if the currently authenticated user has rights to manage a group. */ + userCanManage: Scalars['Boolean']; + /** + * List of group users + * + * Requires one of the following permissions: MANAGE_STAFF. + */ + users?: Maybe>; +}; + +export type GroupCountableConnection = { + __typename?: 'GroupCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type GroupCountableEdge = { + __typename?: 'GroupCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: Group; +}; + +/** Represents an image. */ +export type Image = { + __typename?: 'Image'; + /** Alt text for an image. */ + alt?: Maybe; + /** The URL of the image. */ + url: Scalars['String']; +}; + +export type IntRangeInput = { + /** Value greater than or equal to. */ + gte?: InputMaybe; + /** Value less than or equal to. */ + lte?: InputMaybe; +}; + +/** Represents an Invoice. */ +export type Invoice = Job & Node & ObjectWithMetadata & { + __typename?: 'Invoice'; + createdAt: Scalars['DateTime']; + externalUrl?: Maybe; + /** The ID of the object. */ + id: Scalars['ID']; + message?: Maybe; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + number?: Maybe; + /** + * Order related to the invoice. + * + * Added in Saleor 3.10. + */ + order?: Maybe; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** Job status. */ + status: JobStatusEnum; + updatedAt: Scalars['DateTime']; + /** URL to download an invoice. */ + url?: Maybe; +}; + + +/** Represents an Invoice. */ +export type InvoiceMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents an Invoice. */ +export type InvoiceMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents an Invoice. */ +export type InvoicePrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents an Invoice. */ +export type InvoicePrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +/** + * Creates a ready to send invoice. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type InvoiceCreate = { + __typename?: 'InvoiceCreate'; + errors: Array; + invoice?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + invoiceErrors: Array; +}; + +export type InvoiceCreateInput = { + /** Invoice number. */ + number: Scalars['String']; + /** URL of an invoice to download. */ + url: Scalars['String']; +}; + +/** + * Deletes an invoice. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type InvoiceDelete = { + __typename?: 'InvoiceDelete'; + errors: Array; + invoice?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + invoiceErrors: Array; +}; + +/** + * Event sent when invoice is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type InvoiceDeleted = Event & { + __typename?: 'InvoiceDeleted'; + /** The invoice the event relates to. */ + invoice?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** + * Order related to the invoice. + * + * Added in Saleor 3.10. + */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type InvoiceError = { + __typename?: 'InvoiceError'; + /** The error code. */ + code: InvoiceErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum InvoiceErrorCode { + EmailNotSet = 'EMAIL_NOT_SET', + InvalidStatus = 'INVALID_STATUS', + NotFound = 'NOT_FOUND', + NotReady = 'NOT_READY', + NoInvoicePlugin = 'NO_INVOICE_PLUGIN', + NumberNotSet = 'NUMBER_NOT_SET', + Required = 'REQUIRED', + UrlNotSet = 'URL_NOT_SET' +} + +/** + * Request an invoice for the order using plugin. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type InvoiceRequest = { + __typename?: 'InvoiceRequest'; + errors: Array; + invoice?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + invoiceErrors: Array; + /** Order related to an invoice. */ + order?: Maybe; +}; + +/** + * Requests deletion of an invoice. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type InvoiceRequestDelete = { + __typename?: 'InvoiceRequestDelete'; + errors: Array; + invoice?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + invoiceErrors: Array; +}; + +/** + * Event sent when invoice is requested. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type InvoiceRequested = Event & { + __typename?: 'InvoiceRequested'; + /** The invoice the event relates to. */ + invoice?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** + * Order related to the invoice. + * + * Added in Saleor 3.10. + */ + order: Order; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Send an invoice notification to the customer. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type InvoiceSendNotification = { + __typename?: 'InvoiceSendNotification'; + errors: Array; + invoice?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + invoiceErrors: Array; +}; + +/** + * Event sent when invoice is sent. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type InvoiceSent = Event & { + __typename?: 'InvoiceSent'; + /** The invoice the event relates to. */ + invoice?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** + * Order related to the invoice. + * + * Added in Saleor 3.10. + */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Updates an invoice. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type InvoiceUpdate = { + __typename?: 'InvoiceUpdate'; + errors: Array; + invoice?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + invoiceErrors: Array; +}; + +export type IssuingPrincipal = App | User; + +export type Job = { + /** Created date time of job in ISO 8601 format. */ + createdAt: Scalars['DateTime']; + /** Job message. */ + message?: Maybe; + /** Job status. */ + status: JobStatusEnum; + /** Date time of job last update in ISO 8601 format. */ + updatedAt: Scalars['DateTime']; +}; + +/** An enumeration. */ +export enum JobStatusEnum { + Deleted = 'DELETED', + Failed = 'FAILED', + Pending = 'PENDING', + Success = 'SUCCESS' +} + +/** An enumeration. */ +export enum LanguageCodeEnum { + Af = 'AF', + AfNa = 'AF_NA', + AfZa = 'AF_ZA', + Agq = 'AGQ', + AgqCm = 'AGQ_CM', + Ak = 'AK', + AkGh = 'AK_GH', + Am = 'AM', + AmEt = 'AM_ET', + Ar = 'AR', + ArAe = 'AR_AE', + ArBh = 'AR_BH', + ArDj = 'AR_DJ', + ArDz = 'AR_DZ', + ArEg = 'AR_EG', + ArEh = 'AR_EH', + ArEr = 'AR_ER', + ArIl = 'AR_IL', + ArIq = 'AR_IQ', + ArJo = 'AR_JO', + ArKm = 'AR_KM', + ArKw = 'AR_KW', + ArLb = 'AR_LB', + ArLy = 'AR_LY', + ArMa = 'AR_MA', + ArMr = 'AR_MR', + ArOm = 'AR_OM', + ArPs = 'AR_PS', + ArQa = 'AR_QA', + ArSa = 'AR_SA', + ArSd = 'AR_SD', + ArSo = 'AR_SO', + ArSs = 'AR_SS', + ArSy = 'AR_SY', + ArTd = 'AR_TD', + ArTn = 'AR_TN', + ArYe = 'AR_YE', + As = 'AS', + Asa = 'ASA', + AsaTz = 'ASA_TZ', + Ast = 'AST', + AstEs = 'AST_ES', + AsIn = 'AS_IN', + Az = 'AZ', + AzCyrl = 'AZ_CYRL', + AzCyrlAz = 'AZ_CYRL_AZ', + AzLatn = 'AZ_LATN', + AzLatnAz = 'AZ_LATN_AZ', + Bas = 'BAS', + BasCm = 'BAS_CM', + Be = 'BE', + Bem = 'BEM', + BemZm = 'BEM_ZM', + Bez = 'BEZ', + BezTz = 'BEZ_TZ', + BeBy = 'BE_BY', + Bg = 'BG', + BgBg = 'BG_BG', + Bm = 'BM', + BmMl = 'BM_ML', + Bn = 'BN', + BnBd = 'BN_BD', + BnIn = 'BN_IN', + Bo = 'BO', + BoCn = 'BO_CN', + BoIn = 'BO_IN', + Br = 'BR', + Brx = 'BRX', + BrxIn = 'BRX_IN', + BrFr = 'BR_FR', + Bs = 'BS', + BsCyrl = 'BS_CYRL', + BsCyrlBa = 'BS_CYRL_BA', + BsLatn = 'BS_LATN', + BsLatnBa = 'BS_LATN_BA', + Ca = 'CA', + CaAd = 'CA_AD', + CaEs = 'CA_ES', + CaEsValencia = 'CA_ES_VALENCIA', + CaFr = 'CA_FR', + CaIt = 'CA_IT', + Ccp = 'CCP', + CcpBd = 'CCP_BD', + CcpIn = 'CCP_IN', + Ce = 'CE', + Ceb = 'CEB', + CebPh = 'CEB_PH', + CeRu = 'CE_RU', + Cgg = 'CGG', + CggUg = 'CGG_UG', + Chr = 'CHR', + ChrUs = 'CHR_US', + Ckb = 'CKB', + CkbIq = 'CKB_IQ', + CkbIr = 'CKB_IR', + Cs = 'CS', + CsCz = 'CS_CZ', + Cu = 'CU', + CuRu = 'CU_RU', + Cy = 'CY', + CyGb = 'CY_GB', + Da = 'DA', + Dav = 'DAV', + DavKe = 'DAV_KE', + DaDk = 'DA_DK', + DaGl = 'DA_GL', + De = 'DE', + DeAt = 'DE_AT', + DeBe = 'DE_BE', + DeCh = 'DE_CH', + DeDe = 'DE_DE', + DeIt = 'DE_IT', + DeLi = 'DE_LI', + DeLu = 'DE_LU', + Dje = 'DJE', + DjeNe = 'DJE_NE', + Dsb = 'DSB', + DsbDe = 'DSB_DE', + Dua = 'DUA', + DuaCm = 'DUA_CM', + Dyo = 'DYO', + DyoSn = 'DYO_SN', + Dz = 'DZ', + DzBt = 'DZ_BT', + Ebu = 'EBU', + EbuKe = 'EBU_KE', + Ee = 'EE', + EeGh = 'EE_GH', + EeTg = 'EE_TG', + El = 'EL', + ElCy = 'EL_CY', + ElGr = 'EL_GR', + En = 'EN', + EnAe = 'EN_AE', + EnAg = 'EN_AG', + EnAi = 'EN_AI', + EnAs = 'EN_AS', + EnAt = 'EN_AT', + EnAu = 'EN_AU', + EnBb = 'EN_BB', + EnBe = 'EN_BE', + EnBi = 'EN_BI', + EnBm = 'EN_BM', + EnBs = 'EN_BS', + EnBw = 'EN_BW', + EnBz = 'EN_BZ', + EnCa = 'EN_CA', + EnCc = 'EN_CC', + EnCh = 'EN_CH', + EnCk = 'EN_CK', + EnCm = 'EN_CM', + EnCx = 'EN_CX', + EnCy = 'EN_CY', + EnDe = 'EN_DE', + EnDg = 'EN_DG', + EnDk = 'EN_DK', + EnDm = 'EN_DM', + EnEr = 'EN_ER', + EnFi = 'EN_FI', + EnFj = 'EN_FJ', + EnFk = 'EN_FK', + EnFm = 'EN_FM', + EnGb = 'EN_GB', + EnGd = 'EN_GD', + EnGg = 'EN_GG', + EnGh = 'EN_GH', + EnGi = 'EN_GI', + EnGm = 'EN_GM', + EnGu = 'EN_GU', + EnGy = 'EN_GY', + EnHk = 'EN_HK', + EnIe = 'EN_IE', + EnIl = 'EN_IL', + EnIm = 'EN_IM', + EnIn = 'EN_IN', + EnIo = 'EN_IO', + EnJe = 'EN_JE', + EnJm = 'EN_JM', + EnKe = 'EN_KE', + EnKi = 'EN_KI', + EnKn = 'EN_KN', + EnKy = 'EN_KY', + EnLc = 'EN_LC', + EnLr = 'EN_LR', + EnLs = 'EN_LS', + EnMg = 'EN_MG', + EnMh = 'EN_MH', + EnMo = 'EN_MO', + EnMp = 'EN_MP', + EnMs = 'EN_MS', + EnMt = 'EN_MT', + EnMu = 'EN_MU', + EnMw = 'EN_MW', + EnMy = 'EN_MY', + EnNa = 'EN_NA', + EnNf = 'EN_NF', + EnNg = 'EN_NG', + EnNl = 'EN_NL', + EnNr = 'EN_NR', + EnNu = 'EN_NU', + EnNz = 'EN_NZ', + EnPg = 'EN_PG', + EnPh = 'EN_PH', + EnPk = 'EN_PK', + EnPn = 'EN_PN', + EnPr = 'EN_PR', + EnPw = 'EN_PW', + EnRw = 'EN_RW', + EnSb = 'EN_SB', + EnSc = 'EN_SC', + EnSd = 'EN_SD', + EnSe = 'EN_SE', + EnSg = 'EN_SG', + EnSh = 'EN_SH', + EnSi = 'EN_SI', + EnSl = 'EN_SL', + EnSs = 'EN_SS', + EnSx = 'EN_SX', + EnSz = 'EN_SZ', + EnTc = 'EN_TC', + EnTk = 'EN_TK', + EnTo = 'EN_TO', + EnTt = 'EN_TT', + EnTv = 'EN_TV', + EnTz = 'EN_TZ', + EnUg = 'EN_UG', + EnUm = 'EN_UM', + EnUs = 'EN_US', + EnVc = 'EN_VC', + EnVg = 'EN_VG', + EnVi = 'EN_VI', + EnVu = 'EN_VU', + EnWs = 'EN_WS', + EnZa = 'EN_ZA', + EnZm = 'EN_ZM', + EnZw = 'EN_ZW', + Eo = 'EO', + Es = 'ES', + EsAr = 'ES_AR', + EsBo = 'ES_BO', + EsBr = 'ES_BR', + EsBz = 'ES_BZ', + EsCl = 'ES_CL', + EsCo = 'ES_CO', + EsCr = 'ES_CR', + EsCu = 'ES_CU', + EsDo = 'ES_DO', + EsEa = 'ES_EA', + EsEc = 'ES_EC', + EsEs = 'ES_ES', + EsGq = 'ES_GQ', + EsGt = 'ES_GT', + EsHn = 'ES_HN', + EsIc = 'ES_IC', + EsMx = 'ES_MX', + EsNi = 'ES_NI', + EsPa = 'ES_PA', + EsPe = 'ES_PE', + EsPh = 'ES_PH', + EsPr = 'ES_PR', + EsPy = 'ES_PY', + EsSv = 'ES_SV', + EsUs = 'ES_US', + EsUy = 'ES_UY', + EsVe = 'ES_VE', + Et = 'ET', + EtEe = 'ET_EE', + Eu = 'EU', + EuEs = 'EU_ES', + Ewo = 'EWO', + EwoCm = 'EWO_CM', + Fa = 'FA', + FaAf = 'FA_AF', + FaIr = 'FA_IR', + Ff = 'FF', + FfAdlm = 'FF_ADLM', + FfAdlmBf = 'FF_ADLM_BF', + FfAdlmCm = 'FF_ADLM_CM', + FfAdlmGh = 'FF_ADLM_GH', + FfAdlmGm = 'FF_ADLM_GM', + FfAdlmGn = 'FF_ADLM_GN', + FfAdlmGw = 'FF_ADLM_GW', + FfAdlmLr = 'FF_ADLM_LR', + FfAdlmMr = 'FF_ADLM_MR', + FfAdlmNe = 'FF_ADLM_NE', + FfAdlmNg = 'FF_ADLM_NG', + FfAdlmSl = 'FF_ADLM_SL', + FfAdlmSn = 'FF_ADLM_SN', + FfLatn = 'FF_LATN', + FfLatnBf = 'FF_LATN_BF', + FfLatnCm = 'FF_LATN_CM', + FfLatnGh = 'FF_LATN_GH', + FfLatnGm = 'FF_LATN_GM', + FfLatnGn = 'FF_LATN_GN', + FfLatnGw = 'FF_LATN_GW', + FfLatnLr = 'FF_LATN_LR', + FfLatnMr = 'FF_LATN_MR', + FfLatnNe = 'FF_LATN_NE', + FfLatnNg = 'FF_LATN_NG', + FfLatnSl = 'FF_LATN_SL', + FfLatnSn = 'FF_LATN_SN', + Fi = 'FI', + Fil = 'FIL', + FilPh = 'FIL_PH', + FiFi = 'FI_FI', + Fo = 'FO', + FoDk = 'FO_DK', + FoFo = 'FO_FO', + Fr = 'FR', + FrBe = 'FR_BE', + FrBf = 'FR_BF', + FrBi = 'FR_BI', + FrBj = 'FR_BJ', + FrBl = 'FR_BL', + FrCa = 'FR_CA', + FrCd = 'FR_CD', + FrCf = 'FR_CF', + FrCg = 'FR_CG', + FrCh = 'FR_CH', + FrCi = 'FR_CI', + FrCm = 'FR_CM', + FrDj = 'FR_DJ', + FrDz = 'FR_DZ', + FrFr = 'FR_FR', + FrGa = 'FR_GA', + FrGf = 'FR_GF', + FrGn = 'FR_GN', + FrGp = 'FR_GP', + FrGq = 'FR_GQ', + FrHt = 'FR_HT', + FrKm = 'FR_KM', + FrLu = 'FR_LU', + FrMa = 'FR_MA', + FrMc = 'FR_MC', + FrMf = 'FR_MF', + FrMg = 'FR_MG', + FrMl = 'FR_ML', + FrMq = 'FR_MQ', + FrMr = 'FR_MR', + FrMu = 'FR_MU', + FrNc = 'FR_NC', + FrNe = 'FR_NE', + FrPf = 'FR_PF', + FrPm = 'FR_PM', + FrRe = 'FR_RE', + FrRw = 'FR_RW', + FrSc = 'FR_SC', + FrSn = 'FR_SN', + FrSy = 'FR_SY', + FrTd = 'FR_TD', + FrTg = 'FR_TG', + FrTn = 'FR_TN', + FrVu = 'FR_VU', + FrWf = 'FR_WF', + FrYt = 'FR_YT', + Fur = 'FUR', + FurIt = 'FUR_IT', + Fy = 'FY', + FyNl = 'FY_NL', + Ga = 'GA', + GaGb = 'GA_GB', + GaIe = 'GA_IE', + Gd = 'GD', + GdGb = 'GD_GB', + Gl = 'GL', + GlEs = 'GL_ES', + Gsw = 'GSW', + GswCh = 'GSW_CH', + GswFr = 'GSW_FR', + GswLi = 'GSW_LI', + Gu = 'GU', + Guz = 'GUZ', + GuzKe = 'GUZ_KE', + GuIn = 'GU_IN', + Gv = 'GV', + GvIm = 'GV_IM', + Ha = 'HA', + Haw = 'HAW', + HawUs = 'HAW_US', + HaGh = 'HA_GH', + HaNe = 'HA_NE', + HaNg = 'HA_NG', + He = 'HE', + HeIl = 'HE_IL', + Hi = 'HI', + HiIn = 'HI_IN', + Hr = 'HR', + HrBa = 'HR_BA', + HrHr = 'HR_HR', + Hsb = 'HSB', + HsbDe = 'HSB_DE', + Hu = 'HU', + HuHu = 'HU_HU', + Hy = 'HY', + HyAm = 'HY_AM', + Ia = 'IA', + Id = 'ID', + IdId = 'ID_ID', + Ig = 'IG', + IgNg = 'IG_NG', + Ii = 'II', + IiCn = 'II_CN', + Is = 'IS', + IsIs = 'IS_IS', + It = 'IT', + ItCh = 'IT_CH', + ItIt = 'IT_IT', + ItSm = 'IT_SM', + ItVa = 'IT_VA', + Ja = 'JA', + JaJp = 'JA_JP', + Jgo = 'JGO', + JgoCm = 'JGO_CM', + Jmc = 'JMC', + JmcTz = 'JMC_TZ', + Jv = 'JV', + JvId = 'JV_ID', + Ka = 'KA', + Kab = 'KAB', + KabDz = 'KAB_DZ', + Kam = 'KAM', + KamKe = 'KAM_KE', + KaGe = 'KA_GE', + Kde = 'KDE', + KdeTz = 'KDE_TZ', + Kea = 'KEA', + KeaCv = 'KEA_CV', + Khq = 'KHQ', + KhqMl = 'KHQ_ML', + Ki = 'KI', + KiKe = 'KI_KE', + Kk = 'KK', + Kkj = 'KKJ', + KkjCm = 'KKJ_CM', + KkKz = 'KK_KZ', + Kl = 'KL', + Kln = 'KLN', + KlnKe = 'KLN_KE', + KlGl = 'KL_GL', + Km = 'KM', + KmKh = 'KM_KH', + Kn = 'KN', + KnIn = 'KN_IN', + Ko = 'KO', + Kok = 'KOK', + KokIn = 'KOK_IN', + KoKp = 'KO_KP', + KoKr = 'KO_KR', + Ks = 'KS', + Ksb = 'KSB', + KsbTz = 'KSB_TZ', + Ksf = 'KSF', + KsfCm = 'KSF_CM', + Ksh = 'KSH', + KshDe = 'KSH_DE', + KsArab = 'KS_ARAB', + KsArabIn = 'KS_ARAB_IN', + Ku = 'KU', + KuTr = 'KU_TR', + Kw = 'KW', + KwGb = 'KW_GB', + Ky = 'KY', + KyKg = 'KY_KG', + Lag = 'LAG', + LagTz = 'LAG_TZ', + Lb = 'LB', + LbLu = 'LB_LU', + Lg = 'LG', + LgUg = 'LG_UG', + Lkt = 'LKT', + LktUs = 'LKT_US', + Ln = 'LN', + LnAo = 'LN_AO', + LnCd = 'LN_CD', + LnCf = 'LN_CF', + LnCg = 'LN_CG', + Lo = 'LO', + LoLa = 'LO_LA', + Lrc = 'LRC', + LrcIq = 'LRC_IQ', + LrcIr = 'LRC_IR', + Lt = 'LT', + LtLt = 'LT_LT', + Lu = 'LU', + Luo = 'LUO', + LuoKe = 'LUO_KE', + Luy = 'LUY', + LuyKe = 'LUY_KE', + LuCd = 'LU_CD', + Lv = 'LV', + LvLv = 'LV_LV', + Mai = 'MAI', + MaiIn = 'MAI_IN', + Mas = 'MAS', + MasKe = 'MAS_KE', + MasTz = 'MAS_TZ', + Mer = 'MER', + MerKe = 'MER_KE', + Mfe = 'MFE', + MfeMu = 'MFE_MU', + Mg = 'MG', + Mgh = 'MGH', + MghMz = 'MGH_MZ', + Mgo = 'MGO', + MgoCm = 'MGO_CM', + MgMg = 'MG_MG', + Mi = 'MI', + MiNz = 'MI_NZ', + Mk = 'MK', + MkMk = 'MK_MK', + Ml = 'ML', + MlIn = 'ML_IN', + Mn = 'MN', + Mni = 'MNI', + MniBeng = 'MNI_BENG', + MniBengIn = 'MNI_BENG_IN', + MnMn = 'MN_MN', + Mr = 'MR', + MrIn = 'MR_IN', + Ms = 'MS', + MsBn = 'MS_BN', + MsId = 'MS_ID', + MsMy = 'MS_MY', + MsSg = 'MS_SG', + Mt = 'MT', + MtMt = 'MT_MT', + Mua = 'MUA', + MuaCm = 'MUA_CM', + My = 'MY', + MyMm = 'MY_MM', + Mzn = 'MZN', + MznIr = 'MZN_IR', + Naq = 'NAQ', + NaqNa = 'NAQ_NA', + Nb = 'NB', + NbNo = 'NB_NO', + NbSj = 'NB_SJ', + Nd = 'ND', + Nds = 'NDS', + NdsDe = 'NDS_DE', + NdsNl = 'NDS_NL', + NdZw = 'ND_ZW', + Ne = 'NE', + NeIn = 'NE_IN', + NeNp = 'NE_NP', + Nl = 'NL', + NlAw = 'NL_AW', + NlBe = 'NL_BE', + NlBq = 'NL_BQ', + NlCw = 'NL_CW', + NlNl = 'NL_NL', + NlSr = 'NL_SR', + NlSx = 'NL_SX', + Nmg = 'NMG', + NmgCm = 'NMG_CM', + Nn = 'NN', + Nnh = 'NNH', + NnhCm = 'NNH_CM', + NnNo = 'NN_NO', + Nus = 'NUS', + NusSs = 'NUS_SS', + Nyn = 'NYN', + NynUg = 'NYN_UG', + Om = 'OM', + OmEt = 'OM_ET', + OmKe = 'OM_KE', + Or = 'OR', + OrIn = 'OR_IN', + Os = 'OS', + OsGe = 'OS_GE', + OsRu = 'OS_RU', + Pa = 'PA', + PaArab = 'PA_ARAB', + PaArabPk = 'PA_ARAB_PK', + PaGuru = 'PA_GURU', + PaGuruIn = 'PA_GURU_IN', + Pcm = 'PCM', + PcmNg = 'PCM_NG', + Pl = 'PL', + PlPl = 'PL_PL', + Prg = 'PRG', + Ps = 'PS', + PsAf = 'PS_AF', + PsPk = 'PS_PK', + Pt = 'PT', + PtAo = 'PT_AO', + PtBr = 'PT_BR', + PtCh = 'PT_CH', + PtCv = 'PT_CV', + PtGq = 'PT_GQ', + PtGw = 'PT_GW', + PtLu = 'PT_LU', + PtMo = 'PT_MO', + PtMz = 'PT_MZ', + PtPt = 'PT_PT', + PtSt = 'PT_ST', + PtTl = 'PT_TL', + Qu = 'QU', + QuBo = 'QU_BO', + QuEc = 'QU_EC', + QuPe = 'QU_PE', + Rm = 'RM', + RmCh = 'RM_CH', + Rn = 'RN', + RnBi = 'RN_BI', + Ro = 'RO', + Rof = 'ROF', + RofTz = 'ROF_TZ', + RoMd = 'RO_MD', + RoRo = 'RO_RO', + Ru = 'RU', + RuBy = 'RU_BY', + RuKg = 'RU_KG', + RuKz = 'RU_KZ', + RuMd = 'RU_MD', + RuRu = 'RU_RU', + RuUa = 'RU_UA', + Rw = 'RW', + Rwk = 'RWK', + RwkTz = 'RWK_TZ', + RwRw = 'RW_RW', + Sah = 'SAH', + SahRu = 'SAH_RU', + Saq = 'SAQ', + SaqKe = 'SAQ_KE', + Sat = 'SAT', + SatOlck = 'SAT_OLCK', + SatOlckIn = 'SAT_OLCK_IN', + Sbp = 'SBP', + SbpTz = 'SBP_TZ', + Sd = 'SD', + SdArab = 'SD_ARAB', + SdArabPk = 'SD_ARAB_PK', + SdDeva = 'SD_DEVA', + SdDevaIn = 'SD_DEVA_IN', + Se = 'SE', + Seh = 'SEH', + SehMz = 'SEH_MZ', + Ses = 'SES', + SesMl = 'SES_ML', + SeFi = 'SE_FI', + SeNo = 'SE_NO', + SeSe = 'SE_SE', + Sg = 'SG', + SgCf = 'SG_CF', + Shi = 'SHI', + ShiLatn = 'SHI_LATN', + ShiLatnMa = 'SHI_LATN_MA', + ShiTfng = 'SHI_TFNG', + ShiTfngMa = 'SHI_TFNG_MA', + Si = 'SI', + SiLk = 'SI_LK', + Sk = 'SK', + SkSk = 'SK_SK', + Sl = 'SL', + SlSi = 'SL_SI', + Smn = 'SMN', + SmnFi = 'SMN_FI', + Sn = 'SN', + SnZw = 'SN_ZW', + So = 'SO', + SoDj = 'SO_DJ', + SoEt = 'SO_ET', + SoKe = 'SO_KE', + SoSo = 'SO_SO', + Sq = 'SQ', + SqAl = 'SQ_AL', + SqMk = 'SQ_MK', + SqXk = 'SQ_XK', + Sr = 'SR', + SrCyrl = 'SR_CYRL', + SrCyrlBa = 'SR_CYRL_BA', + SrCyrlMe = 'SR_CYRL_ME', + SrCyrlRs = 'SR_CYRL_RS', + SrCyrlXk = 'SR_CYRL_XK', + SrLatn = 'SR_LATN', + SrLatnBa = 'SR_LATN_BA', + SrLatnMe = 'SR_LATN_ME', + SrLatnRs = 'SR_LATN_RS', + SrLatnXk = 'SR_LATN_XK', + Su = 'SU', + SuLatn = 'SU_LATN', + SuLatnId = 'SU_LATN_ID', + Sv = 'SV', + SvAx = 'SV_AX', + SvFi = 'SV_FI', + SvSe = 'SV_SE', + Sw = 'SW', + SwCd = 'SW_CD', + SwKe = 'SW_KE', + SwTz = 'SW_TZ', + SwUg = 'SW_UG', + Ta = 'TA', + TaIn = 'TA_IN', + TaLk = 'TA_LK', + TaMy = 'TA_MY', + TaSg = 'TA_SG', + Te = 'TE', + Teo = 'TEO', + TeoKe = 'TEO_KE', + TeoUg = 'TEO_UG', + TeIn = 'TE_IN', + Tg = 'TG', + TgTj = 'TG_TJ', + Th = 'TH', + ThTh = 'TH_TH', + Ti = 'TI', + TiEr = 'TI_ER', + TiEt = 'TI_ET', + Tk = 'TK', + TkTm = 'TK_TM', + To = 'TO', + ToTo = 'TO_TO', + Tr = 'TR', + TrCy = 'TR_CY', + TrTr = 'TR_TR', + Tt = 'TT', + TtRu = 'TT_RU', + Twq = 'TWQ', + TwqNe = 'TWQ_NE', + Tzm = 'TZM', + TzmMa = 'TZM_MA', + Ug = 'UG', + UgCn = 'UG_CN', + Uk = 'UK', + UkUa = 'UK_UA', + Ur = 'UR', + UrIn = 'UR_IN', + UrPk = 'UR_PK', + Uz = 'UZ', + UzArab = 'UZ_ARAB', + UzArabAf = 'UZ_ARAB_AF', + UzCyrl = 'UZ_CYRL', + UzCyrlUz = 'UZ_CYRL_UZ', + UzLatn = 'UZ_LATN', + UzLatnUz = 'UZ_LATN_UZ', + Vai = 'VAI', + VaiLatn = 'VAI_LATN', + VaiLatnLr = 'VAI_LATN_LR', + VaiVaii = 'VAI_VAII', + VaiVaiiLr = 'VAI_VAII_LR', + Vi = 'VI', + ViVn = 'VI_VN', + Vo = 'VO', + Vun = 'VUN', + VunTz = 'VUN_TZ', + Wae = 'WAE', + WaeCh = 'WAE_CH', + Wo = 'WO', + WoSn = 'WO_SN', + Xh = 'XH', + XhZa = 'XH_ZA', + Xog = 'XOG', + XogUg = 'XOG_UG', + Yav = 'YAV', + YavCm = 'YAV_CM', + Yi = 'YI', + Yo = 'YO', + YoBj = 'YO_BJ', + YoNg = 'YO_NG', + Yue = 'YUE', + YueHans = 'YUE_HANS', + YueHansCn = 'YUE_HANS_CN', + YueHant = 'YUE_HANT', + YueHantHk = 'YUE_HANT_HK', + Zgh = 'ZGH', + ZghMa = 'ZGH_MA', + Zh = 'ZH', + ZhHans = 'ZH_HANS', + ZhHansCn = 'ZH_HANS_CN', + ZhHansHk = 'ZH_HANS_HK', + ZhHansMo = 'ZH_HANS_MO', + ZhHansSg = 'ZH_HANS_SG', + ZhHant = 'ZH_HANT', + ZhHantHk = 'ZH_HANT_HK', + ZhHantMo = 'ZH_HANT_MO', + ZhHantTw = 'ZH_HANT_TW', + Zu = 'ZU', + ZuZa = 'ZU_ZA' +} + +export type LanguageDisplay = { + __typename?: 'LanguageDisplay'; + /** ISO 639 representation of the language name. */ + code: LanguageCodeEnum; + /** Full name of the language. */ + language: Scalars['String']; +}; + +export type LimitInfo = { + __typename?: 'LimitInfo'; + /** Defines the allowed maximum resource usage, null means unlimited. */ + allowedUsage: Limits; + /** Defines the current resource usage. */ + currentUsage: Limits; +}; + +export type Limits = { + __typename?: 'Limits'; + channels?: Maybe; + orders?: Maybe; + productVariants?: Maybe; + staffUsers?: Maybe; + warehouses?: Maybe; +}; + +/** The manifest definition. */ +export type Manifest = { + __typename?: 'Manifest'; + about?: Maybe; + appUrl?: Maybe; + /** + * The audience that will be included in all JWT tokens for the app. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + audience?: Maybe; + /** + * URL to iframe with the configuration for the app. + * @deprecated This field will be removed in Saleor 4.0. Use `appUrl` instead. + */ + configurationUrl?: Maybe; + /** + * Description of the data privacy defined for this app. + * @deprecated This field will be removed in Saleor 4.0. Use `dataPrivacyUrl` instead. + */ + dataPrivacy?: Maybe; + dataPrivacyUrl?: Maybe; + extensions: Array; + homepageUrl?: Maybe; + identifier: Scalars['String']; + name: Scalars['String']; + permissions?: Maybe>; + supportUrl?: Maybe; + tokenTargetUrl?: Maybe; + version: Scalars['String']; + /** + * List of the app's webhooks. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + webhooks: Array; +}; + +export type Margin = { + __typename?: 'Margin'; + start?: Maybe; + stop?: Maybe; +}; + +/** An enumeration. */ +export enum MeasurementUnitsEnum { + AcreFt = 'ACRE_FT', + AcreIn = 'ACRE_IN', + Cm = 'CM', + CubicCentimeter = 'CUBIC_CENTIMETER', + CubicDecimeter = 'CUBIC_DECIMETER', + CubicFoot = 'CUBIC_FOOT', + CubicInch = 'CUBIC_INCH', + CubicMeter = 'CUBIC_METER', + CubicMillimeter = 'CUBIC_MILLIMETER', + CubicYard = 'CUBIC_YARD', + FlOz = 'FL_OZ', + Ft = 'FT', + G = 'G', + Inch = 'INCH', + Kg = 'KG', + Km = 'KM', + Lb = 'LB', + Liter = 'LITER', + M = 'M', + Oz = 'OZ', + Pint = 'PINT', + Qt = 'QT', + SqCm = 'SQ_CM', + SqFt = 'SQ_FT', + SqInch = 'SQ_INCH', + SqKm = 'SQ_KM', + SqM = 'SQ_M', + SqYd = 'SQ_YD', + Tonne = 'TONNE', + Yd = 'YD' +} + +export enum MediaChoicesSortField { + /** Sort media by ID. */ + Id = 'ID' +} + +export type MediaSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort media by the selected field. */ + field: MediaChoicesSortField; +}; + +/** Represents a single menu - an object that is used to help navigate through the store. */ +export type Menu = Node & ObjectWithMetadata & { + __typename?: 'Menu'; + id: Scalars['ID']; + items?: Maybe>; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + name: Scalars['String']; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + slug: Scalars['String']; +}; + + +/** Represents a single menu - an object that is used to help navigate through the store. */ +export type MenuMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a single menu - an object that is used to help navigate through the store. */ +export type MenuMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents a single menu - an object that is used to help navigate through the store. */ +export type MenuPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a single menu - an object that is used to help navigate through the store. */ +export type MenuPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +/** + * Deletes menus. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ +export type MenuBulkDelete = { + __typename?: 'MenuBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + menuErrors: Array; +}; + +export type MenuCountableConnection = { + __typename?: 'MenuCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type MenuCountableEdge = { + __typename?: 'MenuCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: Menu; +}; + +/** + * Creates a new Menu. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ +export type MenuCreate = { + __typename?: 'MenuCreate'; + errors: Array; + menu?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + menuErrors: Array; +}; + +export type MenuCreateInput = { + /** List of menu items. */ + items?: InputMaybe>; + /** Name of the menu. */ + name: Scalars['String']; + /** Slug of the menu. Will be generated if not provided. */ + slug?: InputMaybe; +}; + +/** + * Event sent when new menu is created. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type MenuCreated = Event & { + __typename?: 'MenuCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The menu the event relates to. */ + menu?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when new menu is created. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type MenuCreatedMenuArgs = { + channel?: InputMaybe; +}; + +/** + * Deletes a menu. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ +export type MenuDelete = { + __typename?: 'MenuDelete'; + errors: Array; + menu?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + menuErrors: Array; +}; + +/** + * Event sent when menu is deleted. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type MenuDeleted = Event & { + __typename?: 'MenuDeleted'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The menu the event relates to. */ + menu?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when menu is deleted. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type MenuDeletedMenuArgs = { + channel?: InputMaybe; +}; + +export type MenuError = { + __typename?: 'MenuError'; + /** The error code. */ + code: MenuErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum MenuErrorCode { + CannotAssignNode = 'CANNOT_ASSIGN_NODE', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + InvalidMenuItem = 'INVALID_MENU_ITEM', + NotFound = 'NOT_FOUND', + NoMenuItemProvided = 'NO_MENU_ITEM_PROVIDED', + Required = 'REQUIRED', + TooManyMenuItems = 'TOO_MANY_MENU_ITEMS', + Unique = 'UNIQUE' +} + +export type MenuFilterInput = { + metadata?: InputMaybe>; + search?: InputMaybe; + slug?: InputMaybe>; + slugs?: InputMaybe>; +}; + +export type MenuInput = { + /** Name of the menu. */ + name?: InputMaybe; + /** Slug of the menu. */ + slug?: InputMaybe; +}; + +/** Represents a single item of the related menu. Can store categories, collection or pages. */ +export type MenuItem = Node & ObjectWithMetadata & { + __typename?: 'MenuItem'; + category?: Maybe; + children?: Maybe>; + /** A collection associated with this menu item. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. */ + collection?: Maybe; + id: Scalars['ID']; + level: Scalars['Int']; + menu: Menu; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + name: Scalars['String']; + /** A page associated with this menu item. Requires one of the following permissions to include unpublished items: MANAGE_PAGES. */ + page?: Maybe; + parent?: Maybe; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** Returns translated menu item fields for the given language code. */ + translation?: Maybe; + /** URL to the menu item. */ + url?: Maybe; +}; + + +/** Represents a single item of the related menu. Can store categories, collection or pages. */ +export type MenuItemMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a single item of the related menu. Can store categories, collection or pages. */ +export type MenuItemMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents a single item of the related menu. Can store categories, collection or pages. */ +export type MenuItemPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a single item of the related menu. Can store categories, collection or pages. */ +export type MenuItemPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents a single item of the related menu. Can store categories, collection or pages. */ +export type MenuItemTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Deletes menu items. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ +export type MenuItemBulkDelete = { + __typename?: 'MenuItemBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + menuErrors: Array; +}; + +export type MenuItemCountableConnection = { + __typename?: 'MenuItemCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type MenuItemCountableEdge = { + __typename?: 'MenuItemCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: MenuItem; +}; + +/** + * Creates a new menu item. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ +export type MenuItemCreate = { + __typename?: 'MenuItemCreate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + menuErrors: Array; + menuItem?: Maybe; +}; + +export type MenuItemCreateInput = { + /** Category to which item points. */ + category?: InputMaybe; + /** Collection to which item points. */ + collection?: InputMaybe; + /** Menu to which item belongs. */ + menu: Scalars['ID']; + /** Name of the menu item. */ + name: Scalars['String']; + /** Page to which item points. */ + page?: InputMaybe; + /** ID of the parent menu. If empty, menu will be top level menu. */ + parent?: InputMaybe; + /** URL of the pointed item. */ + url?: InputMaybe; +}; + +/** + * Event sent when new menu item is created. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type MenuItemCreated = Event & { + __typename?: 'MenuItemCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The menu item the event relates to. */ + menuItem?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when new menu item is created. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type MenuItemCreatedMenuItemArgs = { + channel?: InputMaybe; +}; + +/** + * Deletes a menu item. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ +export type MenuItemDelete = { + __typename?: 'MenuItemDelete'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + menuErrors: Array; + menuItem?: Maybe; +}; + +/** + * Event sent when menu item is deleted. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type MenuItemDeleted = Event & { + __typename?: 'MenuItemDeleted'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The menu item the event relates to. */ + menuItem?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when menu item is deleted. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type MenuItemDeletedMenuItemArgs = { + channel?: InputMaybe; +}; + +export type MenuItemFilterInput = { + metadata?: InputMaybe>; + search?: InputMaybe; +}; + +export type MenuItemInput = { + /** Category to which item points. */ + category?: InputMaybe; + /** Collection to which item points. */ + collection?: InputMaybe; + /** Name of the menu item. */ + name?: InputMaybe; + /** Page to which item points. */ + page?: InputMaybe; + /** URL of the pointed item. */ + url?: InputMaybe; +}; + +/** + * Moves items of menus. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ +export type MenuItemMove = { + __typename?: 'MenuItemMove'; + errors: Array; + /** Assigned menu to move within. */ + menu?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + menuErrors: Array; +}; + +export type MenuItemMoveInput = { + /** The menu item ID to move. */ + itemId: Scalars['ID']; + /** ID of the parent menu. If empty, menu will be top level menu. */ + parentId?: InputMaybe; + /** The new relative sorting position of the item (from -inf to +inf). 1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged. */ + sortOrder?: InputMaybe; +}; + +export type MenuItemSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort menu items by the selected field. */ + field: MenuItemsSortField; +}; + +export type MenuItemTranslatableContent = Node & { + __typename?: 'MenuItemTranslatableContent'; + id: Scalars['ID']; + /** + * Represents a single item of the related menu. Can store categories, collection or pages. + * @deprecated This field will be removed in Saleor 4.0. Get model fields from the root level queries. + */ + menuItem?: Maybe; + name: Scalars['String']; + /** Returns translated menu item fields for the given language code. */ + translation?: Maybe; +}; + + +export type MenuItemTranslatableContentTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Creates/updates translations for a menu item. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ +export type MenuItemTranslate = { + __typename?: 'MenuItemTranslate'; + errors: Array; + menuItem?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + translationErrors: Array; +}; + +export type MenuItemTranslation = Node & { + __typename?: 'MenuItemTranslation'; + id: Scalars['ID']; + /** Translation language. */ + language: LanguageDisplay; + name: Scalars['String']; +}; + +/** + * Updates a menu item. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ +export type MenuItemUpdate = { + __typename?: 'MenuItemUpdate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + menuErrors: Array; + menuItem?: Maybe; +}; + +/** + * Event sent when menu item is updated. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type MenuItemUpdated = Event & { + __typename?: 'MenuItemUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The menu item the event relates to. */ + menuItem?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when menu item is updated. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type MenuItemUpdatedMenuItemArgs = { + channel?: InputMaybe; +}; + +export enum MenuItemsSortField { + /** Sort menu items by name. */ + Name = 'NAME' +} + +export enum MenuSortField { + /** Sort menus by items count. */ + ItemsCount = 'ITEMS_COUNT', + /** Sort menus by name. */ + Name = 'NAME' +} + +export type MenuSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort menus by the selected field. */ + field: MenuSortField; +}; + +/** + * Updates a menu. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ +export type MenuUpdate = { + __typename?: 'MenuUpdate'; + errors: Array; + menu?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + menuErrors: Array; +}; + +/** + * Event sent when menu is updated. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type MenuUpdated = Event & { + __typename?: 'MenuUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The menu the event relates to. */ + menu?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when menu is updated. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type MenuUpdatedMenuArgs = { + channel?: InputMaybe; +}; + +export type MetadataError = { + __typename?: 'MetadataError'; + /** The error code. */ + code: MetadataErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum MetadataErrorCode { + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND', + NotUpdated = 'NOT_UPDATED', + Required = 'REQUIRED' +} + +export type MetadataFilter = { + /** Key of a metadata item. */ + key: Scalars['String']; + /** Value of a metadata item. */ + value?: InputMaybe; +}; + +export type MetadataInput = { + /** Key of a metadata item. */ + key: Scalars['String']; + /** Value of a metadata item. */ + value: Scalars['String']; +}; + +export type MetadataItem = { + __typename?: 'MetadataItem'; + /** Key of a metadata item. */ + key: Scalars['String']; + /** Value of a metadata item. */ + value: Scalars['String']; +}; + +/** Represents amount of money in specific currency. */ +export type Money = { + __typename?: 'Money'; + /** Amount of money. */ + amount: Scalars['Float']; + /** Currency code. */ + currency: Scalars['String']; +}; + +export type MoneyInput = { + /** Amount of money. */ + amount: Scalars['PositiveDecimal']; + /** Currency code. */ + currency: Scalars['String']; +}; + +/** Represents a range of amounts of money. */ +export type MoneyRange = { + __typename?: 'MoneyRange'; + /** Lower bound of a price range. */ + start?: Maybe; + /** Upper bound of a price range. */ + stop?: Maybe; +}; + +export type MoveProductInput = { + /** The ID of the product to move. */ + productId: Scalars['ID']; + /** The relative sorting position of the product (from -inf to +inf) starting from the first given product's actual position.1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged. */ + sortOrder?: InputMaybe; +}; + +export type Mutation = { + __typename?: 'Mutation'; + /** + * Create a new address for the customer. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ + accountAddressCreate?: Maybe; + /** Delete an address of the logged-in user. Requires one of the following permissions: MANAGE_USERS, IS_OWNER. */ + accountAddressDelete?: Maybe; + /** Updates an address of the logged-in user. Requires one of the following permissions: MANAGE_USERS, IS_OWNER. */ + accountAddressUpdate?: Maybe; + /** + * Remove user account. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ + accountDelete?: Maybe; + /** Register a new user. */ + accountRegister?: Maybe; + /** + * Sends an email with the account removal link for the logged-in user. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ + accountRequestDeletion?: Maybe; + /** + * Sets a default address for the authenticated user. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ + accountSetDefaultAddress?: Maybe; + /** + * Updates the account of the logged-in user. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ + accountUpdate?: Maybe; + /** + * Creates user address. + * + * Requires one of the following permissions: MANAGE_USERS. + */ + addressCreate?: Maybe; + /** + * Deletes an address. + * + * Requires one of the following permissions: MANAGE_USERS. + */ + addressDelete?: Maybe; + /** + * Sets a default address for the given user. + * + * Requires one of the following permissions: MANAGE_USERS. + */ + addressSetDefault?: Maybe; + /** + * Updates an address. + * + * Requires one of the following permissions: MANAGE_USERS. + */ + addressUpdate?: Maybe; + /** + * Activate the app. + * + * Requires one of the following permissions: MANAGE_APPS. + */ + appActivate?: Maybe; + /** Creates a new app. Requires the following permissions: AUTHENTICATED_STAFF_USER and MANAGE_APPS. */ + appCreate?: Maybe; + /** + * Deactivate the app. + * + * Requires one of the following permissions: MANAGE_APPS. + */ + appDeactivate?: Maybe; + /** + * Deletes an app. + * + * Requires one of the following permissions: MANAGE_APPS. + */ + appDelete?: Maybe; + /** + * Delete failed installation. + * + * Requires one of the following permissions: MANAGE_APPS. + */ + appDeleteFailedInstallation?: Maybe; + /** + * Fetch and validate manifest. + * + * Requires one of the following permissions: MANAGE_APPS. + */ + appFetchManifest?: Maybe; + /** Install new app by using app manifest. Requires the following permissions: AUTHENTICATED_STAFF_USER and MANAGE_APPS. */ + appInstall?: Maybe; + /** + * Retry failed installation of new app. + * + * Requires one of the following permissions: MANAGE_APPS. + */ + appRetryInstall?: Maybe; + /** + * Creates a new token. + * + * Requires one of the following permissions: MANAGE_APPS. + */ + appTokenCreate?: Maybe; + /** + * Deletes an authentication token assigned to app. + * + * Requires one of the following permissions: MANAGE_APPS. + */ + appTokenDelete?: Maybe; + /** Verify provided app token. */ + appTokenVerify?: Maybe; + /** + * Updates an existing app. + * + * Requires one of the following permissions: MANAGE_APPS. + */ + appUpdate?: Maybe; + /** + * Assigns storefront's navigation menus. + * + * Requires one of the following permissions: MANAGE_MENUS, MANAGE_SETTINGS. + */ + assignNavigation?: Maybe; + /** + * Add shipping zone to given warehouse. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + assignWarehouseShippingZone?: Maybe; + /** + * Deletes attributes. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ + attributeBulkDelete?: Maybe; + /** Creates an attribute. */ + attributeCreate?: Maybe; + /** + * Deletes an attribute. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ + attributeDelete?: Maybe; + /** + * Reorder the values of an attribute. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ + attributeReorderValues?: Maybe; + /** + * Creates/updates translations for an attribute. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ + attributeTranslate?: Maybe; + /** + * Updates attribute. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ + attributeUpdate?: Maybe; + /** + * Deletes values of attributes. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ + attributeValueBulkDelete?: Maybe; + /** + * Creates a value for an attribute. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + attributeValueCreate?: Maybe; + /** + * Deletes a value of an attribute. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ + attributeValueDelete?: Maybe; + /** + * Creates/updates translations for an attribute value. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ + attributeValueTranslate?: Maybe; + /** + * Updates value of an attribute. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ + attributeValueUpdate?: Maybe; + /** + * Deletes categories. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + categoryBulkDelete?: Maybe; + /** + * Creates a new category. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + categoryCreate?: Maybe; + /** + * Deletes a category. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + categoryDelete?: Maybe; + /** + * Creates/updates translations for a category. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ + categoryTranslate?: Maybe; + /** + * Updates a category. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + categoryUpdate?: Maybe; + /** + * Activate a channel. + * + * Requires one of the following permissions: MANAGE_CHANNELS. + */ + channelActivate?: Maybe; + /** + * Creates new channel. + * + * Requires one of the following permissions: MANAGE_CHANNELS. + */ + channelCreate?: Maybe; + /** + * Deactivate a channel. + * + * Requires one of the following permissions: MANAGE_CHANNELS. + */ + channelDeactivate?: Maybe; + /** + * Delete a channel. Orders associated with the deleted channel will be moved to the target channel. Checkouts, product availability, and pricing will be removed. + * + * Requires one of the following permissions: MANAGE_CHANNELS. + */ + channelDelete?: Maybe; + /** + * Reorder the warehouses of a channel. + * + * Added in Saleor 3.7. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_CHANNELS. + */ + channelReorderWarehouses?: Maybe; + /** + * Update a channel. + * + * Requires one of the following permissions: MANAGE_CHANNELS. + */ + channelUpdate?: Maybe; + /** Adds a gift card or a voucher to a checkout. */ + checkoutAddPromoCode?: Maybe; + /** Update billing address in the existing checkout. */ + checkoutBillingAddressUpdate?: Maybe; + /** Completes the checkout. As a result a new order is created and a payment charge is made. This action requires a successful payment before it can be performed. In case additional confirmation step as 3D secure is required confirmationNeeded flag will be set to True and no order created until payment is confirmed with second call of this mutation. */ + checkoutComplete?: Maybe; + /** Create a new checkout. */ + checkoutCreate?: Maybe; + /** + * Sets the customer as the owner of the checkout. + * + * Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_USER. + */ + checkoutCustomerAttach?: Maybe; + /** + * Removes the user assigned as the owner of the checkout. + * + * Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_USER. + */ + checkoutCustomerDetach?: Maybe; + /** + * Updates the delivery method (shipping method or pick up point) of the checkout. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + checkoutDeliveryMethodUpdate?: Maybe; + /** Updates email address in the existing checkout object. */ + checkoutEmailUpdate?: Maybe; + /** Update language code in the existing checkout. */ + checkoutLanguageCodeUpdate?: Maybe; + /** + * Deletes a CheckoutLine. + * @deprecated This field will be removed in Saleor 4.0. Use `checkoutLinesDelete` instead. + */ + checkoutLineDelete?: Maybe; + /** Adds a checkout line to the existing checkout.If line was already in checkout, its quantity will be increased. */ + checkoutLinesAdd?: Maybe; + /** Deletes checkout lines. */ + checkoutLinesDelete?: Maybe; + /** Updates checkout line in the existing checkout. */ + checkoutLinesUpdate?: Maybe; + /** Create a new payment for given checkout. */ + checkoutPaymentCreate?: Maybe; + /** Remove a gift card or a voucher from a checkout. */ + checkoutRemovePromoCode?: Maybe; + /** Update shipping address in the existing checkout. */ + checkoutShippingAddressUpdate?: Maybe; + /** + * Updates the shipping method of the checkout. + * @deprecated This field will be removed in Saleor 4.0. Use `checkoutDeliveryMethodUpdate` instead. + */ + checkoutShippingMethodUpdate?: Maybe; + /** + * Adds products to a collection. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + collectionAddProducts?: Maybe; + /** + * Deletes collections. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + collectionBulkDelete?: Maybe; + /** + * Manage collection's availability in channels. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + collectionChannelListingUpdate?: Maybe; + /** + * Creates a new collection. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + collectionCreate?: Maybe; + /** + * Deletes a collection. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + collectionDelete?: Maybe; + /** + * Remove products from a collection. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + collectionRemoveProducts?: Maybe; + /** + * Reorder the products of a collection. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + collectionReorderProducts?: Maybe; + /** + * Creates/updates translations for a collection. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ + collectionTranslate?: Maybe; + /** + * Updates a collection. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + collectionUpdate?: Maybe; + /** Confirm user account with token sent by email during registration. */ + confirmAccount?: Maybe; + /** + * Confirm the email change of the logged-in user. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ + confirmEmailChange?: Maybe; + /** + * Creates new warehouse. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + createWarehouse?: Maybe; + /** + * Deletes customers. + * + * Requires one of the following permissions: MANAGE_USERS. + */ + customerBulkDelete?: Maybe; + /** + * Creates a new customer. + * + * Requires one of the following permissions: MANAGE_USERS. + */ + customerCreate?: Maybe; + /** + * Deletes a customer. + * + * Requires one of the following permissions: MANAGE_USERS. + */ + customerDelete?: Maybe; + /** + * Updates an existing customer. + * + * Requires one of the following permissions: MANAGE_USERS. + */ + customerUpdate?: Maybe; + /** Delete metadata of an object. To use it, you need to have access to the modified object. */ + deleteMetadata?: Maybe; + /** Delete object's private metadata. To use it, you need to be an authenticated staff user or an app and have access to the modified object. */ + deletePrivateMetadata?: Maybe; + /** + * Deletes selected warehouse. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + deleteWarehouse?: Maybe; + /** + * Create new digital content. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + digitalContentCreate?: Maybe; + /** + * Remove digital content assigned to given variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + digitalContentDelete?: Maybe; + /** + * Update digital content. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + digitalContentUpdate?: Maybe; + /** + * Generate new URL to digital content. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + digitalContentUrlCreate?: Maybe; + /** + * Deletes draft orders. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + draftOrderBulkDelete?: Maybe; + /** + * Completes creating an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + draftOrderComplete?: Maybe; + /** + * Creates a new draft order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + draftOrderCreate?: Maybe; + /** + * Deletes a draft order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + draftOrderDelete?: Maybe; + /** + * Deletes order lines. + * + * Requires one of the following permissions: MANAGE_ORDERS. + * @deprecated This field will be removed in Saleor 4.0. + */ + draftOrderLinesBulkDelete?: Maybe; + /** + * Updates a draft order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + draftOrderUpdate?: Maybe; + /** + * Retries event delivery. + * + * Requires one of the following permissions: MANAGE_APPS. + */ + eventDeliveryRetry?: Maybe; + /** + * Export gift cards to csv file. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + exportGiftCards?: Maybe; + /** + * Export products to csv file. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + exportProducts?: Maybe; + /** Prepare external authentication url for user by custom plugin. */ + externalAuthenticationUrl?: Maybe; + /** Logout user by custom plugin. */ + externalLogout?: Maybe; + /** + * Trigger sending a notification with the notify plugin method. Serializes nodes provided as ids parameter and includes this data in the notification payload. + * + * Added in Saleor 3.1. + */ + externalNotificationTrigger?: Maybe; + /** Obtain external access tokens for user by custom plugin. */ + externalObtainAccessTokens?: Maybe; + /** Refresh user's access by custom plugin. */ + externalRefresh?: Maybe; + /** Verify external authentication data by plugin. */ + externalVerify?: Maybe; + /** + * Upload a file. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + * + * Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + */ + fileUpload?: Maybe; + /** + * Activate a gift card. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCardActivate?: Maybe; + /** + * Adds note to the gift card. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCardAddNote?: Maybe; + /** + * Activate gift cards. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCardBulkActivate?: Maybe; + /** + * Create gift cards. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCardBulkCreate?: Maybe; + /** + * Deactivate gift cards. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCardBulkDeactivate?: Maybe; + /** + * Delete gift cards. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCardBulkDelete?: Maybe; + /** + * Creates a new gift card. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCardCreate?: Maybe; + /** + * Deactivate a gift card. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCardDeactivate?: Maybe; + /** + * Delete gift card. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCardDelete?: Maybe; + /** + * Resend a gift card. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCardResend?: Maybe; + /** + * Update gift card settings. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCardSettingsUpdate?: Maybe; + /** + * Update a gift card. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCardUpdate?: Maybe; + /** + * Creates a ready to send invoice. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + invoiceCreate?: Maybe; + /** + * Deletes an invoice. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + invoiceDelete?: Maybe; + /** + * Request an invoice for the order using plugin. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + invoiceRequest?: Maybe; + /** + * Requests deletion of an invoice. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + invoiceRequestDelete?: Maybe; + /** + * Send an invoice notification to the customer. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + invoiceSendNotification?: Maybe; + /** + * Updates an invoice. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + invoiceUpdate?: Maybe; + /** + * Deletes menus. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ + menuBulkDelete?: Maybe; + /** + * Creates a new Menu. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ + menuCreate?: Maybe; + /** + * Deletes a menu. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ + menuDelete?: Maybe; + /** + * Deletes menu items. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ + menuItemBulkDelete?: Maybe; + /** + * Creates a new menu item. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ + menuItemCreate?: Maybe; + /** + * Deletes a menu item. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ + menuItemDelete?: Maybe; + /** + * Moves items of menus. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ + menuItemMove?: Maybe; + /** + * Creates/updates translations for a menu item. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ + menuItemTranslate?: Maybe; + /** + * Updates a menu item. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ + menuItemUpdate?: Maybe; + /** + * Updates a menu. + * + * Requires one of the following permissions: MANAGE_MENUS. + */ + menuUpdate?: Maybe; + /** + * Adds note to the order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderAddNote?: Maybe; + /** + * Cancels orders. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderBulkCancel?: Maybe; + /** + * Cancel an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderCancel?: Maybe; + /** + * Capture an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderCapture?: Maybe; + /** + * Confirms an unconfirmed order by changing status to unfulfilled. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderConfirm?: Maybe; + /** + * Create new order from existing checkout. Requires the following permissions: AUTHENTICATED_APP and HANDLE_CHECKOUTS. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + orderCreateFromCheckout?: Maybe; + /** + * Adds discount to the order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderDiscountAdd?: Maybe; + /** + * Remove discount from the order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderDiscountDelete?: Maybe; + /** + * Update discount for the order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderDiscountUpdate?: Maybe; + /** + * Creates new fulfillments for an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderFulfill?: Maybe; + /** + * Approve existing fulfillment. + * + * Added in Saleor 3.1. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderFulfillmentApprove?: Maybe; + /** + * Cancels existing fulfillment and optionally restocks items. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderFulfillmentCancel?: Maybe; + /** + * Refund products. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderFulfillmentRefundProducts?: Maybe; + /** + * Return products. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderFulfillmentReturnProducts?: Maybe; + /** + * Updates a fulfillment for an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderFulfillmentUpdateTracking?: Maybe; + /** + * Deletes an order line from an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderLineDelete?: Maybe; + /** + * Remove discount applied to the order line. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderLineDiscountRemove?: Maybe; + /** + * Update discount for the order line. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderLineDiscountUpdate?: Maybe; + /** + * Updates an order line of an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderLineUpdate?: Maybe; + /** + * Create order lines for an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderLinesCreate?: Maybe; + /** + * Mark order as manually paid. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderMarkAsPaid?: Maybe; + /** + * Refund an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderRefund?: Maybe; + /** + * Update shop order settings. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderSettingsUpdate?: Maybe; + /** + * Updates an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderUpdate?: Maybe; + /** + * Updates a shipping method of the order. Requires shipping method ID to update, when null is passed then currently assigned shipping method is removed. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderUpdateShipping?: Maybe; + /** + * Void an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderVoid?: Maybe; + /** + * Assign attributes to a given page type. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ + pageAttributeAssign?: Maybe; + /** + * Unassign attributes from a given page type. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ + pageAttributeUnassign?: Maybe; + /** + * Deletes pages. + * + * Requires one of the following permissions: MANAGE_PAGES. + */ + pageBulkDelete?: Maybe; + /** + * Publish pages. + * + * Requires one of the following permissions: MANAGE_PAGES. + */ + pageBulkPublish?: Maybe; + /** + * Creates a new page. + * + * Requires one of the following permissions: MANAGE_PAGES. + */ + pageCreate?: Maybe; + /** + * Deletes a page. + * + * Requires one of the following permissions: MANAGE_PAGES. + */ + pageDelete?: Maybe; + /** + * Reorder page attribute values. + * + * Requires one of the following permissions: MANAGE_PAGES. + */ + pageReorderAttributeValues?: Maybe; + /** + * Creates/updates translations for a page. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ + pageTranslate?: Maybe; + /** + * Delete page types. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ + pageTypeBulkDelete?: Maybe; + /** + * Create a new page type. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ + pageTypeCreate?: Maybe; + /** + * Delete a page type. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ + pageTypeDelete?: Maybe; + /** + * Reorder the attributes of a page type. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ + pageTypeReorderAttributes?: Maybe; + /** + * Update page type. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ + pageTypeUpdate?: Maybe; + /** + * Updates an existing page. + * + * Requires one of the following permissions: MANAGE_PAGES. + */ + pageUpdate?: Maybe; + /** + * Change the password of the logged in user. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ + passwordChange?: Maybe; + /** + * Captures the authorized payment amount. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + paymentCapture?: Maybe; + /** Check payment balance. */ + paymentCheckBalance?: Maybe; + /** Initializes payment process when it is required by gateway. */ + paymentInitialize?: Maybe; + /** + * Refunds the captured payment amount. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + paymentRefund?: Maybe; + /** + * Voids the authorized payment. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + paymentVoid?: Maybe; + /** + * Create new permission group. Apps are not allowed to perform this mutation. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ + permissionGroupCreate?: Maybe; + /** + * Delete permission group. Apps are not allowed to perform this mutation. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ + permissionGroupDelete?: Maybe; + /** + * Update permission group. Apps are not allowed to perform this mutation. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ + permissionGroupUpdate?: Maybe; + /** + * Update plugin configuration. + * + * Requires one of the following permissions: MANAGE_PLUGINS. + */ + pluginUpdate?: Maybe; + /** + * Assign attributes to a given product type. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ + productAttributeAssign?: Maybe; + /** + * Update attributes assigned to product variant for given product type. + * + * Added in Saleor 3.1. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ + productAttributeAssignmentUpdate?: Maybe; + /** + * Un-assign attributes from a given product type. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ + productAttributeUnassign?: Maybe; + /** + * Deletes products. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productBulkDelete?: Maybe; + /** + * Manage product's availability in channels. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productChannelListingUpdate?: Maybe; + /** + * Creates a new product. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productCreate?: Maybe; + /** + * Deletes a product. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productDelete?: Maybe; + /** + * Deletes product media. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productMediaBulkDelete?: Maybe; + /** + * Create a media object (image or video URL) associated with product. For image, this mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productMediaCreate?: Maybe; + /** + * Deletes a product media. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productMediaDelete?: Maybe; + /** + * Changes ordering of the product media. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productMediaReorder?: Maybe; + /** + * Updates a product media. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productMediaUpdate?: Maybe; + /** + * Reorder product attribute values. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productReorderAttributeValues?: Maybe; + /** + * Creates/updates translations for a product. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ + productTranslate?: Maybe; + /** + * Deletes product types. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ + productTypeBulkDelete?: Maybe; + /** + * Creates a new product type. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ + productTypeCreate?: Maybe; + /** + * Deletes a product type. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ + productTypeDelete?: Maybe; + /** + * Reorder the attributes of a product type. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ + productTypeReorderAttributes?: Maybe; + /** + * Updates an existing product type. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ + productTypeUpdate?: Maybe; + /** + * Updates an existing product. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productUpdate?: Maybe; + /** + * Creates product variants for a given product. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productVariantBulkCreate?: Maybe; + /** + * Deletes product variants. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productVariantBulkDelete?: Maybe; + /** + * Manage product variant prices in channels. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productVariantChannelListingUpdate?: Maybe; + /** + * Creates a new variant for a product. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productVariantCreate?: Maybe; + /** + * Deletes a product variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productVariantDelete?: Maybe; + /** + * Deactivates product variant preorder. It changes all preorder allocation into regular allocation. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productVariantPreorderDeactivate?: Maybe; + /** + * Reorder the variants of a product. Mutation updates updated_at on product and triggers PRODUCT_UPDATED webhook. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productVariantReorder?: Maybe; + /** + * Reorder product variant attribute values. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productVariantReorderAttributeValues?: Maybe; + /** + * Set default variant for a product. Mutation triggers PRODUCT_UPDATED webhook. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productVariantSetDefault?: Maybe; + /** + * Creates stocks for product variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productVariantStocksCreate?: Maybe; + /** + * Delete stocks from product variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productVariantStocksDelete?: Maybe; + /** + * Update stocks for product variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productVariantStocksUpdate?: Maybe; + /** + * Creates/updates translations for a product variant. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ + productVariantTranslate?: Maybe; + /** + * Updates an existing variant for product. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + productVariantUpdate?: Maybe; + /** + * Request email change of the logged in user. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ + requestEmailChange?: Maybe; + /** Sends an email with the account password modification link. */ + requestPasswordReset?: Maybe; + /** + * Deletes sales. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + saleBulkDelete?: Maybe; + /** + * Adds products, categories, collections to a voucher. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + saleCataloguesAdd?: Maybe; + /** + * Removes products, categories, collections from a sale. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + saleCataloguesRemove?: Maybe; + /** + * Manage sale's availability in channels. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + saleChannelListingUpdate?: Maybe; + /** + * Creates a new sale. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + saleCreate?: Maybe; + /** + * Deletes a sale. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + saleDelete?: Maybe; + /** + * Creates/updates translations for a sale. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ + saleTranslate?: Maybe; + /** + * Updates a sale. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + saleUpdate?: Maybe; + /** Sets the user's password from the token sent by email using the RequestPasswordReset mutation. */ + setPassword?: Maybe; + /** + * Manage shipping method's availability in channels. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ + shippingMethodChannelListingUpdate?: Maybe; + /** + * Deletes shipping prices. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ + shippingPriceBulkDelete?: Maybe; + /** + * Creates a new shipping price. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ + shippingPriceCreate?: Maybe; + /** + * Deletes a shipping price. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ + shippingPriceDelete?: Maybe; + /** + * Exclude products from shipping price. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ + shippingPriceExcludeProducts?: Maybe; + /** + * Remove product from excluded list for shipping price. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ + shippingPriceRemoveProductFromExclude?: Maybe; + /** + * Creates/updates translations for a shipping method. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ + shippingPriceTranslate?: Maybe; + /** + * Updates a new shipping price. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ + shippingPriceUpdate?: Maybe; + /** + * Deletes shipping zones. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ + shippingZoneBulkDelete?: Maybe; + /** + * Creates a new shipping zone. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ + shippingZoneCreate?: Maybe; + /** + * Deletes a shipping zone. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ + shippingZoneDelete?: Maybe; + /** + * Updates a new shipping zone. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ + shippingZoneUpdate?: Maybe; + /** + * Update the shop's address. If the `null` value is passed, the currently selected address will be deleted. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ + shopAddressUpdate?: Maybe; + /** + * Updates site domain of the shop. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ + shopDomainUpdate?: Maybe; + /** + * Fetch tax rates. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + * @deprecated \n\nDEPRECATED: this mutation will be removed in Saleor 4.0. + */ + shopFetchTaxRates?: Maybe; + /** + * Creates/updates translations for shop settings. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ + shopSettingsTranslate?: Maybe; + /** + * Updates shop settings. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ + shopSettingsUpdate?: Maybe; + /** + * Deletes staff users. Apps are not allowed to perform this mutation. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ + staffBulkDelete?: Maybe; + /** + * Creates a new staff user. Apps are not allowed to perform this mutation. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ + staffCreate?: Maybe; + /** + * Deletes a staff user. Apps are not allowed to perform this mutation. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ + staffDelete?: Maybe; + /** + * Creates a new staff notification recipient. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ + staffNotificationRecipientCreate?: Maybe; + /** + * Delete staff notification recipient. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ + staffNotificationRecipientDelete?: Maybe; + /** + * Updates a staff notification recipient. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ + staffNotificationRecipientUpdate?: Maybe; + /** + * Updates an existing staff user. Apps are not allowed to perform this mutation. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ + staffUpdate?: Maybe; + /** + * Create a tax class. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_TAXES. + */ + taxClassCreate?: Maybe; + /** + * Delete a tax class. After deleting the tax class any products, product types or shipping methods using it are updated to use the default tax class. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_TAXES. + */ + taxClassDelete?: Maybe; + /** + * Update a tax class. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_TAXES. + */ + taxClassUpdate?: Maybe; + /** + * Update tax configuration for a channel. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_TAXES. + */ + taxConfigurationUpdate?: Maybe; + /** + * Remove all tax class rates for a specific country. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_TAXES. + */ + taxCountryConfigurationDelete?: Maybe; + /** + * Update tax class rates for a specific country. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_TAXES. + */ + taxCountryConfigurationUpdate?: Maybe; + /** + * Exempt checkout or order from charging the taxes. When tax exemption is enabled, taxes won't be charged for the checkout or order. Taxes may still be calculated in cases when product prices are entered with the tax included and the net price needs to be known. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_TAXES. + */ + taxExemptionManage?: Maybe; + /** Create JWT token. */ + tokenCreate?: Maybe; + /** Refresh JWT token. Mutation tries to take refreshToken from the input.If it fails it will try to take refreshToken from the http-only cookie -refreshToken. csrfToken is required when refreshToken is provided as a cookie. */ + tokenRefresh?: Maybe; + /** Verify JWT token. */ + tokenVerify?: Maybe; + /** + * Deactivate all JWT tokens of the currently authenticated user. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ + tokensDeactivateAll?: Maybe; + /** + * Create transaction for checkout or order. Requires the following permissions: AUTHENTICATED_APP and HANDLE_PAYMENTS. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + transactionCreate?: Maybe; + /** + * Request an action for payment transaction. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: HANDLE_PAYMENTS, MANAGE_ORDERS. + */ + transactionRequestAction?: Maybe; + /** + * Create transaction for checkout or order. Requires the following permissions: AUTHENTICATED_APP and HANDLE_PAYMENTS. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + transactionUpdate?: Maybe; + /** + * Remove shipping zone from given warehouse. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + unassignWarehouseShippingZone?: Maybe; + /** Updates metadata of an object. To use it, you need to have access to the modified object. */ + updateMetadata?: Maybe; + /** Updates private metadata of an object. To use it, you need to be an authenticated staff user or an app and have access to the modified object. */ + updatePrivateMetadata?: Maybe; + /** + * Updates given warehouse. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + updateWarehouse?: Maybe; + /** + * Deletes a user avatar. Only for staff members. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + */ + userAvatarDelete?: Maybe; + /** + * Create a user avatar. Only for staff members. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + */ + userAvatarUpdate?: Maybe; + /** + * Activate or deactivate users. + * + * Requires one of the following permissions: MANAGE_USERS. + */ + userBulkSetActive?: Maybe; + /** + * Assign an media to a product variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + variantMediaAssign?: Maybe; + /** + * Unassign an media from a product variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + variantMediaUnassign?: Maybe; + /** + * Deletes vouchers. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + voucherBulkDelete?: Maybe; + /** + * Adds products, categories, collections to a voucher. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + voucherCataloguesAdd?: Maybe; + /** + * Removes products, categories, collections from a voucher. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + voucherCataloguesRemove?: Maybe; + /** + * Manage voucher's availability in channels. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + voucherChannelListingUpdate?: Maybe; + /** + * Creates a new voucher. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + voucherCreate?: Maybe; + /** + * Deletes a voucher. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + voucherDelete?: Maybe; + /** + * Creates/updates translations for a voucher. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ + voucherTranslate?: Maybe; + /** + * Updates a voucher. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + voucherUpdate?: Maybe; + /** + * Creates a new webhook subscription. + * + * Requires one of the following permissions: MANAGE_APPS, AUTHENTICATED_APP. + */ + webhookCreate?: Maybe; + /** + * Delete a webhook. Before the deletion, the webhook is deactivated to pause any deliveries that are already scheduled. The deletion might fail if delivery is in progress. In such a case, the webhook is not deleted but remains deactivated. + * + * Requires one of the following permissions: MANAGE_APPS, AUTHENTICATED_APP. + */ + webhookDelete?: Maybe; + /** + * Updates a webhook subscription. + * + * Requires one of the following permissions: MANAGE_APPS. + */ + webhookUpdate?: Maybe; +}; + + +export type MutationAccountAddressCreateArgs = { + input: AddressInput; + type?: InputMaybe; +}; + + +export type MutationAccountAddressDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationAccountAddressUpdateArgs = { + id: Scalars['ID']; + input: AddressInput; +}; + + +export type MutationAccountDeleteArgs = { + token: Scalars['String']; +}; + + +export type MutationAccountRegisterArgs = { + input: AccountRegisterInput; +}; + + +export type MutationAccountRequestDeletionArgs = { + channel?: InputMaybe; + redirectUrl: Scalars['String']; +}; + + +export type MutationAccountSetDefaultAddressArgs = { + id: Scalars['ID']; + type: AddressTypeEnum; +}; + + +export type MutationAccountUpdateArgs = { + input: AccountInput; +}; + + +export type MutationAddressCreateArgs = { + input: AddressInput; + userId: Scalars['ID']; +}; + + +export type MutationAddressDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationAddressSetDefaultArgs = { + addressId: Scalars['ID']; + type: AddressTypeEnum; + userId: Scalars['ID']; +}; + + +export type MutationAddressUpdateArgs = { + id: Scalars['ID']; + input: AddressInput; +}; + + +export type MutationAppActivateArgs = { + id: Scalars['ID']; +}; + + +export type MutationAppCreateArgs = { + input: AppInput; +}; + + +export type MutationAppDeactivateArgs = { + id: Scalars['ID']; +}; + + +export type MutationAppDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationAppDeleteFailedInstallationArgs = { + id: Scalars['ID']; +}; + + +export type MutationAppFetchManifestArgs = { + manifestUrl: Scalars['String']; +}; + + +export type MutationAppInstallArgs = { + input: AppInstallInput; +}; + + +export type MutationAppRetryInstallArgs = { + activateAfterInstallation?: InputMaybe; + id: Scalars['ID']; +}; + + +export type MutationAppTokenCreateArgs = { + input: AppTokenInput; +}; + + +export type MutationAppTokenDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationAppTokenVerifyArgs = { + token: Scalars['String']; +}; + + +export type MutationAppUpdateArgs = { + id: Scalars['ID']; + input: AppInput; +}; + + +export type MutationAssignNavigationArgs = { + menu?: InputMaybe; + navigationType: NavigationType; +}; + + +export type MutationAssignWarehouseShippingZoneArgs = { + id: Scalars['ID']; + shippingZoneIds: Array; +}; + + +export type MutationAttributeBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationAttributeCreateArgs = { + input: AttributeCreateInput; +}; + + +export type MutationAttributeDeleteArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; +}; + + +export type MutationAttributeReorderValuesArgs = { + attributeId: Scalars['ID']; + moves: Array; +}; + + +export type MutationAttributeTranslateArgs = { + id: Scalars['ID']; + input: NameTranslationInput; + languageCode: LanguageCodeEnum; +}; + + +export type MutationAttributeUpdateArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; + input: AttributeUpdateInput; +}; + + +export type MutationAttributeValueBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationAttributeValueCreateArgs = { + attribute: Scalars['ID']; + input: AttributeValueCreateInput; +}; + + +export type MutationAttributeValueDeleteArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; +}; + + +export type MutationAttributeValueTranslateArgs = { + id: Scalars['ID']; + input: AttributeValueTranslationInput; + languageCode: LanguageCodeEnum; +}; + + +export type MutationAttributeValueUpdateArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; + input: AttributeValueUpdateInput; +}; + + +export type MutationCategoryBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationCategoryCreateArgs = { + input: CategoryInput; + parent?: InputMaybe; +}; + + +export type MutationCategoryDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationCategoryTranslateArgs = { + id: Scalars['ID']; + input: TranslationInput; + languageCode: LanguageCodeEnum; +}; + + +export type MutationCategoryUpdateArgs = { + id: Scalars['ID']; + input: CategoryInput; +}; + + +export type MutationChannelActivateArgs = { + id: Scalars['ID']; +}; + + +export type MutationChannelCreateArgs = { + input: ChannelCreateInput; +}; + + +export type MutationChannelDeactivateArgs = { + id: Scalars['ID']; +}; + + +export type MutationChannelDeleteArgs = { + id: Scalars['ID']; + input?: InputMaybe; +}; + + +export type MutationChannelReorderWarehousesArgs = { + channelId: Scalars['ID']; + moves: Array; +}; + + +export type MutationChannelUpdateArgs = { + id: Scalars['ID']; + input: ChannelUpdateInput; +}; + + +export type MutationCheckoutAddPromoCodeArgs = { + checkoutId?: InputMaybe; + id?: InputMaybe; + promoCode: Scalars['String']; + token?: InputMaybe; +}; + + +export type MutationCheckoutBillingAddressUpdateArgs = { + billingAddress: AddressInput; + checkoutId?: InputMaybe; + id?: InputMaybe; + token?: InputMaybe; + validationRules?: InputMaybe; +}; + + +export type MutationCheckoutCompleteArgs = { + checkoutId?: InputMaybe; + id?: InputMaybe; + metadata?: InputMaybe>; + paymentData?: InputMaybe; + redirectUrl?: InputMaybe; + storeSource?: InputMaybe; + token?: InputMaybe; +}; + + +export type MutationCheckoutCreateArgs = { + input: CheckoutCreateInput; +}; + + +export type MutationCheckoutCustomerAttachArgs = { + checkoutId?: InputMaybe; + customerId?: InputMaybe; + id?: InputMaybe; + token?: InputMaybe; +}; + + +export type MutationCheckoutCustomerDetachArgs = { + checkoutId?: InputMaybe; + id?: InputMaybe; + token?: InputMaybe; +}; + + +export type MutationCheckoutDeliveryMethodUpdateArgs = { + deliveryMethodId?: InputMaybe; + id?: InputMaybe; + token?: InputMaybe; +}; + + +export type MutationCheckoutEmailUpdateArgs = { + checkoutId?: InputMaybe; + email: Scalars['String']; + id?: InputMaybe; + token?: InputMaybe; +}; + + +export type MutationCheckoutLanguageCodeUpdateArgs = { + checkoutId?: InputMaybe; + id?: InputMaybe; + languageCode: LanguageCodeEnum; + token?: InputMaybe; +}; + + +export type MutationCheckoutLineDeleteArgs = { + checkoutId?: InputMaybe; + id?: InputMaybe; + lineId?: InputMaybe; + token?: InputMaybe; +}; + + +export type MutationCheckoutLinesAddArgs = { + checkoutId?: InputMaybe; + id?: InputMaybe; + lines: Array; + token?: InputMaybe; +}; + + +export type MutationCheckoutLinesDeleteArgs = { + id?: InputMaybe; + linesIds: Array; + token?: InputMaybe; +}; + + +export type MutationCheckoutLinesUpdateArgs = { + checkoutId?: InputMaybe; + id?: InputMaybe; + lines: Array; + token?: InputMaybe; +}; + + +export type MutationCheckoutPaymentCreateArgs = { + checkoutId?: InputMaybe; + id?: InputMaybe; + input: PaymentInput; + token?: InputMaybe; +}; + + +export type MutationCheckoutRemovePromoCodeArgs = { + checkoutId?: InputMaybe; + id?: InputMaybe; + promoCode?: InputMaybe; + promoCodeId?: InputMaybe; + token?: InputMaybe; +}; + + +export type MutationCheckoutShippingAddressUpdateArgs = { + checkoutId?: InputMaybe; + id?: InputMaybe; + shippingAddress: AddressInput; + token?: InputMaybe; + validationRules?: InputMaybe; +}; + + +export type MutationCheckoutShippingMethodUpdateArgs = { + checkoutId?: InputMaybe; + id?: InputMaybe; + shippingMethodId: Scalars['ID']; + token?: InputMaybe; +}; + + +export type MutationCollectionAddProductsArgs = { + collectionId: Scalars['ID']; + products: Array; +}; + + +export type MutationCollectionBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationCollectionChannelListingUpdateArgs = { + id: Scalars['ID']; + input: CollectionChannelListingUpdateInput; +}; + + +export type MutationCollectionCreateArgs = { + input: CollectionCreateInput; +}; + + +export type MutationCollectionDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationCollectionRemoveProductsArgs = { + collectionId: Scalars['ID']; + products: Array; +}; + + +export type MutationCollectionReorderProductsArgs = { + collectionId: Scalars['ID']; + moves: Array; +}; + + +export type MutationCollectionTranslateArgs = { + id: Scalars['ID']; + input: TranslationInput; + languageCode: LanguageCodeEnum; +}; + + +export type MutationCollectionUpdateArgs = { + id: Scalars['ID']; + input: CollectionInput; +}; + + +export type MutationConfirmAccountArgs = { + email: Scalars['String']; + token: Scalars['String']; +}; + + +export type MutationConfirmEmailChangeArgs = { + channel?: InputMaybe; + token: Scalars['String']; +}; + + +export type MutationCreateWarehouseArgs = { + input: WarehouseCreateInput; +}; + + +export type MutationCustomerBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationCustomerCreateArgs = { + input: UserCreateInput; +}; + + +export type MutationCustomerDeleteArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; +}; + + +export type MutationCustomerUpdateArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; + input: CustomerInput; +}; + + +export type MutationDeleteMetadataArgs = { + id: Scalars['ID']; + keys: Array; +}; + + +export type MutationDeletePrivateMetadataArgs = { + id: Scalars['ID']; + keys: Array; +}; + + +export type MutationDeleteWarehouseArgs = { + id: Scalars['ID']; +}; + + +export type MutationDigitalContentCreateArgs = { + input: DigitalContentUploadInput; + variantId: Scalars['ID']; +}; + + +export type MutationDigitalContentDeleteArgs = { + variantId: Scalars['ID']; +}; + + +export type MutationDigitalContentUpdateArgs = { + input: DigitalContentInput; + variantId: Scalars['ID']; +}; + + +export type MutationDigitalContentUrlCreateArgs = { + input: DigitalContentUrlCreateInput; +}; + + +export type MutationDraftOrderBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationDraftOrderCompleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationDraftOrderCreateArgs = { + input: DraftOrderCreateInput; +}; + + +export type MutationDraftOrderDeleteArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; +}; + + +export type MutationDraftOrderLinesBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationDraftOrderUpdateArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; + input: DraftOrderInput; +}; + + +export type MutationEventDeliveryRetryArgs = { + id: Scalars['ID']; +}; + + +export type MutationExportGiftCardsArgs = { + input: ExportGiftCardsInput; +}; + + +export type MutationExportProductsArgs = { + input: ExportProductsInput; +}; + + +export type MutationExternalAuthenticationUrlArgs = { + input: Scalars['JSONString']; + pluginId: Scalars['String']; +}; + + +export type MutationExternalLogoutArgs = { + input: Scalars['JSONString']; + pluginId: Scalars['String']; +}; + + +export type MutationExternalNotificationTriggerArgs = { + channel: Scalars['String']; + input: ExternalNotificationTriggerInput; + pluginId?: InputMaybe; +}; + + +export type MutationExternalObtainAccessTokensArgs = { + input: Scalars['JSONString']; + pluginId: Scalars['String']; +}; + + +export type MutationExternalRefreshArgs = { + input: Scalars['JSONString']; + pluginId: Scalars['String']; +}; + + +export type MutationExternalVerifyArgs = { + input: Scalars['JSONString']; + pluginId: Scalars['String']; +}; + + +export type MutationFileUploadArgs = { + file: Scalars['Upload']; +}; + + +export type MutationGiftCardActivateArgs = { + id: Scalars['ID']; +}; + + +export type MutationGiftCardAddNoteArgs = { + id: Scalars['ID']; + input: GiftCardAddNoteInput; +}; + + +export type MutationGiftCardBulkActivateArgs = { + ids: Array; +}; + + +export type MutationGiftCardBulkCreateArgs = { + input: GiftCardBulkCreateInput; +}; + + +export type MutationGiftCardBulkDeactivateArgs = { + ids: Array; +}; + + +export type MutationGiftCardBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationGiftCardCreateArgs = { + input: GiftCardCreateInput; +}; + + +export type MutationGiftCardDeactivateArgs = { + id: Scalars['ID']; +}; + + +export type MutationGiftCardDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationGiftCardResendArgs = { + input: GiftCardResendInput; +}; + + +export type MutationGiftCardSettingsUpdateArgs = { + input: GiftCardSettingsUpdateInput; +}; + + +export type MutationGiftCardUpdateArgs = { + id: Scalars['ID']; + input: GiftCardUpdateInput; +}; + + +export type MutationInvoiceCreateArgs = { + input: InvoiceCreateInput; + orderId: Scalars['ID']; +}; + + +export type MutationInvoiceDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationInvoiceRequestArgs = { + number?: InputMaybe; + orderId: Scalars['ID']; +}; + + +export type MutationInvoiceRequestDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationInvoiceSendNotificationArgs = { + id: Scalars['ID']; +}; + + +export type MutationInvoiceUpdateArgs = { + id: Scalars['ID']; + input: UpdateInvoiceInput; +}; + + +export type MutationMenuBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationMenuCreateArgs = { + input: MenuCreateInput; +}; + + +export type MutationMenuDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationMenuItemBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationMenuItemCreateArgs = { + input: MenuItemCreateInput; +}; + + +export type MutationMenuItemDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationMenuItemMoveArgs = { + menu: Scalars['ID']; + moves: Array; +}; + + +export type MutationMenuItemTranslateArgs = { + id: Scalars['ID']; + input: NameTranslationInput; + languageCode: LanguageCodeEnum; +}; + + +export type MutationMenuItemUpdateArgs = { + id: Scalars['ID']; + input: MenuItemInput; +}; + + +export type MutationMenuUpdateArgs = { + id: Scalars['ID']; + input: MenuInput; +}; + + +export type MutationOrderAddNoteArgs = { + input: OrderAddNoteInput; + order: Scalars['ID']; +}; + + +export type MutationOrderBulkCancelArgs = { + ids: Array; +}; + + +export type MutationOrderCancelArgs = { + id: Scalars['ID']; +}; + + +export type MutationOrderCaptureArgs = { + amount: Scalars['PositiveDecimal']; + id: Scalars['ID']; +}; + + +export type MutationOrderConfirmArgs = { + id: Scalars['ID']; +}; + + +export type MutationOrderCreateFromCheckoutArgs = { + id: Scalars['ID']; + metadata?: InputMaybe>; + privateMetadata?: InputMaybe>; + removeCheckout?: InputMaybe; +}; + + +export type MutationOrderDiscountAddArgs = { + input: OrderDiscountCommonInput; + orderId: Scalars['ID']; +}; + + +export type MutationOrderDiscountDeleteArgs = { + discountId: Scalars['ID']; +}; + + +export type MutationOrderDiscountUpdateArgs = { + discountId: Scalars['ID']; + input: OrderDiscountCommonInput; +}; + + +export type MutationOrderFulfillArgs = { + input: OrderFulfillInput; + order?: InputMaybe; +}; + + +export type MutationOrderFulfillmentApproveArgs = { + allowStockToBeExceeded?: InputMaybe; + id: Scalars['ID']; + notifyCustomer: Scalars['Boolean']; +}; + + +export type MutationOrderFulfillmentCancelArgs = { + id: Scalars['ID']; + input?: InputMaybe; +}; + + +export type MutationOrderFulfillmentRefundProductsArgs = { + input: OrderRefundProductsInput; + order: Scalars['ID']; +}; + + +export type MutationOrderFulfillmentReturnProductsArgs = { + input: OrderReturnProductsInput; + order: Scalars['ID']; +}; + + +export type MutationOrderFulfillmentUpdateTrackingArgs = { + id: Scalars['ID']; + input: FulfillmentUpdateTrackingInput; +}; + + +export type MutationOrderLineDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationOrderLineDiscountRemoveArgs = { + orderLineId: Scalars['ID']; +}; + + +export type MutationOrderLineDiscountUpdateArgs = { + input: OrderDiscountCommonInput; + orderLineId: Scalars['ID']; +}; + + +export type MutationOrderLineUpdateArgs = { + id: Scalars['ID']; + input: OrderLineInput; +}; + + +export type MutationOrderLinesCreateArgs = { + id: Scalars['ID']; + input: Array; +}; + + +export type MutationOrderMarkAsPaidArgs = { + id: Scalars['ID']; + transactionReference?: InputMaybe; +}; + + +export type MutationOrderRefundArgs = { + amount: Scalars['PositiveDecimal']; + id: Scalars['ID']; +}; + + +export type MutationOrderSettingsUpdateArgs = { + input: OrderSettingsUpdateInput; +}; + + +export type MutationOrderUpdateArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; + input: OrderUpdateInput; +}; + + +export type MutationOrderUpdateShippingArgs = { + input: OrderUpdateShippingInput; + order: Scalars['ID']; +}; + + +export type MutationOrderVoidArgs = { + id: Scalars['ID']; +}; + + +export type MutationPageAttributeAssignArgs = { + attributeIds: Array; + pageTypeId: Scalars['ID']; +}; + + +export type MutationPageAttributeUnassignArgs = { + attributeIds: Array; + pageTypeId: Scalars['ID']; +}; + + +export type MutationPageBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationPageBulkPublishArgs = { + ids: Array; + isPublished: Scalars['Boolean']; +}; + + +export type MutationPageCreateArgs = { + input: PageCreateInput; +}; + + +export type MutationPageDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationPageReorderAttributeValuesArgs = { + attributeId: Scalars['ID']; + moves: Array; + pageId: Scalars['ID']; +}; + + +export type MutationPageTranslateArgs = { + id: Scalars['ID']; + input: PageTranslationInput; + languageCode: LanguageCodeEnum; +}; + + +export type MutationPageTypeBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationPageTypeCreateArgs = { + input: PageTypeCreateInput; +}; + + +export type MutationPageTypeDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationPageTypeReorderAttributesArgs = { + moves: Array; + pageTypeId: Scalars['ID']; +}; + + +export type MutationPageTypeUpdateArgs = { + id?: InputMaybe; + input: PageTypeUpdateInput; +}; + + +export type MutationPageUpdateArgs = { + id: Scalars['ID']; + input: PageInput; +}; + + +export type MutationPasswordChangeArgs = { + newPassword: Scalars['String']; + oldPassword: Scalars['String']; +}; + + +export type MutationPaymentCaptureArgs = { + amount?: InputMaybe; + paymentId: Scalars['ID']; +}; + + +export type MutationPaymentCheckBalanceArgs = { + input: PaymentCheckBalanceInput; +}; + + +export type MutationPaymentInitializeArgs = { + channel?: InputMaybe; + gateway: Scalars['String']; + paymentData?: InputMaybe; +}; + + +export type MutationPaymentRefundArgs = { + amount?: InputMaybe; + paymentId: Scalars['ID']; +}; + + +export type MutationPaymentVoidArgs = { + paymentId: Scalars['ID']; +}; + + +export type MutationPermissionGroupCreateArgs = { + input: PermissionGroupCreateInput; +}; + + +export type MutationPermissionGroupDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationPermissionGroupUpdateArgs = { + id: Scalars['ID']; + input: PermissionGroupUpdateInput; +}; + + +export type MutationPluginUpdateArgs = { + channelId?: InputMaybe; + id: Scalars['ID']; + input: PluginUpdateInput; +}; + + +export type MutationProductAttributeAssignArgs = { + operations: Array; + productTypeId: Scalars['ID']; +}; + + +export type MutationProductAttributeAssignmentUpdateArgs = { + operations: Array; + productTypeId: Scalars['ID']; +}; + + +export type MutationProductAttributeUnassignArgs = { + attributeIds: Array; + productTypeId: Scalars['ID']; +}; + + +export type MutationProductBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationProductChannelListingUpdateArgs = { + id: Scalars['ID']; + input: ProductChannelListingUpdateInput; +}; + + +export type MutationProductCreateArgs = { + input: ProductCreateInput; +}; + + +export type MutationProductDeleteArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; +}; + + +export type MutationProductMediaBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationProductMediaCreateArgs = { + input: ProductMediaCreateInput; +}; + + +export type MutationProductMediaDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationProductMediaReorderArgs = { + mediaIds: Array; + productId: Scalars['ID']; +}; + + +export type MutationProductMediaUpdateArgs = { + id: Scalars['ID']; + input: ProductMediaUpdateInput; +}; + + +export type MutationProductReorderAttributeValuesArgs = { + attributeId: Scalars['ID']; + moves: Array; + productId: Scalars['ID']; +}; + + +export type MutationProductTranslateArgs = { + id: Scalars['ID']; + input: TranslationInput; + languageCode: LanguageCodeEnum; +}; + + +export type MutationProductTypeBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationProductTypeCreateArgs = { + input: ProductTypeInput; +}; + + +export type MutationProductTypeDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationProductTypeReorderAttributesArgs = { + moves: Array; + productTypeId: Scalars['ID']; + type: ProductAttributeType; +}; + + +export type MutationProductTypeUpdateArgs = { + id: Scalars['ID']; + input: ProductTypeInput; +}; + + +export type MutationProductUpdateArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; + input: ProductInput; +}; + + +export type MutationProductVariantBulkCreateArgs = { + product: Scalars['ID']; + variants: Array; +}; + + +export type MutationProductVariantBulkDeleteArgs = { + ids?: InputMaybe>; + skus?: InputMaybe>; +}; + + +export type MutationProductVariantChannelListingUpdateArgs = { + id?: InputMaybe; + input: Array; + sku?: InputMaybe; +}; + + +export type MutationProductVariantCreateArgs = { + input: ProductVariantCreateInput; +}; + + +export type MutationProductVariantDeleteArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; + sku?: InputMaybe; +}; + + +export type MutationProductVariantPreorderDeactivateArgs = { + id: Scalars['ID']; +}; + + +export type MutationProductVariantReorderArgs = { + moves: Array; + productId: Scalars['ID']; +}; + + +export type MutationProductVariantReorderAttributeValuesArgs = { + attributeId: Scalars['ID']; + moves: Array; + variantId: Scalars['ID']; +}; + + +export type MutationProductVariantSetDefaultArgs = { + productId: Scalars['ID']; + variantId: Scalars['ID']; +}; + + +export type MutationProductVariantStocksCreateArgs = { + stocks: Array; + variantId: Scalars['ID']; +}; + + +export type MutationProductVariantStocksDeleteArgs = { + sku?: InputMaybe; + variantId?: InputMaybe; + warehouseIds?: InputMaybe>; +}; + + +export type MutationProductVariantStocksUpdateArgs = { + sku?: InputMaybe; + stocks: Array; + variantId?: InputMaybe; +}; + + +export type MutationProductVariantTranslateArgs = { + id: Scalars['ID']; + input: NameTranslationInput; + languageCode: LanguageCodeEnum; +}; + + +export type MutationProductVariantUpdateArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; + input: ProductVariantInput; + sku?: InputMaybe; +}; + + +export type MutationRequestEmailChangeArgs = { + channel?: InputMaybe; + newEmail: Scalars['String']; + password: Scalars['String']; + redirectUrl: Scalars['String']; +}; + + +export type MutationRequestPasswordResetArgs = { + channel?: InputMaybe; + email: Scalars['String']; + redirectUrl: Scalars['String']; +}; + + +export type MutationSaleBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationSaleCataloguesAddArgs = { + id: Scalars['ID']; + input: CatalogueInput; +}; + + +export type MutationSaleCataloguesRemoveArgs = { + id: Scalars['ID']; + input: CatalogueInput; +}; + + +export type MutationSaleChannelListingUpdateArgs = { + id: Scalars['ID']; + input: SaleChannelListingInput; +}; + + +export type MutationSaleCreateArgs = { + input: SaleInput; +}; + + +export type MutationSaleDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationSaleTranslateArgs = { + id: Scalars['ID']; + input: NameTranslationInput; + languageCode: LanguageCodeEnum; +}; + + +export type MutationSaleUpdateArgs = { + id: Scalars['ID']; + input: SaleInput; +}; + + +export type MutationSetPasswordArgs = { + email: Scalars['String']; + password: Scalars['String']; + token: Scalars['String']; +}; + + +export type MutationShippingMethodChannelListingUpdateArgs = { + id: Scalars['ID']; + input: ShippingMethodChannelListingInput; +}; + + +export type MutationShippingPriceBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationShippingPriceCreateArgs = { + input: ShippingPriceInput; +}; + + +export type MutationShippingPriceDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationShippingPriceExcludeProductsArgs = { + id: Scalars['ID']; + input: ShippingPriceExcludeProductsInput; +}; + + +export type MutationShippingPriceRemoveProductFromExcludeArgs = { + id: Scalars['ID']; + products: Array; +}; + + +export type MutationShippingPriceTranslateArgs = { + id: Scalars['ID']; + input: ShippingPriceTranslationInput; + languageCode: LanguageCodeEnum; +}; + + +export type MutationShippingPriceUpdateArgs = { + id: Scalars['ID']; + input: ShippingPriceInput; +}; + + +export type MutationShippingZoneBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationShippingZoneCreateArgs = { + input: ShippingZoneCreateInput; +}; + + +export type MutationShippingZoneDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationShippingZoneUpdateArgs = { + id: Scalars['ID']; + input: ShippingZoneUpdateInput; +}; + + +export type MutationShopAddressUpdateArgs = { + input?: InputMaybe; +}; + + +export type MutationShopDomainUpdateArgs = { + input?: InputMaybe; +}; + + +export type MutationShopSettingsTranslateArgs = { + input: ShopSettingsTranslationInput; + languageCode: LanguageCodeEnum; +}; + + +export type MutationShopSettingsUpdateArgs = { + input: ShopSettingsInput; +}; + + +export type MutationStaffBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationStaffCreateArgs = { + input: StaffCreateInput; +}; + + +export type MutationStaffDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationStaffNotificationRecipientCreateArgs = { + input: StaffNotificationRecipientInput; +}; + + +export type MutationStaffNotificationRecipientDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationStaffNotificationRecipientUpdateArgs = { + id: Scalars['ID']; + input: StaffNotificationRecipientInput; +}; + + +export type MutationStaffUpdateArgs = { + id: Scalars['ID']; + input: StaffUpdateInput; +}; + + +export type MutationTaxClassCreateArgs = { + input: TaxClassCreateInput; +}; + + +export type MutationTaxClassDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationTaxClassUpdateArgs = { + id: Scalars['ID']; + input: TaxClassUpdateInput; +}; + + +export type MutationTaxConfigurationUpdateArgs = { + id: Scalars['ID']; + input: TaxConfigurationUpdateInput; +}; + + +export type MutationTaxCountryConfigurationDeleteArgs = { + countryCode: CountryCode; +}; + + +export type MutationTaxCountryConfigurationUpdateArgs = { + countryCode: CountryCode; + updateTaxClassRates: Array; +}; + + +export type MutationTaxExemptionManageArgs = { + id: Scalars['ID']; + taxExemption: Scalars['Boolean']; +}; + + +export type MutationTokenCreateArgs = { + audience?: InputMaybe; + email: Scalars['String']; + password: Scalars['String']; +}; + + +export type MutationTokenRefreshArgs = { + csrfToken?: InputMaybe; + refreshToken?: InputMaybe; +}; + + +export type MutationTokenVerifyArgs = { + token: Scalars['String']; +}; + + +export type MutationTransactionCreateArgs = { + id: Scalars['ID']; + transaction: TransactionCreateInput; + transactionEvent?: InputMaybe; +}; + + +export type MutationTransactionRequestActionArgs = { + actionType: TransactionActionEnum; + amount?: InputMaybe; + id: Scalars['ID']; +}; + + +export type MutationTransactionUpdateArgs = { + id: Scalars['ID']; + transaction?: InputMaybe; + transactionEvent?: InputMaybe; +}; + + +export type MutationUnassignWarehouseShippingZoneArgs = { + id: Scalars['ID']; + shippingZoneIds: Array; +}; + + +export type MutationUpdateMetadataArgs = { + id: Scalars['ID']; + input: Array; +}; + + +export type MutationUpdatePrivateMetadataArgs = { + id: Scalars['ID']; + input: Array; +}; + + +export type MutationUpdateWarehouseArgs = { + id: Scalars['ID']; + input: WarehouseUpdateInput; +}; + + +export type MutationUserAvatarUpdateArgs = { + image: Scalars['Upload']; +}; + + +export type MutationUserBulkSetActiveArgs = { + ids: Array; + isActive: Scalars['Boolean']; +}; + + +export type MutationVariantMediaAssignArgs = { + mediaId: Scalars['ID']; + variantId: Scalars['ID']; +}; + + +export type MutationVariantMediaUnassignArgs = { + mediaId: Scalars['ID']; + variantId: Scalars['ID']; +}; + + +export type MutationVoucherBulkDeleteArgs = { + ids: Array; +}; + + +export type MutationVoucherCataloguesAddArgs = { + id: Scalars['ID']; + input: CatalogueInput; +}; + + +export type MutationVoucherCataloguesRemoveArgs = { + id: Scalars['ID']; + input: CatalogueInput; +}; + + +export type MutationVoucherChannelListingUpdateArgs = { + id: Scalars['ID']; + input: VoucherChannelListingInput; +}; + + +export type MutationVoucherCreateArgs = { + input: VoucherInput; +}; + + +export type MutationVoucherDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationVoucherTranslateArgs = { + id: Scalars['ID']; + input: NameTranslationInput; + languageCode: LanguageCodeEnum; +}; + + +export type MutationVoucherUpdateArgs = { + id: Scalars['ID']; + input: VoucherInput; +}; + + +export type MutationWebhookCreateArgs = { + input: WebhookCreateInput; +}; + + +export type MutationWebhookDeleteArgs = { + id: Scalars['ID']; +}; + + +export type MutationWebhookUpdateArgs = { + id: Scalars['ID']; + input: WebhookUpdateInput; +}; + +export type NameTranslationInput = { + name?: InputMaybe; +}; + +export enum NavigationType { + /** Main storefront navigation. */ + Main = 'MAIN', + /** Secondary storefront navigation. */ + Secondary = 'SECONDARY' +} + +/** An object with an ID */ +export type Node = { + /** The ID of the object. */ + id: Scalars['ID']; +}; + +export type ObjectWithMetadata = { + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; +}; + + +export type ObjectWithMetadataMetafieldArgs = { + key: Scalars['String']; +}; + + +export type ObjectWithMetadataMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +export type ObjectWithMetadataPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +export type ObjectWithMetadataPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +/** Represents an order in the shop. */ +export type Order = Node & ObjectWithMetadata & { + __typename?: 'Order'; + /** List of actions that can be performed in the current state of an order. */ + actions: Array; + /** + * The authorize status of the order. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + authorizeStatus: OrderAuthorizeStatusEnum; + /** + * Collection points that can be used for this order. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + availableCollectionPoints: Array; + /** + * Shipping methods that can be used with this order. + * @deprecated Use `shippingMethods`, this field will be removed in 4.0 + */ + availableShippingMethods?: Maybe>; + /** Billing address. The full data can be access for orders created in Saleor 3.2 and later, for other orders requires one of the following permissions: MANAGE_ORDERS, OWNER. */ + billingAddress?: Maybe
; + /** Informs whether a draft order can be finalized(turned into a regular order). */ + canFinalize: Scalars['Boolean']; + channel: Channel; + /** + * The charge status of the order. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + chargeStatus: OrderChargeStatusEnum; + collectionPointName?: Maybe; + created: Scalars['DateTime']; + customerNote: Scalars['String']; + /** + * The delivery method selected for this order. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + deliveryMethod?: Maybe; + /** + * Returns applied discount. + * @deprecated This field will be removed in Saleor 4.0. Use the `discounts` field instead. + */ + discount?: Maybe; + /** + * Discount name. + * @deprecated This field will be removed in Saleor 4.0. Use the `discounts` field instead. + */ + discountName?: Maybe; + /** List of all discounts assigned to the order. */ + discounts: Array; + /** + * Determines whether checkout prices should include taxes when displayed in a storefront. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + displayGrossPrices: Scalars['Boolean']; + /** List of errors that occurred during order validation. */ + errors: Array; + /** + * List of events associated with the order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + events: Array; + /** + * External ID of this order. + * + * Added in Saleor 3.10. + */ + externalReference?: Maybe; + /** List of shipments for the order. */ + fulfillments: Array; + /** List of user gift cards. */ + giftCards: Array; + id: Scalars['ID']; + /** List of order invoices. Can be fetched for orders created in Saleor 3.2 and later, for other orders requires one of the following permissions: MANAGE_ORDERS, OWNER. */ + invoices: Array; + /** Informs if an order is fully paid. */ + isPaid: Scalars['Boolean']; + /** Returns True, if order requires shipping. */ + isShippingRequired: Scalars['Boolean']; + /** @deprecated This field will be removed in Saleor 4.0. Use the `languageCodeEnum` field to fetch the language code. */ + languageCode: Scalars['String']; + /** Order language code. */ + languageCodeEnum: LanguageCodeEnum; + /** List of order lines. */ + lines: Array; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + /** User-friendly number of an order. */ + number: Scalars['String']; + /** The order origin. */ + origin: OrderOriginEnum; + /** The ID of the order that was the base for this order. */ + original?: Maybe; + /** Internal payment status. */ + paymentStatus: PaymentChargeStatusEnum; + /** User-friendly payment status. */ + paymentStatusDisplay: Scalars['String']; + /** List of payments for the order. */ + payments: Array; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + redirectUrl?: Maybe; + /** Shipping address. The full data can be access for orders created in Saleor 3.2 and later, for other orders requires one of the following permissions: MANAGE_ORDERS, OWNER. */ + shippingAddress?: Maybe
; + /** + * Shipping method for this order. + * @deprecated This field will be removed in Saleor 4.0. Use `deliveryMethod` instead. + */ + shippingMethod?: Maybe; + shippingMethodName?: Maybe; + /** Shipping methods related to this order. */ + shippingMethods: Array; + /** Total price of shipping. */ + shippingPrice: TaxedMoney; + /** + * Denormalized tax class assigned to the shipping method. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + */ + shippingTaxClass?: Maybe; + /** + * Denormalized public metadata of the shipping method's tax class. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + shippingTaxClassMetadata: Array; + /** + * Denormalized name of the tax class assigned to the shipping method. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + shippingTaxClassName?: Maybe; + /** + * Denormalized private metadata of the shipping method's tax class. Requires staff permissions to access. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + shippingTaxClassPrivateMetadata: Array; + /** The shipping tax rate value. */ + shippingTaxRate: Scalars['Float']; + status: OrderStatus; + /** User-friendly order status. */ + statusDisplay: Scalars['String']; + /** The sum of line prices not including shipping. */ + subtotal: TaxedMoney; + /** + * Returns True if order has to be exempt from taxes. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + taxExemption: Scalars['Boolean']; + /** @deprecated This field will be removed in Saleor 4.0. Use `id` instead. */ + token: Scalars['String']; + /** Total amount of the order. */ + total: TaxedMoney; + /** Amount authorized for the order. */ + totalAuthorized: Money; + /** The difference between the paid and the order total amount. */ + totalBalance: Money; + /** Amount captured by payment. */ + totalCaptured: Money; + trackingClientId: Scalars['String']; + /** + * List of transactions for the order. Requires one of the following permissions: MANAGE_ORDERS, HANDLE_PAYMENTS. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + transactions: Array; + /** + * Translated discount name. + * @deprecated This field will be removed in Saleor 4.0. Use the `discounts` field instead. + */ + translatedDiscountName?: Maybe; + /** Undiscounted total amount of the order. */ + undiscountedTotal: TaxedMoney; + updatedAt: Scalars['DateTime']; + /** User who placed the order. This field is set only for orders placed by authenticated users. Can be fetched for orders created in Saleor 3.2 and later, for other orders requires one of the following permissions: MANAGE_USERS, MANAGE_ORDERS, OWNER. */ + user?: Maybe; + /** Email address of the customer. The full data can be access for orders created in Saleor 3.2 and later, for other orders requires one of the following permissions: MANAGE_ORDERS, OWNER. */ + userEmail?: Maybe; + voucher?: Maybe; + weight: Weight; +}; + + +/** Represents an order in the shop. */ +export type OrderMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents an order in the shop. */ +export type OrderMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents an order in the shop. */ +export type OrderPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents an order in the shop. */ +export type OrderPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +export enum OrderAction { + /** Represents the capture action. */ + Capture = 'CAPTURE', + /** Represents a mark-as-paid action. */ + MarkAsPaid = 'MARK_AS_PAID', + /** Represents a refund action. */ + Refund = 'REFUND', + /** Represents a void action. */ + Void = 'VOID' +} + +/** + * Adds note to the order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderAddNote = { + __typename?: 'OrderAddNote'; + errors: Array; + /** Order note created. */ + event?: Maybe; + /** Order with the note added. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +export type OrderAddNoteInput = { + /** Note message. */ + message: Scalars['String']; +}; + +/** + * Determine a current authorize status for order. + * + * We treat the order as fully authorized when the sum of authorized and charged funds + * cover the order.total. + * We treat the order as partially authorized when the sum of authorized and charged + * funds covers only part of the order.total + * We treat the order as not authorized when the sum of authorized and charged funds is + * 0. + * + * NONE - the funds are not authorized + * PARTIAL - the funds that are authorized or charged don't cover fully the order's + * total + * FULL - the funds that are authorized or charged fully cover the order's total + */ +export enum OrderAuthorizeStatusEnum { + Full = 'FULL', + None = 'NONE', + Partial = 'PARTIAL' +} + +/** + * Cancels orders. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderBulkCancel = { + __typename?: 'OrderBulkCancel'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +/** + * Cancel an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderCancel = { + __typename?: 'OrderCancel'; + errors: Array; + /** Canceled order. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +/** + * Event sent when order is canceled. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type OrderCancelled = Event & { + __typename?: 'OrderCancelled'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The order the event relates to. */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Capture an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderCapture = { + __typename?: 'OrderCapture'; + errors: Array; + /** Captured order. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +/** + * Determine the current charge status for the order. + * + * We treat the order as overcharged when the charged amount is bigger that order.total + * We treat the order as fully charged when the charged amount is equal to order.total. + * We treat the order as partially charged when the charged amount covers only part of + * the order.total + * + * NONE - the funds are not charged. + * PARTIAL - the funds that are charged don't cover the order's total + * FULL - the funds that are charged fully cover the order's total + * OVERCHARGED - the charged funds are bigger than order's total + */ +export enum OrderChargeStatusEnum { + Full = 'FULL', + None = 'NONE', + Overcharged = 'OVERCHARGED', + Partial = 'PARTIAL' +} + +/** + * Confirms an unconfirmed order by changing status to unfulfilled. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderConfirm = { + __typename?: 'OrderConfirm'; + errors: Array; + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +/** + * Event sent when order is confirmed. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type OrderConfirmed = Event & { + __typename?: 'OrderConfirmed'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The order the event relates to. */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type OrderCountableConnection = { + __typename?: 'OrderCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type OrderCountableEdge = { + __typename?: 'OrderCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: Order; +}; + +/** + * Create new order from existing checkout. Requires the following permissions: AUTHENTICATED_APP and HANDLE_CHECKOUTS. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type OrderCreateFromCheckout = { + __typename?: 'OrderCreateFromCheckout'; + errors: Array; + /** Placed order. */ + order?: Maybe; +}; + +export type OrderCreateFromCheckoutError = { + __typename?: 'OrderCreateFromCheckoutError'; + /** The error code. */ + code: OrderCreateFromCheckoutErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** List of line Ids which cause the error. */ + lines?: Maybe>; + /** The error message. */ + message?: Maybe; + /** List of variant IDs which causes the error. */ + variants?: Maybe>; +}; + +/** An enumeration. */ +export enum OrderCreateFromCheckoutErrorCode { + BillingAddressNotSet = 'BILLING_ADDRESS_NOT_SET', + ChannelInactive = 'CHANNEL_INACTIVE', + CheckoutNotFound = 'CHECKOUT_NOT_FOUND', + EmailNotSet = 'EMAIL_NOT_SET', + GiftCardNotApplicable = 'GIFT_CARD_NOT_APPLICABLE', + GraphqlError = 'GRAPHQL_ERROR', + InsufficientStock = 'INSUFFICIENT_STOCK', + InvalidShippingMethod = 'INVALID_SHIPPING_METHOD', + NoLines = 'NO_LINES', + ShippingAddressNotSet = 'SHIPPING_ADDRESS_NOT_SET', + ShippingMethodNotSet = 'SHIPPING_METHOD_NOT_SET', + TaxError = 'TAX_ERROR', + UnavailableVariantInChannel = 'UNAVAILABLE_VARIANT_IN_CHANNEL', + VoucherNotApplicable = 'VOUCHER_NOT_APPLICABLE' +} + +/** + * Event sent when new order is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type OrderCreated = Event & { + __typename?: 'OrderCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The order the event relates to. */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export enum OrderDirection { + /** Specifies an ascending sort order. */ + Asc = 'ASC', + /** Specifies a descending sort order. */ + Desc = 'DESC' +} + +/** Contains all details related to the applied discount to the order. */ +export type OrderDiscount = Node & { + __typename?: 'OrderDiscount'; + /** Returns amount of discount. */ + amount: Money; + id: Scalars['ID']; + name?: Maybe; + /** + * Explanation for the applied discount. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + reason?: Maybe; + translatedName?: Maybe; + type: OrderDiscountType; + /** Value of the discount. Can store fixed value or percent value */ + value: Scalars['PositiveDecimal']; + /** Type of the discount: fixed or percent */ + valueType: DiscountValueTypeEnum; +}; + +/** + * Adds discount to the order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderDiscountAdd = { + __typename?: 'OrderDiscountAdd'; + errors: Array; + /** Order which has been discounted. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +export type OrderDiscountCommonInput = { + /** Explanation for the applied discount. */ + reason?: InputMaybe; + /** Value of the discount. Can store fixed value or percent value */ + value: Scalars['PositiveDecimal']; + /** Type of the discount: fixed or percent */ + valueType: DiscountValueTypeEnum; +}; + +/** + * Remove discount from the order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderDiscountDelete = { + __typename?: 'OrderDiscountDelete'; + errors: Array; + /** Order which has removed discount. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +/** An enumeration. */ +export enum OrderDiscountType { + Manual = 'MANUAL', + Voucher = 'VOUCHER' +} + +/** + * Update discount for the order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderDiscountUpdate = { + __typename?: 'OrderDiscountUpdate'; + errors: Array; + /** Order which has been discounted. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +export type OrderDraftFilterInput = { + channels?: InputMaybe>; + created?: InputMaybe; + customer?: InputMaybe; + metadata?: InputMaybe>; + search?: InputMaybe; +}; + +export type OrderError = { + __typename?: 'OrderError'; + /** A type of address that causes the error. */ + addressType?: Maybe; + /** The error code. */ + code: OrderErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of order line IDs that cause the error. */ + orderLines?: Maybe>; + /** List of product variants that are associated with the error */ + variants?: Maybe>; + /** Warehouse ID which causes the error. */ + warehouse?: Maybe; +}; + +/** An enumeration. */ +export enum OrderErrorCode { + BillingAddressNotSet = 'BILLING_ADDRESS_NOT_SET', + CannotCancelFulfillment = 'CANNOT_CANCEL_FULFILLMENT', + CannotCancelOrder = 'CANNOT_CANCEL_ORDER', + CannotDelete = 'CANNOT_DELETE', + CannotDiscount = 'CANNOT_DISCOUNT', + CannotFulfillUnpaidOrder = 'CANNOT_FULFILL_UNPAID_ORDER', + CannotRefund = 'CANNOT_REFUND', + CaptureInactivePayment = 'CAPTURE_INACTIVE_PAYMENT', + ChannelInactive = 'CHANNEL_INACTIVE', + DuplicatedInputItem = 'DUPLICATED_INPUT_ITEM', + FulfillOrderLine = 'FULFILL_ORDER_LINE', + GiftCardLine = 'GIFT_CARD_LINE', + GraphqlError = 'GRAPHQL_ERROR', + InsufficientStock = 'INSUFFICIENT_STOCK', + Invalid = 'INVALID', + InvalidQuantity = 'INVALID_QUANTITY', + MissingTransactionActionRequestWebhook = 'MISSING_TRANSACTION_ACTION_REQUEST_WEBHOOK', + NotAvailableInChannel = 'NOT_AVAILABLE_IN_CHANNEL', + NotEditable = 'NOT_EDITABLE', + NotFound = 'NOT_FOUND', + OrderNoShippingAddress = 'ORDER_NO_SHIPPING_ADDRESS', + PaymentError = 'PAYMENT_ERROR', + PaymentMissing = 'PAYMENT_MISSING', + ProductNotPublished = 'PRODUCT_NOT_PUBLISHED', + ProductUnavailableForPurchase = 'PRODUCT_UNAVAILABLE_FOR_PURCHASE', + Required = 'REQUIRED', + ShippingMethodNotApplicable = 'SHIPPING_METHOD_NOT_APPLICABLE', + ShippingMethodRequired = 'SHIPPING_METHOD_REQUIRED', + TaxError = 'TAX_ERROR', + Unique = 'UNIQUE', + VoidInactivePayment = 'VOID_INACTIVE_PAYMENT', + ZeroQuantity = 'ZERO_QUANTITY' +} + +/** History log of the order. */ +export type OrderEvent = Node & { + __typename?: 'OrderEvent'; + /** Amount of money. */ + amount?: Maybe; + /** App that performed the action. Requires of of the following permissions: MANAGE_APPS, MANAGE_ORDERS, OWNER. */ + app?: Maybe; + /** Composed ID of the Fulfillment. */ + composedId?: Maybe; + /** Date when event happened at in ISO 8601 format. */ + date?: Maybe; + /** The discount applied to the order. */ + discount?: Maybe; + /** Email of the customer. */ + email?: Maybe; + /** Type of an email sent to the customer. */ + emailType?: Maybe; + /** The lines fulfilled. */ + fulfilledItems?: Maybe>; + id: Scalars['ID']; + /** Number of an invoice related to the order. */ + invoiceNumber?: Maybe; + /** The concerned lines. */ + lines?: Maybe>; + /** Content of the event. */ + message?: Maybe; + /** User-friendly number of an order. */ + orderNumber?: Maybe; + /** List of oversold lines names. */ + oversoldItems?: Maybe>; + /** The payment gateway of the payment. */ + paymentGateway?: Maybe; + /** The payment reference from the payment provider. */ + paymentId?: Maybe; + /** Number of items. */ + quantity?: Maybe; + /** The reference of payment's transaction. */ + reference?: Maybe; + /** The order which is related to this order. */ + relatedOrder?: Maybe; + /** Define if shipping costs were included to the refund. */ + shippingCostsIncluded?: Maybe; + /** The status of payment's transaction. */ + status?: Maybe; + /** The transaction reference of captured payment. */ + transactionReference?: Maybe; + /** Order event type. */ + type?: Maybe; + /** User who performed the action. */ + user?: Maybe; + /** The warehouse were items were restocked. */ + warehouse?: Maybe; +}; + +export type OrderEventCountableConnection = { + __typename?: 'OrderEventCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type OrderEventCountableEdge = { + __typename?: 'OrderEventCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: OrderEvent; +}; + +export type OrderEventDiscountObject = { + __typename?: 'OrderEventDiscountObject'; + /** Returns amount of discount. */ + amount?: Maybe; + /** Returns amount of discount. */ + oldAmount?: Maybe; + /** Value of the discount. Can store fixed value or percent value. */ + oldValue?: Maybe; + /** Type of the discount: fixed or percent. */ + oldValueType?: Maybe; + /** Explanation for the applied discount. */ + reason?: Maybe; + /** Value of the discount. Can store fixed value or percent value. */ + value: Scalars['PositiveDecimal']; + /** Type of the discount: fixed or percent. */ + valueType: DiscountValueTypeEnum; +}; + +export type OrderEventOrderLineObject = { + __typename?: 'OrderEventOrderLineObject'; + /** The discount applied to the order line. */ + discount?: Maybe; + /** The variant name. */ + itemName?: Maybe; + /** The order line. */ + orderLine?: Maybe; + /** The variant quantity. */ + quantity?: Maybe; +}; + +/** An enumeration. */ +export enum OrderEventsEmailsEnum { + Confirmed = 'CONFIRMED', + DigitalLinks = 'DIGITAL_LINKS', + FulfillmentConfirmation = 'FULFILLMENT_CONFIRMATION', + OrderCancel = 'ORDER_CANCEL', + OrderConfirmation = 'ORDER_CONFIRMATION', + OrderRefund = 'ORDER_REFUND', + PaymentConfirmation = 'PAYMENT_CONFIRMATION', + ShippingConfirmation = 'SHIPPING_CONFIRMATION', + TrackingUpdated = 'TRACKING_UPDATED' +} + +/** An enumeration. */ +export enum OrderEventsEnum { + AddedProducts = 'ADDED_PRODUCTS', + Canceled = 'CANCELED', + Confirmed = 'CONFIRMED', + DraftCreated = 'DRAFT_CREATED', + DraftCreatedFromReplace = 'DRAFT_CREATED_FROM_REPLACE', + EmailSent = 'EMAIL_SENT', + ExternalServiceNotification = 'EXTERNAL_SERVICE_NOTIFICATION', + FulfillmentAwaitsApproval = 'FULFILLMENT_AWAITS_APPROVAL', + FulfillmentCanceled = 'FULFILLMENT_CANCELED', + FulfillmentFulfilledItems = 'FULFILLMENT_FULFILLED_ITEMS', + FulfillmentRefunded = 'FULFILLMENT_REFUNDED', + FulfillmentReplaced = 'FULFILLMENT_REPLACED', + FulfillmentRestockedItems = 'FULFILLMENT_RESTOCKED_ITEMS', + FulfillmentReturned = 'FULFILLMENT_RETURNED', + InvoiceGenerated = 'INVOICE_GENERATED', + InvoiceRequested = 'INVOICE_REQUESTED', + InvoiceSent = 'INVOICE_SENT', + InvoiceUpdated = 'INVOICE_UPDATED', + NoteAdded = 'NOTE_ADDED', + OrderDiscountAdded = 'ORDER_DISCOUNT_ADDED', + OrderDiscountAutomaticallyUpdated = 'ORDER_DISCOUNT_AUTOMATICALLY_UPDATED', + OrderDiscountDeleted = 'ORDER_DISCOUNT_DELETED', + OrderDiscountUpdated = 'ORDER_DISCOUNT_UPDATED', + OrderFullyPaid = 'ORDER_FULLY_PAID', + OrderLineDiscountRemoved = 'ORDER_LINE_DISCOUNT_REMOVED', + OrderLineDiscountUpdated = 'ORDER_LINE_DISCOUNT_UPDATED', + OrderLineProductDeleted = 'ORDER_LINE_PRODUCT_DELETED', + OrderLineVariantDeleted = 'ORDER_LINE_VARIANT_DELETED', + OrderMarkedAsPaid = 'ORDER_MARKED_AS_PAID', + OrderReplacementCreated = 'ORDER_REPLACEMENT_CREATED', + Other = 'OTHER', + OversoldItems = 'OVERSOLD_ITEMS', + PaymentAuthorized = 'PAYMENT_AUTHORIZED', + PaymentCaptured = 'PAYMENT_CAPTURED', + PaymentFailed = 'PAYMENT_FAILED', + PaymentRefunded = 'PAYMENT_REFUNDED', + PaymentVoided = 'PAYMENT_VOIDED', + Placed = 'PLACED', + PlacedFromDraft = 'PLACED_FROM_DRAFT', + RemovedProducts = 'REMOVED_PRODUCTS', + TrackingUpdated = 'TRACKING_UPDATED', + TransactionCaptureRequested = 'TRANSACTION_CAPTURE_REQUESTED', + TransactionEvent = 'TRANSACTION_EVENT', + TransactionRefundRequested = 'TRANSACTION_REFUND_REQUESTED', + TransactionVoidRequested = 'TRANSACTION_VOID_REQUESTED', + UpdatedAddress = 'UPDATED_ADDRESS' +} + +export type OrderFilterInput = { + authorizeStatus?: InputMaybe>; + channels?: InputMaybe>; + chargeStatus?: InputMaybe>; + created?: InputMaybe; + customer?: InputMaybe; + giftCardBought?: InputMaybe; + giftCardUsed?: InputMaybe; + ids?: InputMaybe>; + isClickAndCollect?: InputMaybe; + isPreorder?: InputMaybe; + metadata?: InputMaybe>; + numbers?: InputMaybe>; + paymentStatus?: InputMaybe>; + search?: InputMaybe; + status?: InputMaybe>; + updatedAt?: InputMaybe; +}; + +/** + * Filter shipping methods for order. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type OrderFilterShippingMethods = Event & { + __typename?: 'OrderFilterShippingMethods'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The order the event relates to. */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** + * Shipping methods that can be used with this checkout. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + shippingMethods?: Maybe>; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Creates new fulfillments for an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderFulfill = { + __typename?: 'OrderFulfill'; + errors: Array; + /** List of created fulfillments. */ + fulfillments?: Maybe>; + /** Fulfilled order. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +export type OrderFulfillInput = { + /** If true, then allow proceed fulfillment when stock is exceeded. */ + allowStockToBeExceeded?: InputMaybe; + /** List of items informing how to fulfill the order. */ + lines: Array; + /** If true, send an email notification to the customer. */ + notifyCustomer?: InputMaybe; + /** + * Fulfillment tracking number. + * + * Added in Saleor 3.6. + */ + trackingNumber?: InputMaybe; +}; + +export type OrderFulfillLineInput = { + /** The ID of the order line. */ + orderLineId?: InputMaybe; + /** List of stock items to create. */ + stocks: Array; +}; + +export type OrderFulfillStockInput = { + /** The number of line items to be fulfilled from given warehouse. */ + quantity: Scalars['Int']; + /** ID of the warehouse from which the item will be fulfilled. */ + warehouse: Scalars['ID']; +}; + +/** + * Event sent when order is fulfilled. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type OrderFulfilled = Event & { + __typename?: 'OrderFulfilled'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The order the event relates to. */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Event sent when order is fully paid. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type OrderFullyPaid = Event & { + __typename?: 'OrderFullyPaid'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The order the event relates to. */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** Represents order line of particular order. */ +export type OrderLine = Node & ObjectWithMetadata & { + __typename?: 'OrderLine'; + /** + * List of allocations across warehouses. + * + * Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + */ + allocations?: Maybe>; + digitalContentUrl?: Maybe; + id: Scalars['ID']; + isShippingRequired: Scalars['Boolean']; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + productName: Scalars['String']; + productSku?: Maybe; + productVariantId?: Maybe; + quantity: Scalars['Int']; + quantityFulfilled: Scalars['Int']; + /** + * A quantity of items remaining to be fulfilled. + * + * Added in Saleor 3.1. + */ + quantityToFulfill: Scalars['Int']; + /** + * Denormalized tax class of the product in this order line. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + */ + taxClass?: Maybe; + /** + * Denormalized public metadata of the tax class. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + taxClassMetadata: Array; + /** + * Denormalized name of the tax class. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + taxClassName?: Maybe; + /** + * Denormalized private metadata of the tax class. Requires staff permissions to access. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + taxClassPrivateMetadata: Array; + taxRate: Scalars['Float']; + thumbnail?: Maybe; + /** Price of the order line. */ + totalPrice: TaxedMoney; + /** Product name in the customer's language */ + translatedProductName: Scalars['String']; + /** Variant name in the customer's language */ + translatedVariantName: Scalars['String']; + /** Price of the single item in the order line without applied an order line discount. */ + undiscountedUnitPrice: TaxedMoney; + /** The discount applied to the single order line. */ + unitDiscount: Money; + unitDiscountReason?: Maybe; + /** Type of the discount: fixed or percent */ + unitDiscountType?: Maybe; + /** Value of the discount. Can store fixed value or percent value */ + unitDiscountValue: Scalars['PositiveDecimal']; + /** Price of the single item in the order line. */ + unitPrice: TaxedMoney; + /** A purchased product variant. Note: this field may be null if the variant has been removed from stock at all. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. */ + variant?: Maybe; + variantName: Scalars['String']; +}; + + +/** Represents order line of particular order. */ +export type OrderLineMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents order line of particular order. */ +export type OrderLineMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents order line of particular order. */ +export type OrderLinePrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents order line of particular order. */ +export type OrderLinePrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents order line of particular order. */ +export type OrderLineThumbnailArgs = { + format?: InputMaybe; + size?: InputMaybe; +}; + +export type OrderLineCreateInput = { + /** + * Flag that allow force splitting the same variant into multiple lines by skipping the matching logic. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + forceNewLine?: InputMaybe; + /** Number of variant items ordered. */ + quantity: Scalars['Int']; + /** Product variant ID. */ + variantId: Scalars['ID']; +}; + +/** + * Deletes an order line from an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderLineDelete = { + __typename?: 'OrderLineDelete'; + errors: Array; + /** A related order. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; + /** An order line that was deleted. */ + orderLine?: Maybe; +}; + +/** + * Remove discount applied to the order line. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderLineDiscountRemove = { + __typename?: 'OrderLineDiscountRemove'; + errors: Array; + /** Order which is related to line which has removed discount. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; + /** Order line which has removed discount. */ + orderLine?: Maybe; +}; + +/** + * Update discount for the order line. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderLineDiscountUpdate = { + __typename?: 'OrderLineDiscountUpdate'; + errors: Array; + /** Order which is related to the discounted line. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; + /** Order line which has been discounted. */ + orderLine?: Maybe; +}; + +export type OrderLineInput = { + /** Number of variant items ordered. */ + quantity: Scalars['Int']; +}; + +/** + * Updates an order line of an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderLineUpdate = { + __typename?: 'OrderLineUpdate'; + errors: Array; + /** Related order. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; + orderLine?: Maybe; +}; + +/** + * Create order lines for an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderLinesCreate = { + __typename?: 'OrderLinesCreate'; + errors: Array; + /** Related order. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; + /** List of added order lines. */ + orderLines?: Maybe>; +}; + +/** + * Mark order as manually paid. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderMarkAsPaid = { + __typename?: 'OrderMarkAsPaid'; + errors: Array; + /** Order marked as paid. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +/** + * Event sent when order metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type OrderMetadataUpdated = Event & { + __typename?: 'OrderMetadataUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The order the event relates to. */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** An enumeration. */ +export enum OrderOriginEnum { + Checkout = 'CHECKOUT', + Draft = 'DRAFT', + Reissue = 'REISSUE' +} + +/** + * Refund an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderRefund = { + __typename?: 'OrderRefund'; + errors: Array; + /** A refunded order. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +export type OrderRefundFulfillmentLineInput = { + /** The ID of the fulfillment line to refund. */ + fulfillmentLineId: Scalars['ID']; + /** The number of items to be refunded. */ + quantity: Scalars['Int']; +}; + +export type OrderRefundLineInput = { + /** The ID of the order line to refund. */ + orderLineId: Scalars['ID']; + /** The number of items to be refunded. */ + quantity: Scalars['Int']; +}; + +export type OrderRefundProductsInput = { + /** The total amount of refund when the value is provided manually. */ + amountToRefund?: InputMaybe; + /** List of fulfilled lines to refund. */ + fulfillmentLines?: InputMaybe>; + /** If true, Saleor will refund shipping costs. If amountToRefund is providedincludeShippingCosts will be ignored. */ + includeShippingCosts?: InputMaybe; + /** List of unfulfilled lines to refund. */ + orderLines?: InputMaybe>; +}; + +export type OrderReturnFulfillmentLineInput = { + /** The ID of the fulfillment line to return. */ + fulfillmentLineId: Scalars['ID']; + /** The number of items to be returned. */ + quantity: Scalars['Int']; + /** Determines, if the line should be added to replace order. */ + replace?: InputMaybe; +}; + +export type OrderReturnLineInput = { + /** The ID of the order line to return. */ + orderLineId: Scalars['ID']; + /** The number of items to be returned. */ + quantity: Scalars['Int']; + /** Determines, if the line should be added to replace order. */ + replace?: InputMaybe; +}; + +export type OrderReturnProductsInput = { + /** The total amount of refund when the value is provided manually. */ + amountToRefund?: InputMaybe; + /** List of fulfilled lines to return. */ + fulfillmentLines?: InputMaybe>; + /** If true, Saleor will refund shipping costs. If amountToRefund is providedincludeShippingCosts will be ignored. */ + includeShippingCosts?: InputMaybe; + /** List of unfulfilled lines to return. */ + orderLines?: InputMaybe>; + /** If true, Saleor will call refund action for all lines. */ + refund?: InputMaybe; +}; + +/** Order related settings from site settings. */ +export type OrderSettings = { + __typename?: 'OrderSettings'; + automaticallyConfirmAllNewOrders: Scalars['Boolean']; + automaticallyFulfillNonShippableGiftCard: Scalars['Boolean']; +}; + +export type OrderSettingsError = { + __typename?: 'OrderSettingsError'; + /** The error code. */ + code: OrderSettingsErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum OrderSettingsErrorCode { + Invalid = 'INVALID' +} + +/** + * Update shop order settings. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderSettingsUpdate = { + __typename?: 'OrderSettingsUpdate'; + errors: Array; + /** Order settings. */ + orderSettings?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderSettingsErrors: Array; +}; + +export type OrderSettingsUpdateInput = { + /** When disabled, all new orders from checkout will be marked as unconfirmed. When enabled orders from checkout will become unfulfilled immediately. */ + automaticallyConfirmAllNewOrders?: InputMaybe; + /** When enabled, all non-shippable gift card orders will be fulfilled automatically. */ + automaticallyFulfillNonShippableGiftCard?: InputMaybe; +}; + +export enum OrderSortField { + /** + * Sort orders by creation date. + * + * DEPRECATED: this field will be removed in Saleor 4.0. + */ + CreatedAt = 'CREATED_AT', + /** + * Sort orders by creation date. + * + * DEPRECATED: this field will be removed in Saleor 4.0. + */ + CreationDate = 'CREATION_DATE', + /** Sort orders by customer. */ + Customer = 'CUSTOMER', + /** Sort orders by fulfillment status. */ + FulfillmentStatus = 'FULFILLMENT_STATUS', + /** Sort orders by last modified at. */ + LastModifiedAt = 'LAST_MODIFIED_AT', + /** Sort orders by number. */ + Number = 'NUMBER', + /** Sort orders by payment. */ + Payment = 'PAYMENT', + /** Sort orders by rank. Note: This option is available only with the `search` filter. */ + Rank = 'RANK' +} + +export type OrderSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort orders by the selected field. */ + field: OrderSortField; +}; + +/** An enumeration. */ +export enum OrderStatus { + Canceled = 'CANCELED', + Draft = 'DRAFT', + Fulfilled = 'FULFILLED', + PartiallyFulfilled = 'PARTIALLY_FULFILLED', + PartiallyReturned = 'PARTIALLY_RETURNED', + Returned = 'RETURNED', + Unconfirmed = 'UNCONFIRMED', + Unfulfilled = 'UNFULFILLED' +} + +export enum OrderStatusFilter { + Canceled = 'CANCELED', + Fulfilled = 'FULFILLED', + PartiallyFulfilled = 'PARTIALLY_FULFILLED', + ReadyToCapture = 'READY_TO_CAPTURE', + ReadyToFulfill = 'READY_TO_FULFILL', + Unconfirmed = 'UNCONFIRMED', + Unfulfilled = 'UNFULFILLED' +} + +/** + * Updates an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderUpdate = { + __typename?: 'OrderUpdate'; + errors: Array; + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +export type OrderUpdateInput = { + /** Billing address of the customer. */ + billingAddress?: InputMaybe; + /** + * External ID of this order. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** Shipping address of the customer. */ + shippingAddress?: InputMaybe; + /** Email address of the customer. */ + userEmail?: InputMaybe; +}; + +/** + * Updates a shipping method of the order. Requires shipping method ID to update, when null is passed then currently assigned shipping method is removed. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderUpdateShipping = { + __typename?: 'OrderUpdateShipping'; + errors: Array; + /** Order with updated shipping method. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +export type OrderUpdateShippingInput = { + /** ID of the selected shipping method, pass null to remove currently assigned shipping method. */ + shippingMethod?: InputMaybe; +}; + +/** + * Event sent when order is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type OrderUpdated = Event & { + __typename?: 'OrderUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The order the event relates to. */ + order?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Void an order. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type OrderVoid = { + __typename?: 'OrderVoid'; + errors: Array; + /** A voided order. */ + order?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + orderErrors: Array; +}; + +/** A static page that can be manually added by a shop operator through the dashboard. */ +export type Page = Node & ObjectWithMetadata & { + __typename?: 'Page'; + /** List of attributes assigned to this product. */ + attributes: Array; + /** + * Content of the page. + * + * Rich text format. For reference see https://editorjs.io/ + */ + content?: Maybe; + /** + * Content of the page. + * + * Rich text format. For reference see https://editorjs.io/ + * @deprecated This field will be removed in Saleor 4.0. Use the `content` field instead. + */ + contentJson: Scalars['JSONString']; + created: Scalars['DateTime']; + id: Scalars['ID']; + isPublished: Scalars['Boolean']; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + pageType: PageType; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use the `publishedAt` field to fetch the publication date. */ + publicationDate?: Maybe; + /** + * The page publication date. + * + * Added in Saleor 3.3. + */ + publishedAt?: Maybe; + seoDescription?: Maybe; + seoTitle?: Maybe; + slug: Scalars['String']; + title: Scalars['String']; + /** Returns translated page fields for the given language code. */ + translation?: Maybe; +}; + + +/** A static page that can be manually added by a shop operator through the dashboard. */ +export type PageMetafieldArgs = { + key: Scalars['String']; +}; + + +/** A static page that can be manually added by a shop operator through the dashboard. */ +export type PageMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** A static page that can be manually added by a shop operator through the dashboard. */ +export type PagePrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** A static page that can be manually added by a shop operator through the dashboard. */ +export type PagePrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** A static page that can be manually added by a shop operator through the dashboard. */ +export type PageTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Assign attributes to a given page type. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ +export type PageAttributeAssign = { + __typename?: 'PageAttributeAssign'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + pageErrors: Array; + /** The updated page type. */ + pageType?: Maybe; +}; + +/** + * Unassign attributes from a given page type. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ +export type PageAttributeUnassign = { + __typename?: 'PageAttributeUnassign'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + pageErrors: Array; + /** The updated page type. */ + pageType?: Maybe; +}; + +/** + * Deletes pages. + * + * Requires one of the following permissions: MANAGE_PAGES. + */ +export type PageBulkDelete = { + __typename?: 'PageBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + pageErrors: Array; +}; + +/** + * Publish pages. + * + * Requires one of the following permissions: MANAGE_PAGES. + */ +export type PageBulkPublish = { + __typename?: 'PageBulkPublish'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + pageErrors: Array; +}; + +export type PageCountableConnection = { + __typename?: 'PageCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type PageCountableEdge = { + __typename?: 'PageCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: Page; +}; + +/** + * Creates a new page. + * + * Requires one of the following permissions: MANAGE_PAGES. + */ +export type PageCreate = { + __typename?: 'PageCreate'; + errors: Array; + page?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + pageErrors: Array; +}; + +export type PageCreateInput = { + /** List of attributes. */ + attributes?: InputMaybe>; + /** + * Page content. + * + * Rich text format. For reference see https://editorjs.io/ + */ + content?: InputMaybe; + /** Determines if page is visible in the storefront. */ + isPublished?: InputMaybe; + /** ID of the page type that page belongs to. */ + pageType: Scalars['ID']; + /** + * Publication date. ISO 8601 standard. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use `publishedAt` field instead. + */ + publicationDate?: InputMaybe; + /** + * Publication date time. ISO 8601 standard. + * + * Added in Saleor 3.3. + */ + publishedAt?: InputMaybe; + /** Search engine optimization fields. */ + seo?: InputMaybe; + /** Page internal name. */ + slug?: InputMaybe; + /** Page title. */ + title?: InputMaybe; +}; + +/** + * Event sent when new page is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PageCreated = Event & { + __typename?: 'PageCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The page the event relates to. */ + page?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Deletes a page. + * + * Requires one of the following permissions: MANAGE_PAGES. + */ +export type PageDelete = { + __typename?: 'PageDelete'; + errors: Array; + page?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + pageErrors: Array; +}; + +/** + * Event sent when page is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PageDeleted = Event & { + __typename?: 'PageDeleted'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The page the event relates to. */ + page?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type PageError = { + __typename?: 'PageError'; + /** List of attributes IDs which causes the error. */ + attributes?: Maybe>; + /** The error code. */ + code: PageErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of attribute values IDs which causes the error. */ + values?: Maybe>; +}; + +/** An enumeration. */ +export enum PageErrorCode { + AttributeAlreadyAssigned = 'ATTRIBUTE_ALREADY_ASSIGNED', + DuplicatedInputItem = 'DUPLICATED_INPUT_ITEM', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND', + Required = 'REQUIRED', + Unique = 'UNIQUE' +} + +export type PageFilterInput = { + ids?: InputMaybe>; + metadata?: InputMaybe>; + pageTypes?: InputMaybe>; + search?: InputMaybe; + slugs?: InputMaybe>; +}; + +/** The Relay compliant `PageInfo` type, containing data necessary to paginate this connection. */ +export type PageInfo = { + __typename?: 'PageInfo'; + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe; + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']; + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']; + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe; +}; + +export type PageInput = { + /** List of attributes. */ + attributes?: InputMaybe>; + /** + * Page content. + * + * Rich text format. For reference see https://editorjs.io/ + */ + content?: InputMaybe; + /** Determines if page is visible in the storefront. */ + isPublished?: InputMaybe; + /** + * Publication date. ISO 8601 standard. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use `publishedAt` field instead. + */ + publicationDate?: InputMaybe; + /** + * Publication date time. ISO 8601 standard. + * + * Added in Saleor 3.3. + */ + publishedAt?: InputMaybe; + /** Search engine optimization fields. */ + seo?: InputMaybe; + /** Page internal name. */ + slug?: InputMaybe; + /** Page title. */ + title?: InputMaybe; +}; + +/** + * Reorder page attribute values. + * + * Requires one of the following permissions: MANAGE_PAGES. + */ +export type PageReorderAttributeValues = { + __typename?: 'PageReorderAttributeValues'; + errors: Array; + /** Page from which attribute values are reordered. */ + page?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + pageErrors: Array; +}; + +export enum PageSortField { + /** + * Sort pages by creation date. + * + * DEPRECATED: this field will be removed in Saleor 4.0. + */ + CreatedAt = 'CREATED_AT', + /** + * Sort pages by creation date. + * + * DEPRECATED: this field will be removed in Saleor 4.0. + */ + CreationDate = 'CREATION_DATE', + /** + * Sort pages by publication date. + * + * DEPRECATED: this field will be removed in Saleor 4.0. + */ + PublicationDate = 'PUBLICATION_DATE', + /** + * Sort pages by publication date. + * + * DEPRECATED: this field will be removed in Saleor 4.0. + */ + PublishedAt = 'PUBLISHED_AT', + /** Sort pages by slug. */ + Slug = 'SLUG', + /** Sort pages by title. */ + Title = 'TITLE', + /** Sort pages by visibility. */ + Visibility = 'VISIBILITY' +} + +export type PageSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort pages by the selected field. */ + field: PageSortField; +}; + +export type PageTranslatableContent = Node & { + __typename?: 'PageTranslatableContent'; + /** List of page content attribute values that can be translated. */ + attributeValues: Array; + /** + * Content of the page. + * + * Rich text format. For reference see https://editorjs.io/ + */ + content?: Maybe; + /** + * Content of the page. + * + * Rich text format. For reference see https://editorjs.io/ + * @deprecated This field will be removed in Saleor 4.0. Use the `content` field instead. + */ + contentJson?: Maybe; + id: Scalars['ID']; + /** + * A static page that can be manually added by a shop operator through the dashboard. + * @deprecated This field will be removed in Saleor 4.0. Get model fields from the root level queries. + */ + page?: Maybe; + seoDescription?: Maybe; + seoTitle?: Maybe; + title: Scalars['String']; + /** Returns translated page fields for the given language code. */ + translation?: Maybe; +}; + + +export type PageTranslatableContentTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Creates/updates translations for a page. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ +export type PageTranslate = { + __typename?: 'PageTranslate'; + errors: Array; + page?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + translationErrors: Array; +}; + +export type PageTranslation = Node & { + __typename?: 'PageTranslation'; + /** + * Translated content of the page. + * + * Rich text format. For reference see https://editorjs.io/ + */ + content?: Maybe; + /** + * Translated description of the page. + * + * Rich text format. For reference see https://editorjs.io/ + * @deprecated This field will be removed in Saleor 4.0. Use the `content` field instead. + */ + contentJson?: Maybe; + id: Scalars['ID']; + /** Translation language. */ + language: LanguageDisplay; + seoDescription?: Maybe; + seoTitle?: Maybe; + title?: Maybe; +}; + +export type PageTranslationInput = { + /** + * Translated page content. + * + * Rich text format. For reference see https://editorjs.io/ + */ + content?: InputMaybe; + seoDescription?: InputMaybe; + seoTitle?: InputMaybe; + title?: InputMaybe; +}; + +/** Represents a type of page. It defines what attributes are available to pages of this type. */ +export type PageType = Node & ObjectWithMetadata & { + __typename?: 'PageType'; + /** Page attributes of that page type. */ + attributes?: Maybe>; + /** + * Attributes that can be assigned to the page type. + * + * Requires one of the following permissions: MANAGE_PAGES. + */ + availableAttributes?: Maybe; + /** + * Whether page type has pages assigned. + * + * Requires one of the following permissions: MANAGE_PAGES. + */ + hasPages?: Maybe; + id: Scalars['ID']; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + name: Scalars['String']; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + slug: Scalars['String']; +}; + + +/** Represents a type of page. It defines what attributes are available to pages of this type. */ +export type PageTypeAvailableAttributesArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Represents a type of page. It defines what attributes are available to pages of this type. */ +export type PageTypeMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a type of page. It defines what attributes are available to pages of this type. */ +export type PageTypeMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents a type of page. It defines what attributes are available to pages of this type. */ +export type PageTypePrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a type of page. It defines what attributes are available to pages of this type. */ +export type PageTypePrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +/** + * Delete page types. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ +export type PageTypeBulkDelete = { + __typename?: 'PageTypeBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + pageErrors: Array; +}; + +export type PageTypeCountableConnection = { + __typename?: 'PageTypeCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type PageTypeCountableEdge = { + __typename?: 'PageTypeCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: PageType; +}; + +/** + * Create a new page type. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ +export type PageTypeCreate = { + __typename?: 'PageTypeCreate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + pageErrors: Array; + pageType?: Maybe; +}; + +export type PageTypeCreateInput = { + /** List of attribute IDs to be assigned to the page type. */ + addAttributes?: InputMaybe>; + /** Name of the page type. */ + name?: InputMaybe; + /** Page type slug. */ + slug?: InputMaybe; +}; + +/** + * Event sent when new page type is created. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PageTypeCreated = Event & { + __typename?: 'PageTypeCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The page type the event relates to. */ + pageType?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Delete a page type. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ +export type PageTypeDelete = { + __typename?: 'PageTypeDelete'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + pageErrors: Array; + pageType?: Maybe; +}; + +/** + * Event sent when page type is deleted. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PageTypeDeleted = Event & { + __typename?: 'PageTypeDeleted'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The page type the event relates to. */ + pageType?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type PageTypeFilterInput = { + search?: InputMaybe; + slugs?: InputMaybe>; +}; + +/** + * Reorder the attributes of a page type. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ +export type PageTypeReorderAttributes = { + __typename?: 'PageTypeReorderAttributes'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + pageErrors: Array; + /** Page type from which attributes are reordered. */ + pageType?: Maybe; +}; + +export enum PageTypeSortField { + /** Sort page types by name. */ + Name = 'NAME', + /** Sort page types by slug. */ + Slug = 'SLUG' +} + +export type PageTypeSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort page types by the selected field. */ + field: PageTypeSortField; +}; + +/** + * Update page type. + * + * Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + */ +export type PageTypeUpdate = { + __typename?: 'PageTypeUpdate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + pageErrors: Array; + pageType?: Maybe; +}; + +export type PageTypeUpdateInput = { + /** List of attribute IDs to be assigned to the page type. */ + addAttributes?: InputMaybe>; + /** Name of the page type. */ + name?: InputMaybe; + /** List of attribute IDs to be assigned to the page type. */ + removeAttributes?: InputMaybe>; + /** Page type slug. */ + slug?: InputMaybe; +}; + +/** + * Event sent when page type is updated. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PageTypeUpdated = Event & { + __typename?: 'PageTypeUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The page type the event relates to. */ + pageType?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Updates an existing page. + * + * Requires one of the following permissions: MANAGE_PAGES. + */ +export type PageUpdate = { + __typename?: 'PageUpdate'; + errors: Array; + page?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + pageErrors: Array; +}; + +/** + * Event sent when page is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PageUpdated = Event & { + __typename?: 'PageUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The page the event relates to. */ + page?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Change the password of the logged in user. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ +export type PasswordChange = { + __typename?: 'PasswordChange'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + /** A user instance with a new password. */ + user?: Maybe; +}; + +/** Represents a payment of a given type. */ +export type Payment = Node & ObjectWithMetadata & { + __typename?: 'Payment'; + /** + * List of actions that can be performed in the current state of a payment. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + actions: Array; + /** + * Maximum amount of money that can be captured. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + availableCaptureAmount?: Maybe; + /** + * Maximum amount of money that can be refunded. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + availableRefundAmount?: Maybe; + /** Total amount captured for this payment. */ + capturedAmount?: Maybe; + /** Internal payment status. */ + chargeStatus: PaymentChargeStatusEnum; + checkout?: Maybe; + created: Scalars['DateTime']; + /** The details of the card used for this payment. */ + creditCard?: Maybe; + /** + * IP address of the user who created the payment. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + customerIpAddress?: Maybe; + gateway: Scalars['String']; + id: Scalars['ID']; + isActive: Scalars['Boolean']; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + modified: Scalars['DateTime']; + order?: Maybe; + paymentMethodType: Scalars['String']; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + token: Scalars['String']; + /** Total amount of the payment. */ + total?: Maybe; + /** + * List of all transactions within this payment. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + transactions?: Maybe>; +}; + + +/** Represents a payment of a given type. */ +export type PaymentMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a payment of a given type. */ +export type PaymentMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents a payment of a given type. */ +export type PaymentPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a payment of a given type. */ +export type PaymentPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +/** + * Authorize payment. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PaymentAuthorize = Event & { + __typename?: 'PaymentAuthorize'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** Look up a payment. */ + payment?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Captures the authorized payment amount. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type PaymentCapture = { + __typename?: 'PaymentCapture'; + errors: Array; + /** Updated payment. */ + payment?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + paymentErrors: Array; +}; + +/** + * Capture payment. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PaymentCaptureEvent = Event & { + __typename?: 'PaymentCaptureEvent'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** Look up a payment. */ + payment?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** An enumeration. */ +export enum PaymentChargeStatusEnum { + Cancelled = 'CANCELLED', + FullyCharged = 'FULLY_CHARGED', + FullyRefunded = 'FULLY_REFUNDED', + NotCharged = 'NOT_CHARGED', + PartiallyCharged = 'PARTIALLY_CHARGED', + PartiallyRefunded = 'PARTIALLY_REFUNDED', + Pending = 'PENDING', + Refused = 'REFUSED' +} + +/** Check payment balance. */ +export type PaymentCheckBalance = { + __typename?: 'PaymentCheckBalance'; + /** Response from the gateway. */ + data?: Maybe; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + paymentErrors: Array; +}; + +export type PaymentCheckBalanceInput = { + /** Information about card. */ + card: CardInput; + /** Slug of a channel for which the data should be returned. */ + channel: Scalars['String']; + /** An ID of a payment gateway to check. */ + gatewayId: Scalars['String']; + /** Payment method name. */ + method: Scalars['String']; +}; + +/** + * Confirm payment. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PaymentConfirmEvent = Event & { + __typename?: 'PaymentConfirmEvent'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** Look up a payment. */ + payment?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type PaymentCountableConnection = { + __typename?: 'PaymentCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type PaymentCountableEdge = { + __typename?: 'PaymentCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: Payment; +}; + +export type PaymentError = { + __typename?: 'PaymentError'; + /** The error code. */ + code: PaymentErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of variant IDs which causes the error. */ + variants?: Maybe>; +}; + +/** An enumeration. */ +export enum PaymentErrorCode { + BalanceCheckError = 'BALANCE_CHECK_ERROR', + BillingAddressNotSet = 'BILLING_ADDRESS_NOT_SET', + ChannelInactive = 'CHANNEL_INACTIVE', + CheckoutEmailNotSet = 'CHECKOUT_EMAIL_NOT_SET', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + InvalidShippingMethod = 'INVALID_SHIPPING_METHOD', + NotFound = 'NOT_FOUND', + NotSupportedGateway = 'NOT_SUPPORTED_GATEWAY', + NoCheckoutLines = 'NO_CHECKOUT_LINES', + PartialPaymentNotAllowed = 'PARTIAL_PAYMENT_NOT_ALLOWED', + PaymentError = 'PAYMENT_ERROR', + Required = 'REQUIRED', + ShippingAddressNotSet = 'SHIPPING_ADDRESS_NOT_SET', + ShippingMethodNotSet = 'SHIPPING_METHOD_NOT_SET', + UnavailableVariantInChannel = 'UNAVAILABLE_VARIANT_IN_CHANNEL', + Unique = 'UNIQUE' +} + +export type PaymentFilterInput = { + checkouts?: InputMaybe>; + /** + * Filter by ids. + * + * Added in Saleor 3.8. + */ + ids?: InputMaybe>; +}; + +/** Available payment gateway backend with configuration necessary to setup client. */ +export type PaymentGateway = { + __typename?: 'PaymentGateway'; + /** Payment gateway client configuration. */ + config: Array; + /** Payment gateway supported currencies. */ + currencies: Array; + /** Payment gateway ID. */ + id: Scalars['ID']; + /** Payment gateway name. */ + name: Scalars['String']; +}; + +/** Initializes payment process when it is required by gateway. */ +export type PaymentInitialize = { + __typename?: 'PaymentInitialize'; + errors: Array; + initializedPayment?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + paymentErrors: Array; +}; + +/** Server-side data generated by a payment gateway. Optional step when the payment provider requires an additional action to initialize payment session. */ +export type PaymentInitialized = { + __typename?: 'PaymentInitialized'; + /** Initialized data by gateway. */ + data?: Maybe; + /** ID of a payment gateway. */ + gateway: Scalars['String']; + /** Payment gateway name. */ + name: Scalars['String']; +}; + +export type PaymentInput = { + /** Total amount of the transaction, including all taxes and discounts. If no amount is provided, the checkout total will be used. */ + amount?: InputMaybe; + /** A gateway to use with that payment. */ + gateway: Scalars['String']; + /** + * User public metadata. + * + * Added in Saleor 3.1. + */ + metadata?: InputMaybe>; + /** URL of a storefront view where user should be redirected after requiring additional actions. Payment with additional actions will not be finished if this field is not provided. */ + returnUrl?: InputMaybe; + /** + * Payment store type. + * + * Added in Saleor 3.1. + */ + storePaymentMethod?: InputMaybe; + /** Client-side generated payment token, representing customer's billing data in a secure manner. */ + token?: InputMaybe; +}; + +/** + * List payment gateways. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PaymentListGateways = Event & { + __typename?: 'PaymentListGateways'; + /** The checkout the event relates to. */ + checkout?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Process payment. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PaymentProcessEvent = Event & { + __typename?: 'PaymentProcessEvent'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** Look up a payment. */ + payment?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Refunds the captured payment amount. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type PaymentRefund = { + __typename?: 'PaymentRefund'; + errors: Array; + /** Updated payment. */ + payment?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + paymentErrors: Array; +}; + +/** + * Refund payment. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PaymentRefundEvent = Event & { + __typename?: 'PaymentRefundEvent'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** Look up a payment. */ + payment?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** Represents a payment source stored for user in payment gateway, such as credit card. */ +export type PaymentSource = { + __typename?: 'PaymentSource'; + /** Stored credit card details if available. */ + creditCardInfo?: Maybe; + /** Payment gateway name. */ + gateway: Scalars['String']; + /** + * List of public metadata items. + * + * Added in Saleor 3.1. + * + * Can be accessed without permissions. + */ + metadata: Array; + /** ID of stored payment method. */ + paymentMethodId?: Maybe; +}; + +/** + * Voids the authorized payment. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ +export type PaymentVoid = { + __typename?: 'PaymentVoid'; + errors: Array; + /** Updated payment. */ + payment?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + paymentErrors: Array; +}; + +/** + * Void payment. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PaymentVoidEvent = Event & { + __typename?: 'PaymentVoidEvent'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** Look up a payment. */ + payment?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** Represents a permission object in a friendly form. */ +export type Permission = { + __typename?: 'Permission'; + /** Internal code for permission. */ + code: PermissionEnum; + /** Describe action(s) allowed to do by permission. */ + name: Scalars['String']; +}; + +/** An enumeration. */ +export enum PermissionEnum { + HandleCheckouts = 'HANDLE_CHECKOUTS', + HandlePayments = 'HANDLE_PAYMENTS', + HandleTaxes = 'HANDLE_TAXES', + ImpersonateUser = 'IMPERSONATE_USER', + ManageApps = 'MANAGE_APPS', + ManageChannels = 'MANAGE_CHANNELS', + ManageCheckouts = 'MANAGE_CHECKOUTS', + ManageDiscounts = 'MANAGE_DISCOUNTS', + ManageGiftCard = 'MANAGE_GIFT_CARD', + ManageMenus = 'MANAGE_MENUS', + ManageObservability = 'MANAGE_OBSERVABILITY', + ManageOrders = 'MANAGE_ORDERS', + ManagePages = 'MANAGE_PAGES', + ManagePageTypesAndAttributes = 'MANAGE_PAGE_TYPES_AND_ATTRIBUTES', + ManagePlugins = 'MANAGE_PLUGINS', + ManageProducts = 'MANAGE_PRODUCTS', + ManageProductTypesAndAttributes = 'MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES', + ManageSettings = 'MANAGE_SETTINGS', + ManageShipping = 'MANAGE_SHIPPING', + ManageStaff = 'MANAGE_STAFF', + ManageTaxes = 'MANAGE_TAXES', + ManageTranslations = 'MANAGE_TRANSLATIONS', + ManageUsers = 'MANAGE_USERS' +} + +/** + * Create new permission group. Apps are not allowed to perform this mutation. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ +export type PermissionGroupCreate = { + __typename?: 'PermissionGroupCreate'; + errors: Array; + group?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + permissionGroupErrors: Array; +}; + +export type PermissionGroupCreateInput = { + /** List of permission code names to assign to this group. */ + addPermissions?: InputMaybe>; + /** List of users to assign to this group. */ + addUsers?: InputMaybe>; + /** Group name. */ + name: Scalars['String']; +}; + +/** + * Event sent when new permission group is created. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PermissionGroupCreated = Event & { + __typename?: 'PermissionGroupCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The permission group the event relates to. */ + permissionGroup?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Delete permission group. Apps are not allowed to perform this mutation. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ +export type PermissionGroupDelete = { + __typename?: 'PermissionGroupDelete'; + errors: Array; + group?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + permissionGroupErrors: Array; +}; + +/** + * Event sent when permission group is deleted. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PermissionGroupDeleted = Event & { + __typename?: 'PermissionGroupDeleted'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The permission group the event relates to. */ + permissionGroup?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type PermissionGroupError = { + __typename?: 'PermissionGroupError'; + /** The error code. */ + code: PermissionGroupErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of permissions which causes the error. */ + permissions?: Maybe>; + /** List of user IDs which causes the error. */ + users?: Maybe>; +}; + +/** An enumeration. */ +export enum PermissionGroupErrorCode { + AssignNonStaffMember = 'ASSIGN_NON_STAFF_MEMBER', + CannotRemoveFromLastGroup = 'CANNOT_REMOVE_FROM_LAST_GROUP', + DuplicatedInputItem = 'DUPLICATED_INPUT_ITEM', + LeftNotManageablePermission = 'LEFT_NOT_MANAGEABLE_PERMISSION', + OutOfScopePermission = 'OUT_OF_SCOPE_PERMISSION', + OutOfScopeUser = 'OUT_OF_SCOPE_USER', + Required = 'REQUIRED', + Unique = 'UNIQUE' +} + +export type PermissionGroupFilterInput = { + ids?: InputMaybe>; + search?: InputMaybe; +}; + +export enum PermissionGroupSortField { + /** Sort permission group accounts by name. */ + Name = 'NAME' +} + +export type PermissionGroupSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort permission group by the selected field. */ + field: PermissionGroupSortField; +}; + +/** + * Update permission group. Apps are not allowed to perform this mutation. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ +export type PermissionGroupUpdate = { + __typename?: 'PermissionGroupUpdate'; + errors: Array; + group?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + permissionGroupErrors: Array; +}; + +export type PermissionGroupUpdateInput = { + /** List of permission code names to assign to this group. */ + addPermissions?: InputMaybe>; + /** List of users to assign to this group. */ + addUsers?: InputMaybe>; + /** Group name. */ + name?: InputMaybe; + /** List of permission code names to unassign from this group. */ + removePermissions?: InputMaybe>; + /** List of users to unassign from this group. */ + removeUsers?: InputMaybe>; +}; + +/** + * Event sent when permission group is updated. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type PermissionGroupUpdated = Event & { + __typename?: 'PermissionGroupUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The permission group the event relates to. */ + permissionGroup?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** Plugin. */ +export type Plugin = { + __typename?: 'Plugin'; + /** Channel-specific plugin configuration. */ + channelConfigurations: Array; + /** Description of the plugin. */ + description: Scalars['String']; + /** Global configuration of the plugin (not channel-specific). */ + globalConfiguration?: Maybe; + /** Identifier of the plugin. */ + id: Scalars['ID']; + /** Name of the plugin. */ + name: Scalars['String']; +}; + +/** Stores information about a configuration of plugin. */ +export type PluginConfiguration = { + __typename?: 'PluginConfiguration'; + /** Determines if plugin is active or not. */ + active: Scalars['Boolean']; + /** The channel to which the plugin configuration is assigned to. */ + channel?: Maybe; + /** Configuration of the plugin. */ + configuration?: Maybe>; +}; + +export enum PluginConfigurationType { + Global = 'GLOBAL', + PerChannel = 'PER_CHANNEL' +} + +export type PluginCountableConnection = { + __typename?: 'PluginCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type PluginCountableEdge = { + __typename?: 'PluginCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: Plugin; +}; + +export type PluginError = { + __typename?: 'PluginError'; + /** The error code. */ + code: PluginErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum PluginErrorCode { + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND', + PluginMisconfigured = 'PLUGIN_MISCONFIGURED', + Required = 'REQUIRED', + Unique = 'UNIQUE' +} + +export type PluginFilterInput = { + search?: InputMaybe; + statusInChannels?: InputMaybe; + type?: InputMaybe; +}; + +export enum PluginSortField { + IsActive = 'IS_ACTIVE', + Name = 'NAME' +} + +export type PluginSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort plugins by the selected field. */ + field: PluginSortField; +}; + +export type PluginStatusInChannelsInput = { + active: Scalars['Boolean']; + channels: Array; +}; + +/** + * Update plugin configuration. + * + * Requires one of the following permissions: MANAGE_PLUGINS. + */ +export type PluginUpdate = { + __typename?: 'PluginUpdate'; + errors: Array; + plugin?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + pluginsErrors: Array; +}; + +export type PluginUpdateInput = { + /** Indicates whether the plugin should be enabled. */ + active?: InputMaybe; + /** Configuration of the plugin. */ + configuration?: InputMaybe>; +}; + +/** An enumeration. */ +export enum PostalCodeRuleInclusionTypeEnum { + Exclude = 'EXCLUDE', + Include = 'INCLUDE' +} + +/** Represents preorder settings for product variant. */ +export type PreorderData = { + __typename?: 'PreorderData'; + /** Preorder end date. */ + endDate?: Maybe; + /** + * Total number of sold product variant during preorder. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + globalSoldUnits: Scalars['Int']; + /** + * The global preorder threshold for product variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + globalThreshold?: Maybe; +}; + +export type PreorderSettingsInput = { + /** The end date for preorder. */ + endDate?: InputMaybe; + /** The global threshold for preorder variant. */ + globalThreshold?: InputMaybe; +}; + +/** Represents preorder variant data for channel. */ +export type PreorderThreshold = { + __typename?: 'PreorderThreshold'; + /** Preorder threshold for product variant in this channel. */ + quantity?: Maybe; + /** Number of sold product variant in this channel. */ + soldUnits: Scalars['Int']; +}; + +export type PriceInput = { + /** Amount of money. */ + amount: Scalars['PositiveDecimal']; + /** Currency code. */ + currency: Scalars['String']; +}; + +export type PriceRangeInput = { + /** Price greater than or equal to. */ + gte?: InputMaybe; + /** Price less than or equal to. */ + lte?: InputMaybe; +}; + +/** Represents an individual item for sale in the storefront. */ +export type Product = Node & ObjectWithMetadata & { + __typename?: 'Product'; + /** + * Get a single attribute attached to product by attribute slug. + * + * Added in Saleor 3.9. + */ + attribute?: Maybe; + /** List of attributes assigned to this product. */ + attributes: Array; + /** + * Date when product is available for purchase. + * @deprecated This field will be removed in Saleor 4.0. Use the `availableForPurchaseAt` field to fetch the available for purchase date. + */ + availableForPurchase?: Maybe; + /** Date when product is available for purchase. */ + availableForPurchaseAt?: Maybe; + category?: Maybe; + /** Channel given to retrieve this product. Also used by federation gateway to resolve this object in a federated query. */ + channel?: Maybe; + /** + * List of availability in channels for the product. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + channelListings?: Maybe>; + /** @deprecated This field will be removed in Saleor 4.0. Use `Channel.taxConfiguration` field to determine whether tax collection is enabled. */ + chargeTaxes: Scalars['Boolean']; + /** List of collections for the product. Requires the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. */ + collections?: Maybe>; + created: Scalars['DateTime']; + defaultVariant?: Maybe; + /** + * Description of the product. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: Maybe; + /** + * Description of the product. + * + * Rich text format. For reference see https://editorjs.io/ + * @deprecated This field will be removed in Saleor 4.0. Use the `description` field instead. + */ + descriptionJson?: Maybe; + /** + * External ID of this product. + * + * Added in Saleor 3.10. + */ + externalReference?: Maybe; + id: Scalars['ID']; + /** + * Get a single product image by ID. + * @deprecated This field will be removed in Saleor 4.0. Use the `mediaById` field instead. + */ + imageById?: Maybe; + /** + * List of images for the product. + * @deprecated This field will be removed in Saleor 4.0. Use the `media` field instead. + */ + images?: Maybe>; + /** Whether the product is in stock and visible or not. */ + isAvailable?: Maybe; + /** Whether the product is available for purchase. */ + isAvailableForPurchase?: Maybe; + /** List of media for the product. */ + media?: Maybe>; + /** Get a single product media by ID. */ + mediaById?: Maybe; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + name: Scalars['String']; + /** Lists the storefront product's pricing, the current price and discounts, only meant for displaying. */ + pricing?: Maybe; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + productType: ProductType; + rating?: Maybe; + seoDescription?: Maybe; + seoTitle?: Maybe; + slug: Scalars['String']; + /** + * Tax class assigned to this product type. All products of this product type use this tax class, unless it's overridden in the `Product` type. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + */ + taxClass?: Maybe; + /** + * A type of tax. Assigned by enabled tax gateway + * @deprecated This field will be removed in Saleor 4.0. Use `taxClass` field instead. + */ + taxType?: Maybe; + thumbnail?: Maybe; + /** Returns translated product fields for the given language code. */ + translation?: Maybe; + updatedAt: Scalars['DateTime']; + /** + * Get a single variant by SKU or ID. + * + * Added in Saleor 3.9. + */ + variant?: Maybe; + /** List of variants for the product. Requires the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. */ + variants?: Maybe>; + weight?: Maybe; +}; + + +/** Represents an individual item for sale in the storefront. */ +export type ProductAttributeArgs = { + slug: Scalars['String']; +}; + + +/** Represents an individual item for sale in the storefront. */ +export type ProductImageByIdArgs = { + id?: InputMaybe; +}; + + +/** Represents an individual item for sale in the storefront. */ +export type ProductIsAvailableArgs = { + address?: InputMaybe; +}; + + +/** Represents an individual item for sale in the storefront. */ +export type ProductMediaArgs = { + sortBy?: InputMaybe; +}; + + +/** Represents an individual item for sale in the storefront. */ +export type ProductMediaByIdArgs = { + id?: InputMaybe; +}; + + +/** Represents an individual item for sale in the storefront. */ +export type ProductMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents an individual item for sale in the storefront. */ +export type ProductMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents an individual item for sale in the storefront. */ +export type ProductPricingArgs = { + address?: InputMaybe; +}; + + +/** Represents an individual item for sale in the storefront. */ +export type ProductPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents an individual item for sale in the storefront. */ +export type ProductPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents an individual item for sale in the storefront. */ +export type ProductThumbnailArgs = { + format?: InputMaybe; + size?: InputMaybe; +}; + + +/** Represents an individual item for sale in the storefront. */ +export type ProductTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + + +/** Represents an individual item for sale in the storefront. */ +export type ProductVariantArgs = { + id?: InputMaybe; + sku?: InputMaybe; +}; + +/** + * Assign attributes to a given product type. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ +export type ProductAttributeAssign = { + __typename?: 'ProductAttributeAssign'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + /** The updated product type. */ + productType?: Maybe; +}; + +export type ProductAttributeAssignInput = { + /** The ID of the attribute to assign. */ + id: Scalars['ID']; + /** The attribute type to be assigned as. */ + type: ProductAttributeType; + /** + * Whether attribute is allowed in variant selection. Allowed types are: ['dropdown', 'boolean', 'swatch', 'numeric']. + * + * Added in Saleor 3.1. + */ + variantSelection?: InputMaybe; +}; + +/** + * Update attributes assigned to product variant for given product type. + * + * Added in Saleor 3.1. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ +export type ProductAttributeAssignmentUpdate = { + __typename?: 'ProductAttributeAssignmentUpdate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + /** The updated product type. */ + productType?: Maybe; +}; + +export type ProductAttributeAssignmentUpdateInput = { + /** The ID of the attribute to assign. */ + id: Scalars['ID']; + /** + * Whether attribute is allowed in variant selection. Allowed types are: ['dropdown', 'boolean', 'swatch', 'numeric']. + * + * Added in Saleor 3.1. + */ + variantSelection: Scalars['Boolean']; +}; + +export enum ProductAttributeType { + Product = 'PRODUCT', + Variant = 'VARIANT' +} + +/** + * Un-assign attributes from a given product type. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ +export type ProductAttributeUnassign = { + __typename?: 'ProductAttributeUnassign'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + /** The updated product type. */ + productType?: Maybe; +}; + +/** + * Deletes products. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductBulkDelete = { + __typename?: 'ProductBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +/** Represents product channel listing. */ +export type ProductChannelListing = Node & { + __typename?: 'ProductChannelListing'; + /** @deprecated This field will be removed in Saleor 4.0. Use the `availableForPurchaseAt` field to fetch the available for purchase date. */ + availableForPurchase?: Maybe; + /** + * The product available for purchase date time. + * + * Added in Saleor 3.3. + */ + availableForPurchaseAt?: Maybe; + channel: Channel; + /** The price of the cheapest variant (including discounts). */ + discountedPrice?: Maybe; + id: Scalars['ID']; + /** Whether the product is available for purchase. */ + isAvailableForPurchase?: Maybe; + isPublished: Scalars['Boolean']; + /** + * Range of margin percentage value. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + margin?: Maybe; + /** Lists the storefront product's pricing, the current price and discounts, only meant for displaying. */ + pricing?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use the `publishedAt` field to fetch the publication date. */ + publicationDate?: Maybe; + /** + * The product publication date time. + * + * Added in Saleor 3.3. + */ + publishedAt?: Maybe; + /** + * Purchase cost of product. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + purchaseCost?: Maybe; + visibleInListings: Scalars['Boolean']; +}; + + +/** Represents product channel listing. */ +export type ProductChannelListingPricingArgs = { + address?: InputMaybe; +}; + +export type ProductChannelListingAddInput = { + /** List of variants to which the channel should be assigned. */ + addVariants?: InputMaybe>; + /** + * A start date time from which a product will be available for purchase. When not set and `isAvailable` is set to True, the current day is assumed. + * + * Added in Saleor 3.3. + */ + availableForPurchaseAt?: InputMaybe; + /** + * A start date from which a product will be available for purchase. When not set and isAvailable is set to True, the current day is assumed. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use `availableForPurchaseAt` field instead. + */ + availableForPurchaseDate?: InputMaybe; + /** ID of a channel. */ + channelId: Scalars['ID']; + /** Determine if product should be available for purchase. */ + isAvailableForPurchase?: InputMaybe; + /** Determines if object is visible to customers. */ + isPublished?: InputMaybe; + /** + * Publication date. ISO 8601 standard. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use `publishedAt` field instead. + */ + publicationDate?: InputMaybe; + /** + * Publication date time. ISO 8601 standard. + * + * Added in Saleor 3.3. + */ + publishedAt?: InputMaybe; + /** List of variants from which the channel should be unassigned. */ + removeVariants?: InputMaybe>; + /** Determines if product is visible in product listings (doesn't apply to product collections). */ + visibleInListings?: InputMaybe; +}; + +export type ProductChannelListingError = { + __typename?: 'ProductChannelListingError'; + /** List of attributes IDs which causes the error. */ + attributes?: Maybe>; + /** List of channels IDs which causes the error. */ + channels?: Maybe>; + /** The error code. */ + code: ProductErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of attribute values IDs which causes the error. */ + values?: Maybe>; + /** List of variants IDs which causes the error. */ + variants?: Maybe>; +}; + +/** + * Manage product's availability in channels. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductChannelListingUpdate = { + __typename?: 'ProductChannelListingUpdate'; + errors: Array; + /** An updated product instance. */ + product?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productChannelListingErrors: Array; +}; + +export type ProductChannelListingUpdateInput = { + /** List of channels from which the product should be unassigned. */ + removeChannels?: InputMaybe>; + /** List of channels to which the product should be assigned or updated. */ + updateChannels?: InputMaybe>; +}; + +export type ProductCountableConnection = { + __typename?: 'ProductCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type ProductCountableEdge = { + __typename?: 'ProductCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: Product; +}; + +/** + * Creates a new product. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductCreate = { + __typename?: 'ProductCreate'; + errors: Array; + product?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +export type ProductCreateInput = { + /** List of attributes. */ + attributes?: InputMaybe>; + /** ID of the product's category. */ + category?: InputMaybe; + /** + * Determine if taxes are being charged for the product. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use `Channel.taxConfiguration` to configure whether tax collection is enabled. + */ + chargeTaxes?: InputMaybe; + /** List of IDs of collections that the product belongs to. */ + collections?: InputMaybe>; + /** + * Product description. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: InputMaybe; + /** + * External ID of this product. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** + * Fields required to update the product metadata. + * + * Added in Saleor 3.8. + */ + metadata?: InputMaybe>; + /** Product name. */ + name?: InputMaybe; + /** + * Fields required to update the product private metadata. + * + * Added in Saleor 3.8. + */ + privateMetadata?: InputMaybe>; + /** ID of the type that product belongs to. */ + productType: Scalars['ID']; + /** Defines the product rating value. */ + rating?: InputMaybe; + /** Search engine optimization fields. */ + seo?: InputMaybe; + /** Product slug. */ + slug?: InputMaybe; + /** ID of a tax class to assign to this product. If not provided, product will use the tax class which is assigned to the product type. */ + taxClass?: InputMaybe; + /** + * Tax rate for enabled tax gateway. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use tax classes to control the tax calculation for a product. + */ + taxCode?: InputMaybe; + /** Weight of the Product. */ + weight?: InputMaybe; +}; + +/** + * Event sent when new product is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductCreated = Event & { + __typename?: 'ProductCreated'; + /** The category of the product. */ + category?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The product the event relates to. */ + product?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when new product is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductCreatedProductArgs = { + channel?: InputMaybe; +}; + +/** + * Deletes a product. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductDelete = { + __typename?: 'ProductDelete'; + errors: Array; + product?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +/** + * Event sent when product is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductDeleted = Event & { + __typename?: 'ProductDeleted'; + /** The category of the product. */ + category?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The product the event relates to. */ + product?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when product is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductDeletedProductArgs = { + channel?: InputMaybe; +}; + +export type ProductError = { + __typename?: 'ProductError'; + /** List of attributes IDs which causes the error. */ + attributes?: Maybe>; + /** The error code. */ + code: ProductErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of attribute values IDs which causes the error. */ + values?: Maybe>; +}; + +/** An enumeration. */ +export enum ProductErrorCode { + AlreadyExists = 'ALREADY_EXISTS', + AttributeAlreadyAssigned = 'ATTRIBUTE_ALREADY_ASSIGNED', + AttributeCannotBeAssigned = 'ATTRIBUTE_CANNOT_BE_ASSIGNED', + AttributeVariantsDisabled = 'ATTRIBUTE_VARIANTS_DISABLED', + CannotManageProductWithoutVariant = 'CANNOT_MANAGE_PRODUCT_WITHOUT_VARIANT', + DuplicatedInputItem = 'DUPLICATED_INPUT_ITEM', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + MediaAlreadyAssigned = 'MEDIA_ALREADY_ASSIGNED', + NotFound = 'NOT_FOUND', + NotProductsImage = 'NOT_PRODUCTS_IMAGE', + NotProductsVariant = 'NOT_PRODUCTS_VARIANT', + PreorderVariantCannotBeDeactivated = 'PREORDER_VARIANT_CANNOT_BE_DEACTIVATED', + ProductNotAssignedToChannel = 'PRODUCT_NOT_ASSIGNED_TO_CHANNEL', + ProductWithoutCategory = 'PRODUCT_WITHOUT_CATEGORY', + Required = 'REQUIRED', + Unique = 'UNIQUE', + UnsupportedMediaProvider = 'UNSUPPORTED_MEDIA_PROVIDER', + VariantNoDigitalContent = 'VARIANT_NO_DIGITAL_CONTENT' +} + +export enum ProductFieldEnum { + Category = 'CATEGORY', + ChargeTaxes = 'CHARGE_TAXES', + Collections = 'COLLECTIONS', + Description = 'DESCRIPTION', + Name = 'NAME', + ProductMedia = 'PRODUCT_MEDIA', + ProductType = 'PRODUCT_TYPE', + ProductWeight = 'PRODUCT_WEIGHT', + VariantId = 'VARIANT_ID', + VariantMedia = 'VARIANT_MEDIA', + VariantSku = 'VARIANT_SKU', + VariantWeight = 'VARIANT_WEIGHT' +} + +export type ProductFilterInput = { + attributes?: InputMaybe>; + /** + * Filter by the date of availability for purchase. + * + * Added in Saleor 3.8. + */ + availableFrom?: InputMaybe; + categories?: InputMaybe>; + /** + * Specifies the channel by which the data should be filtered. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + */ + channel?: InputMaybe; + collections?: InputMaybe>; + /** Filter on whether product is a gift card or not. */ + giftCard?: InputMaybe; + hasCategory?: InputMaybe; + hasPreorderedVariants?: InputMaybe; + ids?: InputMaybe>; + /** + * Filter by availability for purchase. + * + * Added in Saleor 3.8. + */ + isAvailable?: InputMaybe; + isPublished?: InputMaybe; + /** + * Filter by visibility in product listings. + * + * Added in Saleor 3.8. + */ + isVisibleInListing?: InputMaybe; + metadata?: InputMaybe>; + /** Filter by the lowest variant price after discounts. */ + minimalPrice?: InputMaybe; + price?: InputMaybe; + productTypes?: InputMaybe>; + /** + * Filter by the publication date. + * + * Added in Saleor 3.8. + */ + publishedFrom?: InputMaybe; + search?: InputMaybe; + slugs?: InputMaybe>; + /** Filter by variants having specific stock status. */ + stockAvailability?: InputMaybe; + stocks?: InputMaybe; + /** Filter by when was the most recent update. */ + updatedAt?: InputMaybe; +}; + +/** Represents a product image. */ +export type ProductImage = { + __typename?: 'ProductImage'; + /** The alt text of the image. */ + alt?: Maybe; + /** The ID of the image. */ + id: Scalars['ID']; + /** The new relative sorting position of the item (from -inf to +inf). 1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged. */ + sortOrder?: Maybe; + url: Scalars['String']; +}; + + +/** Represents a product image. */ +export type ProductImageUrlArgs = { + format?: InputMaybe; + size?: InputMaybe; +}; + +export type ProductInput = { + /** List of attributes. */ + attributes?: InputMaybe>; + /** ID of the product's category. */ + category?: InputMaybe; + /** + * Determine if taxes are being charged for the product. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use `Channel.taxConfiguration` to configure whether tax collection is enabled. + */ + chargeTaxes?: InputMaybe; + /** List of IDs of collections that the product belongs to. */ + collections?: InputMaybe>; + /** + * Product description. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: InputMaybe; + /** + * External ID of this product. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** + * Fields required to update the product metadata. + * + * Added in Saleor 3.8. + */ + metadata?: InputMaybe>; + /** Product name. */ + name?: InputMaybe; + /** + * Fields required to update the product private metadata. + * + * Added in Saleor 3.8. + */ + privateMetadata?: InputMaybe>; + /** Defines the product rating value. */ + rating?: InputMaybe; + /** Search engine optimization fields. */ + seo?: InputMaybe; + /** Product slug. */ + slug?: InputMaybe; + /** ID of a tax class to assign to this product. If not provided, product will use the tax class which is assigned to the product type. */ + taxClass?: InputMaybe; + /** + * Tax rate for enabled tax gateway. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use tax classes to control the tax calculation for a product. + */ + taxCode?: InputMaybe; + /** Weight of the Product. */ + weight?: InputMaybe; +}; + +/** Represents a product media. */ +export type ProductMedia = Node & { + __typename?: 'ProductMedia'; + alt: Scalars['String']; + id: Scalars['ID']; + oembedData: Scalars['JSONString']; + sortOrder?: Maybe; + type: ProductMediaType; + url: Scalars['String']; +}; + + +/** Represents a product media. */ +export type ProductMediaUrlArgs = { + format?: InputMaybe; + size?: InputMaybe; +}; + +/** + * Deletes product media. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductMediaBulkDelete = { + __typename?: 'ProductMediaBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +/** + * Create a media object (image or video URL) associated with product. For image, this mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductMediaCreate = { + __typename?: 'ProductMediaCreate'; + errors: Array; + media?: Maybe; + product?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +export type ProductMediaCreateInput = { + /** Alt text for a product media. */ + alt?: InputMaybe; + /** Represents an image file in a multipart request. */ + image?: InputMaybe; + /** Represents an URL to an external media. */ + mediaUrl?: InputMaybe; + /** ID of an product. */ + product: Scalars['ID']; +}; + +/** + * Deletes a product media. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductMediaDelete = { + __typename?: 'ProductMediaDelete'; + errors: Array; + media?: Maybe; + product?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +/** + * Changes ordering of the product media. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductMediaReorder = { + __typename?: 'ProductMediaReorder'; + errors: Array; + media?: Maybe>; + product?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +/** An enumeration. */ +export enum ProductMediaType { + Image = 'IMAGE', + Video = 'VIDEO' +} + +/** + * Updates a product media. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductMediaUpdate = { + __typename?: 'ProductMediaUpdate'; + errors: Array; + media?: Maybe; + product?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +export type ProductMediaUpdateInput = { + /** Alt text for a product media. */ + alt?: InputMaybe; +}; + +/** + * Event sent when product metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductMetadataUpdated = Event & { + __typename?: 'ProductMetadataUpdated'; + /** The category of the product. */ + category?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The product the event relates to. */ + product?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when product metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductMetadataUpdatedProductArgs = { + channel?: InputMaybe; +}; + +export type ProductOrder = { + /** + * Sort product by the selected attribute's values. + * Note: this doesn't take translations into account yet. + */ + attributeId?: InputMaybe; + /** + * Specifies the channel in which to sort the data. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + */ + channel?: InputMaybe; + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort products by the selected field. */ + field?: InputMaybe; +}; + +export enum ProductOrderField { + /** + * Sort products by collection. Note: This option is available only for the `Collection.products` query. + * + * This option requires a channel filter to work as the values can vary between channels. + */ + Collection = 'COLLECTION', + /** + * Sort products by creation date. + * + * Added in Saleor 3.8. + */ + CreatedAt = 'CREATED_AT', + /** Sort products by update date. */ + Date = 'DATE', + /** Sort products by update date. */ + LastModified = 'LAST_MODIFIED', + /** Sort products by update date. */ + LastModifiedAt = 'LAST_MODIFIED_AT', + /** + * Sort products by a minimal price of a product's variant. + * + * This option requires a channel filter to work as the values can vary between channels. + */ + MinimalPrice = 'MINIMAL_PRICE', + /** Sort products by name. */ + Name = 'NAME', + /** + * Sort products by price. + * + * This option requires a channel filter to work as the values can vary between channels. + */ + Price = 'PRICE', + /** + * Sort products by publication date. + * + * This option requires a channel filter to work as the values can vary between channels. + */ + PublicationDate = 'PUBLICATION_DATE', + /** + * Sort products by publication status. + * + * This option requires a channel filter to work as the values can vary between channels. + */ + Published = 'PUBLISHED', + /** + * Sort products by publication date. + * + * This option requires a channel filter to work as the values can vary between channels. + */ + PublishedAt = 'PUBLISHED_AT', + /** Sort products by rank. Note: This option is available only with the `search` filter. */ + Rank = 'RANK', + /** Sort products by rating. */ + Rating = 'RATING', + /** Sort products by type. */ + Type = 'TYPE' +} + +/** Represents availability of a product in the storefront. */ +export type ProductPricingInfo = { + __typename?: 'ProductPricingInfo'; + /** The discount amount if in sale (null otherwise). */ + discount?: Maybe; + /** The discount amount in the local currency. */ + discountLocalCurrency?: Maybe; + /** + * Determines whether this product's price displayed in a storefront should include taxes. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + displayGrossPrices: Scalars['Boolean']; + /** Whether it is in sale or not. */ + onSale?: Maybe; + /** The discounted price range of the product variants. */ + priceRange?: Maybe; + /** The discounted price range of the product variants in the local currency. */ + priceRangeLocalCurrency?: Maybe; + /** The undiscounted price range of the product variants. */ + priceRangeUndiscounted?: Maybe; +}; + +/** + * Reorder product attribute values. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductReorderAttributeValues = { + __typename?: 'ProductReorderAttributeValues'; + errors: Array; + /** Product from which attribute values are reordered. */ + product?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +export type ProductStockFilterInput = { + quantity?: InputMaybe; + warehouseIds?: InputMaybe>; +}; + +export type ProductTranslatableContent = Node & { + __typename?: 'ProductTranslatableContent'; + /** List of product attribute values that can be translated. */ + attributeValues: Array; + /** + * Description of the product. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: Maybe; + /** + * Description of the product. + * + * Rich text format. For reference see https://editorjs.io/ + * @deprecated This field will be removed in Saleor 4.0. Use the `description` field instead. + */ + descriptionJson?: Maybe; + id: Scalars['ID']; + name: Scalars['String']; + /** + * Represents an individual item for sale in the storefront. + * @deprecated This field will be removed in Saleor 4.0. Get model fields from the root level queries. + */ + product?: Maybe; + seoDescription?: Maybe; + seoTitle?: Maybe; + /** Returns translated product fields for the given language code. */ + translation?: Maybe; +}; + + +export type ProductTranslatableContentTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Creates/updates translations for a product. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ +export type ProductTranslate = { + __typename?: 'ProductTranslate'; + errors: Array; + product?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + translationErrors: Array; +}; + +export type ProductTranslation = Node & { + __typename?: 'ProductTranslation'; + /** + * Translated description of the product. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: Maybe; + /** + * Translated description of the product. + * + * Rich text format. For reference see https://editorjs.io/ + * @deprecated This field will be removed in Saleor 4.0. Use the `description` field instead. + */ + descriptionJson?: Maybe; + id: Scalars['ID']; + /** Translation language. */ + language: LanguageDisplay; + name?: Maybe; + seoDescription?: Maybe; + seoTitle?: Maybe; +}; + +/** Represents a type of product. It defines what attributes are available to products of this type. */ +export type ProductType = Node & ObjectWithMetadata & { + __typename?: 'ProductType'; + /** + * Variant attributes of that product type with attached variant selection. + * + * Added in Saleor 3.1. + */ + assignedVariantAttributes?: Maybe>; + /** + * List of attributes which can be assigned to this product type. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + availableAttributes?: Maybe; + hasVariants: Scalars['Boolean']; + id: Scalars['ID']; + isDigital: Scalars['Boolean']; + isShippingRequired: Scalars['Boolean']; + /** The product type kind. */ + kind: ProductTypeKindEnum; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + name: Scalars['String']; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** Product attributes of that product type. */ + productAttributes?: Maybe>; + /** + * List of products of this type. + * @deprecated This field will be removed in Saleor 4.0. Use the top-level `products` query with the `productTypes` filter. + */ + products?: Maybe; + slug: Scalars['String']; + /** + * Tax class assigned to this product type. All products of this product type use this tax class, unless it's overridden in the `Product` type. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + */ + taxClass?: Maybe; + /** + * A type of tax. Assigned by enabled tax gateway + * @deprecated This field will be removed in Saleor 4.0. Use `taxClass` field instead. + */ + taxType?: Maybe; + /** + * Variant attributes of that product type. + * @deprecated This field will be removed in Saleor 4.0. Use `assignedVariantAttributes` instead. + */ + variantAttributes?: Maybe>; + weight?: Maybe; +}; + + +/** Represents a type of product. It defines what attributes are available to products of this type. */ +export type ProductTypeAssignedVariantAttributesArgs = { + variantSelection?: InputMaybe; +}; + + +/** Represents a type of product. It defines what attributes are available to products of this type. */ +export type ProductTypeAvailableAttributesArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Represents a type of product. It defines what attributes are available to products of this type. */ +export type ProductTypeMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a type of product. It defines what attributes are available to products of this type. */ +export type ProductTypeMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents a type of product. It defines what attributes are available to products of this type. */ +export type ProductTypePrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a type of product. It defines what attributes are available to products of this type. */ +export type ProductTypePrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents a type of product. It defines what attributes are available to products of this type. */ +export type ProductTypeProductsArgs = { + after?: InputMaybe; + before?: InputMaybe; + channel?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Represents a type of product. It defines what attributes are available to products of this type. */ +export type ProductTypeVariantAttributesArgs = { + variantSelection?: InputMaybe; +}; + +/** + * Deletes product types. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ +export type ProductTypeBulkDelete = { + __typename?: 'ProductTypeBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +export enum ProductTypeConfigurable { + Configurable = 'CONFIGURABLE', + Simple = 'SIMPLE' +} + +export type ProductTypeCountableConnection = { + __typename?: 'ProductTypeCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type ProductTypeCountableEdge = { + __typename?: 'ProductTypeCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: ProductType; +}; + +/** + * Creates a new product type. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ +export type ProductTypeCreate = { + __typename?: 'ProductTypeCreate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + productType?: Maybe; +}; + +/** + * Deletes a product type. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ +export type ProductTypeDelete = { + __typename?: 'ProductTypeDelete'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + productType?: Maybe; +}; + +export enum ProductTypeEnum { + Digital = 'DIGITAL', + Shippable = 'SHIPPABLE' +} + +export type ProductTypeFilterInput = { + configurable?: InputMaybe; + ids?: InputMaybe>; + kind?: InputMaybe; + metadata?: InputMaybe>; + productType?: InputMaybe; + search?: InputMaybe; + slugs?: InputMaybe>; +}; + +export type ProductTypeInput = { + /** Determines if product of this type has multiple variants. This option mainly simplifies product management in the dashboard. There is always at least one variant created under the hood. */ + hasVariants?: InputMaybe; + /** Determines if products are digital. */ + isDigital?: InputMaybe; + /** Determines if shipping is required for products of this variant. */ + isShippingRequired?: InputMaybe; + /** The product type kind. */ + kind?: InputMaybe; + /** Name of the product type. */ + name?: InputMaybe; + /** List of attributes shared among all product variants. */ + productAttributes?: InputMaybe>; + /** Product type slug. */ + slug?: InputMaybe; + /** ID of a tax class to assign to this product type. All products of this product type would use this tax class, unless it's overridden in the `Product` type. */ + taxClass?: InputMaybe; + /** + * Tax rate for enabled tax gateway. + * + * DEPRECATED: this field will be removed in Saleor 4.0.. Use tax classes to control the tax calculation for a product type. + */ + taxCode?: InputMaybe; + /** List of attributes used to distinguish between different variants of a product. */ + variantAttributes?: InputMaybe>; + /** Weight of the ProductType items. */ + weight?: InputMaybe; +}; + +/** An enumeration. */ +export enum ProductTypeKindEnum { + GiftCard = 'GIFT_CARD', + Normal = 'NORMAL' +} + +/** + * Reorder the attributes of a product type. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ +export type ProductTypeReorderAttributes = { + __typename?: 'ProductTypeReorderAttributes'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + /** Product type from which attributes are reordered. */ + productType?: Maybe; +}; + +export enum ProductTypeSortField { + /** Sort products by type. */ + Digital = 'DIGITAL', + /** Sort products by name. */ + Name = 'NAME', + /** Sort products by shipping. */ + ShippingRequired = 'SHIPPING_REQUIRED' +} + +export type ProductTypeSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort product types by the selected field. */ + field: ProductTypeSortField; +}; + +/** + * Updates an existing product type. + * + * Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + */ +export type ProductTypeUpdate = { + __typename?: 'ProductTypeUpdate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + productType?: Maybe; +}; + +/** + * Updates an existing product. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductUpdate = { + __typename?: 'ProductUpdate'; + errors: Array; + product?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +/** + * Event sent when product is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductUpdated = Event & { + __typename?: 'ProductUpdated'; + /** The category of the product. */ + category?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The product the event relates to. */ + product?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when product is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductUpdatedProductArgs = { + channel?: InputMaybe; +}; + +/** Represents a version of a product such as different size or color. */ +export type ProductVariant = Node & ObjectWithMetadata & { + __typename?: 'ProductVariant'; + /** List of attributes assigned to this variant. */ + attributes: Array; + /** Channel given to retrieve this product variant. Also used by federation gateway to resolve this object in a federated query. */ + channel?: Maybe; + /** + * List of price information in channels for the product. + * + * Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + */ + channelListings?: Maybe>; + created: Scalars['DateTime']; + /** + * Digital content for the product variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + digitalContent?: Maybe; + /** + * External ID of this product. + * + * Added in Saleor 3.10. + */ + externalReference?: Maybe; + id: Scalars['ID']; + /** + * List of images for the product variant. + * @deprecated This field will be removed in Saleor 4.0. Use the `media` field instead. + */ + images?: Maybe>; + /** Gross margin percentage value. */ + margin?: Maybe; + /** List of media for the product variant. */ + media?: Maybe>; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + name: Scalars['String']; + /** + * Preorder data for product variant. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + preorder?: Maybe; + /** Lists the storefront variant's pricing, the current price and discounts, only meant for displaying. */ + pricing?: Maybe; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + product: Product; + /** Quantity of a product available for sale in one checkout. Field value will be `null` when no `limitQuantityPerCheckout` in global settings has been set, and `productVariant` stocks are not tracked. */ + quantityAvailable?: Maybe; + quantityLimitPerCustomer?: Maybe; + /** + * Total quantity ordered. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + quantityOrdered?: Maybe; + /** + * Total revenue generated by a variant in given period of time. Note: this field should be queried using `reportProductSales` query as it uses optimizations suitable for such calculations. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + revenue?: Maybe; + sku?: Maybe; + /** + * Stocks for the product variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + */ + stocks?: Maybe>; + trackInventory: Scalars['Boolean']; + /** Returns translated product variant fields for the given language code. */ + translation?: Maybe; + updatedAt: Scalars['DateTime']; + weight?: Maybe; +}; + + +/** Represents a version of a product such as different size or color. */ +export type ProductVariantAttributesArgs = { + variantSelection?: InputMaybe; +}; + + +/** Represents a version of a product such as different size or color. */ +export type ProductVariantMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a version of a product such as different size or color. */ +export type ProductVariantMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents a version of a product such as different size or color. */ +export type ProductVariantPricingArgs = { + address?: InputMaybe; +}; + + +/** Represents a version of a product such as different size or color. */ +export type ProductVariantPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a version of a product such as different size or color. */ +export type ProductVariantPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents a version of a product such as different size or color. */ +export type ProductVariantQuantityAvailableArgs = { + address?: InputMaybe; + countryCode?: InputMaybe; +}; + + +/** Represents a version of a product such as different size or color. */ +export type ProductVariantRevenueArgs = { + period?: InputMaybe; +}; + + +/** Represents a version of a product such as different size or color. */ +export type ProductVariantStocksArgs = { + address?: InputMaybe; + countryCode?: InputMaybe; +}; + + +/** Represents a version of a product such as different size or color. */ +export type ProductVariantTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Event sent when product variant is back in stock. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductVariantBackInStock = Event & { + __typename?: 'ProductVariantBackInStock'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The product variant the event relates to. */ + productVariant?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; + /** Look up a warehouse. */ + warehouse?: Maybe; +}; + + +/** + * Event sent when product variant is back in stock. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductVariantBackInStockProductVariantArgs = { + channel?: InputMaybe; +}; + +/** + * Creates product variants for a given product. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductVariantBulkCreate = { + __typename?: 'ProductVariantBulkCreate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + bulkProductErrors: Array; + /** Returns how many objects were created. */ + count: Scalars['Int']; + errors: Array; + /** List of the created variants. */ + productVariants: Array; +}; + +export type ProductVariantBulkCreateInput = { + /** List of attributes specific to this variant. */ + attributes: Array; + /** List of prices assigned to channels. */ + channelListings?: InputMaybe>; + /** + * External ID of this product variant. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** + * Fields required to update the product variant metadata. + * + * Added in Saleor 3.8. + */ + metadata?: InputMaybe>; + /** Variant name. */ + name?: InputMaybe; + /** + * Determines if variant is in preorder. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + preorder?: InputMaybe; + /** + * Fields required to update the product variant private metadata. + * + * Added in Saleor 3.8. + */ + privateMetadata?: InputMaybe>; + /** + * Determines maximum quantity of `ProductVariant`,that can be bought in a single checkout. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + quantityLimitPerCustomer?: InputMaybe; + /** Stock keeping unit. */ + sku?: InputMaybe; + /** Stocks of a product available for sale. */ + stocks?: InputMaybe>; + /** Determines if the inventory of this variant should be tracked. If false, the quantity won't change when customers buy this item. */ + trackInventory?: InputMaybe; + /** Weight of the Product Variant. */ + weight?: InputMaybe; +}; + +/** + * Deletes product variants. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductVariantBulkDelete = { + __typename?: 'ProductVariantBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +/** Represents product varaint channel listing. */ +export type ProductVariantChannelListing = Node & { + __typename?: 'ProductVariantChannelListing'; + channel: Channel; + /** Cost price of the variant. */ + costPrice?: Maybe; + id: Scalars['ID']; + /** + * Gross margin percentage value. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + margin?: Maybe; + /** + * Preorder variant data. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + preorderThreshold?: Maybe; + price?: Maybe; +}; + +export type ProductVariantChannelListingAddInput = { + /** ID of a channel. */ + channelId: Scalars['ID']; + /** Cost price of the variant in channel. */ + costPrice?: InputMaybe; + /** + * The threshold for preorder variant in channel. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + preorderThreshold?: InputMaybe; + /** Price of the particular variant in channel. */ + price: Scalars['PositiveDecimal']; +}; + +/** + * Manage product variant prices in channels. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductVariantChannelListingUpdate = { + __typename?: 'ProductVariantChannelListingUpdate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productChannelListingErrors: Array; + /** An updated product variant instance. */ + variant?: Maybe; +}; + +export type ProductVariantCountableConnection = { + __typename?: 'ProductVariantCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type ProductVariantCountableEdge = { + __typename?: 'ProductVariantCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: ProductVariant; +}; + +/** + * Creates a new variant for a product. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductVariantCreate = { + __typename?: 'ProductVariantCreate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + productVariant?: Maybe; +}; + +export type ProductVariantCreateInput = { + /** List of attributes specific to this variant. */ + attributes: Array; + /** + * External ID of this product variant. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** + * Fields required to update the product variant metadata. + * + * Added in Saleor 3.8. + */ + metadata?: InputMaybe>; + /** Variant name. */ + name?: InputMaybe; + /** + * Determines if variant is in preorder. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + preorder?: InputMaybe; + /** + * Fields required to update the product variant private metadata. + * + * Added in Saleor 3.8. + */ + privateMetadata?: InputMaybe>; + /** Product ID of which type is the variant. */ + product: Scalars['ID']; + /** + * Determines maximum quantity of `ProductVariant`,that can be bought in a single checkout. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + quantityLimitPerCustomer?: InputMaybe; + /** Stock keeping unit. */ + sku?: InputMaybe; + /** Stocks of a product available for sale. */ + stocks?: InputMaybe>; + /** Determines if the inventory of this variant should be tracked. If false, the quantity won't change when customers buy this item. */ + trackInventory?: InputMaybe; + /** Weight of the Product Variant. */ + weight?: InputMaybe; +}; + +/** + * Event sent when new product variant is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductVariantCreated = Event & { + __typename?: 'ProductVariantCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The product variant the event relates to. */ + productVariant?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when new product variant is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductVariantCreatedProductVariantArgs = { + channel?: InputMaybe; +}; + +/** + * Deletes a product variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductVariantDelete = { + __typename?: 'ProductVariantDelete'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + productVariant?: Maybe; +}; + +/** + * Event sent when product variant is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductVariantDeleted = Event & { + __typename?: 'ProductVariantDeleted'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The product variant the event relates to. */ + productVariant?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when product variant is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductVariantDeletedProductVariantArgs = { + channel?: InputMaybe; +}; + +export type ProductVariantFilterInput = { + isPreorder?: InputMaybe; + metadata?: InputMaybe>; + search?: InputMaybe; + sku?: InputMaybe>; + updatedAt?: InputMaybe; +}; + +export type ProductVariantInput = { + /** List of attributes specific to this variant. */ + attributes?: InputMaybe>; + /** + * External ID of this product variant. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** + * Fields required to update the product variant metadata. + * + * Added in Saleor 3.8. + */ + metadata?: InputMaybe>; + /** Variant name. */ + name?: InputMaybe; + /** + * Determines if variant is in preorder. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + preorder?: InputMaybe; + /** + * Fields required to update the product variant private metadata. + * + * Added in Saleor 3.8. + */ + privateMetadata?: InputMaybe>; + /** + * Determines maximum quantity of `ProductVariant`,that can be bought in a single checkout. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + quantityLimitPerCustomer?: InputMaybe; + /** Stock keeping unit. */ + sku?: InputMaybe; + /** Determines if the inventory of this variant should be tracked. If false, the quantity won't change when customers buy this item. */ + trackInventory?: InputMaybe; + /** Weight of the Product Variant. */ + weight?: InputMaybe; +}; + +/** + * Event sent when product variant metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductVariantMetadataUpdated = Event & { + __typename?: 'ProductVariantMetadataUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The product variant the event relates to. */ + productVariant?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when product variant metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductVariantMetadataUpdatedProductVariantArgs = { + channel?: InputMaybe; +}; + +/** + * Event sent when product variant is out of stock. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductVariantOutOfStock = Event & { + __typename?: 'ProductVariantOutOfStock'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The product variant the event relates to. */ + productVariant?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; + /** Look up a warehouse. */ + warehouse?: Maybe; +}; + + +/** + * Event sent when product variant is out of stock. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductVariantOutOfStockProductVariantArgs = { + channel?: InputMaybe; +}; + +/** + * Deactivates product variant preorder. It changes all preorder allocation into regular allocation. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductVariantPreorderDeactivate = { + __typename?: 'ProductVariantPreorderDeactivate'; + errors: Array; + /** Product variant with ended preorder. */ + productVariant?: Maybe; +}; + +/** + * Reorder the variants of a product. Mutation updates updated_at on product and triggers PRODUCT_UPDATED webhook. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductVariantReorder = { + __typename?: 'ProductVariantReorder'; + errors: Array; + product?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +/** + * Reorder product variant attribute values. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductVariantReorderAttributeValues = { + __typename?: 'ProductVariantReorderAttributeValues'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + /** Product variant from which attribute values are reordered. */ + productVariant?: Maybe; +}; + +/** + * Set default variant for a product. Mutation triggers PRODUCT_UPDATED webhook. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductVariantSetDefault = { + __typename?: 'ProductVariantSetDefault'; + errors: Array; + product?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; +}; + +export enum ProductVariantSortField { + /** Sort products variants by last modified at. */ + LastModifiedAt = 'LAST_MODIFIED_AT' +} + +export type ProductVariantSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort productVariants by the selected field. */ + field: ProductVariantSortField; +}; + +/** + * Creates stocks for product variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductVariantStocksCreate = { + __typename?: 'ProductVariantStocksCreate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + bulkStockErrors: Array; + errors: Array; + /** Updated product variant. */ + productVariant?: Maybe; +}; + +/** + * Delete stocks from product variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductVariantStocksDelete = { + __typename?: 'ProductVariantStocksDelete'; + errors: Array; + /** Updated product variant. */ + productVariant?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + stockErrors: Array; +}; + +/** + * Update stocks for product variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductVariantStocksUpdate = { + __typename?: 'ProductVariantStocksUpdate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + bulkStockErrors: Array; + errors: Array; + /** Updated product variant. */ + productVariant?: Maybe; +}; + +export type ProductVariantTranslatableContent = Node & { + __typename?: 'ProductVariantTranslatableContent'; + /** List of product variant attribute values that can be translated. */ + attributeValues: Array; + id: Scalars['ID']; + name: Scalars['String']; + /** + * Represents a version of a product such as different size or color. + * @deprecated This field will be removed in Saleor 4.0. Get model fields from the root level queries. + */ + productVariant?: Maybe; + /** Returns translated product variant fields for the given language code. */ + translation?: Maybe; +}; + + +export type ProductVariantTranslatableContentTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Creates/updates translations for a product variant. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ +export type ProductVariantTranslate = { + __typename?: 'ProductVariantTranslate'; + errors: Array; + productVariant?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + translationErrors: Array; +}; + +export type ProductVariantTranslation = Node & { + __typename?: 'ProductVariantTranslation'; + id: Scalars['ID']; + /** Translation language. */ + language: LanguageDisplay; + name: Scalars['String']; +}; + +/** + * Updates an existing variant for product. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type ProductVariantUpdate = { + __typename?: 'ProductVariantUpdate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + productVariant?: Maybe; +}; + +/** + * Event sent when product variant is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductVariantUpdated = Event & { + __typename?: 'ProductVariantUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The product variant the event relates to. */ + productVariant?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when product variant is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ProductVariantUpdatedProductVariantArgs = { + channel?: InputMaybe; +}; + +export type PublishableChannelListingInput = { + /** ID of a channel. */ + channelId: Scalars['ID']; + /** Determines if object is visible to customers. */ + isPublished?: InputMaybe; + /** + * Publication date. ISO 8601 standard. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use `publishedAt` field instead. + */ + publicationDate?: InputMaybe; + /** + * Publication date time. ISO 8601 standard. + * + * Added in Saleor 3.3. + */ + publishedAt?: InputMaybe; +}; + +export type Query = { + __typename?: 'Query'; + _entities?: Maybe>>; + _service?: Maybe<_Service>; + /** Look up an address by ID. */ + address?: Maybe
; + /** Returns address validation rules. */ + addressValidationRules?: Maybe; + /** + * Look up an app by ID. If ID is not provided, return the currently authenticated app. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER AUTHENTICATED_APP. The authenticated app has access to its resources. Fetching different apps requires MANAGE_APPS permission. + */ + app?: Maybe; + /** + * Look up an app extension by ID. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + */ + appExtension?: Maybe; + /** + * List of all extensions. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + */ + appExtensions?: Maybe; + /** + * List of the apps. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER, MANAGE_APPS. + */ + apps?: Maybe; + /** + * List of all apps installations + * + * Requires one of the following permissions: MANAGE_APPS. + */ + appsInstallations: Array; + /** Look up an attribute by ID, slug or external reference. */ + attribute?: Maybe; + /** List of the shop's attributes. */ + attributes?: Maybe; + /** List of the shop's categories. */ + categories?: Maybe; + /** Look up a category by ID or slug. */ + category?: Maybe; + /** Look up a channel by ID or slug. */ + channel?: Maybe; + /** + * List of all channels. + * + * Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + */ + channels?: Maybe>; + /** Look up a checkout by token and slug of channel. */ + checkout?: Maybe; + /** + * List of checkout lines. + * + * Requires one of the following permissions: MANAGE_CHECKOUTS. + */ + checkoutLines?: Maybe; + /** + * List of checkouts. + * + * Requires one of the following permissions: MANAGE_CHECKOUTS. + */ + checkouts?: Maybe; + /** Look up a collection by ID. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. */ + collection?: Maybe; + /** List of the shop's collections. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. */ + collections?: Maybe; + /** + * List of the shop's customers. + * + * Requires one of the following permissions: MANAGE_ORDERS, MANAGE_USERS. + */ + customers?: Maybe; + /** + * Look up digital content by ID. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + digitalContent?: Maybe; + /** + * List of digital content. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + digitalContents?: Maybe; + /** + * List of draft orders. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + draftOrders?: Maybe; + /** + * Look up a export file by ID. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + exportFile?: Maybe; + /** + * List of export files. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + exportFiles?: Maybe; + /** + * Look up a gift card by ID. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCard?: Maybe; + /** + * List of gift card currencies. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCardCurrencies: Array; + /** + * Gift card related settings from site settings. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCardSettings: GiftCardSettings; + /** + * List of gift card tags. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCardTags?: Maybe; + /** + * List of gift cards. + * + * Requires one of the following permissions: MANAGE_GIFT_CARD. + */ + giftCards?: Maybe; + /** + * List of activity events to display on homepage (at the moment it only contains order-events). + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + homepageEvents?: Maybe; + /** Return the currently authenticated user. */ + me?: Maybe; + /** Look up a navigation menu by ID or name. */ + menu?: Maybe; + /** Look up a menu item by ID. */ + menuItem?: Maybe; + /** List of the storefronts's menu items. */ + menuItems?: Maybe; + /** List of the storefront's menus. */ + menus?: Maybe; + /** Look up an order by ID or external reference. */ + order?: Maybe; + /** + * Look up an order by token. + * @deprecated This field will be removed in Saleor 4.0. + */ + orderByToken?: Maybe; + /** + * Order related settings from site settings. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orderSettings?: Maybe; + /** + * List of orders. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + orders?: Maybe; + /** + * Return the total sales amount from a specific period. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + ordersTotal?: Maybe; + /** Look up a page by ID or slug. */ + page?: Maybe; + /** Look up a page type by ID. */ + pageType?: Maybe; + /** List of the page types. */ + pageTypes?: Maybe; + /** List of the shop's pages. */ + pages?: Maybe; + /** + * Look up a payment by ID. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + payment?: Maybe; + /** + * List of payments. + * + * Requires one of the following permissions: MANAGE_ORDERS. + */ + payments?: Maybe; + /** + * Look up permission group by ID. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ + permissionGroup?: Maybe; + /** + * List of permission groups. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ + permissionGroups?: Maybe; + /** + * Look up a plugin by ID. + * + * Requires one of the following permissions: MANAGE_PLUGINS. + */ + plugin?: Maybe; + /** + * List of plugins. + * + * Requires one of the following permissions: MANAGE_PLUGINS. + */ + plugins?: Maybe; + /** Look up a product by ID. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. */ + product?: Maybe; + /** Look up a product type by ID. */ + productType?: Maybe; + /** List of the shop's product types. */ + productTypes?: Maybe; + /** Look up a product variant by ID or SKU. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. */ + productVariant?: Maybe; + /** List of product variants. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. */ + productVariants?: Maybe; + /** List of the shop's products. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. */ + products?: Maybe; + /** + * List of top selling products. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + reportProductSales?: Maybe; + /** + * Look up a sale by ID. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + sale?: Maybe; + /** + * List of the shop's sales. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + sales?: Maybe; + /** + * Look up a shipping zone by ID. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ + shippingZone?: Maybe; + /** + * List of the shop's shipping zones. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ + shippingZones?: Maybe; + /** Return information about the shop. */ + shop: Shop; + /** + * List of the shop's staff users. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ + staffUsers?: Maybe; + /** + * Look up a stock by ID + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + stock?: Maybe; + /** + * List of stocks. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ + stocks?: Maybe; + /** + * Look up a tax class. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + */ + taxClass?: Maybe; + /** + * List of tax classes. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + */ + taxClasses?: Maybe; + /** + * Look up a tax configuration. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + */ + taxConfiguration?: Maybe; + /** + * List of tax configurations. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + */ + taxConfigurations?: Maybe; + /** + * Tax class rates grouped by country. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + */ + taxCountryConfiguration?: Maybe; + /** \n\nRequires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. */ + taxCountryConfigurations?: Maybe>; + /** List of all tax rates available from tax gateway. */ + taxTypes?: Maybe>; + /** + * Look up a transaction by ID. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: HANDLE_PAYMENTS. + */ + transaction?: Maybe; + /** + * Lookup a translatable item by ID. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ + translation?: Maybe; + /** + * Returns a list of all translatable items of a given kind. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ + translations?: Maybe; + /** + * Look up a user by ID or email address. + * + * Requires one of the following permissions: MANAGE_STAFF, MANAGE_USERS, MANAGE_ORDERS. + */ + user?: Maybe; + /** + * Look up a voucher by ID. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + voucher?: Maybe; + /** + * List of the shop's vouchers. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + vouchers?: Maybe; + /** + * Look up a warehouse by ID. + * + * Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS, MANAGE_SHIPPING. + */ + warehouse?: Maybe; + /** + * List of warehouses. + * + * Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS, MANAGE_SHIPPING. + */ + warehouses?: Maybe; + /** Look up a webhook by ID. Requires one of the following permissions: MANAGE_APPS, OWNER. */ + webhook?: Maybe; + /** + * List of all available webhook events. + * + * Requires one of the following permissions: MANAGE_APPS. + * @deprecated This field will be removed in Saleor 4.0. Use `WebhookEventTypeAsyncEnum` and `WebhookEventTypeSyncEnum` to get available event types. + */ + webhookEvents?: Maybe>; + /** Retrieve a sample payload for a given webhook event based on real data. It can be useful for some integrations where sample payload is required. */ + webhookSamplePayload?: Maybe; +}; + + +export type Query_EntitiesArgs = { + representations?: InputMaybe>>; +}; + + +export type QueryAddressArgs = { + id: Scalars['ID']; +}; + + +export type QueryAddressValidationRulesArgs = { + city?: InputMaybe; + cityArea?: InputMaybe; + countryArea?: InputMaybe; + countryCode: CountryCode; +}; + + +export type QueryAppArgs = { + id?: InputMaybe; +}; + + +export type QueryAppExtensionArgs = { + id: Scalars['ID']; +}; + + +export type QueryAppExtensionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +export type QueryAppsArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryAttributeArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; + slug?: InputMaybe; +}; + + +export type QueryAttributesArgs = { + after?: InputMaybe; + before?: InputMaybe; + channel?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryCategoriesArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + level?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryCategoryArgs = { + id?: InputMaybe; + slug?: InputMaybe; +}; + + +export type QueryChannelArgs = { + id?: InputMaybe; + slug?: InputMaybe; +}; + + +export type QueryCheckoutArgs = { + id?: InputMaybe; + token?: InputMaybe; +}; + + +export type QueryCheckoutLinesArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +export type QueryCheckoutsArgs = { + after?: InputMaybe; + before?: InputMaybe; + channel?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryCollectionArgs = { + channel?: InputMaybe; + id?: InputMaybe; + slug?: InputMaybe; +}; + + +export type QueryCollectionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + channel?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryCustomersArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryDigitalContentArgs = { + id: Scalars['ID']; +}; + + +export type QueryDigitalContentsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +export type QueryDraftOrdersArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryExportFileArgs = { + id: Scalars['ID']; +}; + + +export type QueryExportFilesArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryGiftCardArgs = { + id: Scalars['ID']; +}; + + +export type QueryGiftCardTagsArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +export type QueryGiftCardsArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryHomepageEventsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +export type QueryMenuArgs = { + channel?: InputMaybe; + id?: InputMaybe; + name?: InputMaybe; + slug?: InputMaybe; +}; + + +export type QueryMenuItemArgs = { + channel?: InputMaybe; + id: Scalars['ID']; +}; + + +export type QueryMenuItemsArgs = { + after?: InputMaybe; + before?: InputMaybe; + channel?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryMenusArgs = { + after?: InputMaybe; + before?: InputMaybe; + channel?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryOrderArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; +}; + + +export type QueryOrderByTokenArgs = { + token: Scalars['UUID']; +}; + + +export type QueryOrdersArgs = { + after?: InputMaybe; + before?: InputMaybe; + channel?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryOrdersTotalArgs = { + channel?: InputMaybe; + period?: InputMaybe; +}; + + +export type QueryPageArgs = { + id?: InputMaybe; + slug?: InputMaybe; +}; + + +export type QueryPageTypeArgs = { + id: Scalars['ID']; +}; + + +export type QueryPageTypesArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryPagesArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryPaymentArgs = { + id: Scalars['ID']; +}; + + +export type QueryPaymentsArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +export type QueryPermissionGroupArgs = { + id: Scalars['ID']; +}; + + +export type QueryPermissionGroupsArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryPluginArgs = { + id: Scalars['ID']; +}; + + +export type QueryPluginsArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryProductArgs = { + channel?: InputMaybe; + externalReference?: InputMaybe; + id?: InputMaybe; + slug?: InputMaybe; +}; + + +export type QueryProductTypeArgs = { + id: Scalars['ID']; +}; + + +export type QueryProductTypesArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryProductVariantArgs = { + channel?: InputMaybe; + externalReference?: InputMaybe; + id?: InputMaybe; + sku?: InputMaybe; +}; + + +export type QueryProductVariantsArgs = { + after?: InputMaybe; + before?: InputMaybe; + channel?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + ids?: InputMaybe>; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryProductsArgs = { + after?: InputMaybe; + before?: InputMaybe; + channel?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryReportProductSalesArgs = { + after?: InputMaybe; + before?: InputMaybe; + channel: Scalars['String']; + first?: InputMaybe; + last?: InputMaybe; + period: ReportingPeriod; +}; + + +export type QuerySaleArgs = { + channel?: InputMaybe; + id: Scalars['ID']; +}; + + +export type QuerySalesArgs = { + after?: InputMaybe; + before?: InputMaybe; + channel?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + query?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryShippingZoneArgs = { + channel?: InputMaybe; + id: Scalars['ID']; +}; + + +export type QueryShippingZonesArgs = { + after?: InputMaybe; + before?: InputMaybe; + channel?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +export type QueryStaffUsersArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryStockArgs = { + id: Scalars['ID']; +}; + + +export type QueryStocksArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +export type QueryTaxClassArgs = { + id: Scalars['ID']; +}; + + +export type QueryTaxClassesArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryTaxConfigurationArgs = { + id: Scalars['ID']; +}; + + +export type QueryTaxConfigurationsArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +export type QueryTaxCountryConfigurationArgs = { + countryCode: CountryCode; +}; + + +export type QueryTransactionArgs = { + id: Scalars['ID']; +}; + + +export type QueryTranslationArgs = { + id: Scalars['ID']; + kind: TranslatableKinds; +}; + + +export type QueryTranslationsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + kind: TranslatableKinds; + last?: InputMaybe; +}; + + +export type QueryUserArgs = { + email?: InputMaybe; + externalReference?: InputMaybe; + id?: InputMaybe; +}; + + +export type QueryVoucherArgs = { + channel?: InputMaybe; + id: Scalars['ID']; +}; + + +export type QueryVouchersArgs = { + after?: InputMaybe; + before?: InputMaybe; + channel?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + query?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryWarehouseArgs = { + externalReference?: InputMaybe; + id?: InputMaybe; +}; + + +export type QueryWarehousesArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + + +export type QueryWebhookArgs = { + id: Scalars['ID']; +}; + + +export type QueryWebhookSamplePayloadArgs = { + eventType: WebhookSampleEventTypeEnum; +}; + +/** Represents a reduced VAT rate for a particular type of goods. */ +export type ReducedRate = { + __typename?: 'ReducedRate'; + /** Reduced VAT rate in percent. */ + rate: Scalars['Float']; + /** A type of goods. */ + rateType: Scalars['String']; +}; + +/** Refresh JWT token. Mutation tries to take refreshToken from the input.If it fails it will try to take refreshToken from the http-only cookie -refreshToken. csrfToken is required when refreshToken is provided as a cookie. */ +export type RefreshToken = { + __typename?: 'RefreshToken'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + /** JWT token, required to authenticate. */ + token?: Maybe; + /** A user instance. */ + user?: Maybe; +}; + +export type ReorderInput = { + /** The ID of the item to move. */ + id: Scalars['ID']; + /** The new relative sorting position of the item (from -inf to +inf). 1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged. */ + sortOrder?: InputMaybe; +}; + +export enum ReportingPeriod { + ThisMonth = 'THIS_MONTH', + Today = 'TODAY' +} + +/** + * Request email change of the logged in user. + * + * Requires one of the following permissions: AUTHENTICATED_USER. + */ +export type RequestEmailChange = { + __typename?: 'RequestEmailChange'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + /** A user instance. */ + user?: Maybe; +}; + +/** Sends an email with the account password modification link. */ +export type RequestPasswordReset = { + __typename?: 'RequestPasswordReset'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; +}; + +/** Sales allow creating discounts for categories, collections or products and are visible to all the customers. */ +export type Sale = Node & ObjectWithMetadata & { + __typename?: 'Sale'; + /** List of categories this sale applies to. */ + categories?: Maybe; + /** + * List of channels available for the sale. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + channelListings?: Maybe>; + /** + * List of collections this sale applies to. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + collections?: Maybe; + created: Scalars['DateTime']; + /** Currency code for sale. */ + currency?: Maybe; + /** Sale value. */ + discountValue?: Maybe; + endDate?: Maybe; + id: Scalars['ID']; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + name: Scalars['String']; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** + * List of products this sale applies to. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + products?: Maybe; + startDate: Scalars['DateTime']; + /** Returns translated sale fields for the given language code. */ + translation?: Maybe; + type: SaleType; + updatedAt: Scalars['DateTime']; + /** + * List of product variants this sale applies to. + * + * Added in Saleor 3.1. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + variants?: Maybe; +}; + + +/** Sales allow creating discounts for categories, collections or products and are visible to all the customers. */ +export type SaleCategoriesArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Sales allow creating discounts for categories, collections or products and are visible to all the customers. */ +export type SaleCollectionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Sales allow creating discounts for categories, collections or products and are visible to all the customers. */ +export type SaleMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Sales allow creating discounts for categories, collections or products and are visible to all the customers. */ +export type SaleMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Sales allow creating discounts for categories, collections or products and are visible to all the customers. */ +export type SalePrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Sales allow creating discounts for categories, collections or products and are visible to all the customers. */ +export type SalePrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Sales allow creating discounts for categories, collections or products and are visible to all the customers. */ +export type SaleProductsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Sales allow creating discounts for categories, collections or products and are visible to all the customers. */ +export type SaleTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + + +/** Sales allow creating discounts for categories, collections or products and are visible to all the customers. */ +export type SaleVariantsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + +/** + * Adds products, categories, collections to a voucher. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ +export type SaleAddCatalogues = { + __typename?: 'SaleAddCatalogues'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + discountErrors: Array; + errors: Array; + /** Sale of which catalogue IDs will be modified. */ + sale?: Maybe; +}; + +/** + * Deletes sales. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ +export type SaleBulkDelete = { + __typename?: 'SaleBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + discountErrors: Array; + errors: Array; +}; + +/** Represents sale channel listing. */ +export type SaleChannelListing = Node & { + __typename?: 'SaleChannelListing'; + channel: Channel; + currency: Scalars['String']; + discountValue: Scalars['Float']; + id: Scalars['ID']; +}; + +export type SaleChannelListingAddInput = { + /** ID of a channel. */ + channelId: Scalars['ID']; + /** The value of the discount. */ + discountValue: Scalars['PositiveDecimal']; +}; + +export type SaleChannelListingInput = { + /** List of channels to which the sale should be assigned. */ + addChannels?: InputMaybe>; + /** List of channels from which the sale should be unassigned. */ + removeChannels?: InputMaybe>; +}; + +/** + * Manage sale's availability in channels. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ +export type SaleChannelListingUpdate = { + __typename?: 'SaleChannelListingUpdate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + discountErrors: Array; + errors: Array; + /** An updated sale instance. */ + sale?: Maybe; +}; + +export type SaleCountableConnection = { + __typename?: 'SaleCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type SaleCountableEdge = { + __typename?: 'SaleCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: Sale; +}; + +/** + * Creates a new sale. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ +export type SaleCreate = { + __typename?: 'SaleCreate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + discountErrors: Array; + errors: Array; + sale?: Maybe; +}; + +/** + * Event sent when new sale is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type SaleCreated = Event & { + __typename?: 'SaleCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The sale the event relates to. */ + sale?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when new sale is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type SaleCreatedSaleArgs = { + channel?: InputMaybe; +}; + +/** + * Deletes a sale. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ +export type SaleDelete = { + __typename?: 'SaleDelete'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + discountErrors: Array; + errors: Array; + sale?: Maybe; +}; + +/** + * Event sent when sale is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type SaleDeleted = Event & { + __typename?: 'SaleDeleted'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The sale the event relates to. */ + sale?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when sale is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type SaleDeletedSaleArgs = { + channel?: InputMaybe; +}; + +export type SaleFilterInput = { + metadata?: InputMaybe>; + saleType?: InputMaybe; + search?: InputMaybe; + started?: InputMaybe; + status?: InputMaybe>; + updatedAt?: InputMaybe; +}; + +export type SaleInput = { + /** Categories related to the discount. */ + categories?: InputMaybe>; + /** Collections related to the discount. */ + collections?: InputMaybe>; + /** End date of the voucher in ISO 8601 format. */ + endDate?: InputMaybe; + /** Voucher name. */ + name?: InputMaybe; + /** Products related to the discount. */ + products?: InputMaybe>; + /** Start date of the voucher in ISO 8601 format. */ + startDate?: InputMaybe; + /** Fixed or percentage. */ + type?: InputMaybe; + /** Value of the voucher. */ + value?: InputMaybe; + variants?: InputMaybe>; +}; + +/** + * Removes products, categories, collections from a sale. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ +export type SaleRemoveCatalogues = { + __typename?: 'SaleRemoveCatalogues'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + discountErrors: Array; + errors: Array; + /** Sale of which catalogue IDs will be modified. */ + sale?: Maybe; +}; + +export enum SaleSortField { + /** Sort sales by created at. */ + CreatedAt = 'CREATED_AT', + /** Sort sales by end date. */ + EndDate = 'END_DATE', + /** Sort sales by last modified at. */ + LastModifiedAt = 'LAST_MODIFIED_AT', + /** Sort sales by name. */ + Name = 'NAME', + /** Sort sales by start date. */ + StartDate = 'START_DATE', + /** Sort sales by type. */ + Type = 'TYPE', + /** + * Sort sales by value. + * + * This option requires a channel filter to work as the values can vary between channels. + */ + Value = 'VALUE' +} + +export type SaleSortingInput = { + /** + * Specifies the channel in which to sort the data. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + */ + channel?: InputMaybe; + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort sales by the selected field. */ + field: SaleSortField; +}; + +/** + * The event informs about the start or end of the sale. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type SaleToggle = Event & { + __typename?: 'SaleToggle'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** + * The sale the event relates to. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + sale?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * The event informs about the start or end of the sale. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type SaleToggleSaleArgs = { + channel?: InputMaybe; +}; + +export type SaleTranslatableContent = Node & { + __typename?: 'SaleTranslatableContent'; + id: Scalars['ID']; + name: Scalars['String']; + /** + * Sales allow creating discounts for categories, collections or products and are visible to all the customers. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + * @deprecated This field will be removed in Saleor 4.0. Get model fields from the root level queries. + */ + sale?: Maybe; + /** Returns translated sale fields for the given language code. */ + translation?: Maybe; +}; + + +export type SaleTranslatableContentTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Creates/updates translations for a sale. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ +export type SaleTranslate = { + __typename?: 'SaleTranslate'; + errors: Array; + sale?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + translationErrors: Array; +}; + +export type SaleTranslation = Node & { + __typename?: 'SaleTranslation'; + id: Scalars['ID']; + /** Translation language. */ + language: LanguageDisplay; + name?: Maybe; +}; + +export enum SaleType { + Fixed = 'FIXED', + Percentage = 'PERCENTAGE' +} + +/** + * Updates a sale. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ +export type SaleUpdate = { + __typename?: 'SaleUpdate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + discountErrors: Array; + errors: Array; + sale?: Maybe; +}; + +/** + * Event sent when sale is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type SaleUpdated = Event & { + __typename?: 'SaleUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The sale the event relates to. */ + sale?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when sale is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type SaleUpdatedSaleArgs = { + channel?: InputMaybe; +}; + +/** Represents a custom attribute. */ +export type SelectedAttribute = { + __typename?: 'SelectedAttribute'; + /** Name of an attribute displayed in the interface. */ + attribute: Attribute; + /** Values of an attribute. */ + values: Array; +}; + +export type SeoInput = { + /** SEO description. */ + description?: InputMaybe; + /** SEO title. */ + title?: InputMaybe; +}; + +/** Sets the user's password from the token sent by email using the RequestPasswordReset mutation. */ +export type SetPassword = { + __typename?: 'SetPassword'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + /** CSRF token required to re-generate access token. */ + csrfToken?: Maybe; + errors: Array; + /** JWT refresh token, required to re-generate access token. */ + refreshToken?: Maybe; + /** JWT token, required to authenticate. */ + token?: Maybe; + /** A user instance. */ + user?: Maybe; +}; + +export type ShippingError = { + __typename?: 'ShippingError'; + /** List of channels IDs which causes the error. */ + channels?: Maybe>; + /** The error code. */ + code: ShippingErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of warehouse IDs which causes the error. */ + warehouses?: Maybe>; +}; + +/** An enumeration. */ +export enum ShippingErrorCode { + AlreadyExists = 'ALREADY_EXISTS', + DuplicatedInputItem = 'DUPLICATED_INPUT_ITEM', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + MaxLessThanMin = 'MAX_LESS_THAN_MIN', + NotFound = 'NOT_FOUND', + Required = 'REQUIRED', + Unique = 'UNIQUE' +} + +/** + * List shipping methods for checkout. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingListMethodsForCheckout = Event & { + __typename?: 'ShippingListMethodsForCheckout'; + /** The checkout the event relates to. */ + checkout?: Maybe; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** + * Shipping methods that can be used with this checkout. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + shippingMethods?: Maybe>; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** Shipping methods that can be used as means of shipping for orders and checkouts. */ +export type ShippingMethod = Node & ObjectWithMetadata & { + __typename?: 'ShippingMethod'; + /** Describes if this shipping method is active and can be selected. */ + active: Scalars['Boolean']; + /** + * Shipping method description. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: Maybe; + /** Unique ID of ShippingMethod available for Order. */ + id: Scalars['ID']; + /** Maximum delivery days for this shipping method. */ + maximumDeliveryDays?: Maybe; + /** Maximum order price for this shipping method. */ + maximumOrderPrice?: Maybe; + /** + * Maximum order weight for this shipping method. + * @deprecated This field will be removed in Saleor 4.0. + */ + maximumOrderWeight?: Maybe; + /** Message connected to this shipping method. */ + message?: Maybe; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + /** Minimum delivery days for this shipping method. */ + minimumDeliveryDays?: Maybe; + /** Minimal order price for this shipping method. */ + minimumOrderPrice?: Maybe; + /** + * Minimum order weight for this shipping method. + * @deprecated This field will be removed in Saleor 4.0. + */ + minimumOrderWeight?: Maybe; + /** Shipping method name. */ + name: Scalars['String']; + /** The price of selected shipping method. */ + price: Money; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** Returns translated shipping method fields for the given language code. */ + translation?: Maybe; + /** + * Type of the shipping method. + * @deprecated This field will be removed in Saleor 4.0. + */ + type?: Maybe; +}; + + +/** Shipping methods that can be used as means of shipping for orders and checkouts. */ +export type ShippingMethodMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Shipping methods that can be used as means of shipping for orders and checkouts. */ +export type ShippingMethodMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Shipping methods that can be used as means of shipping for orders and checkouts. */ +export type ShippingMethodPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Shipping methods that can be used as means of shipping for orders and checkouts. */ +export type ShippingMethodPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Shipping methods that can be used as means of shipping for orders and checkouts. */ +export type ShippingMethodTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** Represents shipping method channel listing. */ +export type ShippingMethodChannelListing = Node & { + __typename?: 'ShippingMethodChannelListing'; + channel: Channel; + id: Scalars['ID']; + maximumOrderPrice?: Maybe; + minimumOrderPrice?: Maybe; + price?: Maybe; +}; + +export type ShippingMethodChannelListingAddInput = { + /** ID of a channel. */ + channelId: Scalars['ID']; + /** Maximum order price to use this shipping method. */ + maximumOrderPrice?: InputMaybe; + /** Minimum order price to use this shipping method. */ + minimumOrderPrice?: InputMaybe; + /** Shipping price of the shipping method in this channel. */ + price?: InputMaybe; +}; + +export type ShippingMethodChannelListingInput = { + /** List of channels to which the shipping method should be assigned. */ + addChannels?: InputMaybe>; + /** List of channels from which the shipping method should be unassigned. */ + removeChannels?: InputMaybe>; +}; + +/** + * Manage shipping method's availability in channels. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ +export type ShippingMethodChannelListingUpdate = { + __typename?: 'ShippingMethodChannelListingUpdate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shippingErrors: Array; + /** An updated shipping method instance. */ + shippingMethod?: Maybe; +}; + +/** Represents shipping method postal code rule. */ +export type ShippingMethodPostalCodeRule = Node & { + __typename?: 'ShippingMethodPostalCodeRule'; + /** End address range. */ + end?: Maybe; + /** The ID of the object. */ + id: Scalars['ID']; + /** Inclusion type of the postal code rule. */ + inclusionType?: Maybe; + /** Start address range. */ + start?: Maybe; +}; + +export type ShippingMethodTranslatableContent = Node & { + __typename?: 'ShippingMethodTranslatableContent'; + /** + * Description of the shipping method. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: Maybe; + id: Scalars['ID']; + name: Scalars['String']; + /** + * Shipping method are the methods you'll use to get customer's orders to them. They are directly exposed to the customers. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + * @deprecated This field will be removed in Saleor 4.0. Get model fields from the root level queries. + */ + shippingMethod?: Maybe; + /** Returns translated shipping method fields for the given language code. */ + translation?: Maybe; +}; + + +export type ShippingMethodTranslatableContentTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +export type ShippingMethodTranslation = Node & { + __typename?: 'ShippingMethodTranslation'; + /** + * Translated description of the shipping method. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: Maybe; + id: Scalars['ID']; + /** Translation language. */ + language: LanguageDisplay; + name?: Maybe; +}; + +/** Shipping method are the methods you'll use to get customer's orders to them. They are directly exposed to the customers. */ +export type ShippingMethodType = Node & ObjectWithMetadata & { + __typename?: 'ShippingMethodType'; + /** + * List of channels available for the method. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ + channelListings?: Maybe>; + /** + * Shipping method description. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: Maybe; + /** + * List of excluded products for the shipping method. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ + excludedProducts?: Maybe; + /** Shipping method ID. */ + id: Scalars['ID']; + /** Maximum number of days for delivery. */ + maximumDeliveryDays?: Maybe; + /** The price of the cheapest variant (including discounts). */ + maximumOrderPrice?: Maybe; + /** Maximum order weight to use this shipping method. */ + maximumOrderWeight?: Maybe; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + /** Minimal number of days for delivery. */ + minimumDeliveryDays?: Maybe; + /** The price of the cheapest variant (including discounts). */ + minimumOrderPrice?: Maybe; + /** Minimum order weight to use this shipping method. */ + minimumOrderWeight?: Maybe; + /** Shipping method name. */ + name: Scalars['String']; + /** Postal code ranges rule of exclusion or inclusion of the shipping method. */ + postalCodeRules?: Maybe>; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** + * Tax class assigned to this shipping method. + * + * Requires one of the following permissions: MANAGE_TAXES, MANAGE_SHIPPING. + */ + taxClass?: Maybe; + /** Returns translated shipping method fields for the given language code. */ + translation?: Maybe; + /** Type of the shipping method. */ + type?: Maybe; +}; + + +/** Shipping method are the methods you'll use to get customer's orders to them. They are directly exposed to the customers. */ +export type ShippingMethodTypeExcludedProductsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Shipping method are the methods you'll use to get customer's orders to them. They are directly exposed to the customers. */ +export type ShippingMethodTypeMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Shipping method are the methods you'll use to get customer's orders to them. They are directly exposed to the customers. */ +export type ShippingMethodTypeMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Shipping method are the methods you'll use to get customer's orders to them. They are directly exposed to the customers. */ +export type ShippingMethodTypePrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Shipping method are the methods you'll use to get customer's orders to them. They are directly exposed to the customers. */ +export type ShippingMethodTypePrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Shipping method are the methods you'll use to get customer's orders to them. They are directly exposed to the customers. */ +export type ShippingMethodTypeTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** An enumeration. */ +export enum ShippingMethodTypeEnum { + Price = 'PRICE', + Weight = 'WEIGHT' +} + +/** + * List of shipping methods available for the country. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingMethodsPerCountry = { + __typename?: 'ShippingMethodsPerCountry'; + /** The country code. */ + countryCode: CountryCode; + /** List of available shipping methods. */ + shippingMethods?: Maybe>; +}; + +export type ShippingPostalCodeRulesCreateInputRange = { + /** End range of the postal code. */ + end?: InputMaybe; + /** Start range of the postal code. */ + start: Scalars['String']; +}; + +/** + * Deletes shipping prices. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ +export type ShippingPriceBulkDelete = { + __typename?: 'ShippingPriceBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shippingErrors: Array; +}; + +/** + * Creates a new shipping price. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ +export type ShippingPriceCreate = { + __typename?: 'ShippingPriceCreate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shippingErrors: Array; + shippingMethod?: Maybe; + /** A shipping zone to which the shipping method belongs. */ + shippingZone?: Maybe; +}; + +/** + * Event sent when new shipping price is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingPriceCreated = Event & { + __typename?: 'ShippingPriceCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The shipping method the event relates to. */ + shippingMethod?: Maybe; + /** The shipping zone the shipping method belongs to. */ + shippingZone?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when new shipping price is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingPriceCreatedShippingMethodArgs = { + channel?: InputMaybe; +}; + + +/** + * Event sent when new shipping price is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingPriceCreatedShippingZoneArgs = { + channel?: InputMaybe; +}; + +/** + * Deletes a shipping price. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ +export type ShippingPriceDelete = { + __typename?: 'ShippingPriceDelete'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shippingErrors: Array; + /** A shipping method to delete. */ + shippingMethod?: Maybe; + /** A shipping zone to which the shipping method belongs. */ + shippingZone?: Maybe; +}; + +/** + * Event sent when shipping price is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingPriceDeleted = Event & { + __typename?: 'ShippingPriceDeleted'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The shipping method the event relates to. */ + shippingMethod?: Maybe; + /** The shipping zone the shipping method belongs to. */ + shippingZone?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when shipping price is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingPriceDeletedShippingMethodArgs = { + channel?: InputMaybe; +}; + + +/** + * Event sent when shipping price is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingPriceDeletedShippingZoneArgs = { + channel?: InputMaybe; +}; + +/** + * Exclude products from shipping price. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ +export type ShippingPriceExcludeProducts = { + __typename?: 'ShippingPriceExcludeProducts'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shippingErrors: Array; + /** A shipping method with new list of excluded products. */ + shippingMethod?: Maybe; +}; + +export type ShippingPriceExcludeProductsInput = { + /** List of products which will be excluded. */ + products: Array; +}; + +export type ShippingPriceInput = { + /** Postal code rules to add. */ + addPostalCodeRules?: InputMaybe>; + /** Postal code rules to delete. */ + deletePostalCodeRules?: InputMaybe>; + /** Shipping method description. */ + description?: InputMaybe; + /** Inclusion type for currently assigned postal code rules. */ + inclusionType?: InputMaybe; + /** Maximum number of days for delivery. */ + maximumDeliveryDays?: InputMaybe; + /** Maximum order weight to use this shipping method. */ + maximumOrderWeight?: InputMaybe; + /** Minimal number of days for delivery. */ + minimumDeliveryDays?: InputMaybe; + /** Minimum order weight to use this shipping method. */ + minimumOrderWeight?: InputMaybe; + /** Name of the shipping method. */ + name?: InputMaybe; + /** Shipping zone this method belongs to. */ + shippingZone?: InputMaybe; + /** ID of a tax class to assign to this shipping method. If not provided, the default tax class will be used. */ + taxClass?: InputMaybe; + /** Shipping type: price or weight based. */ + type?: InputMaybe; +}; + +/** + * Remove product from excluded list for shipping price. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ +export type ShippingPriceRemoveProductFromExclude = { + __typename?: 'ShippingPriceRemoveProductFromExclude'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shippingErrors: Array; + /** A shipping method with new list of excluded products. */ + shippingMethod?: Maybe; +}; + +/** + * Creates/updates translations for a shipping method. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ +export type ShippingPriceTranslate = { + __typename?: 'ShippingPriceTranslate'; + errors: Array; + shippingMethod?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + translationErrors: Array; +}; + +export type ShippingPriceTranslationInput = { + /** + * Translated shipping method description. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: InputMaybe; + name?: InputMaybe; +}; + +/** + * Updates a new shipping price. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ +export type ShippingPriceUpdate = { + __typename?: 'ShippingPriceUpdate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shippingErrors: Array; + shippingMethod?: Maybe; + /** A shipping zone to which the shipping method belongs. */ + shippingZone?: Maybe; +}; + +/** + * Event sent when shipping price is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingPriceUpdated = Event & { + __typename?: 'ShippingPriceUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The shipping method the event relates to. */ + shippingMethod?: Maybe; + /** The shipping zone the shipping method belongs to. */ + shippingZone?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when shipping price is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingPriceUpdatedShippingMethodArgs = { + channel?: InputMaybe; +}; + + +/** + * Event sent when shipping price is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingPriceUpdatedShippingZoneArgs = { + channel?: InputMaybe; +}; + +/** Represents a shipping zone in the shop. Zones are the concept used only for grouping shipping methods in the dashboard, and are never exposed to the customers directly. */ +export type ShippingZone = Node & ObjectWithMetadata & { + __typename?: 'ShippingZone'; + /** List of channels for shipping zone. */ + channels: Array; + /** List of countries available for the method. */ + countries: Array; + default: Scalars['Boolean']; + /** Description of a shipping zone. */ + description?: Maybe; + id: Scalars['ID']; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + name: Scalars['String']; + /** Lowest and highest prices for the shipping. */ + priceRange?: Maybe; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** List of shipping methods available for orders shipped to countries within this shipping zone. */ + shippingMethods?: Maybe>; + /** List of warehouses for shipping zone. */ + warehouses: Array; +}; + + +/** Represents a shipping zone in the shop. Zones are the concept used only for grouping shipping methods in the dashboard, and are never exposed to the customers directly. */ +export type ShippingZoneMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a shipping zone in the shop. Zones are the concept used only for grouping shipping methods in the dashboard, and are never exposed to the customers directly. */ +export type ShippingZoneMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents a shipping zone in the shop. Zones are the concept used only for grouping shipping methods in the dashboard, and are never exposed to the customers directly. */ +export type ShippingZonePrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents a shipping zone in the shop. Zones are the concept used only for grouping shipping methods in the dashboard, and are never exposed to the customers directly. */ +export type ShippingZonePrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +/** + * Deletes shipping zones. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ +export type ShippingZoneBulkDelete = { + __typename?: 'ShippingZoneBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shippingErrors: Array; +}; + +export type ShippingZoneCountableConnection = { + __typename?: 'ShippingZoneCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type ShippingZoneCountableEdge = { + __typename?: 'ShippingZoneCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: ShippingZone; +}; + +/** + * Creates a new shipping zone. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ +export type ShippingZoneCreate = { + __typename?: 'ShippingZoneCreate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shippingErrors: Array; + shippingZone?: Maybe; +}; + +export type ShippingZoneCreateInput = { + /** List of channels to assign to the shipping zone. */ + addChannels?: InputMaybe>; + /** List of warehouses to assign to a shipping zone */ + addWarehouses?: InputMaybe>; + /** List of countries in this shipping zone. */ + countries?: InputMaybe>; + /** Default shipping zone will be used for countries not covered by other zones. */ + default?: InputMaybe; + /** Description of the shipping zone. */ + description?: InputMaybe; + /** Shipping zone's name. Visible only to the staff. */ + name?: InputMaybe; +}; + +/** + * Event sent when new shipping zone is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingZoneCreated = Event & { + __typename?: 'ShippingZoneCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The shipping zone the event relates to. */ + shippingZone?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when new shipping zone is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingZoneCreatedShippingZoneArgs = { + channel?: InputMaybe; +}; + +/** + * Deletes a shipping zone. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ +export type ShippingZoneDelete = { + __typename?: 'ShippingZoneDelete'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shippingErrors: Array; + shippingZone?: Maybe; +}; + +/** + * Event sent when shipping zone is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingZoneDeleted = Event & { + __typename?: 'ShippingZoneDeleted'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The shipping zone the event relates to. */ + shippingZone?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when shipping zone is deleted. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingZoneDeletedShippingZoneArgs = { + channel?: InputMaybe; +}; + +export type ShippingZoneFilterInput = { + channels?: InputMaybe>; + search?: InputMaybe; +}; + +/** + * Event sent when shipping zone metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingZoneMetadataUpdated = Event & { + __typename?: 'ShippingZoneMetadataUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The shipping zone the event relates to. */ + shippingZone?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when shipping zone metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingZoneMetadataUpdatedShippingZoneArgs = { + channel?: InputMaybe; +}; + +/** + * Updates a new shipping zone. + * + * Requires one of the following permissions: MANAGE_SHIPPING. + */ +export type ShippingZoneUpdate = { + __typename?: 'ShippingZoneUpdate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shippingErrors: Array; + shippingZone?: Maybe; +}; + +export type ShippingZoneUpdateInput = { + /** List of channels to assign to the shipping zone. */ + addChannels?: InputMaybe>; + /** List of warehouses to assign to a shipping zone */ + addWarehouses?: InputMaybe>; + /** List of countries in this shipping zone. */ + countries?: InputMaybe>; + /** Default shipping zone will be used for countries not covered by other zones. */ + default?: InputMaybe; + /** Description of the shipping zone. */ + description?: InputMaybe; + /** Shipping zone's name. Visible only to the staff. */ + name?: InputMaybe; + /** List of channels to unassign from the shipping zone. */ + removeChannels?: InputMaybe>; + /** List of warehouses to unassign from a shipping zone */ + removeWarehouses?: InputMaybe>; +}; + +/** + * Event sent when shipping zone is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingZoneUpdated = Event & { + __typename?: 'ShippingZoneUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The shipping zone the event relates to. */ + shippingZone?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + + +/** + * Event sent when shipping zone is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type ShippingZoneUpdatedShippingZoneArgs = { + channel?: InputMaybe; +}; + +/** Represents a shop resource containing general shop data and configuration. */ +export type Shop = { + __typename?: 'Shop'; + /** + * Enable automatic fulfillment for all digital products. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ + automaticFulfillmentDigitalProducts?: Maybe; + /** List of available external authentications. */ + availableExternalAuthentications: Array; + /** List of available payment gateways. */ + availablePaymentGateways: Array; + /** Shipping methods that are available for the shop. */ + availableShippingMethods?: Maybe>; + /** + * List of all currencies supported by shop's channels. + * + * Added in Saleor 3.1. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + */ + channelCurrencies: Array; + /** + * Charge taxes on shipping. + * @deprecated This field will be removed in Saleor 4.0. Use `ShippingMethodType.taxClass` to determine whether taxes are calculated for shipping methods; if a tax class is set, the taxes will be calculated, otherwise no tax rate will be applied. + */ + chargeTaxesOnShipping: Scalars['Boolean']; + /** Company address. */ + companyAddress?: Maybe
; + /** List of countries available in the shop. */ + countries: Array; + /** URL of a view where customers can set their password. */ + customerSetPasswordUrl?: Maybe; + /** Shop's default country. */ + defaultCountry?: Maybe; + /** + * Default number of max downloads per digital content URL. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ + defaultDigitalMaxDownloads?: Maybe; + /** + * Default number of days which digital content URL will be valid. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ + defaultDigitalUrlValidDays?: Maybe; + /** + * Default shop's email sender's address. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ + defaultMailSenderAddress?: Maybe; + /** + * Default shop's email sender's name. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ + defaultMailSenderName?: Maybe; + /** Default weight unit. */ + defaultWeightUnit?: Maybe; + /** Shop's description. */ + description?: Maybe; + /** + * Display prices with tax in store. + * @deprecated This field will be removed in Saleor 4.0. Use `Channel.taxConfiguration` to determine whether to display gross or net prices. + */ + displayGrossPrices: Scalars['Boolean']; + /** Shop's domain data. */ + domain: Domain; + /** + * Allow to approve fulfillments which are unpaid. + * + * Added in Saleor 3.1. + */ + fulfillmentAllowUnpaid: Scalars['Boolean']; + /** + * Automatically approve all new fulfillments. + * + * Added in Saleor 3.1. + */ + fulfillmentAutoApprove: Scalars['Boolean']; + /** Header text. */ + headerText?: Maybe; + /** + * Include taxes in prices. + * @deprecated This field will be removed in Saleor 4.0. Use `Channel.taxConfiguration.pricesEnteredWithTax` to determine whether prices are entered with tax. + */ + includeTaxesInPrices: Scalars['Boolean']; + /** List of the shops's supported languages. */ + languages: Array; + /** + * Default number of maximum line quantity in single checkout (per single checkout line). + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ + limitQuantityPerCheckout?: Maybe; + /** + * Resource limitations and current usage if any set for a shop + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + */ + limits: LimitInfo; + /** Shop's name. */ + name: Scalars['String']; + /** List of available permissions. */ + permissions: Array; + /** List of possible phone prefixes. */ + phonePrefixes: Array; + /** + * Default number of minutes stock will be reserved for anonymous checkout or null when stock reservation is disabled. + * + * Added in Saleor 3.1. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ + reserveStockDurationAnonymousUser?: Maybe; + /** + * Default number of minutes stock will be reserved for authenticated checkout or null when stock reservation is disabled. + * + * Added in Saleor 3.1. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ + reserveStockDurationAuthenticatedUser?: Maybe; + /** + * Minor Saleor API version. + * + * Added in Saleor 3.5. + */ + schemaVersion: Scalars['String']; + /** + * List of staff notification recipients. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ + staffNotificationRecipients?: Maybe>; + /** Enable inventory tracking. */ + trackInventoryByDefault?: Maybe; + /** Returns translated shop fields for the given language code. */ + translation?: Maybe; + /** + * Saleor API version. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + */ + version: Scalars['String']; +}; + + +/** Represents a shop resource containing general shop data and configuration. */ +export type ShopAvailablePaymentGatewaysArgs = { + channel?: InputMaybe; + currency?: InputMaybe; +}; + + +/** Represents a shop resource containing general shop data and configuration. */ +export type ShopAvailableShippingMethodsArgs = { + address?: InputMaybe; + channel: Scalars['String']; +}; + + +/** Represents a shop resource containing general shop data and configuration. */ +export type ShopCountriesArgs = { + filter?: InputMaybe; + languageCode?: InputMaybe; +}; + + +/** Represents a shop resource containing general shop data and configuration. */ +export type ShopTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Update the shop's address. If the `null` value is passed, the currently selected address will be deleted. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ +export type ShopAddressUpdate = { + __typename?: 'ShopAddressUpdate'; + errors: Array; + /** Updated shop. */ + shop?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shopErrors: Array; +}; + +/** + * Updates site domain of the shop. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ +export type ShopDomainUpdate = { + __typename?: 'ShopDomainUpdate'; + errors: Array; + /** Updated shop. */ + shop?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shopErrors: Array; +}; + +export type ShopError = { + __typename?: 'ShopError'; + /** The error code. */ + code: ShopErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum ShopErrorCode { + AlreadyExists = 'ALREADY_EXISTS', + CannotFetchTaxRates = 'CANNOT_FETCH_TAX_RATES', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND', + Required = 'REQUIRED', + Unique = 'UNIQUE' +} + +/** + * Fetch tax rates. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ +export type ShopFetchTaxRates = { + __typename?: 'ShopFetchTaxRates'; + errors: Array; + /** Updated shop. */ + shop?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shopErrors: Array; +}; + +export type ShopSettingsInput = { + /** Enable automatic fulfillment for all digital products. */ + automaticFulfillmentDigitalProducts?: InputMaybe; + /** + * Charge taxes on shipping. + * + * DEPRECATED: this field will be removed in Saleor 4.0. To enable taxes for a shipping method, assign a tax class to the shipping method with `shippingPriceCreate` or `shippingPriceUpdate` mutations. + */ + chargeTaxesOnShipping?: InputMaybe; + /** URL of a view where customers can set their password. */ + customerSetPasswordUrl?: InputMaybe; + /** Default number of max downloads per digital content URL. */ + defaultDigitalMaxDownloads?: InputMaybe; + /** Default number of days which digital content URL will be valid. */ + defaultDigitalUrlValidDays?: InputMaybe; + /** Default email sender's address. */ + defaultMailSenderAddress?: InputMaybe; + /** Default email sender's name. */ + defaultMailSenderName?: InputMaybe; + /** Default weight unit. */ + defaultWeightUnit?: InputMaybe; + /** SEO description. */ + description?: InputMaybe; + /** + * Display prices with tax in store. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use `taxConfigurationUpdate` mutation to configure this setting per channel or country. + */ + displayGrossPrices?: InputMaybe; + /** + * Enable ability to approve fulfillments which are unpaid. + * + * Added in Saleor 3.1. + */ + fulfillmentAllowUnpaid?: InputMaybe; + /** + * Enable automatic approval of all new fulfillments. + * + * Added in Saleor 3.1. + */ + fulfillmentAutoApprove?: InputMaybe; + /** Header text. */ + headerText?: InputMaybe; + /** + * Include taxes in prices. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use `taxConfigurationUpdate` mutation to configure this setting per channel or country. + */ + includeTaxesInPrices?: InputMaybe; + /** + * Default number of maximum line quantity in single checkout. Minimum possible value is 1, default value is 50. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + limitQuantityPerCheckout?: InputMaybe; + /** + * Default number of minutes stock will be reserved for anonymous checkout. Enter 0 or null to disable. + * + * Added in Saleor 3.1. + */ + reserveStockDurationAnonymousUser?: InputMaybe; + /** + * Default number of minutes stock will be reserved for authenticated checkout. Enter 0 or null to disable. + * + * Added in Saleor 3.1. + */ + reserveStockDurationAuthenticatedUser?: InputMaybe; + /** Enable inventory tracking. */ + trackInventoryByDefault?: InputMaybe; +}; + +/** + * Creates/updates translations for shop settings. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ +export type ShopSettingsTranslate = { + __typename?: 'ShopSettingsTranslate'; + errors: Array; + /** Updated shop settings. */ + shop?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + translationErrors: Array; +}; + +export type ShopSettingsTranslationInput = { + description?: InputMaybe; + headerText?: InputMaybe; +}; + +/** + * Updates shop settings. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ +export type ShopSettingsUpdate = { + __typename?: 'ShopSettingsUpdate'; + errors: Array; + /** Updated shop. */ + shop?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shopErrors: Array; +}; + +export type ShopTranslation = Node & { + __typename?: 'ShopTranslation'; + description: Scalars['String']; + headerText: Scalars['String']; + id: Scalars['ID']; + /** Translation language. */ + language: LanguageDisplay; +}; + +export type SiteDomainInput = { + /** Domain name for shop. */ + domain?: InputMaybe; + /** Shop site name. */ + name?: InputMaybe; +}; + +/** + * Deletes staff users. Apps are not allowed to perform this mutation. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ +export type StaffBulkDelete = { + __typename?: 'StaffBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + staffErrors: Array; +}; + +/** + * Creates a new staff user. Apps are not allowed to perform this mutation. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ +export type StaffCreate = { + __typename?: 'StaffCreate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + staffErrors: Array; + user?: Maybe; +}; + +export type StaffCreateInput = { + /** List of permission group IDs to which user should be assigned. */ + addGroups?: InputMaybe>; + /** The unique email address of the user. */ + email?: InputMaybe; + /** Given name. */ + firstName?: InputMaybe; + /** User account is active. */ + isActive?: InputMaybe; + /** Family name. */ + lastName?: InputMaybe; + /** A note about the user. */ + note?: InputMaybe; + /** URL of a view where users should be redirected to set the password. URL in RFC 1808 format. */ + redirectUrl?: InputMaybe; +}; + +/** + * Event sent when new staff user is created. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type StaffCreated = Event & { + __typename?: 'StaffCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The user the event relates to. */ + user?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Deletes a staff user. Apps are not allowed to perform this mutation. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ +export type StaffDelete = { + __typename?: 'StaffDelete'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + staffErrors: Array; + user?: Maybe; +}; + +/** + * Event sent when staff user is deleted. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type StaffDeleted = Event & { + __typename?: 'StaffDeleted'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The user the event relates to. */ + user?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type StaffError = { + __typename?: 'StaffError'; + /** A type of address that causes the error. */ + addressType?: Maybe; + /** The error code. */ + code: AccountErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** List of permission group IDs which cause the error. */ + groups?: Maybe>; + /** The error message. */ + message?: Maybe; + /** List of permissions which causes the error. */ + permissions?: Maybe>; + /** List of user IDs which causes the error. */ + users?: Maybe>; +}; + +export enum StaffMemberStatus { + /** User account has been activated. */ + Active = 'ACTIVE', + /** User account has not been activated yet. */ + Deactivated = 'DEACTIVATED' +} + +/** Represents a recipient of email notifications send by Saleor, such as notifications about new orders. Notifications can be assigned to staff users or arbitrary email addresses. */ +export type StaffNotificationRecipient = Node & { + __typename?: 'StaffNotificationRecipient'; + /** Determines if a notification active. */ + active?: Maybe; + /** Returns email address of a user subscribed to email notifications. */ + email?: Maybe; + id: Scalars['ID']; + /** Returns a user subscribed to email notifications. */ + user?: Maybe; +}; + +/** + * Creates a new staff notification recipient. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ +export type StaffNotificationRecipientCreate = { + __typename?: 'StaffNotificationRecipientCreate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shopErrors: Array; + staffNotificationRecipient?: Maybe; +}; + +/** + * Delete staff notification recipient. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ +export type StaffNotificationRecipientDelete = { + __typename?: 'StaffNotificationRecipientDelete'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shopErrors: Array; + staffNotificationRecipient?: Maybe; +}; + +export type StaffNotificationRecipientInput = { + /** Determines if a notification active. */ + active?: InputMaybe; + /** Email address of a user subscribed to email notifications. */ + email?: InputMaybe; + /** The ID of the user subscribed to email notifications.. */ + user?: InputMaybe; +}; + +/** + * Updates a staff notification recipient. + * + * Requires one of the following permissions: MANAGE_SETTINGS. + */ +export type StaffNotificationRecipientUpdate = { + __typename?: 'StaffNotificationRecipientUpdate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + shopErrors: Array; + staffNotificationRecipient?: Maybe; +}; + +/** + * Updates an existing staff user. Apps are not allowed to perform this mutation. + * + * Requires one of the following permissions: MANAGE_STAFF. + */ +export type StaffUpdate = { + __typename?: 'StaffUpdate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + staffErrors: Array; + user?: Maybe; +}; + +export type StaffUpdateInput = { + /** List of permission group IDs to which user should be assigned. */ + addGroups?: InputMaybe>; + /** The unique email address of the user. */ + email?: InputMaybe; + /** Given name. */ + firstName?: InputMaybe; + /** User account is active. */ + isActive?: InputMaybe; + /** Family name. */ + lastName?: InputMaybe; + /** A note about the user. */ + note?: InputMaybe; + /** List of permission group IDs from which user should be unassigned. */ + removeGroups?: InputMaybe>; +}; + +/** + * Event sent when staff user is updated. + * + * Added in Saleor 3.5. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type StaffUpdated = Event & { + __typename?: 'StaffUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The user the event relates to. */ + user?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type StaffUserInput = { + ids?: InputMaybe>; + search?: InputMaybe; + status?: InputMaybe; +}; + +/** Represents stock. */ +export type Stock = Node & { + __typename?: 'Stock'; + id: Scalars['ID']; + productVariant: ProductVariant; + /** + * Quantity of a product in the warehouse's possession, including the allocated stock that is waiting for shipment. + * + * Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + */ + quantity: Scalars['Int']; + /** + * Quantity allocated for orders. + * + * Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + */ + quantityAllocated: Scalars['Int']; + /** + * Quantity reserved for checkouts. + * + * Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + */ + quantityReserved: Scalars['Int']; + warehouse: Warehouse; +}; + +export enum StockAvailability { + InStock = 'IN_STOCK', + OutOfStock = 'OUT_OF_STOCK' +} + +export type StockCountableConnection = { + __typename?: 'StockCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type StockCountableEdge = { + __typename?: 'StockCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: Stock; +}; + +export type StockError = { + __typename?: 'StockError'; + /** The error code. */ + code: StockErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum StockErrorCode { + AlreadyExists = 'ALREADY_EXISTS', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND', + Required = 'REQUIRED', + Unique = 'UNIQUE' +} + +export type StockFilterInput = { + quantity?: InputMaybe; + search?: InputMaybe; +}; + +export type StockInput = { + /** Quantity of items available for sell. */ + quantity: Scalars['Int']; + /** Warehouse in which stock is located. */ + warehouse: Scalars['ID']; +}; + +/** + * Represents the channel stock settings. + * + * Added in Saleor 3.7. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type StockSettings = { + __typename?: 'StockSettings'; + /** Allocation strategy defines the preference of warehouses for allocations and reservations. */ + allocationStrategy: AllocationStrategyEnum; +}; + +export type StockSettingsInput = { + /** Allocation strategy options. Strategy defines the preference of warehouses for allocations and reservations. */ + allocationStrategy: AllocationStrategyEnum; +}; + +/** Enum representing the type of a payment storage in a gateway. */ +export enum StorePaymentMethodEnum { + /** Storage is disabled. The payment is not stored. */ + None = 'NONE', + /** Off session storage type. The payment is stored to be reused even if the customer is absent. */ + OffSession = 'OFF_SESSION', + /** On session storage type. The payment is stored only to be reused when the customer is present in the checkout flow. */ + OnSession = 'ON_SESSION' +} + +export type Subscription = { + __typename?: 'Subscription'; + /** + * Look up subscription event. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + event?: Maybe; +}; + +export enum TaxCalculationStrategy { + FlatRates = 'FLAT_RATES', + TaxApp = 'TAX_APP' +} + +/** + * Tax class is a named object used to define tax rates per country. Tax class can be assigned to product types, products and shipping methods to define their tax rates. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TaxClass = Node & ObjectWithMetadata & { + __typename?: 'TaxClass'; + /** Country-specific tax rates for this tax class. */ + countries: Array; + /** The ID of the object. */ + id: Scalars['ID']; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + /** Name of the tax class. */ + name: Scalars['String']; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; +}; + + +/** + * Tax class is a named object used to define tax rates per country. Tax class can be assigned to product types, products and shipping methods to define their tax rates. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TaxClassMetafieldArgs = { + key: Scalars['String']; +}; + + +/** + * Tax class is a named object used to define tax rates per country. Tax class can be assigned to product types, products and shipping methods to define their tax rates. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TaxClassMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** + * Tax class is a named object used to define tax rates per country. Tax class can be assigned to product types, products and shipping methods to define their tax rates. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TaxClassPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** + * Tax class is a named object used to define tax rates per country. Tax class can be assigned to product types, products and shipping methods to define their tax rates. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TaxClassPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +export type TaxClassCountableConnection = { + __typename?: 'TaxClassCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type TaxClassCountableEdge = { + __typename?: 'TaxClassCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: TaxClass; +}; + +/** + * Tax rate for a country. When tax class is null, it represents the default tax rate for that country; otherwise it's a country tax rate specific to the given tax class. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TaxClassCountryRate = { + __typename?: 'TaxClassCountryRate'; + /** Country in which this tax rate applies. */ + country: CountryDisplay; + /** Tax rate value. */ + rate: Scalars['Float']; + /** Related tax class. */ + taxClass?: Maybe; +}; + +/** + * Create a tax class. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_TAXES. + */ +export type TaxClassCreate = { + __typename?: 'TaxClassCreate'; + errors: Array; + taxClass?: Maybe; +}; + +export type TaxClassCreateError = { + __typename?: 'TaxClassCreateError'; + /** The error code. */ + code: TaxClassCreateErrorCode; + /** List of country codes for which the configuration is invalid. */ + countryCodes: Array; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum TaxClassCreateErrorCode { + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND' +} + +export type TaxClassCreateInput = { + /** List of country-specific tax rates to create for this tax class. */ + createCountryRates?: InputMaybe>; + /** Name of the tax class. */ + name: Scalars['String']; +}; + +/** + * Delete a tax class. After deleting the tax class any products, product types or shipping methods using it are updated to use the default tax class. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_TAXES. + */ +export type TaxClassDelete = { + __typename?: 'TaxClassDelete'; + errors: Array; + taxClass?: Maybe; +}; + +export type TaxClassDeleteError = { + __typename?: 'TaxClassDeleteError'; + /** The error code. */ + code: TaxClassDeleteErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum TaxClassDeleteErrorCode { + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND' +} + +export type TaxClassFilterInput = { + countries?: InputMaybe>; + ids?: InputMaybe>; + metadata?: InputMaybe>; +}; + +export type TaxClassRateInput = { + /** Tax rate value. */ + rate?: InputMaybe; + /** ID of a tax class for which to update the tax rate */ + taxClassId?: InputMaybe; +}; + +export enum TaxClassSortField { + /** Sort tax classes by name. */ + Name = 'NAME' +} + +export type TaxClassSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort tax classes by the selected field. */ + field: TaxClassSortField; +}; + +/** + * Update a tax class. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_TAXES. + */ +export type TaxClassUpdate = { + __typename?: 'TaxClassUpdate'; + errors: Array; + taxClass?: Maybe; +}; + +export type TaxClassUpdateError = { + __typename?: 'TaxClassUpdateError'; + /** The error code. */ + code: TaxClassUpdateErrorCode; + /** List of country codes for which the configuration is invalid. */ + countryCodes: Array; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum TaxClassUpdateErrorCode { + DuplicatedInputItem = 'DUPLICATED_INPUT_ITEM', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND' +} + +export type TaxClassUpdateInput = { + /** Name of the tax class. */ + name?: InputMaybe; + /** List of country codes for which to remove the tax class rates. Note: It removes all rates for given country code. */ + removeCountryRates?: InputMaybe>; + /** List of country-specific tax rates to create or update for this tax class. */ + updateCountryRates?: InputMaybe>; +}; + +/** + * Channel-specific tax configuration. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TaxConfiguration = Node & ObjectWithMetadata & { + __typename?: 'TaxConfiguration'; + /** A channel to which the tax configuration applies to. */ + channel: Channel; + /** Determines whether taxes are charged in the given channel. */ + chargeTaxes: Scalars['Boolean']; + /** List of country-specific exceptions in tax configuration. */ + countries: Array; + /** Determines whether prices displayed in a storefront should include taxes. */ + displayGrossPrices: Scalars['Boolean']; + /** The ID of the object. */ + id: Scalars['ID']; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + /** Determines whether prices are entered with the tax included. */ + pricesEnteredWithTax: Scalars['Boolean']; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** The default strategy to use for tax calculation in the given channel. Taxes can be calculated either using user-defined flat rates or with a tax app. Empty value means that no method is selected and taxes are not calculated. */ + taxCalculationStrategy?: Maybe; +}; + + +/** + * Channel-specific tax configuration. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TaxConfigurationMetafieldArgs = { + key: Scalars['String']; +}; + + +/** + * Channel-specific tax configuration. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TaxConfigurationMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** + * Channel-specific tax configuration. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TaxConfigurationPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** + * Channel-specific tax configuration. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TaxConfigurationPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +export type TaxConfigurationCountableConnection = { + __typename?: 'TaxConfigurationCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type TaxConfigurationCountableEdge = { + __typename?: 'TaxConfigurationCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: TaxConfiguration; +}; + +export type TaxConfigurationFilterInput = { + ids?: InputMaybe>; + metadata?: InputMaybe>; +}; + +/** + * Country-specific exceptions of a channel's tax configuration. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TaxConfigurationPerCountry = { + __typename?: 'TaxConfigurationPerCountry'; + /** Determines whether taxes are charged in this country. */ + chargeTaxes: Scalars['Boolean']; + /** Country in which this configuration applies. */ + country: CountryDisplay; + /** Determines whether prices displayed in a storefront should include taxes for this country. */ + displayGrossPrices: Scalars['Boolean']; + /** A country-specific strategy to use for tax calculation. Taxes can be calculated either using user-defined flat rates or with a tax app. If not provided, use the value from the channel's tax configuration. */ + taxCalculationStrategy?: Maybe; +}; + +export type TaxConfigurationPerCountryInput = { + /** Determines whether taxes are charged in this country. */ + chargeTaxes: Scalars['Boolean']; + /** Country in which this configuration applies. */ + countryCode: CountryCode; + /** Determines whether prices displayed in a storefront should include taxes for this country. */ + displayGrossPrices: Scalars['Boolean']; + /** A country-specific strategy to use for tax calculation. Taxes can be calculated either using user-defined flat rates or with a tax app. If not provided, use the value from the channel's tax configuration. */ + taxCalculationStrategy?: InputMaybe; +}; + +/** + * Update tax configuration for a channel. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_TAXES. + */ +export type TaxConfigurationUpdate = { + __typename?: 'TaxConfigurationUpdate'; + errors: Array; + taxConfiguration?: Maybe; +}; + +export type TaxConfigurationUpdateError = { + __typename?: 'TaxConfigurationUpdateError'; + /** The error code. */ + code: TaxConfigurationUpdateErrorCode; + /** List of country codes for which the configuration is invalid. */ + countryCodes: Array; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum TaxConfigurationUpdateErrorCode { + DuplicatedInputItem = 'DUPLICATED_INPUT_ITEM', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND' +} + +export type TaxConfigurationUpdateInput = { + /** Determines whether taxes are charged in the given channel. */ + chargeTaxes?: InputMaybe; + /** Determines whether prices displayed in a storefront should include taxes. */ + displayGrossPrices?: InputMaybe; + /** Determines whether prices are entered with the tax included. */ + pricesEnteredWithTax?: InputMaybe; + /** List of country codes for which to remove the tax configuration. */ + removeCountriesConfiguration?: InputMaybe>; + /** The default strategy to use for tax calculation in the given channel. Taxes can be calculated either using user-defined flat rates or with a tax app. Empty value means that no method is selected and taxes are not calculated. */ + taxCalculationStrategy?: InputMaybe; + /** List of tax country configurations to create or update (identified by a country code). */ + updateCountriesConfiguration?: InputMaybe>; +}; + +/** + * Tax class rates grouped by country. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TaxCountryConfiguration = { + __typename?: 'TaxCountryConfiguration'; + /** A country for which tax class rates are grouped. */ + country: CountryDisplay; + /** List of tax class rates. */ + taxClassCountryRates: Array; +}; + +/** + * Remove all tax class rates for a specific country. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_TAXES. + */ +export type TaxCountryConfigurationDelete = { + __typename?: 'TaxCountryConfigurationDelete'; + errors: Array; + /** Updated tax class rates grouped by a country. */ + taxCountryConfiguration?: Maybe; +}; + +export type TaxCountryConfigurationDeleteError = { + __typename?: 'TaxCountryConfigurationDeleteError'; + /** The error code. */ + code: TaxCountryConfigurationDeleteErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum TaxCountryConfigurationDeleteErrorCode { + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND' +} + +/** + * Update tax class rates for a specific country. + * + * Added in Saleor 3.9. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_TAXES. + */ +export type TaxCountryConfigurationUpdate = { + __typename?: 'TaxCountryConfigurationUpdate'; + errors: Array; + /** Updated tax class rates grouped by a country. */ + taxCountryConfiguration?: Maybe; +}; + +export type TaxCountryConfigurationUpdateError = { + __typename?: 'TaxCountryConfigurationUpdateError'; + /** The error code. */ + code: TaxCountryConfigurationUpdateErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of tax class IDs for which the update failed. */ + taxClassIds: Array; +}; + +/** An enumeration. */ +export enum TaxCountryConfigurationUpdateErrorCode { + CannotCreateNegativeRate = 'CANNOT_CREATE_NEGATIVE_RATE', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND', + OnlyOneDefaultCountryRateAllowed = 'ONLY_ONE_DEFAULT_COUNTRY_RATE_ALLOWED' +} + +/** + * Exempt checkout or order from charging the taxes. When tax exemption is enabled, taxes won't be charged for the checkout or order. Taxes may still be calculated in cases when product prices are entered with the tax included and the net price needs to be known. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: MANAGE_TAXES. + */ +export type TaxExemptionManage = { + __typename?: 'TaxExemptionManage'; + errors: Array; + taxableObject?: Maybe; +}; + +export type TaxExemptionManageError = { + __typename?: 'TaxExemptionManageError'; + /** The error code. */ + code: TaxExemptionManageErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum TaxExemptionManageErrorCode { + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotEditableOrder = 'NOT_EDITABLE_ORDER', + NotFound = 'NOT_FOUND' +} + +export type TaxSourceLine = CheckoutLine | OrderLine; + +export type TaxSourceObject = Checkout | Order; + +/** Representation of tax types fetched from tax gateway. */ +export type TaxType = { + __typename?: 'TaxType'; + /** Description of the tax type. */ + description?: Maybe; + /** External tax code used to identify given tax group. */ + taxCode?: Maybe; +}; + +/** Taxable object. */ +export type TaxableObject = { + __typename?: 'TaxableObject'; + /** The address data. */ + address?: Maybe
; + channel: Channel; + /** The currency of the object. */ + currency: Scalars['String']; + /** List of discounts. */ + discounts: Array; + /** List of lines assigned to the object. */ + lines: Array; + /** Determines if prices contain entered tax.. */ + pricesEnteredWithTax: Scalars['Boolean']; + /** The price of shipping method. */ + shippingPrice: Money; + /** The source object related to this tax object. */ + sourceObject: TaxSourceObject; +}; + +/** Taxable object discount. */ +export type TaxableObjectDiscount = { + __typename?: 'TaxableObjectDiscount'; + /** The amount of the discount. */ + amount: Money; + /** The name of the discount. */ + name?: Maybe; +}; + +export type TaxableObjectLine = { + __typename?: 'TaxableObjectLine'; + /** Determines if taxes are being charged for the product. */ + chargeTaxes: Scalars['Boolean']; + /** The product name. */ + productName: Scalars['String']; + /** The product sku. */ + productSku?: Maybe; + /** Number of items. */ + quantity: Scalars['Int']; + /** The source line related to this tax line. */ + sourceLine: TaxSourceLine; + /** Price of the order line. */ + totalPrice: Money; + /** Price of the single item in the order line. */ + unitPrice: Money; + /** The variant name. */ + variantName: Scalars['String']; +}; + +/** Represents a monetary value with taxes. In cases where taxes were not applied, net and gross values will be equal. */ +export type TaxedMoney = { + __typename?: 'TaxedMoney'; + /** Currency code. */ + currency: Scalars['String']; + /** Amount of money including taxes. */ + gross: Money; + /** Amount of money without taxes. */ + net: Money; + /** Amount of taxes. */ + tax: Money; +}; + +/** Represents a range of monetary values. */ +export type TaxedMoneyRange = { + __typename?: 'TaxedMoneyRange'; + /** Lower bound of a price range. */ + start?: Maybe; + /** Upper bound of a price range. */ + stop?: Maybe; +}; + +/** An enumeration. */ +export enum ThumbnailFormatEnum { + Webp = 'WEBP' +} + +export type TimePeriod = { + __typename?: 'TimePeriod'; + /** The length of the period. */ + amount: Scalars['Int']; + /** The type of the period. */ + type: TimePeriodTypeEnum; +}; + +export type TimePeriodInputType = { + /** The length of the period. */ + amount: Scalars['Int']; + /** The type of the period. */ + type: TimePeriodTypeEnum; +}; + +/** An enumeration. */ +export enum TimePeriodTypeEnum { + Day = 'DAY', + Month = 'MONTH', + Week = 'WEEK', + Year = 'YEAR' +} + +/** An object representing a single payment. */ +export type Transaction = Node & { + __typename?: 'Transaction'; + /** Total amount of the transaction. */ + amount?: Maybe; + created: Scalars['DateTime']; + error?: Maybe; + gatewayResponse: Scalars['JSONString']; + id: Scalars['ID']; + isSuccess: Scalars['Boolean']; + kind: TransactionKind; + payment: Payment; + token: Scalars['String']; +}; + +export type TransactionAction = { + __typename?: 'TransactionAction'; + /** Determines the action type. */ + actionType: TransactionActionEnum; + /** Transaction request amount. Null when action type is VOID. */ + amount?: Maybe; +}; + +/** + * Represents possible actions on payment transaction. + * + * The following actions are possible: + * CHARGE - Represents the charge action. + * REFUND - Represents a refund action. + * VOID - Represents a void action. + */ +export enum TransactionActionEnum { + Charge = 'CHARGE', + Refund = 'REFUND', + Void = 'VOID' +} + +/** + * Event sent when transaction action is requested. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TransactionActionRequest = Event & { + __typename?: 'TransactionActionRequest'; + /** + * Requested action data. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + action: TransactionAction; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** + * Look up a transaction. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + transaction?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** + * Create transaction for checkout or order. Requires the following permissions: AUTHENTICATED_APP and HANDLE_PAYMENTS. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TransactionCreate = { + __typename?: 'TransactionCreate'; + errors: Array; + transaction?: Maybe; +}; + +export type TransactionCreateError = { + __typename?: 'TransactionCreateError'; + /** The error code. */ + code: TransactionCreateErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum TransactionCreateErrorCode { + GraphqlError = 'GRAPHQL_ERROR', + IncorrectCurrency = 'INCORRECT_CURRENCY', + Invalid = 'INVALID', + MetadataKeyRequired = 'METADATA_KEY_REQUIRED', + NotFound = 'NOT_FOUND' +} + +export type TransactionCreateInput = { + /** Amount authorized by this transaction. */ + amountAuthorized?: InputMaybe; + /** Amount charged by this transaction. */ + amountCharged?: InputMaybe; + /** Amount refunded by this transaction. */ + amountRefunded?: InputMaybe; + /** Amount voided by this transaction. */ + amountVoided?: InputMaybe; + /** List of all possible actions for the transaction */ + availableActions?: InputMaybe>; + /** Payment public metadata. */ + metadata?: InputMaybe>; + /** Payment private metadata. */ + privateMetadata?: InputMaybe>; + /** Reference of the transaction. */ + reference?: InputMaybe; + /** Status of the transaction. */ + status: Scalars['String']; + /** Payment type used for this transaction. */ + type: Scalars['String']; +}; + +/** Represents transaction's event. */ +export type TransactionEvent = Node & { + __typename?: 'TransactionEvent'; + createdAt: Scalars['DateTime']; + /** The ID of the object. */ + id: Scalars['ID']; + /** Name of the transaction's event. */ + name?: Maybe; + /** Reference of transaction's event. */ + reference: Scalars['String']; + /** Status of transaction's event. */ + status: TransactionStatus; +}; + +export type TransactionEventInput = { + /** Name of the transaction. */ + name?: InputMaybe; + /** Reference of the transaction. */ + reference?: InputMaybe; + /** Current status of the payment transaction. */ + status: TransactionStatus; +}; + +/** + * Represents a payment transaction. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TransactionItem = Node & ObjectWithMetadata & { + __typename?: 'TransactionItem'; + /** List of actions that can be performed in the current state of a payment. */ + actions: Array; + /** Total amount authorized for this payment. */ + authorizedAmount: Money; + /** Total amount charged for this payment. */ + chargedAmount: Money; + createdAt: Scalars['DateTime']; + /** List of all transaction's events. */ + events: Array; + /** The ID of the object. */ + id: Scalars['ID']; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + modifiedAt: Scalars['DateTime']; + /** + * The related order. + * + * Added in Saleor 3.6. + */ + order?: Maybe; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** Reference of transaction. */ + reference: Scalars['String']; + /** Total amount refunded for this payment. */ + refundedAmount: Money; + /** Status of transaction. */ + status: Scalars['String']; + /** Type of transaction. */ + type: Scalars['String']; + /** Total amount voided for this payment. */ + voidedAmount: Money; +}; + + +/** + * Represents a payment transaction. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TransactionItemMetafieldArgs = { + key: Scalars['String']; +}; + + +/** + * Represents a payment transaction. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TransactionItemMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** + * Represents a payment transaction. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TransactionItemPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** + * Represents a payment transaction. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TransactionItemPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + +/** + * Event sent when transaction item metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TransactionItemMetadataUpdated = Event & { + __typename?: 'TransactionItemMetadataUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** + * Look up a transaction. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + transaction?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +/** An enumeration. */ +export enum TransactionKind { + ActionToConfirm = 'ACTION_TO_CONFIRM', + Auth = 'AUTH', + Cancel = 'CANCEL', + Capture = 'CAPTURE', + Confirm = 'CONFIRM', + External = 'EXTERNAL', + Pending = 'PENDING', + Refund = 'REFUND', + RefundOngoing = 'REFUND_ONGOING', + Void = 'VOID' +} + +/** + * Request an action for payment transaction. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + * + * Requires one of the following permissions: HANDLE_PAYMENTS, MANAGE_ORDERS. + */ +export type TransactionRequestAction = { + __typename?: 'TransactionRequestAction'; + errors: Array; + transaction?: Maybe; +}; + +export type TransactionRequestActionError = { + __typename?: 'TransactionRequestActionError'; + /** The error code. */ + code: TransactionRequestActionErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum TransactionRequestActionErrorCode { + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + MissingTransactionActionRequestWebhook = 'MISSING_TRANSACTION_ACTION_REQUEST_WEBHOOK', + NotFound = 'NOT_FOUND' +} + +/** An enumeration. */ +export enum TransactionStatus { + Failure = 'FAILURE', + Pending = 'PENDING', + Success = 'SUCCESS' +} + +/** + * Create transaction for checkout or order. Requires the following permissions: AUTHENTICATED_APP and HANDLE_PAYMENTS. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TransactionUpdate = { + __typename?: 'TransactionUpdate'; + errors: Array; + transaction?: Maybe; +}; + +export type TransactionUpdateError = { + __typename?: 'TransactionUpdateError'; + /** The error code. */ + code: TransactionUpdateErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum TransactionUpdateErrorCode { + GraphqlError = 'GRAPHQL_ERROR', + IncorrectCurrency = 'INCORRECT_CURRENCY', + Invalid = 'INVALID', + MetadataKeyRequired = 'METADATA_KEY_REQUIRED', + NotFound = 'NOT_FOUND' +} + +export type TransactionUpdateInput = { + /** Amount authorized by this transaction. */ + amountAuthorized?: InputMaybe; + /** Amount charged by this transaction. */ + amountCharged?: InputMaybe; + /** Amount refunded by this transaction. */ + amountRefunded?: InputMaybe; + /** Amount voided by this transaction. */ + amountVoided?: InputMaybe; + /** List of all possible actions for the transaction */ + availableActions?: InputMaybe>; + /** Payment public metadata. */ + metadata?: InputMaybe>; + /** Payment private metadata. */ + privateMetadata?: InputMaybe>; + /** Reference of the transaction. */ + reference?: InputMaybe; + /** Status of the transaction. */ + status?: InputMaybe; + /** Payment type used for this transaction. */ + type?: InputMaybe; +}; + +export type TranslatableItem = AttributeTranslatableContent | AttributeValueTranslatableContent | CategoryTranslatableContent | CollectionTranslatableContent | MenuItemTranslatableContent | PageTranslatableContent | ProductTranslatableContent | ProductVariantTranslatableContent | SaleTranslatableContent | ShippingMethodTranslatableContent | VoucherTranslatableContent; + +export type TranslatableItemConnection = { + __typename?: 'TranslatableItemConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type TranslatableItemEdge = { + __typename?: 'TranslatableItemEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: TranslatableItem; +}; + +export enum TranslatableKinds { + Attribute = 'ATTRIBUTE', + AttributeValue = 'ATTRIBUTE_VALUE', + Category = 'CATEGORY', + Collection = 'COLLECTION', + MenuItem = 'MENU_ITEM', + Page = 'PAGE', + Product = 'PRODUCT', + Sale = 'SALE', + ShippingMethod = 'SHIPPING_METHOD', + Variant = 'VARIANT', + Voucher = 'VOUCHER' +} + +/** + * Event sent when new translation is created. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TranslationCreated = Event & { + __typename?: 'TranslationCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The translation the event relates to. */ + translation?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type TranslationError = { + __typename?: 'TranslationError'; + /** The error code. */ + code: TranslationErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum TranslationErrorCode { + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND', + Required = 'REQUIRED' +} + +export type TranslationInput = { + /** + * Translated description. + * + * Rich text format. For reference see https://editorjs.io/ + */ + description?: InputMaybe; + name?: InputMaybe; + seoDescription?: InputMaybe; + seoTitle?: InputMaybe; +}; + +export type TranslationTypes = AttributeTranslation | AttributeValueTranslation | CategoryTranslation | CollectionTranslation | MenuItemTranslation | PageTranslation | ProductTranslation | ProductVariantTranslation | SaleTranslation | ShippingMethodTranslation | VoucherTranslation; + +/** + * Event sent when translation is updated. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type TranslationUpdated = Event & { + __typename?: 'TranslationUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** The translation the event relates to. */ + translation?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; +}; + +export type UpdateInvoiceInput = { + /** Invoice number */ + number?: InputMaybe; + /** URL of an invoice to download. */ + url?: InputMaybe; +}; + +/** Updates metadata of an object. To use it, you need to have access to the modified object. */ +export type UpdateMetadata = { + __typename?: 'UpdateMetadata'; + errors: Array; + item?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + metadataErrors: Array; +}; + +/** Updates private metadata of an object. To use it, you need to be an authenticated staff user or an app and have access to the modified object. */ +export type UpdatePrivateMetadata = { + __typename?: 'UpdatePrivateMetadata'; + errors: Array; + item?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + metadataErrors: Array; +}; + +export type UploadError = { + __typename?: 'UploadError'; + /** The error code. */ + code: UploadErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum UploadErrorCode { + GraphqlError = 'GRAPHQL_ERROR' +} + +/** Represents user data. */ +export type User = Node & ObjectWithMetadata & { + __typename?: 'User'; + /** List of all user's addresses. */ + addresses: Array
; + avatar?: Maybe; + /** + * Returns the last open checkout of this user. + * @deprecated This field will be removed in Saleor 4.0. Use the `checkoutTokens` field to fetch the user checkouts. + */ + checkout?: Maybe; + /** Returns the checkout ID's assigned to this user. */ + checkoutIds?: Maybe>; + /** + * Returns the checkout UUID's assigned to this user. + * @deprecated This field will be removed in Saleor 4.0. Use `checkoutIds` instead. + */ + checkoutTokens?: Maybe>; + /** + * Returns checkouts assigned to this user. + * + * Added in Saleor 3.8. + */ + checkouts?: Maybe; + dateJoined: Scalars['DateTime']; + defaultBillingAddress?: Maybe
; + defaultShippingAddress?: Maybe
; + /** List of user's permission groups which user can manage. */ + editableGroups?: Maybe>; + email: Scalars['String']; + /** + * List of events associated with the user. + * + * Requires one of the following permissions: MANAGE_USERS, MANAGE_STAFF. + */ + events?: Maybe>; + /** + * External ID of this user. + * + * Added in Saleor 3.10. + */ + externalReference?: Maybe; + firstName: Scalars['String']; + /** List of the user gift cards. */ + giftCards?: Maybe; + id: Scalars['ID']; + isActive: Scalars['Boolean']; + isStaff: Scalars['Boolean']; + /** User language code. */ + languageCode: LanguageCodeEnum; + lastLogin?: Maybe; + lastName: Scalars['String']; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + /** + * A note about the customer. + * + * Requires one of the following permissions: MANAGE_USERS, MANAGE_STAFF. + */ + note?: Maybe; + /** List of user's orders. Requires one of the following permissions: MANAGE_STAFF, OWNER. */ + orders?: Maybe; + /** List of user's permission groups. */ + permissionGroups?: Maybe>; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** List of stored payment sources. */ + storedPaymentSources?: Maybe>; + updatedAt: Scalars['DateTime']; + /** List of user's permissions. */ + userPermissions?: Maybe>; +}; + + +/** Represents user data. */ +export type UserAvatarArgs = { + format?: InputMaybe; + size?: InputMaybe; +}; + + +/** Represents user data. */ +export type UserCheckoutIdsArgs = { + channel?: InputMaybe; +}; + + +/** Represents user data. */ +export type UserCheckoutTokensArgs = { + channel?: InputMaybe; +}; + + +/** Represents user data. */ +export type UserCheckoutsArgs = { + after?: InputMaybe; + before?: InputMaybe; + channel?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Represents user data. */ +export type UserGiftCardsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Represents user data. */ +export type UserMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents user data. */ +export type UserMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents user data. */ +export type UserOrdersArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Represents user data. */ +export type UserPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents user data. */ +export type UserPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents user data. */ +export type UserStoredPaymentSourcesArgs = { + channel?: InputMaybe; +}; + +/** + * Deletes a user avatar. Only for staff members. + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + */ +export type UserAvatarDelete = { + __typename?: 'UserAvatarDelete'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + /** An updated user instance. */ + user?: Maybe; +}; + +/** + * Create a user avatar. Only for staff members. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + * + * Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + */ +export type UserAvatarUpdate = { + __typename?: 'UserAvatarUpdate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + /** An updated user instance. */ + user?: Maybe; +}; + +/** + * Activate or deactivate users. + * + * Requires one of the following permissions: MANAGE_USERS. + */ +export type UserBulkSetActive = { + __typename?: 'UserBulkSetActive'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + errors: Array; +}; + +export type UserCountableConnection = { + __typename?: 'UserCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type UserCountableEdge = { + __typename?: 'UserCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: User; +}; + +export type UserCreateInput = { + /** Slug of a channel which will be used for notify user. Optional when only one channel exists. */ + channel?: InputMaybe; + /** Billing address of the customer. */ + defaultBillingAddress?: InputMaybe; + /** Shipping address of the customer. */ + defaultShippingAddress?: InputMaybe; + /** The unique email address of the user. */ + email?: InputMaybe; + /** + * External ID of the customer. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** Given name. */ + firstName?: InputMaybe; + /** User account is active. */ + isActive?: InputMaybe; + /** User language code. */ + languageCode?: InputMaybe; + /** Family name. */ + lastName?: InputMaybe; + /** A note about the user. */ + note?: InputMaybe; + /** URL of a view where users should be redirected to set the password. URL in RFC 1808 format. */ + redirectUrl?: InputMaybe; +}; + +export type UserPermission = { + __typename?: 'UserPermission'; + /** Internal code for permission. */ + code: PermissionEnum; + /** Describe action(s) allowed to do by permission. */ + name: Scalars['String']; + /** List of user permission groups which contains this permission. */ + sourcePermissionGroups?: Maybe>; +}; + + +export type UserPermissionSourcePermissionGroupsArgs = { + userId: Scalars['ID']; +}; + +export enum UserSortField { + /** Sort users by created at. */ + CreatedAt = 'CREATED_AT', + /** Sort users by email. */ + Email = 'EMAIL', + /** Sort users by first name. */ + FirstName = 'FIRST_NAME', + /** Sort users by last modified at. */ + LastModifiedAt = 'LAST_MODIFIED_AT', + /** Sort users by last name. */ + LastName = 'LAST_NAME', + /** Sort users by order count. */ + OrderCount = 'ORDER_COUNT' +} + +export type UserSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort users by the selected field. */ + field: UserSortField; +}; + +/** Represents a VAT rate for a country. */ +export type Vat = { + __typename?: 'VAT'; + /** Country code. */ + countryCode: Scalars['String']; + /** Country's VAT rate exceptions for specific types of goods. */ + reducedRates: Array; + /** Standard VAT rate in percent. */ + standardRate?: Maybe; +}; + +export enum VariantAttributeScope { + All = 'ALL', + NotVariantSelection = 'NOT_VARIANT_SELECTION', + VariantSelection = 'VARIANT_SELECTION' +} + +/** + * Assign an media to a product variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type VariantMediaAssign = { + __typename?: 'VariantMediaAssign'; + errors: Array; + media?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + productVariant?: Maybe; +}; + +/** + * Unassign an media from a product variant. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type VariantMediaUnassign = { + __typename?: 'VariantMediaUnassign'; + errors: Array; + media?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + productErrors: Array; + productVariant?: Maybe; +}; + +/** Represents availability of a variant in the storefront. */ +export type VariantPricingInfo = { + __typename?: 'VariantPricingInfo'; + /** The discount amount if in sale (null otherwise). */ + discount?: Maybe; + /** The discount amount in the local currency. */ + discountLocalCurrency?: Maybe; + /** Whether it is in sale or not. */ + onSale?: Maybe; + /** The price, with any discount subtracted. */ + price?: Maybe; + /** The discounted price in the local currency. */ + priceLocalCurrency?: Maybe; + /** The price without any discount. */ + priceUndiscounted?: Maybe; +}; + +/** Verify JWT token. */ +export type VerifyToken = { + __typename?: 'VerifyToken'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + accountErrors: Array; + errors: Array; + /** Determine if token is valid or not. */ + isValid: Scalars['Boolean']; + /** JWT payload. */ + payload?: Maybe; + /** User assigned to token. */ + user?: Maybe; +}; + +/** An enumeration. */ +export enum VolumeUnitsEnum { + AcreFt = 'ACRE_FT', + AcreIn = 'ACRE_IN', + CubicCentimeter = 'CUBIC_CENTIMETER', + CubicDecimeter = 'CUBIC_DECIMETER', + CubicFoot = 'CUBIC_FOOT', + CubicInch = 'CUBIC_INCH', + CubicMeter = 'CUBIC_METER', + CubicMillimeter = 'CUBIC_MILLIMETER', + CubicYard = 'CUBIC_YARD', + FlOz = 'FL_OZ', + Liter = 'LITER', + Pint = 'PINT', + Qt = 'QT' +} + +/** Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes. */ +export type Voucher = Node & ObjectWithMetadata & { + __typename?: 'Voucher'; + applyOncePerCustomer: Scalars['Boolean']; + applyOncePerOrder: Scalars['Boolean']; + /** List of categories this voucher applies to. */ + categories?: Maybe; + /** + * List of availability in channels for the voucher. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + channelListings?: Maybe>; + code: Scalars['String']; + /** + * List of collections this voucher applies to. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + collections?: Maybe; + /** List of countries available for the shipping voucher. */ + countries?: Maybe>; + /** Currency code for voucher. */ + currency?: Maybe; + /** Voucher value. */ + discountValue?: Maybe; + /** Determines a type of discount for voucher - value or percentage */ + discountValueType: DiscountValueTypeEnum; + endDate?: Maybe; + id: Scalars['ID']; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + minCheckoutItemsQuantity?: Maybe; + /** Minimum order value to apply voucher. */ + minSpent?: Maybe; + name?: Maybe; + onlyForStaff: Scalars['Boolean']; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + /** + * List of products this voucher applies to. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + products?: Maybe; + startDate: Scalars['DateTime']; + /** Returns translated voucher fields for the given language code. */ + translation?: Maybe; + /** Determines a type of voucher. */ + type: VoucherTypeEnum; + usageLimit?: Maybe; + used: Scalars['Int']; + /** + * List of product variants this voucher applies to. + * + * Added in Saleor 3.1. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ + variants?: Maybe; +}; + + +/** Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes. */ +export type VoucherCategoriesArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes. */ +export type VoucherCollectionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes. */ +export type VoucherMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes. */ +export type VoucherMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes. */ +export type VoucherPrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes. */ +export type VoucherPrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes. */ +export type VoucherProductsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes. */ +export type VoucherTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + + +/** Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes. */ +export type VoucherVariantsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + +/** + * Adds products, categories, collections to a voucher. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ +export type VoucherAddCatalogues = { + __typename?: 'VoucherAddCatalogues'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + discountErrors: Array; + errors: Array; + /** Voucher of which catalogue IDs will be modified. */ + voucher?: Maybe; +}; + +/** + * Deletes vouchers. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ +export type VoucherBulkDelete = { + __typename?: 'VoucherBulkDelete'; + /** Returns how many objects were affected. */ + count: Scalars['Int']; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + discountErrors: Array; + errors: Array; +}; + +/** Represents voucher channel listing. */ +export type VoucherChannelListing = Node & { + __typename?: 'VoucherChannelListing'; + channel: Channel; + currency: Scalars['String']; + discountValue: Scalars['Float']; + id: Scalars['ID']; + minSpent?: Maybe; +}; + +export type VoucherChannelListingAddInput = { + /** ID of a channel. */ + channelId: Scalars['ID']; + /** Value of the voucher. */ + discountValue?: InputMaybe; + /** Min purchase amount required to apply the voucher. */ + minAmountSpent?: InputMaybe; +}; + +export type VoucherChannelListingInput = { + /** List of channels to which the voucher should be assigned. */ + addChannels?: InputMaybe>; + /** List of channels from which the voucher should be unassigned. */ + removeChannels?: InputMaybe>; +}; + +/** + * Manage voucher's availability in channels. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ +export type VoucherChannelListingUpdate = { + __typename?: 'VoucherChannelListingUpdate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + discountErrors: Array; + errors: Array; + /** An updated voucher instance. */ + voucher?: Maybe; +}; + +export type VoucherCountableConnection = { + __typename?: 'VoucherCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type VoucherCountableEdge = { + __typename?: 'VoucherCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: Voucher; +}; + +/** + * Creates a new voucher. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ +export type VoucherCreate = { + __typename?: 'VoucherCreate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + discountErrors: Array; + errors: Array; + voucher?: Maybe; +}; + +/** + * Event sent when new voucher is created. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type VoucherCreated = Event & { + __typename?: 'VoucherCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; + /** The voucher the event relates to. */ + voucher?: Maybe; +}; + + +/** + * Event sent when new voucher is created. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type VoucherCreatedVoucherArgs = { + channel?: InputMaybe; +}; + +/** + * Deletes a voucher. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ +export type VoucherDelete = { + __typename?: 'VoucherDelete'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + discountErrors: Array; + errors: Array; + voucher?: Maybe; +}; + +/** + * Event sent when voucher is deleted. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type VoucherDeleted = Event & { + __typename?: 'VoucherDeleted'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; + /** The voucher the event relates to. */ + voucher?: Maybe; +}; + + +/** + * Event sent when voucher is deleted. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type VoucherDeletedVoucherArgs = { + channel?: InputMaybe; +}; + +export enum VoucherDiscountType { + Fixed = 'FIXED', + Percentage = 'PERCENTAGE', + Shipping = 'SHIPPING' +} + +export type VoucherFilterInput = { + discountType?: InputMaybe>; + ids?: InputMaybe>; + metadata?: InputMaybe>; + search?: InputMaybe; + started?: InputMaybe; + status?: InputMaybe>; + timesUsed?: InputMaybe; +}; + +export type VoucherInput = { + /** Voucher should be applied once per customer. */ + applyOncePerCustomer?: InputMaybe; + /** Voucher should be applied to the cheapest item or entire order. */ + applyOncePerOrder?: InputMaybe; + /** Categories discounted by the voucher. */ + categories?: InputMaybe>; + /** Code to use the voucher. */ + code?: InputMaybe; + /** Collections discounted by the voucher. */ + collections?: InputMaybe>; + /** Country codes that can be used with the shipping voucher. */ + countries?: InputMaybe>; + /** Choices: fixed or percentage. */ + discountValueType?: InputMaybe; + /** End date of the voucher in ISO 8601 format. */ + endDate?: InputMaybe; + /** Minimal quantity of checkout items required to apply the voucher. */ + minCheckoutItemsQuantity?: InputMaybe; + /** Voucher name. */ + name?: InputMaybe; + /** Voucher can be used only by staff user. */ + onlyForStaff?: InputMaybe; + /** Products discounted by the voucher. */ + products?: InputMaybe>; + /** Start date of the voucher in ISO 8601 format. */ + startDate?: InputMaybe; + /** Voucher type: PRODUCT, CATEGORY SHIPPING or ENTIRE_ORDER. */ + type?: InputMaybe; + /** Limit number of times this voucher can be used in total. */ + usageLimit?: InputMaybe; + /** + * Variants discounted by the voucher. + * + * Added in Saleor 3.1. + */ + variants?: InputMaybe>; +}; + +/** + * Event sent when voucher metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type VoucherMetadataUpdated = Event & { + __typename?: 'VoucherMetadataUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; + /** The voucher the event relates to. */ + voucher?: Maybe; +}; + + +/** + * Event sent when voucher metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type VoucherMetadataUpdatedVoucherArgs = { + channel?: InputMaybe; +}; + +/** + * Removes products, categories, collections from a voucher. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ +export type VoucherRemoveCatalogues = { + __typename?: 'VoucherRemoveCatalogues'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + discountErrors: Array; + errors: Array; + /** Voucher of which catalogue IDs will be modified. */ + voucher?: Maybe; +}; + +export enum VoucherSortField { + /** Sort vouchers by code. */ + Code = 'CODE', + /** Sort vouchers by end date. */ + EndDate = 'END_DATE', + /** + * Sort vouchers by minimum spent amount. + * + * This option requires a channel filter to work as the values can vary between channels. + */ + MinimumSpentAmount = 'MINIMUM_SPENT_AMOUNT', + /** Sort vouchers by start date. */ + StartDate = 'START_DATE', + /** Sort vouchers by type. */ + Type = 'TYPE', + /** Sort vouchers by usage limit. */ + UsageLimit = 'USAGE_LIMIT', + /** + * Sort vouchers by value. + * + * This option requires a channel filter to work as the values can vary between channels. + */ + Value = 'VALUE' +} + +export type VoucherSortingInput = { + /** + * Specifies the channel in which to sort the data. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + */ + channel?: InputMaybe; + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort vouchers by the selected field. */ + field: VoucherSortField; +}; + +export type VoucherTranslatableContent = Node & { + __typename?: 'VoucherTranslatableContent'; + id: Scalars['ID']; + name?: Maybe; + /** Returns translated voucher fields for the given language code. */ + translation?: Maybe; + /** + * Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + * @deprecated This field will be removed in Saleor 4.0. Get model fields from the root level queries. + */ + voucher?: Maybe; +}; + + +export type VoucherTranslatableContentTranslationArgs = { + languageCode: LanguageCodeEnum; +}; + +/** + * Creates/updates translations for a voucher. + * + * Requires one of the following permissions: MANAGE_TRANSLATIONS. + */ +export type VoucherTranslate = { + __typename?: 'VoucherTranslate'; + errors: Array; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + translationErrors: Array; + voucher?: Maybe; +}; + +export type VoucherTranslation = Node & { + __typename?: 'VoucherTranslation'; + id: Scalars['ID']; + /** Translation language. */ + language: LanguageDisplay; + name?: Maybe; +}; + +export enum VoucherTypeEnum { + EntireOrder = 'ENTIRE_ORDER', + Shipping = 'SHIPPING', + SpecificProduct = 'SPECIFIC_PRODUCT' +} + +/** + * Updates a voucher. + * + * Requires one of the following permissions: MANAGE_DISCOUNTS. + */ +export type VoucherUpdate = { + __typename?: 'VoucherUpdate'; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + discountErrors: Array; + errors: Array; + voucher?: Maybe; +}; + +/** + * Event sent when voucher is updated. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type VoucherUpdated = Event & { + __typename?: 'VoucherUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; + /** The voucher the event relates to. */ + voucher?: Maybe; +}; + + +/** + * Event sent when voucher is updated. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type VoucherUpdatedVoucherArgs = { + channel?: InputMaybe; +}; + +/** Represents warehouse. */ +export type Warehouse = Node & ObjectWithMetadata & { + __typename?: 'Warehouse'; + address: Address; + /** + * Click and collect options: local, all or disabled. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + clickAndCollectOption: WarehouseClickAndCollectOptionEnum; + /** + * Warehouse company name. + * @deprecated This field will be removed in Saleor 4.0. Use `Address.companyName` instead. + */ + companyName: Scalars['String']; + email: Scalars['String']; + /** + * External ID of this warehouse. + * + * Added in Saleor 3.10. + */ + externalReference?: Maybe; + id: Scalars['ID']; + isPrivate: Scalars['Boolean']; + /** List of public metadata items. Can be accessed without permissions. */ + metadata: Array; + /** + * A single key from public metadata. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafield?: Maybe; + /** + * Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + metafields?: Maybe; + name: Scalars['String']; + /** List of private metadata items. Requires staff permissions to access. */ + privateMetadata: Array; + /** + * A single key from private metadata. Requires staff permissions to access. + * + * Tip: Use GraphQL aliases to fetch multiple keys. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafield?: Maybe; + /** + * Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + * + * Added in Saleor 3.3. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + privateMetafields?: Maybe; + shippingZones: ShippingZoneCountableConnection; + slug: Scalars['String']; +}; + + +/** Represents warehouse. */ +export type WarehouseMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents warehouse. */ +export type WarehouseMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents warehouse. */ +export type WarehousePrivateMetafieldArgs = { + key: Scalars['String']; +}; + + +/** Represents warehouse. */ +export type WarehousePrivateMetafieldsArgs = { + keys?: InputMaybe>; +}; + + +/** Represents warehouse. */ +export type WarehouseShippingZonesArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + +/** An enumeration. */ +export enum WarehouseClickAndCollectOptionEnum { + All = 'ALL', + Disabled = 'DISABLED', + Local = 'LOCAL' +} + +export type WarehouseCountableConnection = { + __typename?: 'WarehouseCountableConnection'; + edges: Array; + /** Pagination data for this connection. */ + pageInfo: PageInfo; + /** A total count of items in the collection. */ + totalCount?: Maybe; +}; + +export type WarehouseCountableEdge = { + __typename?: 'WarehouseCountableEdge'; + /** A cursor for use in pagination. */ + cursor: Scalars['String']; + /** The item at the end of the edge. */ + node: Warehouse; +}; + +/** + * Creates new warehouse. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type WarehouseCreate = { + __typename?: 'WarehouseCreate'; + errors: Array; + warehouse?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + warehouseErrors: Array; +}; + +export type WarehouseCreateInput = { + /** Address of the warehouse. */ + address: AddressInput; + /** The email address of the warehouse. */ + email?: InputMaybe; + /** + * External ID of the warehouse. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** Warehouse name. */ + name: Scalars['String']; + /** + * Shipping zones supported by the warehouse. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Providing the zone ids will raise a ValidationError. + */ + shippingZones?: InputMaybe>; + /** Warehouse slug. */ + slug?: InputMaybe; +}; + +/** + * Event sent when new warehouse is created. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type WarehouseCreated = Event & { + __typename?: 'WarehouseCreated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; + /** The warehouse the event relates to. */ + warehouse?: Maybe; +}; + +/** + * Deletes selected warehouse. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type WarehouseDelete = { + __typename?: 'WarehouseDelete'; + errors: Array; + warehouse?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + warehouseErrors: Array; +}; + +/** + * Event sent when warehouse is deleted. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type WarehouseDeleted = Event & { + __typename?: 'WarehouseDeleted'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; + /** The warehouse the event relates to. */ + warehouse?: Maybe; +}; + +export type WarehouseError = { + __typename?: 'WarehouseError'; + /** The error code. */ + code: WarehouseErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; + /** List of shipping zones IDs which causes the error. */ + shippingZones?: Maybe>; +}; + +/** An enumeration. */ +export enum WarehouseErrorCode { + AlreadyExists = 'ALREADY_EXISTS', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND', + Required = 'REQUIRED', + Unique = 'UNIQUE' +} + +export type WarehouseFilterInput = { + channels?: InputMaybe>; + clickAndCollectOption?: InputMaybe; + ids?: InputMaybe>; + isPrivate?: InputMaybe; + search?: InputMaybe; + slugs?: InputMaybe>; +}; + +/** + * Event sent when warehouse metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type WarehouseMetadataUpdated = Event & { + __typename?: 'WarehouseMetadataUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; + /** The warehouse the event relates to. */ + warehouse?: Maybe; +}; + +/** + * Add shipping zone to given warehouse. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type WarehouseShippingZoneAssign = { + __typename?: 'WarehouseShippingZoneAssign'; + errors: Array; + warehouse?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + warehouseErrors: Array; +}; + +/** + * Remove shipping zone from given warehouse. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type WarehouseShippingZoneUnassign = { + __typename?: 'WarehouseShippingZoneUnassign'; + errors: Array; + warehouse?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + warehouseErrors: Array; +}; + +export enum WarehouseSortField { + /** Sort warehouses by name. */ + Name = 'NAME' +} + +export type WarehouseSortingInput = { + /** Specifies the direction in which to sort products. */ + direction: OrderDirection; + /** Sort warehouses by the selected field. */ + field: WarehouseSortField; +}; + +/** + * Updates given warehouse. + * + * Requires one of the following permissions: MANAGE_PRODUCTS. + */ +export type WarehouseUpdate = { + __typename?: 'WarehouseUpdate'; + errors: Array; + warehouse?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + warehouseErrors: Array; +}; + +export type WarehouseUpdateInput = { + /** Address of the warehouse. */ + address?: InputMaybe; + /** + * Click and collect options: local, all or disabled. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + clickAndCollectOption?: InputMaybe; + /** The email address of the warehouse. */ + email?: InputMaybe; + /** + * External ID of the warehouse. + * + * Added in Saleor 3.10. + */ + externalReference?: InputMaybe; + /** + * Visibility of warehouse stocks. + * + * Added in Saleor 3.1. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + isPrivate?: InputMaybe; + /** Warehouse name. */ + name?: InputMaybe; + /** Warehouse slug. */ + slug?: InputMaybe; +}; + +/** + * Event sent when warehouse is updated. + * + * Added in Saleor 3.4. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ +export type WarehouseUpdated = Event & { + __typename?: 'WarehouseUpdated'; + /** Time of the event. */ + issuedAt?: Maybe; + /** The user or application that triggered the event. */ + issuingPrincipal?: Maybe; + /** The application receiving the webhook. */ + recipient?: Maybe; + /** Saleor version that triggered the event. */ + version?: Maybe; + /** The warehouse the event relates to. */ + warehouse?: Maybe; +}; + +/** Webhook. */ +export type Webhook = Node & { + __typename?: 'Webhook'; + app: App; + /** List of asynchronous webhook events. */ + asyncEvents: Array; + /** Event deliveries. */ + eventDeliveries?: Maybe; + /** + * List of webhook events. + * @deprecated This field will be removed in Saleor 4.0. Use `asyncEvents` or `syncEvents` instead. + */ + events: Array; + id: Scalars['ID']; + /** Informs if webhook is activated. */ + isActive: Scalars['Boolean']; + name: Scalars['String']; + /** + * Used to create a hash signature for each payload. + * @deprecated This field will be removed in Saleor 4.0. As of Saleor 3.5, webhook payloads default to signing using a verifiable JWS. + */ + secretKey?: Maybe; + /** Used to define payloads for specific events. */ + subscriptionQuery?: Maybe; + /** List of synchronous webhook events. */ + syncEvents: Array; + /** Target URL for webhook. */ + targetUrl: Scalars['String']; +}; + + +/** Webhook. */ +export type WebhookEventDeliveriesArgs = { + after?: InputMaybe; + before?: InputMaybe; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + sortBy?: InputMaybe; +}; + +/** + * Creates a new webhook subscription. + * + * Requires one of the following permissions: MANAGE_APPS, AUTHENTICATED_APP. + */ +export type WebhookCreate = { + __typename?: 'WebhookCreate'; + errors: Array; + webhook?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + webhookErrors: Array; +}; + +export type WebhookCreateInput = { + /** ID of the app to which webhook belongs. */ + app?: InputMaybe; + /** The asynchronous events that webhook wants to subscribe. */ + asyncEvents?: InputMaybe>; + /** + * The events that webhook wants to subscribe. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use `asyncEvents` or `syncEvents` instead. + */ + events?: InputMaybe>; + /** Determine if webhook will be set active or not. */ + isActive?: InputMaybe; + /** The name of the webhook. */ + name?: InputMaybe; + /** + * Subscription query used to define a webhook payload. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + query?: InputMaybe; + /** + * The secret key used to create a hash signature with each payload. + * + * DEPRECATED: this field will be removed in Saleor 4.0. As of Saleor 3.5, webhook payloads default to signing using a verifiable JWS. + */ + secretKey?: InputMaybe; + /** The synchronous events that webhook wants to subscribe. */ + syncEvents?: InputMaybe>; + /** The url to receive the payload. */ + targetUrl?: InputMaybe; +}; + +/** + * Delete a webhook. Before the deletion, the webhook is deactivated to pause any deliveries that are already scheduled. The deletion might fail if delivery is in progress. In such a case, the webhook is not deleted but remains deactivated. + * + * Requires one of the following permissions: MANAGE_APPS, AUTHENTICATED_APP. + */ +export type WebhookDelete = { + __typename?: 'WebhookDelete'; + errors: Array; + webhook?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + webhookErrors: Array; +}; + +export type WebhookError = { + __typename?: 'WebhookError'; + /** The error code. */ + code: WebhookErrorCode; + /** Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. */ + field?: Maybe; + /** The error message. */ + message?: Maybe; +}; + +/** An enumeration. */ +export enum WebhookErrorCode { + DeleteFailed = 'DELETE_FAILED', + GraphqlError = 'GRAPHQL_ERROR', + Invalid = 'INVALID', + NotFound = 'NOT_FOUND', + Required = 'REQUIRED', + Unique = 'UNIQUE' +} + +/** Webhook event. */ +export type WebhookEvent = { + __typename?: 'WebhookEvent'; + /** Internal name of the event type. */ + eventType: WebhookEventTypeEnum; + /** Display name of the event. */ + name: Scalars['String']; +}; + +/** Asynchronous webhook event. */ +export type WebhookEventAsync = { + __typename?: 'WebhookEventAsync'; + /** Internal name of the event type. */ + eventType: WebhookEventTypeAsyncEnum; + /** Display name of the event. */ + name: Scalars['String']; +}; + +/** Synchronous webhook event. */ +export type WebhookEventSync = { + __typename?: 'WebhookEventSync'; + /** Internal name of the event type. */ + eventType: WebhookEventTypeSyncEnum; + /** Display name of the event. */ + name: Scalars['String']; +}; + +/** Enum determining type of webhook. */ +export enum WebhookEventTypeAsyncEnum { + /** A new address created. */ + AddressCreated = 'ADDRESS_CREATED', + /** An address deleted. */ + AddressDeleted = 'ADDRESS_DELETED', + /** An address updated. */ + AddressUpdated = 'ADDRESS_UPDATED', + /** All the events. */ + AnyEvents = 'ANY_EVENTS', + /** An app deleted. */ + AppDeleted = 'APP_DELETED', + /** A new app installed. */ + AppInstalled = 'APP_INSTALLED', + /** An app status is changed. */ + AppStatusChanged = 'APP_STATUS_CHANGED', + /** An app updated. */ + AppUpdated = 'APP_UPDATED', + /** A new attribute is created. */ + AttributeCreated = 'ATTRIBUTE_CREATED', + /** An attribute is deleted. */ + AttributeDeleted = 'ATTRIBUTE_DELETED', + /** An attribute is updated. */ + AttributeUpdated = 'ATTRIBUTE_UPDATED', + /** A new attribute value is created. */ + AttributeValueCreated = 'ATTRIBUTE_VALUE_CREATED', + /** An attribute value is deleted. */ + AttributeValueDeleted = 'ATTRIBUTE_VALUE_DELETED', + /** An attribute value is updated. */ + AttributeValueUpdated = 'ATTRIBUTE_VALUE_UPDATED', + /** A new category created. */ + CategoryCreated = 'CATEGORY_CREATED', + /** A category is deleted. */ + CategoryDeleted = 'CATEGORY_DELETED', + /** A category is updated. */ + CategoryUpdated = 'CATEGORY_UPDATED', + /** A new channel created. */ + ChannelCreated = 'CHANNEL_CREATED', + /** A channel is deleted. */ + ChannelDeleted = 'CHANNEL_DELETED', + /** A channel status is changed. */ + ChannelStatusChanged = 'CHANNEL_STATUS_CHANGED', + /** A channel is updated. */ + ChannelUpdated = 'CHANNEL_UPDATED', + /** A new checkout is created. */ + CheckoutCreated = 'CHECKOUT_CREATED', + /** + * A checkout metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + CheckoutMetadataUpdated = 'CHECKOUT_METADATA_UPDATED', + /** A checkout is updated. It also triggers all updates related to the checkout. */ + CheckoutUpdated = 'CHECKOUT_UPDATED', + /** A new collection is created. */ + CollectionCreated = 'COLLECTION_CREATED', + /** A collection is deleted. */ + CollectionDeleted = 'COLLECTION_DELETED', + /** + * A collection metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + CollectionMetadataUpdated = 'COLLECTION_METADATA_UPDATED', + /** A collection is updated. */ + CollectionUpdated = 'COLLECTION_UPDATED', + /** A new customer account is created. */ + CustomerCreated = 'CUSTOMER_CREATED', + /** A customer account is deleted. */ + CustomerDeleted = 'CUSTOMER_DELETED', + /** + * A customer account metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + CustomerMetadataUpdated = 'CUSTOMER_METADATA_UPDATED', + /** A customer account is updated. */ + CustomerUpdated = 'CUSTOMER_UPDATED', + /** A draft order is created. */ + DraftOrderCreated = 'DRAFT_ORDER_CREATED', + /** A draft order is deleted. */ + DraftOrderDeleted = 'DRAFT_ORDER_DELETED', + /** A draft order is updated. */ + DraftOrderUpdated = 'DRAFT_ORDER_UPDATED', + /** A fulfillment is approved. */ + FulfillmentApproved = 'FULFILLMENT_APPROVED', + /** A fulfillment is cancelled. */ + FulfillmentCanceled = 'FULFILLMENT_CANCELED', + /** A new fulfillment is created. */ + FulfillmentCreated = 'FULFILLMENT_CREATED', + /** + * A fulfillment metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + FulfillmentMetadataUpdated = 'FULFILLMENT_METADATA_UPDATED', + /** A new gift card created. */ + GiftCardCreated = 'GIFT_CARD_CREATED', + /** A gift card is deleted. */ + GiftCardDeleted = 'GIFT_CARD_DELETED', + /** + * A gift card metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + GiftCardMetadataUpdated = 'GIFT_CARD_METADATA_UPDATED', + /** A gift card status is changed. */ + GiftCardStatusChanged = 'GIFT_CARD_STATUS_CHANGED', + /** A gift card is updated. */ + GiftCardUpdated = 'GIFT_CARD_UPDATED', + /** An invoice is deleted. */ + InvoiceDeleted = 'INVOICE_DELETED', + /** An invoice for order requested. */ + InvoiceRequested = 'INVOICE_REQUESTED', + /** Invoice has been sent. */ + InvoiceSent = 'INVOICE_SENT', + /** A new menu created. */ + MenuCreated = 'MENU_CREATED', + /** A menu is deleted. */ + MenuDeleted = 'MENU_DELETED', + /** A new menu item created. */ + MenuItemCreated = 'MENU_ITEM_CREATED', + /** A menu item is deleted. */ + MenuItemDeleted = 'MENU_ITEM_DELETED', + /** A menu item is updated. */ + MenuItemUpdated = 'MENU_ITEM_UPDATED', + /** A menu is updated. */ + MenuUpdated = 'MENU_UPDATED', + /** User notification triggered. */ + NotifyUser = 'NOTIFY_USER', + /** An observability event is created. */ + Observability = 'OBSERVABILITY', + /** An order is cancelled. */ + OrderCancelled = 'ORDER_CANCELLED', + /** An order is confirmed (status change unconfirmed -> unfulfilled) by a staff user using the OrderConfirm mutation. It also triggers when the user completes the checkout and the shop setting `automatically_confirm_all_new_orders` is enabled. */ + OrderConfirmed = 'ORDER_CONFIRMED', + /** A new order is placed. */ + OrderCreated = 'ORDER_CREATED', + /** An order is fulfilled. */ + OrderFulfilled = 'ORDER_FULFILLED', + /** Payment is made and an order is fully paid. */ + OrderFullyPaid = 'ORDER_FULLY_PAID', + /** + * An order metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + OrderMetadataUpdated = 'ORDER_METADATA_UPDATED', + /** An order is updated; triggered for all changes related to an order; covers all other order webhooks, except for ORDER_CREATED. */ + OrderUpdated = 'ORDER_UPDATED', + /** A new page is created. */ + PageCreated = 'PAGE_CREATED', + /** A page is deleted. */ + PageDeleted = 'PAGE_DELETED', + /** A new page type is created. */ + PageTypeCreated = 'PAGE_TYPE_CREATED', + /** A page type is deleted. */ + PageTypeDeleted = 'PAGE_TYPE_DELETED', + /** A page type is updated. */ + PageTypeUpdated = 'PAGE_TYPE_UPDATED', + /** A page is updated. */ + PageUpdated = 'PAGE_UPDATED', + /** A new permission group is created. */ + PermissionGroupCreated = 'PERMISSION_GROUP_CREATED', + /** A permission group is deleted. */ + PermissionGroupDeleted = 'PERMISSION_GROUP_DELETED', + /** A permission group is updated. */ + PermissionGroupUpdated = 'PERMISSION_GROUP_UPDATED', + /** A new product is created. */ + ProductCreated = 'PRODUCT_CREATED', + /** A product is deleted. */ + ProductDeleted = 'PRODUCT_DELETED', + /** + * A product metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + ProductMetadataUpdated = 'PRODUCT_METADATA_UPDATED', + /** A product is updated. */ + ProductUpdated = 'PRODUCT_UPDATED', + /** A product variant is back in stock. */ + ProductVariantBackInStock = 'PRODUCT_VARIANT_BACK_IN_STOCK', + /** A new product variant is created. */ + ProductVariantCreated = 'PRODUCT_VARIANT_CREATED', + /** A product variant is deleted. */ + ProductVariantDeleted = 'PRODUCT_VARIANT_DELETED', + /** + * A product variant metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + ProductVariantMetadataUpdated = 'PRODUCT_VARIANT_METADATA_UPDATED', + /** A product variant is out of stock. */ + ProductVariantOutOfStock = 'PRODUCT_VARIANT_OUT_OF_STOCK', + /** A product variant is updated. */ + ProductVariantUpdated = 'PRODUCT_VARIANT_UPDATED', + /** A sale is created. */ + SaleCreated = 'SALE_CREATED', + /** A sale is deleted. */ + SaleDeleted = 'SALE_DELETED', + /** A sale is activated or deactivated. */ + SaleToggle = 'SALE_TOGGLE', + /** A sale is updated. */ + SaleUpdated = 'SALE_UPDATED', + /** A new shipping price is created. */ + ShippingPriceCreated = 'SHIPPING_PRICE_CREATED', + /** A shipping price is deleted. */ + ShippingPriceDeleted = 'SHIPPING_PRICE_DELETED', + /** A shipping price is updated. */ + ShippingPriceUpdated = 'SHIPPING_PRICE_UPDATED', + /** A new shipping zone is created. */ + ShippingZoneCreated = 'SHIPPING_ZONE_CREATED', + /** A shipping zone is deleted. */ + ShippingZoneDeleted = 'SHIPPING_ZONE_DELETED', + /** + * A shipping zone metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + ShippingZoneMetadataUpdated = 'SHIPPING_ZONE_METADATA_UPDATED', + /** A shipping zone is updated. */ + ShippingZoneUpdated = 'SHIPPING_ZONE_UPDATED', + /** A new staff user is created. */ + StaffCreated = 'STAFF_CREATED', + /** A staff user is deleted. */ + StaffDeleted = 'STAFF_DELETED', + /** A staff user is updated. */ + StaffUpdated = 'STAFF_UPDATED', + /** An action requested for transaction. */ + TransactionActionRequest = 'TRANSACTION_ACTION_REQUEST', + /** + * Transaction item metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + TransactionItemMetadataUpdated = 'TRANSACTION_ITEM_METADATA_UPDATED', + /** A new translation is created. */ + TranslationCreated = 'TRANSLATION_CREATED', + /** A translation is updated. */ + TranslationUpdated = 'TRANSLATION_UPDATED', + /** A new voucher created. */ + VoucherCreated = 'VOUCHER_CREATED', + /** A voucher is deleted. */ + VoucherDeleted = 'VOUCHER_DELETED', + /** + * A voucher metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + VoucherMetadataUpdated = 'VOUCHER_METADATA_UPDATED', + /** A voucher is updated. */ + VoucherUpdated = 'VOUCHER_UPDATED', + /** A new warehouse created. */ + WarehouseCreated = 'WAREHOUSE_CREATED', + /** A warehouse is deleted. */ + WarehouseDeleted = 'WAREHOUSE_DELETED', + /** + * A warehouse metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + WarehouseMetadataUpdated = 'WAREHOUSE_METADATA_UPDATED', + /** A warehouse is updated. */ + WarehouseUpdated = 'WAREHOUSE_UPDATED' +} + +/** Enum determining type of webhook. */ +export enum WebhookEventTypeEnum { + /** A new address created. */ + AddressCreated = 'ADDRESS_CREATED', + /** An address deleted. */ + AddressDeleted = 'ADDRESS_DELETED', + /** An address updated. */ + AddressUpdated = 'ADDRESS_UPDATED', + /** All the events. */ + AnyEvents = 'ANY_EVENTS', + /** An app deleted. */ + AppDeleted = 'APP_DELETED', + /** A new app installed. */ + AppInstalled = 'APP_INSTALLED', + /** An app status is changed. */ + AppStatusChanged = 'APP_STATUS_CHANGED', + /** An app updated. */ + AppUpdated = 'APP_UPDATED', + /** A new attribute is created. */ + AttributeCreated = 'ATTRIBUTE_CREATED', + /** An attribute is deleted. */ + AttributeDeleted = 'ATTRIBUTE_DELETED', + /** An attribute is updated. */ + AttributeUpdated = 'ATTRIBUTE_UPDATED', + /** A new attribute value is created. */ + AttributeValueCreated = 'ATTRIBUTE_VALUE_CREATED', + /** An attribute value is deleted. */ + AttributeValueDeleted = 'ATTRIBUTE_VALUE_DELETED', + /** An attribute value is updated. */ + AttributeValueUpdated = 'ATTRIBUTE_VALUE_UPDATED', + /** A new category created. */ + CategoryCreated = 'CATEGORY_CREATED', + /** A category is deleted. */ + CategoryDeleted = 'CATEGORY_DELETED', + /** A category is updated. */ + CategoryUpdated = 'CATEGORY_UPDATED', + /** A new channel created. */ + ChannelCreated = 'CHANNEL_CREATED', + /** A channel is deleted. */ + ChannelDeleted = 'CHANNEL_DELETED', + /** A channel status is changed. */ + ChannelStatusChanged = 'CHANNEL_STATUS_CHANGED', + /** A channel is updated. */ + ChannelUpdated = 'CHANNEL_UPDATED', + /** + * Event called for checkout tax calculation. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + CheckoutCalculateTaxes = 'CHECKOUT_CALCULATE_TAXES', + /** A new checkout is created. */ + CheckoutCreated = 'CHECKOUT_CREATED', + /** Filter shipping methods for checkout. */ + CheckoutFilterShippingMethods = 'CHECKOUT_FILTER_SHIPPING_METHODS', + /** + * A checkout metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + CheckoutMetadataUpdated = 'CHECKOUT_METADATA_UPDATED', + /** A checkout is updated. It also triggers all updates related to the checkout. */ + CheckoutUpdated = 'CHECKOUT_UPDATED', + /** A new collection is created. */ + CollectionCreated = 'COLLECTION_CREATED', + /** A collection is deleted. */ + CollectionDeleted = 'COLLECTION_DELETED', + /** + * A collection metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + CollectionMetadataUpdated = 'COLLECTION_METADATA_UPDATED', + /** A collection is updated. */ + CollectionUpdated = 'COLLECTION_UPDATED', + /** A new customer account is created. */ + CustomerCreated = 'CUSTOMER_CREATED', + /** A customer account is deleted. */ + CustomerDeleted = 'CUSTOMER_DELETED', + /** + * A customer account metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + CustomerMetadataUpdated = 'CUSTOMER_METADATA_UPDATED', + /** A customer account is updated. */ + CustomerUpdated = 'CUSTOMER_UPDATED', + /** A draft order is created. */ + DraftOrderCreated = 'DRAFT_ORDER_CREATED', + /** A draft order is deleted. */ + DraftOrderDeleted = 'DRAFT_ORDER_DELETED', + /** A draft order is updated. */ + DraftOrderUpdated = 'DRAFT_ORDER_UPDATED', + /** A fulfillment is approved. */ + FulfillmentApproved = 'FULFILLMENT_APPROVED', + /** A fulfillment is cancelled. */ + FulfillmentCanceled = 'FULFILLMENT_CANCELED', + /** A new fulfillment is created. */ + FulfillmentCreated = 'FULFILLMENT_CREATED', + /** + * A fulfillment metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + FulfillmentMetadataUpdated = 'FULFILLMENT_METADATA_UPDATED', + /** A new gift card created. */ + GiftCardCreated = 'GIFT_CARD_CREATED', + /** A gift card is deleted. */ + GiftCardDeleted = 'GIFT_CARD_DELETED', + /** + * A gift card metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + GiftCardMetadataUpdated = 'GIFT_CARD_METADATA_UPDATED', + /** A gift card status is changed. */ + GiftCardStatusChanged = 'GIFT_CARD_STATUS_CHANGED', + /** A gift card is updated. */ + GiftCardUpdated = 'GIFT_CARD_UPDATED', + /** An invoice is deleted. */ + InvoiceDeleted = 'INVOICE_DELETED', + /** An invoice for order requested. */ + InvoiceRequested = 'INVOICE_REQUESTED', + /** Invoice has been sent. */ + InvoiceSent = 'INVOICE_SENT', + /** A new menu created. */ + MenuCreated = 'MENU_CREATED', + /** A menu is deleted. */ + MenuDeleted = 'MENU_DELETED', + /** A new menu item created. */ + MenuItemCreated = 'MENU_ITEM_CREATED', + /** A menu item is deleted. */ + MenuItemDeleted = 'MENU_ITEM_DELETED', + /** A menu item is updated. */ + MenuItemUpdated = 'MENU_ITEM_UPDATED', + /** A menu is updated. */ + MenuUpdated = 'MENU_UPDATED', + /** User notification triggered. */ + NotifyUser = 'NOTIFY_USER', + /** An observability event is created. */ + Observability = 'OBSERVABILITY', + /** + * Event called for order tax calculation. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + OrderCalculateTaxes = 'ORDER_CALCULATE_TAXES', + /** An order is cancelled. */ + OrderCancelled = 'ORDER_CANCELLED', + /** An order is confirmed (status change unconfirmed -> unfulfilled) by a staff user using the OrderConfirm mutation. It also triggers when the user completes the checkout and the shop setting `automatically_confirm_all_new_orders` is enabled. */ + OrderConfirmed = 'ORDER_CONFIRMED', + /** A new order is placed. */ + OrderCreated = 'ORDER_CREATED', + /** Filter shipping methods for order. */ + OrderFilterShippingMethods = 'ORDER_FILTER_SHIPPING_METHODS', + /** An order is fulfilled. */ + OrderFulfilled = 'ORDER_FULFILLED', + /** Payment is made and an order is fully paid. */ + OrderFullyPaid = 'ORDER_FULLY_PAID', + /** + * An order metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + OrderMetadataUpdated = 'ORDER_METADATA_UPDATED', + /** An order is updated; triggered for all changes related to an order; covers all other order webhooks, except for ORDER_CREATED. */ + OrderUpdated = 'ORDER_UPDATED', + /** A new page is created. */ + PageCreated = 'PAGE_CREATED', + /** A page is deleted. */ + PageDeleted = 'PAGE_DELETED', + /** A new page type is created. */ + PageTypeCreated = 'PAGE_TYPE_CREATED', + /** A page type is deleted. */ + PageTypeDeleted = 'PAGE_TYPE_DELETED', + /** A page type is updated. */ + PageTypeUpdated = 'PAGE_TYPE_UPDATED', + /** A page is updated. */ + PageUpdated = 'PAGE_UPDATED', + /** Authorize payment. */ + PaymentAuthorize = 'PAYMENT_AUTHORIZE', + /** Capture payment. */ + PaymentCapture = 'PAYMENT_CAPTURE', + /** Confirm payment. */ + PaymentConfirm = 'PAYMENT_CONFIRM', + /** Listing available payment gateways. */ + PaymentListGateways = 'PAYMENT_LIST_GATEWAYS', + /** Process payment. */ + PaymentProcess = 'PAYMENT_PROCESS', + /** Refund payment. */ + PaymentRefund = 'PAYMENT_REFUND', + /** Void payment. */ + PaymentVoid = 'PAYMENT_VOID', + /** A new permission group is created. */ + PermissionGroupCreated = 'PERMISSION_GROUP_CREATED', + /** A permission group is deleted. */ + PermissionGroupDeleted = 'PERMISSION_GROUP_DELETED', + /** A permission group is updated. */ + PermissionGroupUpdated = 'PERMISSION_GROUP_UPDATED', + /** A new product is created. */ + ProductCreated = 'PRODUCT_CREATED', + /** A product is deleted. */ + ProductDeleted = 'PRODUCT_DELETED', + /** + * A product metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + ProductMetadataUpdated = 'PRODUCT_METADATA_UPDATED', + /** A product is updated. */ + ProductUpdated = 'PRODUCT_UPDATED', + /** A product variant is back in stock. */ + ProductVariantBackInStock = 'PRODUCT_VARIANT_BACK_IN_STOCK', + /** A new product variant is created. */ + ProductVariantCreated = 'PRODUCT_VARIANT_CREATED', + /** A product variant is deleted. */ + ProductVariantDeleted = 'PRODUCT_VARIANT_DELETED', + /** + * A product variant metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + ProductVariantMetadataUpdated = 'PRODUCT_VARIANT_METADATA_UPDATED', + /** A product variant is out of stock. */ + ProductVariantOutOfStock = 'PRODUCT_VARIANT_OUT_OF_STOCK', + /** A product variant is updated. */ + ProductVariantUpdated = 'PRODUCT_VARIANT_UPDATED', + /** A sale is created. */ + SaleCreated = 'SALE_CREATED', + /** A sale is deleted. */ + SaleDeleted = 'SALE_DELETED', + /** A sale is activated or deactivated. */ + SaleToggle = 'SALE_TOGGLE', + /** A sale is updated. */ + SaleUpdated = 'SALE_UPDATED', + /** Fetch external shipping methods for checkout. */ + ShippingListMethodsForCheckout = 'SHIPPING_LIST_METHODS_FOR_CHECKOUT', + /** A new shipping price is created. */ + ShippingPriceCreated = 'SHIPPING_PRICE_CREATED', + /** A shipping price is deleted. */ + ShippingPriceDeleted = 'SHIPPING_PRICE_DELETED', + /** A shipping price is updated. */ + ShippingPriceUpdated = 'SHIPPING_PRICE_UPDATED', + /** A new shipping zone is created. */ + ShippingZoneCreated = 'SHIPPING_ZONE_CREATED', + /** A shipping zone is deleted. */ + ShippingZoneDeleted = 'SHIPPING_ZONE_DELETED', + /** + * A shipping zone metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + ShippingZoneMetadataUpdated = 'SHIPPING_ZONE_METADATA_UPDATED', + /** A shipping zone is updated. */ + ShippingZoneUpdated = 'SHIPPING_ZONE_UPDATED', + /** A new staff user is created. */ + StaffCreated = 'STAFF_CREATED', + /** A staff user is deleted. */ + StaffDeleted = 'STAFF_DELETED', + /** A staff user is updated. */ + StaffUpdated = 'STAFF_UPDATED', + /** An action requested for transaction. */ + TransactionActionRequest = 'TRANSACTION_ACTION_REQUEST', + /** + * Transaction item metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + TransactionItemMetadataUpdated = 'TRANSACTION_ITEM_METADATA_UPDATED', + /** A new translation is created. */ + TranslationCreated = 'TRANSLATION_CREATED', + /** A translation is updated. */ + TranslationUpdated = 'TRANSLATION_UPDATED', + /** A new voucher created. */ + VoucherCreated = 'VOUCHER_CREATED', + /** A voucher is deleted. */ + VoucherDeleted = 'VOUCHER_DELETED', + /** + * A voucher metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + VoucherMetadataUpdated = 'VOUCHER_METADATA_UPDATED', + /** A voucher is updated. */ + VoucherUpdated = 'VOUCHER_UPDATED', + /** A new warehouse created. */ + WarehouseCreated = 'WAREHOUSE_CREATED', + /** A warehouse is deleted. */ + WarehouseDeleted = 'WAREHOUSE_DELETED', + /** + * A warehouse metadata is updated. + * + * Added in Saleor 3.8. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + WarehouseMetadataUpdated = 'WAREHOUSE_METADATA_UPDATED', + /** A warehouse is updated. */ + WarehouseUpdated = 'WAREHOUSE_UPDATED' +} + +/** Enum determining type of webhook. */ +export enum WebhookEventTypeSyncEnum { + /** + * Event called for checkout tax calculation. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + CheckoutCalculateTaxes = 'CHECKOUT_CALCULATE_TAXES', + /** Filter shipping methods for checkout. */ + CheckoutFilterShippingMethods = 'CHECKOUT_FILTER_SHIPPING_METHODS', + /** + * Event called for order tax calculation. + * + * Added in Saleor 3.6. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + OrderCalculateTaxes = 'ORDER_CALCULATE_TAXES', + /** Filter shipping methods for order. */ + OrderFilterShippingMethods = 'ORDER_FILTER_SHIPPING_METHODS', + /** Authorize payment. */ + PaymentAuthorize = 'PAYMENT_AUTHORIZE', + /** Capture payment. */ + PaymentCapture = 'PAYMENT_CAPTURE', + /** Confirm payment. */ + PaymentConfirm = 'PAYMENT_CONFIRM', + /** Listing available payment gateways. */ + PaymentListGateways = 'PAYMENT_LIST_GATEWAYS', + /** Process payment. */ + PaymentProcess = 'PAYMENT_PROCESS', + /** Refund payment. */ + PaymentRefund = 'PAYMENT_REFUND', + /** Void payment. */ + PaymentVoid = 'PAYMENT_VOID', + /** Fetch external shipping methods for checkout. */ + ShippingListMethodsForCheckout = 'SHIPPING_LIST_METHODS_FOR_CHECKOUT' +} + +/** An enumeration. */ +export enum WebhookSampleEventTypeEnum { + AddressCreated = 'ADDRESS_CREATED', + AddressDeleted = 'ADDRESS_DELETED', + AddressUpdated = 'ADDRESS_UPDATED', + AppDeleted = 'APP_DELETED', + AppInstalled = 'APP_INSTALLED', + AppStatusChanged = 'APP_STATUS_CHANGED', + AppUpdated = 'APP_UPDATED', + AttributeCreated = 'ATTRIBUTE_CREATED', + AttributeDeleted = 'ATTRIBUTE_DELETED', + AttributeUpdated = 'ATTRIBUTE_UPDATED', + AttributeValueCreated = 'ATTRIBUTE_VALUE_CREATED', + AttributeValueDeleted = 'ATTRIBUTE_VALUE_DELETED', + AttributeValueUpdated = 'ATTRIBUTE_VALUE_UPDATED', + CategoryCreated = 'CATEGORY_CREATED', + CategoryDeleted = 'CATEGORY_DELETED', + CategoryUpdated = 'CATEGORY_UPDATED', + ChannelCreated = 'CHANNEL_CREATED', + ChannelDeleted = 'CHANNEL_DELETED', + ChannelStatusChanged = 'CHANNEL_STATUS_CHANGED', + ChannelUpdated = 'CHANNEL_UPDATED', + CheckoutCreated = 'CHECKOUT_CREATED', + CheckoutMetadataUpdated = 'CHECKOUT_METADATA_UPDATED', + CheckoutUpdated = 'CHECKOUT_UPDATED', + CollectionCreated = 'COLLECTION_CREATED', + CollectionDeleted = 'COLLECTION_DELETED', + CollectionMetadataUpdated = 'COLLECTION_METADATA_UPDATED', + CollectionUpdated = 'COLLECTION_UPDATED', + CustomerCreated = 'CUSTOMER_CREATED', + CustomerDeleted = 'CUSTOMER_DELETED', + CustomerMetadataUpdated = 'CUSTOMER_METADATA_UPDATED', + CustomerUpdated = 'CUSTOMER_UPDATED', + DraftOrderCreated = 'DRAFT_ORDER_CREATED', + DraftOrderDeleted = 'DRAFT_ORDER_DELETED', + DraftOrderUpdated = 'DRAFT_ORDER_UPDATED', + FulfillmentApproved = 'FULFILLMENT_APPROVED', + FulfillmentCanceled = 'FULFILLMENT_CANCELED', + FulfillmentCreated = 'FULFILLMENT_CREATED', + FulfillmentMetadataUpdated = 'FULFILLMENT_METADATA_UPDATED', + GiftCardCreated = 'GIFT_CARD_CREATED', + GiftCardDeleted = 'GIFT_CARD_DELETED', + GiftCardMetadataUpdated = 'GIFT_CARD_METADATA_UPDATED', + GiftCardStatusChanged = 'GIFT_CARD_STATUS_CHANGED', + GiftCardUpdated = 'GIFT_CARD_UPDATED', + InvoiceDeleted = 'INVOICE_DELETED', + InvoiceRequested = 'INVOICE_REQUESTED', + InvoiceSent = 'INVOICE_SENT', + MenuCreated = 'MENU_CREATED', + MenuDeleted = 'MENU_DELETED', + MenuItemCreated = 'MENU_ITEM_CREATED', + MenuItemDeleted = 'MENU_ITEM_DELETED', + MenuItemUpdated = 'MENU_ITEM_UPDATED', + MenuUpdated = 'MENU_UPDATED', + NotifyUser = 'NOTIFY_USER', + Observability = 'OBSERVABILITY', + OrderCancelled = 'ORDER_CANCELLED', + OrderConfirmed = 'ORDER_CONFIRMED', + OrderCreated = 'ORDER_CREATED', + OrderFulfilled = 'ORDER_FULFILLED', + OrderFullyPaid = 'ORDER_FULLY_PAID', + OrderMetadataUpdated = 'ORDER_METADATA_UPDATED', + OrderUpdated = 'ORDER_UPDATED', + PageCreated = 'PAGE_CREATED', + PageDeleted = 'PAGE_DELETED', + PageTypeCreated = 'PAGE_TYPE_CREATED', + PageTypeDeleted = 'PAGE_TYPE_DELETED', + PageTypeUpdated = 'PAGE_TYPE_UPDATED', + PageUpdated = 'PAGE_UPDATED', + PermissionGroupCreated = 'PERMISSION_GROUP_CREATED', + PermissionGroupDeleted = 'PERMISSION_GROUP_DELETED', + PermissionGroupUpdated = 'PERMISSION_GROUP_UPDATED', + ProductCreated = 'PRODUCT_CREATED', + ProductDeleted = 'PRODUCT_DELETED', + ProductMetadataUpdated = 'PRODUCT_METADATA_UPDATED', + ProductUpdated = 'PRODUCT_UPDATED', + ProductVariantBackInStock = 'PRODUCT_VARIANT_BACK_IN_STOCK', + ProductVariantCreated = 'PRODUCT_VARIANT_CREATED', + ProductVariantDeleted = 'PRODUCT_VARIANT_DELETED', + ProductVariantMetadataUpdated = 'PRODUCT_VARIANT_METADATA_UPDATED', + ProductVariantOutOfStock = 'PRODUCT_VARIANT_OUT_OF_STOCK', + ProductVariantUpdated = 'PRODUCT_VARIANT_UPDATED', + SaleCreated = 'SALE_CREATED', + SaleDeleted = 'SALE_DELETED', + SaleToggle = 'SALE_TOGGLE', + SaleUpdated = 'SALE_UPDATED', + ShippingPriceCreated = 'SHIPPING_PRICE_CREATED', + ShippingPriceDeleted = 'SHIPPING_PRICE_DELETED', + ShippingPriceUpdated = 'SHIPPING_PRICE_UPDATED', + ShippingZoneCreated = 'SHIPPING_ZONE_CREATED', + ShippingZoneDeleted = 'SHIPPING_ZONE_DELETED', + ShippingZoneMetadataUpdated = 'SHIPPING_ZONE_METADATA_UPDATED', + ShippingZoneUpdated = 'SHIPPING_ZONE_UPDATED', + StaffCreated = 'STAFF_CREATED', + StaffDeleted = 'STAFF_DELETED', + StaffUpdated = 'STAFF_UPDATED', + TransactionActionRequest = 'TRANSACTION_ACTION_REQUEST', + TransactionItemMetadataUpdated = 'TRANSACTION_ITEM_METADATA_UPDATED', + TranslationCreated = 'TRANSLATION_CREATED', + TranslationUpdated = 'TRANSLATION_UPDATED', + VoucherCreated = 'VOUCHER_CREATED', + VoucherDeleted = 'VOUCHER_DELETED', + VoucherMetadataUpdated = 'VOUCHER_METADATA_UPDATED', + VoucherUpdated = 'VOUCHER_UPDATED', + WarehouseCreated = 'WAREHOUSE_CREATED', + WarehouseDeleted = 'WAREHOUSE_DELETED', + WarehouseMetadataUpdated = 'WAREHOUSE_METADATA_UPDATED', + WarehouseUpdated = 'WAREHOUSE_UPDATED' +} + +/** + * Updates a webhook subscription. + * + * Requires one of the following permissions: MANAGE_APPS. + */ +export type WebhookUpdate = { + __typename?: 'WebhookUpdate'; + errors: Array; + webhook?: Maybe; + /** @deprecated This field will be removed in Saleor 4.0. Use `errors` field instead. */ + webhookErrors: Array; +}; + +export type WebhookUpdateInput = { + /** ID of the app to which webhook belongs. */ + app?: InputMaybe; + /** The asynchronous events that webhook wants to subscribe. */ + asyncEvents?: InputMaybe>; + /** + * The events that webhook wants to subscribe. + * + * DEPRECATED: this field will be removed in Saleor 4.0. Use `asyncEvents` or `syncEvents` instead. + */ + events?: InputMaybe>; + /** Determine if webhook will be set active or not. */ + isActive?: InputMaybe; + /** The new name of the webhook. */ + name?: InputMaybe; + /** + * Subscription query used to define a webhook payload. + * + * Added in Saleor 3.2. + * + * Note: this API is currently in Feature Preview and can be subject to changes at later point. + */ + query?: InputMaybe; + /** + * Use to create a hash signature with each payload. + * + * DEPRECATED: this field will be removed in Saleor 4.0. As of Saleor 3.5, webhook payloads default to signing using a verifiable JWS. + */ + secretKey?: InputMaybe; + /** The synchronous events that webhook wants to subscribe. */ + syncEvents?: InputMaybe>; + /** The url to receive the payload. */ + targetUrl?: InputMaybe; +}; + +/** Represents weight value in a specific weight unit. */ +export type Weight = { + __typename?: 'Weight'; + /** Weight unit. */ + unit: WeightUnitsEnum; + /** Weight value. */ + value: Scalars['Float']; +}; + +/** An enumeration. */ +export enum WeightUnitsEnum { + G = 'G', + Kg = 'KG', + Lb = 'LB', + Oz = 'OZ', + Tonne = 'TONNE' +} + +/** _Entity union as defined by Federation spec. */ +export type _Entity = Address | App | Category | Collection | Group | PageType | Product | ProductMedia | ProductType | ProductVariant | User; + +/** _Service manifest as defined by Federation spec. */ +export type _Service = { + __typename?: '_Service'; + sdl?: Maybe; +}; + +export type AddressFragmentFragment = { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } }; + +export type MetadataFragmentFragment = { __typename?: 'MetadataItem', key: string, value: string }; + +export type CustomerCreatedWebhookPayloadFragment = { __typename?: 'CustomerCreated', user?: { __typename: 'User', id: string, email: string, firstName: string, lastName: string, isActive: boolean, dateJoined: any, languageCode: LanguageCodeEnum, defaultShippingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, defaultBillingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, addresses: Array<{ __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } }>, privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, metadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | null }; + +export type MoneyFragmentFragment = { __typename?: 'Money', amount: number, currency: string }; + +export type TaxedMoneyFragmentFragment = { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }; + +export type PaymentFragmentFragment = { __typename: 'Payment', id: string, created: any, modified: any, gateway: string, isActive: boolean, chargeStatus: PaymentChargeStatusEnum, paymentMethodType: string, total?: { __typename?: 'Money', amount: number } | null, capturedAmount?: { __typename?: 'Money', amount: number, currency: string } | null, creditCard?: { __typename?: 'CreditCard', brand: string } | null }; + +export type OrderFragmentFragment = { __typename: 'Order', id: string, token: string, userEmail?: string | null, created: any, original?: string | null, status: OrderStatus, languageCodeEnum: LanguageCodeEnum, origin: OrderOriginEnum, shippingMethodName?: string | null, collectionPointName?: string | null, shippingTaxRate: number, channel: { __typename: 'Channel', id: string, slug: string, currencyCode: string }, shippingMethod?: { __typename?: 'ShippingMethod', type?: ShippingMethodTypeEnum | null, id: string, name: string } | null, shippingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, billingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, discounts: Array<{ __typename?: 'OrderDiscount', id: string }>, lines: Array<{ __typename: 'OrderLine', id: string, productVariantId?: string | null, productName: string, variantName: string, translatedProductName: string, translatedVariantName: string, productSku?: string | null, quantity: number, unitDiscountValue: any, unitDiscountType?: DiscountValueTypeEnum | null, unitDiscountReason?: string | null, taxRate: number, totalPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, allocations?: Array<{ __typename?: 'Allocation', quantity: number, warehouse: { __typename?: 'Warehouse', id: string } }> | null, unitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedUnitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } } }>, fulfillments: Array<{ __typename?: 'Fulfillment', id: string }>, payments: Array<{ __typename: 'Payment', id: string, created: any, modified: any, gateway: string, isActive: boolean, chargeStatus: PaymentChargeStatusEnum, paymentMethodType: string, total?: { __typename?: 'Money', amount: number } | null, capturedAmount?: { __typename?: 'Money', amount: number, currency: string } | null, creditCard?: { __typename?: 'CreditCard', brand: string } | null }>, privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, metadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, shippingPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, total: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedTotal: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, weight: { __typename?: 'Weight', value: number, unit: WeightUnitsEnum } }; + +export type FulfillmentCreatedWebhookPayloadFragment = { __typename?: 'FulfillmentCreated', fulfillment?: { __typename: 'Fulfillment', id: string, warehouse?: { __typename?: 'Warehouse', address: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } } | null, lines?: Array<{ __typename: 'FulfillmentLine', id: string, quantity: number, orderLine?: { __typename?: 'OrderLine', productName: string, variantName: string, productSku?: string | null, productVariantId?: string | null, unitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedUnitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, totalPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } } } | null }> | null } | null, order?: { __typename: 'Order', id: string, token: string, userEmail?: string | null, created: any, original?: string | null, status: OrderStatus, languageCodeEnum: LanguageCodeEnum, origin: OrderOriginEnum, shippingMethodName?: string | null, collectionPointName?: string | null, shippingTaxRate: number, channel: { __typename: 'Channel', id: string, slug: string, currencyCode: string }, shippingMethod?: { __typename?: 'ShippingMethod', type?: ShippingMethodTypeEnum | null, id: string, name: string } | null, shippingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, billingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, discounts: Array<{ __typename?: 'OrderDiscount', id: string }>, lines: Array<{ __typename: 'OrderLine', id: string, productVariantId?: string | null, productName: string, variantName: string, translatedProductName: string, translatedVariantName: string, productSku?: string | null, quantity: number, unitDiscountValue: any, unitDiscountType?: DiscountValueTypeEnum | null, unitDiscountReason?: string | null, taxRate: number, totalPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, allocations?: Array<{ __typename?: 'Allocation', quantity: number, warehouse: { __typename?: 'Warehouse', id: string } }> | null, unitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedUnitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } } }>, fulfillments: Array<{ __typename?: 'Fulfillment', id: string }>, payments: Array<{ __typename: 'Payment', id: string, created: any, modified: any, gateway: string, isActive: boolean, chargeStatus: PaymentChargeStatusEnum, paymentMethodType: string, total?: { __typename?: 'Money', amount: number } | null, capturedAmount?: { __typename?: 'Money', amount: number, currency: string } | null, creditCard?: { __typename?: 'CreditCard', brand: string } | null }>, privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, metadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, shippingPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, total: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedTotal: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, weight: { __typename?: 'Weight', value: number, unit: WeightUnitsEnum } } | null }; + +export type OrderCreatedWebhookPayloadFragment = { __typename?: 'OrderCreated', order?: { __typename: 'Order', id: string, token: string, userEmail?: string | null, created: any, original?: string | null, status: OrderStatus, languageCodeEnum: LanguageCodeEnum, origin: OrderOriginEnum, shippingMethodName?: string | null, collectionPointName?: string | null, shippingTaxRate: number, channel: { __typename: 'Channel', id: string, slug: string, currencyCode: string }, shippingMethod?: { __typename?: 'ShippingMethod', type?: ShippingMethodTypeEnum | null, id: string, name: string } | null, shippingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, billingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, discounts: Array<{ __typename?: 'OrderDiscount', id: string }>, lines: Array<{ __typename: 'OrderLine', id: string, productVariantId?: string | null, productName: string, variantName: string, translatedProductName: string, translatedVariantName: string, productSku?: string | null, quantity: number, unitDiscountValue: any, unitDiscountType?: DiscountValueTypeEnum | null, unitDiscountReason?: string | null, taxRate: number, totalPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, allocations?: Array<{ __typename?: 'Allocation', quantity: number, warehouse: { __typename?: 'Warehouse', id: string } }> | null, unitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedUnitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } } }>, fulfillments: Array<{ __typename?: 'Fulfillment', id: string }>, payments: Array<{ __typename: 'Payment', id: string, created: any, modified: any, gateway: string, isActive: boolean, chargeStatus: PaymentChargeStatusEnum, paymentMethodType: string, total?: { __typename?: 'Money', amount: number } | null, capturedAmount?: { __typename?: 'Money', amount: number, currency: string } | null, creditCard?: { __typename?: 'CreditCard', brand: string } | null }>, privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, metadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, shippingPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, total: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedTotal: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, weight: { __typename?: 'Weight', value: number, unit: WeightUnitsEnum } } | null }; + +export type OrderFullyPaidWebhookPayloadFragment = { __typename?: 'OrderFullyPaid', order?: { __typename: 'Order', id: string, token: string, userEmail?: string | null, created: any, original?: string | null, status: OrderStatus, languageCodeEnum: LanguageCodeEnum, origin: OrderOriginEnum, shippingMethodName?: string | null, collectionPointName?: string | null, shippingTaxRate: number, channel: { __typename: 'Channel', id: string, slug: string, currencyCode: string }, shippingMethod?: { __typename?: 'ShippingMethod', type?: ShippingMethodTypeEnum | null, id: string, name: string } | null, shippingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, billingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, discounts: Array<{ __typename?: 'OrderDiscount', id: string }>, lines: Array<{ __typename: 'OrderLine', id: string, productVariantId?: string | null, productName: string, variantName: string, translatedProductName: string, translatedVariantName: string, productSku?: string | null, quantity: number, unitDiscountValue: any, unitDiscountType?: DiscountValueTypeEnum | null, unitDiscountReason?: string | null, taxRate: number, totalPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, allocations?: Array<{ __typename?: 'Allocation', quantity: number, warehouse: { __typename?: 'Warehouse', id: string } }> | null, unitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedUnitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } } }>, fulfillments: Array<{ __typename?: 'Fulfillment', id: string }>, payments: Array<{ __typename: 'Payment', id: string, created: any, modified: any, gateway: string, isActive: boolean, chargeStatus: PaymentChargeStatusEnum, paymentMethodType: string, total?: { __typename?: 'Money', amount: number } | null, capturedAmount?: { __typename?: 'Money', amount: number, currency: string } | null, creditCard?: { __typename?: 'CreditCard', brand: string } | null }>, privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, metadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, shippingPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, total: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedTotal: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, weight: { __typename?: 'Weight', value: number, unit: WeightUnitsEnum } } | null }; + +export type UpdateAppMetadataMutationVariables = Exact<{ + id: Scalars['ID']; + input: Array | MetadataInput; +}>; + + +export type UpdateAppMetadataMutation = { __typename?: 'Mutation', updatePrivateMetadata?: { __typename?: 'UpdatePrivateMetadata', item?: { __typename?: 'Address', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'App', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'Attribute', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'Category', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'Checkout', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'CheckoutLine', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'Collection', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'DigitalContent', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'Fulfillment', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'GiftCard', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'Invoice', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'Menu', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'MenuItem', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'Order', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'OrderLine', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'Page', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'PageType', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'Payment', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'Product', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'ProductType', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'ProductVariant', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'Sale', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'ShippingMethod', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'ShippingMethodType', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'ShippingZone', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'TaxClass', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'TaxConfiguration', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'TransactionItem', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'User', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'Voucher', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | { __typename?: 'Warehouse', privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | null } | null }; + +export type FetchAppDetailsQueryVariables = Exact<{ [key: string]: never; }>; + + +export type FetchAppDetailsQuery = { __typename?: 'Query', app?: { __typename?: 'App', id: string, privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | null }; + +export type CustomerCreatedSubscriptionVariables = Exact<{ [key: string]: never; }>; + + +export type CustomerCreatedSubscription = { __typename?: 'Subscription', event?: { __typename?: 'AddressCreated' } | { __typename?: 'AddressDeleted' } | { __typename?: 'AddressUpdated' } | { __typename?: 'AppDeleted' } | { __typename?: 'AppInstalled' } | { __typename?: 'AppStatusChanged' } | { __typename?: 'AppUpdated' } | { __typename?: 'AttributeCreated' } | { __typename?: 'AttributeDeleted' } | { __typename?: 'AttributeUpdated' } | { __typename?: 'AttributeValueCreated' } | { __typename?: 'AttributeValueDeleted' } | { __typename?: 'AttributeValueUpdated' } | { __typename?: 'CalculateTaxes' } | { __typename?: 'CategoryCreated' } | { __typename?: 'CategoryDeleted' } | { __typename?: 'CategoryUpdated' } | { __typename?: 'ChannelCreated' } | { __typename?: 'ChannelDeleted' } | { __typename?: 'ChannelStatusChanged' } | { __typename?: 'ChannelUpdated' } | { __typename?: 'CheckoutCreated' } | { __typename?: 'CheckoutFilterShippingMethods' } | { __typename?: 'CheckoutMetadataUpdated' } | { __typename?: 'CheckoutUpdated' } | { __typename?: 'CollectionCreated' } | { __typename?: 'CollectionDeleted' } | { __typename?: 'CollectionMetadataUpdated' } | { __typename?: 'CollectionUpdated' } | { __typename?: 'CustomerCreated', user?: { __typename: 'User', id: string, email: string, firstName: string, lastName: string, isActive: boolean, dateJoined: any, languageCode: LanguageCodeEnum, defaultShippingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, defaultBillingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, addresses: Array<{ __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } }>, privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, metadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }> } | null } | { __typename?: 'CustomerMetadataUpdated' } | { __typename?: 'CustomerUpdated' } | { __typename?: 'DraftOrderCreated' } | { __typename?: 'DraftOrderDeleted' } | { __typename?: 'DraftOrderUpdated' } | { __typename?: 'FulfillmentApproved' } | { __typename?: 'FulfillmentCanceled' } | { __typename?: 'FulfillmentCreated' } | { __typename?: 'FulfillmentMetadataUpdated' } | { __typename?: 'GiftCardCreated' } | { __typename?: 'GiftCardDeleted' } | { __typename?: 'GiftCardMetadataUpdated' } | { __typename?: 'GiftCardStatusChanged' } | { __typename?: 'GiftCardUpdated' } | { __typename?: 'InvoiceDeleted' } | { __typename?: 'InvoiceRequested' } | { __typename?: 'InvoiceSent' } | { __typename?: 'MenuCreated' } | { __typename?: 'MenuDeleted' } | { __typename?: 'MenuItemCreated' } | { __typename?: 'MenuItemDeleted' } | { __typename?: 'MenuItemUpdated' } | { __typename?: 'MenuUpdated' } | { __typename?: 'OrderCancelled' } | { __typename?: 'OrderConfirmed' } | { __typename?: 'OrderCreated' } | { __typename?: 'OrderFilterShippingMethods' } | { __typename?: 'OrderFulfilled' } | { __typename?: 'OrderFullyPaid' } | { __typename?: 'OrderMetadataUpdated' } | { __typename?: 'OrderUpdated' } | { __typename?: 'PageCreated' } | { __typename?: 'PageDeleted' } | { __typename?: 'PageTypeCreated' } | { __typename?: 'PageTypeDeleted' } | { __typename?: 'PageTypeUpdated' } | { __typename?: 'PageUpdated' } | { __typename?: 'PaymentAuthorize' } | { __typename?: 'PaymentCaptureEvent' } | { __typename?: 'PaymentConfirmEvent' } | { __typename?: 'PaymentListGateways' } | { __typename?: 'PaymentProcessEvent' } | { __typename?: 'PaymentRefundEvent' } | { __typename?: 'PaymentVoidEvent' } | { __typename?: 'PermissionGroupCreated' } | { __typename?: 'PermissionGroupDeleted' } | { __typename?: 'PermissionGroupUpdated' } | { __typename?: 'ProductCreated' } | { __typename?: 'ProductDeleted' } | { __typename?: 'ProductMetadataUpdated' } | { __typename?: 'ProductUpdated' } | { __typename?: 'ProductVariantBackInStock' } | { __typename?: 'ProductVariantCreated' } | { __typename?: 'ProductVariantDeleted' } | { __typename?: 'ProductVariantMetadataUpdated' } | { __typename?: 'ProductVariantOutOfStock' } | { __typename?: 'ProductVariantUpdated' } | { __typename?: 'SaleCreated' } | { __typename?: 'SaleDeleted' } | { __typename?: 'SaleToggle' } | { __typename?: 'SaleUpdated' } | { __typename?: 'ShippingListMethodsForCheckout' } | { __typename?: 'ShippingPriceCreated' } | { __typename?: 'ShippingPriceDeleted' } | { __typename?: 'ShippingPriceUpdated' } | { __typename?: 'ShippingZoneCreated' } | { __typename?: 'ShippingZoneDeleted' } | { __typename?: 'ShippingZoneMetadataUpdated' } | { __typename?: 'ShippingZoneUpdated' } | { __typename?: 'StaffCreated' } | { __typename?: 'StaffDeleted' } | { __typename?: 'StaffUpdated' } | { __typename?: 'TransactionActionRequest' } | { __typename?: 'TransactionItemMetadataUpdated' } | { __typename?: 'TranslationCreated' } | { __typename?: 'TranslationUpdated' } | { __typename?: 'VoucherCreated' } | { __typename?: 'VoucherDeleted' } | { __typename?: 'VoucherMetadataUpdated' } | { __typename?: 'VoucherUpdated' } | { __typename?: 'WarehouseCreated' } | { __typename?: 'WarehouseDeleted' } | { __typename?: 'WarehouseMetadataUpdated' } | { __typename?: 'WarehouseUpdated' } | null }; + +export type FulfillmentCreatedSubscriptionVariables = Exact<{ [key: string]: never; }>; + + +export type FulfillmentCreatedSubscription = { __typename?: 'Subscription', event?: { __typename?: 'AddressCreated' } | { __typename?: 'AddressDeleted' } | { __typename?: 'AddressUpdated' } | { __typename?: 'AppDeleted' } | { __typename?: 'AppInstalled' } | { __typename?: 'AppStatusChanged' } | { __typename?: 'AppUpdated' } | { __typename?: 'AttributeCreated' } | { __typename?: 'AttributeDeleted' } | { __typename?: 'AttributeUpdated' } | { __typename?: 'AttributeValueCreated' } | { __typename?: 'AttributeValueDeleted' } | { __typename?: 'AttributeValueUpdated' } | { __typename?: 'CalculateTaxes' } | { __typename?: 'CategoryCreated' } | { __typename?: 'CategoryDeleted' } | { __typename?: 'CategoryUpdated' } | { __typename?: 'ChannelCreated' } | { __typename?: 'ChannelDeleted' } | { __typename?: 'ChannelStatusChanged' } | { __typename?: 'ChannelUpdated' } | { __typename?: 'CheckoutCreated' } | { __typename?: 'CheckoutFilterShippingMethods' } | { __typename?: 'CheckoutMetadataUpdated' } | { __typename?: 'CheckoutUpdated' } | { __typename?: 'CollectionCreated' } | { __typename?: 'CollectionDeleted' } | { __typename?: 'CollectionMetadataUpdated' } | { __typename?: 'CollectionUpdated' } | { __typename?: 'CustomerCreated' } | { __typename?: 'CustomerMetadataUpdated' } | { __typename?: 'CustomerUpdated' } | { __typename?: 'DraftOrderCreated' } | { __typename?: 'DraftOrderDeleted' } | { __typename?: 'DraftOrderUpdated' } | { __typename?: 'FulfillmentApproved' } | { __typename?: 'FulfillmentCanceled' } | { __typename?: 'FulfillmentCreated', fulfillment?: { __typename: 'Fulfillment', id: string, warehouse?: { __typename?: 'Warehouse', address: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } } | null, lines?: Array<{ __typename: 'FulfillmentLine', id: string, quantity: number, orderLine?: { __typename?: 'OrderLine', productName: string, variantName: string, productSku?: string | null, productVariantId?: string | null, unitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedUnitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, totalPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } } } | null }> | null } | null, order?: { __typename: 'Order', id: string, token: string, userEmail?: string | null, created: any, original?: string | null, status: OrderStatus, languageCodeEnum: LanguageCodeEnum, origin: OrderOriginEnum, shippingMethodName?: string | null, collectionPointName?: string | null, shippingTaxRate: number, channel: { __typename: 'Channel', id: string, slug: string, currencyCode: string }, shippingMethod?: { __typename?: 'ShippingMethod', type?: ShippingMethodTypeEnum | null, id: string, name: string } | null, shippingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, billingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, discounts: Array<{ __typename?: 'OrderDiscount', id: string }>, lines: Array<{ __typename: 'OrderLine', id: string, productVariantId?: string | null, productName: string, variantName: string, translatedProductName: string, translatedVariantName: string, productSku?: string | null, quantity: number, unitDiscountValue: any, unitDiscountType?: DiscountValueTypeEnum | null, unitDiscountReason?: string | null, taxRate: number, totalPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, allocations?: Array<{ __typename?: 'Allocation', quantity: number, warehouse: { __typename?: 'Warehouse', id: string } }> | null, unitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedUnitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } } }>, fulfillments: Array<{ __typename?: 'Fulfillment', id: string }>, payments: Array<{ __typename: 'Payment', id: string, created: any, modified: any, gateway: string, isActive: boolean, chargeStatus: PaymentChargeStatusEnum, paymentMethodType: string, total?: { __typename?: 'Money', amount: number } | null, capturedAmount?: { __typename?: 'Money', amount: number, currency: string } | null, creditCard?: { __typename?: 'CreditCard', brand: string } | null }>, privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, metadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, shippingPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, total: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedTotal: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, weight: { __typename?: 'Weight', value: number, unit: WeightUnitsEnum } } | null } | { __typename?: 'FulfillmentMetadataUpdated' } | { __typename?: 'GiftCardCreated' } | { __typename?: 'GiftCardDeleted' } | { __typename?: 'GiftCardMetadataUpdated' } | { __typename?: 'GiftCardStatusChanged' } | { __typename?: 'GiftCardUpdated' } | { __typename?: 'InvoiceDeleted' } | { __typename?: 'InvoiceRequested' } | { __typename?: 'InvoiceSent' } | { __typename?: 'MenuCreated' } | { __typename?: 'MenuDeleted' } | { __typename?: 'MenuItemCreated' } | { __typename?: 'MenuItemDeleted' } | { __typename?: 'MenuItemUpdated' } | { __typename?: 'MenuUpdated' } | { __typename?: 'OrderCancelled' } | { __typename?: 'OrderConfirmed' } | { __typename?: 'OrderCreated' } | { __typename?: 'OrderFilterShippingMethods' } | { __typename?: 'OrderFulfilled' } | { __typename?: 'OrderFullyPaid' } | { __typename?: 'OrderMetadataUpdated' } | { __typename?: 'OrderUpdated' } | { __typename?: 'PageCreated' } | { __typename?: 'PageDeleted' } | { __typename?: 'PageTypeCreated' } | { __typename?: 'PageTypeDeleted' } | { __typename?: 'PageTypeUpdated' } | { __typename?: 'PageUpdated' } | { __typename?: 'PaymentAuthorize' } | { __typename?: 'PaymentCaptureEvent' } | { __typename?: 'PaymentConfirmEvent' } | { __typename?: 'PaymentListGateways' } | { __typename?: 'PaymentProcessEvent' } | { __typename?: 'PaymentRefundEvent' } | { __typename?: 'PaymentVoidEvent' } | { __typename?: 'PermissionGroupCreated' } | { __typename?: 'PermissionGroupDeleted' } | { __typename?: 'PermissionGroupUpdated' } | { __typename?: 'ProductCreated' } | { __typename?: 'ProductDeleted' } | { __typename?: 'ProductMetadataUpdated' } | { __typename?: 'ProductUpdated' } | { __typename?: 'ProductVariantBackInStock' } | { __typename?: 'ProductVariantCreated' } | { __typename?: 'ProductVariantDeleted' } | { __typename?: 'ProductVariantMetadataUpdated' } | { __typename?: 'ProductVariantOutOfStock' } | { __typename?: 'ProductVariantUpdated' } | { __typename?: 'SaleCreated' } | { __typename?: 'SaleDeleted' } | { __typename?: 'SaleToggle' } | { __typename?: 'SaleUpdated' } | { __typename?: 'ShippingListMethodsForCheckout' } | { __typename?: 'ShippingPriceCreated' } | { __typename?: 'ShippingPriceDeleted' } | { __typename?: 'ShippingPriceUpdated' } | { __typename?: 'ShippingZoneCreated' } | { __typename?: 'ShippingZoneDeleted' } | { __typename?: 'ShippingZoneMetadataUpdated' } | { __typename?: 'ShippingZoneUpdated' } | { __typename?: 'StaffCreated' } | { __typename?: 'StaffDeleted' } | { __typename?: 'StaffUpdated' } | { __typename?: 'TransactionActionRequest' } | { __typename?: 'TransactionItemMetadataUpdated' } | { __typename?: 'TranslationCreated' } | { __typename?: 'TranslationUpdated' } | { __typename?: 'VoucherCreated' } | { __typename?: 'VoucherDeleted' } | { __typename?: 'VoucherMetadataUpdated' } | { __typename?: 'VoucherUpdated' } | { __typename?: 'WarehouseCreated' } | { __typename?: 'WarehouseDeleted' } | { __typename?: 'WarehouseMetadataUpdated' } | { __typename?: 'WarehouseUpdated' } | null }; + +export type OrderCreatedSubscriptionVariables = Exact<{ [key: string]: never; }>; + + +export type OrderCreatedSubscription = { __typename?: 'Subscription', event?: { __typename?: 'AddressCreated' } | { __typename?: 'AddressDeleted' } | { __typename?: 'AddressUpdated' } | { __typename?: 'AppDeleted' } | { __typename?: 'AppInstalled' } | { __typename?: 'AppStatusChanged' } | { __typename?: 'AppUpdated' } | { __typename?: 'AttributeCreated' } | { __typename?: 'AttributeDeleted' } | { __typename?: 'AttributeUpdated' } | { __typename?: 'AttributeValueCreated' } | { __typename?: 'AttributeValueDeleted' } | { __typename?: 'AttributeValueUpdated' } | { __typename?: 'CalculateTaxes' } | { __typename?: 'CategoryCreated' } | { __typename?: 'CategoryDeleted' } | { __typename?: 'CategoryUpdated' } | { __typename?: 'ChannelCreated' } | { __typename?: 'ChannelDeleted' } | { __typename?: 'ChannelStatusChanged' } | { __typename?: 'ChannelUpdated' } | { __typename?: 'CheckoutCreated' } | { __typename?: 'CheckoutFilterShippingMethods' } | { __typename?: 'CheckoutMetadataUpdated' } | { __typename?: 'CheckoutUpdated' } | { __typename?: 'CollectionCreated' } | { __typename?: 'CollectionDeleted' } | { __typename?: 'CollectionMetadataUpdated' } | { __typename?: 'CollectionUpdated' } | { __typename?: 'CustomerCreated' } | { __typename?: 'CustomerMetadataUpdated' } | { __typename?: 'CustomerUpdated' } | { __typename?: 'DraftOrderCreated' } | { __typename?: 'DraftOrderDeleted' } | { __typename?: 'DraftOrderUpdated' } | { __typename?: 'FulfillmentApproved' } | { __typename?: 'FulfillmentCanceled' } | { __typename?: 'FulfillmentCreated' } | { __typename?: 'FulfillmentMetadataUpdated' } | { __typename?: 'GiftCardCreated' } | { __typename?: 'GiftCardDeleted' } | { __typename?: 'GiftCardMetadataUpdated' } | { __typename?: 'GiftCardStatusChanged' } | { __typename?: 'GiftCardUpdated' } | { __typename?: 'InvoiceDeleted' } | { __typename?: 'InvoiceRequested' } | { __typename?: 'InvoiceSent' } | { __typename?: 'MenuCreated' } | { __typename?: 'MenuDeleted' } | { __typename?: 'MenuItemCreated' } | { __typename?: 'MenuItemDeleted' } | { __typename?: 'MenuItemUpdated' } | { __typename?: 'MenuUpdated' } | { __typename?: 'OrderCancelled' } | { __typename?: 'OrderConfirmed' } | { __typename?: 'OrderCreated', order?: { __typename: 'Order', id: string, token: string, userEmail?: string | null, created: any, original?: string | null, status: OrderStatus, languageCodeEnum: LanguageCodeEnum, origin: OrderOriginEnum, shippingMethodName?: string | null, collectionPointName?: string | null, shippingTaxRate: number, channel: { __typename: 'Channel', id: string, slug: string, currencyCode: string }, shippingMethod?: { __typename?: 'ShippingMethod', type?: ShippingMethodTypeEnum | null, id: string, name: string } | null, shippingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, billingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, discounts: Array<{ __typename?: 'OrderDiscount', id: string }>, lines: Array<{ __typename: 'OrderLine', id: string, productVariantId?: string | null, productName: string, variantName: string, translatedProductName: string, translatedVariantName: string, productSku?: string | null, quantity: number, unitDiscountValue: any, unitDiscountType?: DiscountValueTypeEnum | null, unitDiscountReason?: string | null, taxRate: number, totalPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, allocations?: Array<{ __typename?: 'Allocation', quantity: number, warehouse: { __typename?: 'Warehouse', id: string } }> | null, unitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedUnitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } } }>, fulfillments: Array<{ __typename?: 'Fulfillment', id: string }>, payments: Array<{ __typename: 'Payment', id: string, created: any, modified: any, gateway: string, isActive: boolean, chargeStatus: PaymentChargeStatusEnum, paymentMethodType: string, total?: { __typename?: 'Money', amount: number } | null, capturedAmount?: { __typename?: 'Money', amount: number, currency: string } | null, creditCard?: { __typename?: 'CreditCard', brand: string } | null }>, privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, metadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, shippingPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, total: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedTotal: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, weight: { __typename?: 'Weight', value: number, unit: WeightUnitsEnum } } | null } | { __typename?: 'OrderFilterShippingMethods' } | { __typename?: 'OrderFulfilled' } | { __typename?: 'OrderFullyPaid' } | { __typename?: 'OrderMetadataUpdated' } | { __typename?: 'OrderUpdated' } | { __typename?: 'PageCreated' } | { __typename?: 'PageDeleted' } | { __typename?: 'PageTypeCreated' } | { __typename?: 'PageTypeDeleted' } | { __typename?: 'PageTypeUpdated' } | { __typename?: 'PageUpdated' } | { __typename?: 'PaymentAuthorize' } | { __typename?: 'PaymentCaptureEvent' } | { __typename?: 'PaymentConfirmEvent' } | { __typename?: 'PaymentListGateways' } | { __typename?: 'PaymentProcessEvent' } | { __typename?: 'PaymentRefundEvent' } | { __typename?: 'PaymentVoidEvent' } | { __typename?: 'PermissionGroupCreated' } | { __typename?: 'PermissionGroupDeleted' } | { __typename?: 'PermissionGroupUpdated' } | { __typename?: 'ProductCreated' } | { __typename?: 'ProductDeleted' } | { __typename?: 'ProductMetadataUpdated' } | { __typename?: 'ProductUpdated' } | { __typename?: 'ProductVariantBackInStock' } | { __typename?: 'ProductVariantCreated' } | { __typename?: 'ProductVariantDeleted' } | { __typename?: 'ProductVariantMetadataUpdated' } | { __typename?: 'ProductVariantOutOfStock' } | { __typename?: 'ProductVariantUpdated' } | { __typename?: 'SaleCreated' } | { __typename?: 'SaleDeleted' } | { __typename?: 'SaleToggle' } | { __typename?: 'SaleUpdated' } | { __typename?: 'ShippingListMethodsForCheckout' } | { __typename?: 'ShippingPriceCreated' } | { __typename?: 'ShippingPriceDeleted' } | { __typename?: 'ShippingPriceUpdated' } | { __typename?: 'ShippingZoneCreated' } | { __typename?: 'ShippingZoneDeleted' } | { __typename?: 'ShippingZoneMetadataUpdated' } | { __typename?: 'ShippingZoneUpdated' } | { __typename?: 'StaffCreated' } | { __typename?: 'StaffDeleted' } | { __typename?: 'StaffUpdated' } | { __typename?: 'TransactionActionRequest' } | { __typename?: 'TransactionItemMetadataUpdated' } | { __typename?: 'TranslationCreated' } | { __typename?: 'TranslationUpdated' } | { __typename?: 'VoucherCreated' } | { __typename?: 'VoucherDeleted' } | { __typename?: 'VoucherMetadataUpdated' } | { __typename?: 'VoucherUpdated' } | { __typename?: 'WarehouseCreated' } | { __typename?: 'WarehouseDeleted' } | { __typename?: 'WarehouseMetadataUpdated' } | { __typename?: 'WarehouseUpdated' } | null }; + +export type OrderFullyPaidSubscriptionVariables = Exact<{ [key: string]: never; }>; + + +export type OrderFullyPaidSubscription = { __typename?: 'Subscription', event?: { __typename?: 'AddressCreated' } | { __typename?: 'AddressDeleted' } | { __typename?: 'AddressUpdated' } | { __typename?: 'AppDeleted' } | { __typename?: 'AppInstalled' } | { __typename?: 'AppStatusChanged' } | { __typename?: 'AppUpdated' } | { __typename?: 'AttributeCreated' } | { __typename?: 'AttributeDeleted' } | { __typename?: 'AttributeUpdated' } | { __typename?: 'AttributeValueCreated' } | { __typename?: 'AttributeValueDeleted' } | { __typename?: 'AttributeValueUpdated' } | { __typename?: 'CalculateTaxes' } | { __typename?: 'CategoryCreated' } | { __typename?: 'CategoryDeleted' } | { __typename?: 'CategoryUpdated' } | { __typename?: 'ChannelCreated' } | { __typename?: 'ChannelDeleted' } | { __typename?: 'ChannelStatusChanged' } | { __typename?: 'ChannelUpdated' } | { __typename?: 'CheckoutCreated' } | { __typename?: 'CheckoutFilterShippingMethods' } | { __typename?: 'CheckoutMetadataUpdated' } | { __typename?: 'CheckoutUpdated' } | { __typename?: 'CollectionCreated' } | { __typename?: 'CollectionDeleted' } | { __typename?: 'CollectionMetadataUpdated' } | { __typename?: 'CollectionUpdated' } | { __typename?: 'CustomerCreated' } | { __typename?: 'CustomerMetadataUpdated' } | { __typename?: 'CustomerUpdated' } | { __typename?: 'DraftOrderCreated' } | { __typename?: 'DraftOrderDeleted' } | { __typename?: 'DraftOrderUpdated' } | { __typename?: 'FulfillmentApproved' } | { __typename?: 'FulfillmentCanceled' } | { __typename?: 'FulfillmentCreated' } | { __typename?: 'FulfillmentMetadataUpdated' } | { __typename?: 'GiftCardCreated' } | { __typename?: 'GiftCardDeleted' } | { __typename?: 'GiftCardMetadataUpdated' } | { __typename?: 'GiftCardStatusChanged' } | { __typename?: 'GiftCardUpdated' } | { __typename?: 'InvoiceDeleted' } | { __typename?: 'InvoiceRequested' } | { __typename?: 'InvoiceSent' } | { __typename?: 'MenuCreated' } | { __typename?: 'MenuDeleted' } | { __typename?: 'MenuItemCreated' } | { __typename?: 'MenuItemDeleted' } | { __typename?: 'MenuItemUpdated' } | { __typename?: 'MenuUpdated' } | { __typename?: 'OrderCancelled' } | { __typename?: 'OrderConfirmed' } | { __typename?: 'OrderCreated' } | { __typename?: 'OrderFilterShippingMethods' } | { __typename?: 'OrderFulfilled' } | { __typename?: 'OrderFullyPaid', order?: { __typename: 'Order', id: string, token: string, userEmail?: string | null, created: any, original?: string | null, status: OrderStatus, languageCodeEnum: LanguageCodeEnum, origin: OrderOriginEnum, shippingMethodName?: string | null, collectionPointName?: string | null, shippingTaxRate: number, channel: { __typename: 'Channel', id: string, slug: string, currencyCode: string }, shippingMethod?: { __typename?: 'ShippingMethod', type?: ShippingMethodTypeEnum | null, id: string, name: string } | null, shippingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, billingAddress?: { __typename: 'Address', id: string, firstName: string, lastName: string, companyName: string, streetAddress1: string, streetAddress2: string, city: string, cityArea: string, postalCode: string, countryArea: string, phone?: string | null, country: { __typename?: 'CountryDisplay', code: string } } | null, discounts: Array<{ __typename?: 'OrderDiscount', id: string }>, lines: Array<{ __typename: 'OrderLine', id: string, productVariantId?: string | null, productName: string, variantName: string, translatedProductName: string, translatedVariantName: string, productSku?: string | null, quantity: number, unitDiscountValue: any, unitDiscountType?: DiscountValueTypeEnum | null, unitDiscountReason?: string | null, taxRate: number, totalPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, allocations?: Array<{ __typename?: 'Allocation', quantity: number, warehouse: { __typename?: 'Warehouse', id: string } }> | null, unitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedUnitPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } } }>, fulfillments: Array<{ __typename?: 'Fulfillment', id: string }>, payments: Array<{ __typename: 'Payment', id: string, created: any, modified: any, gateway: string, isActive: boolean, chargeStatus: PaymentChargeStatusEnum, paymentMethodType: string, total?: { __typename?: 'Money', amount: number } | null, capturedAmount?: { __typename?: 'Money', amount: number, currency: string } | null, creditCard?: { __typename?: 'CreditCard', brand: string } | null }>, privateMetadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, metadata: Array<{ __typename?: 'MetadataItem', key: string, value: string }>, shippingPrice: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, total: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, undiscountedTotal: { __typename?: 'TaxedMoney', currency: string, net: { __typename?: 'Money', amount: number, currency: string }, gross: { __typename?: 'Money', amount: number, currency: string } }, weight: { __typename?: 'Weight', value: number, unit: WeightUnitsEnum } } | null } | { __typename?: 'OrderMetadataUpdated' } | { __typename?: 'OrderUpdated' } | { __typename?: 'PageCreated' } | { __typename?: 'PageDeleted' } | { __typename?: 'PageTypeCreated' } | { __typename?: 'PageTypeDeleted' } | { __typename?: 'PageTypeUpdated' } | { __typename?: 'PageUpdated' } | { __typename?: 'PaymentAuthorize' } | { __typename?: 'PaymentCaptureEvent' } | { __typename?: 'PaymentConfirmEvent' } | { __typename?: 'PaymentListGateways' } | { __typename?: 'PaymentProcessEvent' } | { __typename?: 'PaymentRefundEvent' } | { __typename?: 'PaymentVoidEvent' } | { __typename?: 'PermissionGroupCreated' } | { __typename?: 'PermissionGroupDeleted' } | { __typename?: 'PermissionGroupUpdated' } | { __typename?: 'ProductCreated' } | { __typename?: 'ProductDeleted' } | { __typename?: 'ProductMetadataUpdated' } | { __typename?: 'ProductUpdated' } | { __typename?: 'ProductVariantBackInStock' } | { __typename?: 'ProductVariantCreated' } | { __typename?: 'ProductVariantDeleted' } | { __typename?: 'ProductVariantMetadataUpdated' } | { __typename?: 'ProductVariantOutOfStock' } | { __typename?: 'ProductVariantUpdated' } | { __typename?: 'SaleCreated' } | { __typename?: 'SaleDeleted' } | { __typename?: 'SaleToggle' } | { __typename?: 'SaleUpdated' } | { __typename?: 'ShippingListMethodsForCheckout' } | { __typename?: 'ShippingPriceCreated' } | { __typename?: 'ShippingPriceDeleted' } | { __typename?: 'ShippingPriceUpdated' } | { __typename?: 'ShippingZoneCreated' } | { __typename?: 'ShippingZoneDeleted' } | { __typename?: 'ShippingZoneMetadataUpdated' } | { __typename?: 'ShippingZoneUpdated' } | { __typename?: 'StaffCreated' } | { __typename?: 'StaffDeleted' } | { __typename?: 'StaffUpdated' } | { __typename?: 'TransactionActionRequest' } | { __typename?: 'TransactionItemMetadataUpdated' } | { __typename?: 'TranslationCreated' } | { __typename?: 'TranslationUpdated' } | { __typename?: 'VoucherCreated' } | { __typename?: 'VoucherDeleted' } | { __typename?: 'VoucherMetadataUpdated' } | { __typename?: 'VoucherUpdated' } | { __typename?: 'WarehouseCreated' } | { __typename?: 'WarehouseDeleted' } | { __typename?: 'WarehouseMetadataUpdated' } | { __typename?: 'WarehouseUpdated' } | null }; + +import { IntrospectionQuery } from 'graphql'; +export default { + "__schema": { + "queryType": { + "name": "Query" + }, + "mutationType": { + "name": "Mutation" + }, + "subscriptionType": { + "name": "Subscription" + }, + "types": [ + { + "kind": "OBJECT", + "name": "AccountAddressCreate", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AccountAddressDelete", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AccountAddressUpdate", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AccountDelete", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AccountError", + "fields": [ + { + "name": "addressType", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AccountRegister", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "requiresConfirmation", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AccountRequestDeletion", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AccountSetDefaultAddress", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AccountUpdate", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Address", + "fields": [ + { + "name": "city", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "cityArea", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "companyName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CountryDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "countryArea", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "firstName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isDefaultBillingAddress", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "isDefaultShippingAddress", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "lastName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "phone", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "postalCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "streetAddress1", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "streetAddress2", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddressCreate", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AddressCreated", + "fields": [ + { + "name": "address", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddressDelete", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AddressDeleted", + "fields": [ + { + "name": "address", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddressSetDefault", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AddressUpdate", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AddressUpdated", + "fields": [ + { + "name": "address", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddressValidationData", + "fields": [ + { + "name": "addressFormat", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "addressLatinFormat", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "allowedFields", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + }, + { + "name": "cityAreaChoices", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ChoiceValue", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "cityAreaType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "cityChoices", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ChoiceValue", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "cityType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "countryAreaChoices", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ChoiceValue", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "countryAreaType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "countryCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "countryName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "postalCodeExamples", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + }, + { + "name": "postalCodeMatchers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + }, + { + "name": "postalCodePrefix", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "postalCodeType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "requiredFields", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + }, + { + "name": "upperFields", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Allocation", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "quantity", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "App", + "fields": [ + { + "name": "aboutApp", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "accessToken", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "appUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "configurationUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "created", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "dataPrivacy", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "dataPrivacyUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "extensions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppExtension", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "homepageUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isActive", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "manifestUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "permissions", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Permission", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "supportUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "tokens", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppToken", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "webhooks", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "AppActivate", + "fields": [ + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "appErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "App", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppCreate", + "fields": [ + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "appErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "authToken", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppDeactivate", + "fields": [ + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "appErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppDelete", + "fields": [ + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "appErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppDeleteFailedInstallation", + "fields": [ + { + "name": "appErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "appInstallation", + "type": { + "kind": "OBJECT", + "name": "AppInstallation", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppDeleted", + "fields": [ + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "AppError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "permissions", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppExtension", + "fields": [ + { + "name": "accessToken", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "app", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "App", + "ofType": null + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "label", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "mount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "permissions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Permission", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "target", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "url", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "AppExtensionCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppExtensionCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppExtensionCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppExtension", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppFetchManifest", + "fields": [ + { + "name": "appErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "manifest", + "type": { + "kind": "OBJECT", + "name": "Manifest", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppInstall", + "fields": [ + { + "name": "appErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "appInstallation", + "type": { + "kind": "OBJECT", + "name": "AppInstallation", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppInstallation", + "fields": [ + { + "name": "appName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "manifestUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Job" + }, + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "AppInstalled", + "fields": [ + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "AppManifestExtension", + "fields": [ + { + "name": "label", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "mount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "permissions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Permission", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "target", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "url", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppManifestWebhook", + "fields": [ + { + "name": "asyncEvents", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "query", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "syncEvents", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "targetUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppRetryInstall", + "fields": [ + { + "name": "appErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "appInstallation", + "type": { + "kind": "OBJECT", + "name": "AppInstallation", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppStatusChanged", + "fields": [ + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "AppToken", + "fields": [ + { + "name": "authToken", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "AppTokenCreate", + "fields": [ + { + "name": "appErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "appToken", + "type": { + "kind": "OBJECT", + "name": "AppToken", + "ofType": null + }, + "args": [] + }, + { + "name": "authToken", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppTokenDelete", + "fields": [ + { + "name": "appErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "appToken", + "type": { + "kind": "OBJECT", + "name": "AppToken", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppTokenVerify", + "fields": [ + { + "name": "appErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "valid", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppUpdate", + "fields": [ + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "appErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AppUpdated", + "fields": [ + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "AssignNavigation", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "menu", + "type": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + }, + "args": [] + }, + { + "name": "menuErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AssignedVariantAttribute", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + } + }, + "args": [] + }, + { + "name": "variantSelection", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Attribute", + "fields": [ + { + "name": "availableInGrid", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "choices", + "type": { + "kind": "OBJECT", + "name": "AttributeValueCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "entityType", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "filterableInDashboard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "filterableInStorefront", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "inputType", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "productTypes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductTypeCountableConnection", + "ofType": null + } + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "productVariantTypes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductTypeCountableConnection", + "ofType": null + } + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "slug", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "storefrontSearchPosition", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "AttributeTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "valueRequired", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "visibleInStorefront", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "withChoices", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "AttributeBulkDelete", + "fields": [ + { + "name": "attributeErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeCreate", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + }, + "args": [] + }, + { + "name": "attributeErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeCreated", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "AttributeDelete", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + }, + "args": [] + }, + { + "name": "attributeErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeDeleted", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "AttributeError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeReorderValues", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + }, + "args": [] + }, + { + "name": "attributeErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeTranslatableContent", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "AttributeTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "AttributeTranslate", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "translationErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeTranslation", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LanguageDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "AttributeUpdate", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + }, + "args": [] + }, + { + "name": "attributeErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeUpdated", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "AttributeValue", + "fields": [ + { + "name": "boolean", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "date", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "dateTime", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "file", + "type": { + "kind": "OBJECT", + "name": "File", + "ofType": null + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "inputType", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "plainText", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "reference", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "richText", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "slug", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "AttributeValueTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "value", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "AttributeValueBulkDelete", + "fields": [ + { + "name": "attributeErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeValueCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeValueCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeValueCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeValue", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeValueCreate", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + }, + "args": [] + }, + { + "name": "attributeErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "attributeValue", + "type": { + "kind": "OBJECT", + "name": "AttributeValue", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeValueCreated", + "fields": [ + { + "name": "attributeValue", + "type": { + "kind": "OBJECT", + "name": "AttributeValue", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "AttributeValueDelete", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + }, + "args": [] + }, + { + "name": "attributeErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "attributeValue", + "type": { + "kind": "OBJECT", + "name": "AttributeValue", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeValueDeleted", + "fields": [ + { + "name": "attributeValue", + "type": { + "kind": "OBJECT", + "name": "AttributeValue", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "AttributeValueTranslatableContent", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "OBJECT", + "name": "AttributeTranslatableContent", + "ofType": null + }, + "args": [] + }, + { + "name": "attributeValue", + "type": { + "kind": "OBJECT", + "name": "AttributeValue", + "ofType": null + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "plainText", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "richText", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "AttributeValueTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "AttributeValueTranslate", + "fields": [ + { + "name": "attributeValue", + "type": { + "kind": "OBJECT", + "name": "AttributeValue", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "translationErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeValueTranslation", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LanguageDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "plainText", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "richText", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "AttributeValueUpdate", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + }, + "args": [] + }, + { + "name": "attributeErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "attributeValue", + "type": { + "kind": "OBJECT", + "name": "AttributeValue", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AttributeValueUpdated", + "fields": [ + { + "name": "attributeValue", + "type": { + "kind": "OBJECT", + "name": "AttributeValue", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "BulkProductError", + "fields": [ + { + "name": "attributes", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "channels", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "values", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "warehouses", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "BulkStockError", + "fields": [ + { + "name": "attributes", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "values", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CalculateTaxes", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "taxBase", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxableObject", + "ofType": null + } + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "Category", + "fields": [ + { + "name": "ancestors", + "type": { + "kind": "OBJECT", + "name": "CategoryCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "backgroundImage", + "type": { + "kind": "OBJECT", + "name": "Image", + "ofType": null + }, + "args": [ + { + "name": "format", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "size", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "children", + "type": { + "kind": "OBJECT", + "name": "CategoryCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "descriptionJson", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "level", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "parent", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "products", + "type": { + "kind": "OBJECT", + "name": "ProductCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "seoDescription", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoTitle", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "slug", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "CategoryTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "CategoryBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CategoryCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CategoryCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CategoryCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CategoryCreate", + "fields": [ + { + "name": "category", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CategoryCreated", + "fields": [ + { + "name": "category", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "CategoryDelete", + "fields": [ + { + "name": "category", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CategoryDeleted", + "fields": [ + { + "name": "category", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "CategoryTranslatableContent", + "fields": [ + { + "name": "category", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [] + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "descriptionJson", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "seoDescription", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoTitle", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "CategoryTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "CategoryTranslate", + "fields": [ + { + "name": "category", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "translationErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CategoryTranslation", + "fields": [ + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "descriptionJson", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LanguageDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoDescription", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoTitle", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "CategoryUpdate", + "fields": [ + { + "name": "category", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CategoryUpdated", + "fields": [ + { + "name": "category", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "Channel", + "fields": [ + { + "name": "availableShippingMethodsPerCountry", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethodsPerCountry", + "ofType": null + } + } + }, + "args": [ + { + "name": "countries", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "countries", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CountryDisplay", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "currencyCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "defaultCountry", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CountryDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "hasOrders", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isActive", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "slug", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "stockSettings", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StockSettings", + "ofType": null + } + }, + "args": [] + }, + { + "name": "warehouses", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "ChannelActivate", + "fields": [ + { + "name": "channel", + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + "args": [] + }, + { + "name": "channelErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ChannelError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ChannelError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ChannelCreate", + "fields": [ + { + "name": "channel", + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + "args": [] + }, + { + "name": "channelErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ChannelError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ChannelError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ChannelCreated", + "fields": [ + { + "name": "channel", + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ChannelDeactivate", + "fields": [ + { + "name": "channel", + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + "args": [] + }, + { + "name": "channelErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ChannelError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ChannelError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ChannelDelete", + "fields": [ + { + "name": "channel", + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + "args": [] + }, + { + "name": "channelErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ChannelError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ChannelError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ChannelDeleted", + "fields": [ + { + "name": "channel", + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ChannelError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "shippingZones", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "warehouses", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ChannelReorderWarehouses", + "fields": [ + { + "name": "channel", + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ChannelError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ChannelStatusChanged", + "fields": [ + { + "name": "channel", + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ChannelUpdate", + "fields": [ + { + "name": "channel", + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + "args": [] + }, + { + "name": "channelErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ChannelError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ChannelError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ChannelUpdated", + "fields": [ + { + "name": "channel", + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "Checkout", + "fields": [ + { + "name": "availableCollectionPoints", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "availablePaymentGateways", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentGateway", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "availableShippingMethods", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "billingAddress", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "channel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + } + }, + "args": [] + }, + { + "name": "created", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "deliveryMethod", + "type": { + "kind": "UNION", + "name": "DeliveryMethod", + "ofType": null + }, + "args": [] + }, + { + "name": "discount", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "discountName", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "displayGrossPrices", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "giftCards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isShippingRequired", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "lastChange", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "lines", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutLine", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "note", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "quantity", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "shippingAddress", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingMethod", + "type": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingMethods", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingPrice", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + } + }, + "args": [] + }, + { + "name": "stockReservationExpires", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "subtotalPrice", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + } + }, + "args": [] + }, + { + "name": "taxExemption", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "token", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "totalPrice", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + } + }, + "args": [] + }, + { + "name": "transactions", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TransactionItem", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "translatedDiscountName", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + }, + { + "name": "voucherCode", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "CheckoutAddPromoCode", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "checkoutErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutBillingAddressUpdate", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "checkoutErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutComplete", + "fields": [ + { + "name": "checkoutErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "confirmationData", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "confirmationNeeded", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutCreate", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "checkoutErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "created", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutCreated", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "CheckoutCustomerAttach", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "checkoutErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutCustomerDetach", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "checkoutErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutDeliveryMethodUpdate", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutEmailUpdate", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "checkoutErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutError", + "fields": [ + { + "name": "addressType", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "lines", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "variants", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutFilterShippingMethods", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingMethods", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "CheckoutLanguageCodeUpdate", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "checkoutErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutLine", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "quantity", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "requiresShipping", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "totalPrice", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + } + }, + "args": [] + }, + { + "name": "undiscountedTotalPrice", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "undiscountedUnitPrice", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "unitPrice", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + } + }, + "args": [] + }, + { + "name": "variant", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "CheckoutLineCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutLineCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutLineCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutLine", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutLineDelete", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "checkoutErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutLinesAdd", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "checkoutErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutLinesDelete", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutLinesUpdate", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "checkoutErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutMetadataUpdated", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "CheckoutPaymentCreate", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutRemovePromoCode", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "checkoutErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutShippingAddressUpdate", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "checkoutErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutShippingMethodUpdate", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "checkoutErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CheckoutError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CheckoutUpdated", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ChoiceValue", + "fields": [ + { + "name": "raw", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "verbose", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Collection", + "fields": [ + { + "name": "backgroundImage", + "type": { + "kind": "OBJECT", + "name": "Image", + "ofType": null + }, + "args": [ + { + "name": "format", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "size", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "channelListings", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionChannelListing", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "descriptionJson", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "products", + "type": { + "kind": "OBJECT", + "name": "ProductCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "seoDescription", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoTitle", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "slug", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "CollectionTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "CollectionAddProducts", + "fields": [ + { + "name": "collection", + "type": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + }, + "args": [] + }, + { + "name": "collectionErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CollectionBulkDelete", + "fields": [ + { + "name": "collectionErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CollectionChannelListing", + "fields": [ + { + "name": "channel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isPublished", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "publicationDate", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "publishedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "CollectionChannelListingError", + "fields": [ + { + "name": "attributes", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "channels", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "values", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CollectionChannelListingUpdate", + "fields": [ + { + "name": "collection", + "type": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + }, + "args": [] + }, + { + "name": "collectionChannelListingErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionChannelListingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionChannelListingError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CollectionCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CollectionCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CollectionCreate", + "fields": [ + { + "name": "collection", + "type": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + }, + "args": [] + }, + { + "name": "collectionErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CollectionCreated", + "fields": [ + { + "name": "collection", + "type": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "CollectionDelete", + "fields": [ + { + "name": "collection", + "type": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + }, + "args": [] + }, + { + "name": "collectionErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CollectionDeleted", + "fields": [ + { + "name": "collection", + "type": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "CollectionError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "products", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CollectionMetadataUpdated", + "fields": [ + { + "name": "collection", + "type": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "CollectionRemoveProducts", + "fields": [ + { + "name": "collection", + "type": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + }, + "args": [] + }, + { + "name": "collectionErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CollectionReorderProducts", + "fields": [ + { + "name": "collection", + "type": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + }, + "args": [] + }, + { + "name": "collectionErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CollectionTranslatableContent", + "fields": [ + { + "name": "collection", + "type": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + }, + "args": [] + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "descriptionJson", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "seoDescription", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoTitle", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "CollectionTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "CollectionTranslate", + "fields": [ + { + "name": "collection", + "type": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "translationErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CollectionTranslation", + "fields": [ + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "descriptionJson", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LanguageDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoDescription", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoTitle", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "CollectionUpdate", + "fields": [ + { + "name": "collection", + "type": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + }, + "args": [] + }, + { + "name": "collectionErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CollectionError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CollectionUpdated", + "fields": [ + { + "name": "collection", + "type": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ConfigurationItem", + "fields": [ + { + "name": "helpText", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "label", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "value", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ConfirmAccount", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ConfirmEmailChange", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CountryDisplay", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "vat", + "type": { + "kind": "OBJECT", + "name": "VAT", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CreateToken", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "csrfToken", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "refreshToken", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CreditCard", + "fields": [ + { + "name": "brand", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "expMonth", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "expYear", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "firstDigits", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "lastDigits", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CustomerBulkDelete", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CustomerCreate", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CustomerCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "CustomerDelete", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CustomerEvent", + "fields": [ + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "count", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "date", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderLine", + "type": { + "kind": "OBJECT", + "name": "OrderLine", + "ofType": null + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "CustomerMetadataUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "CustomerUpdate", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CustomerUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "DeactivateAllUserTokens", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DeleteMetadata", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "item", + "type": { + "kind": "INTERFACE", + "name": "ObjectWithMetadata", + "ofType": null + }, + "args": [] + }, + { + "name": "metadataErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DeletePrivateMetadata", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "item", + "type": { + "kind": "INTERFACE", + "name": "ObjectWithMetadata", + "ofType": null + }, + "args": [] + }, + { + "name": "metadataErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "UNION", + "name": "DeliveryMethod", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ShippingMethod" + }, + { + "kind": "OBJECT", + "name": "Warehouse" + } + ] + }, + { + "kind": "OBJECT", + "name": "DigitalContent", + "fields": [ + { + "name": "automaticFulfillment", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "contentFile", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "maxDownloads", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "productVariant", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + } + }, + "args": [] + }, + { + "name": "urlValidDays", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "urls", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DigitalContentUrl", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "useDefaultSettings", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "DigitalContentCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DigitalContentCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DigitalContentCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DigitalContent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DigitalContentCreate", + "fields": [ + { + "name": "content", + "type": { + "kind": "OBJECT", + "name": "DigitalContent", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "variant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DigitalContentDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "variant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DigitalContentUpdate", + "fields": [ + { + "name": "content", + "type": { + "kind": "OBJECT", + "name": "DigitalContent", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "variant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DigitalContentUrl", + "fields": [ + { + "name": "content", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DigitalContent", + "ofType": null + } + }, + "args": [] + }, + { + "name": "created", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "downloadNum", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "token", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "url", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "DigitalContentUrlCreate", + "fields": [ + { + "name": "digitalContentUrl", + "type": { + "kind": "OBJECT", + "name": "DigitalContentUrl", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DiscountError", + "fields": [ + { + "name": "channels", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "products", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Domain", + "fields": [ + { + "name": "host", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "sslEnabled", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "url", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DraftOrderBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DraftOrderComplete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DraftOrderCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DraftOrderCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "DraftOrderDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DraftOrderDeleted", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "DraftOrderLinesBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DraftOrderUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DraftOrderUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "INTERFACE", + "name": "Event", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddressCreated" + }, + { + "kind": "OBJECT", + "name": "AddressDeleted" + }, + { + "kind": "OBJECT", + "name": "AddressUpdated" + }, + { + "kind": "OBJECT", + "name": "AppDeleted" + }, + { + "kind": "OBJECT", + "name": "AppInstalled" + }, + { + "kind": "OBJECT", + "name": "AppStatusChanged" + }, + { + "kind": "OBJECT", + "name": "AppUpdated" + }, + { + "kind": "OBJECT", + "name": "AttributeCreated" + }, + { + "kind": "OBJECT", + "name": "AttributeDeleted" + }, + { + "kind": "OBJECT", + "name": "AttributeUpdated" + }, + { + "kind": "OBJECT", + "name": "AttributeValueCreated" + }, + { + "kind": "OBJECT", + "name": "AttributeValueDeleted" + }, + { + "kind": "OBJECT", + "name": "AttributeValueUpdated" + }, + { + "kind": "OBJECT", + "name": "CalculateTaxes" + }, + { + "kind": "OBJECT", + "name": "CategoryCreated" + }, + { + "kind": "OBJECT", + "name": "CategoryDeleted" + }, + { + "kind": "OBJECT", + "name": "CategoryUpdated" + }, + { + "kind": "OBJECT", + "name": "ChannelCreated" + }, + { + "kind": "OBJECT", + "name": "ChannelDeleted" + }, + { + "kind": "OBJECT", + "name": "ChannelStatusChanged" + }, + { + "kind": "OBJECT", + "name": "ChannelUpdated" + }, + { + "kind": "OBJECT", + "name": "CheckoutCreated" + }, + { + "kind": "OBJECT", + "name": "CheckoutFilterShippingMethods" + }, + { + "kind": "OBJECT", + "name": "CheckoutMetadataUpdated" + }, + { + "kind": "OBJECT", + "name": "CheckoutUpdated" + }, + { + "kind": "OBJECT", + "name": "CollectionCreated" + }, + { + "kind": "OBJECT", + "name": "CollectionDeleted" + }, + { + "kind": "OBJECT", + "name": "CollectionMetadataUpdated" + }, + { + "kind": "OBJECT", + "name": "CollectionUpdated" + }, + { + "kind": "OBJECT", + "name": "CustomerCreated" + }, + { + "kind": "OBJECT", + "name": "CustomerMetadataUpdated" + }, + { + "kind": "OBJECT", + "name": "CustomerUpdated" + }, + { + "kind": "OBJECT", + "name": "DraftOrderCreated" + }, + { + "kind": "OBJECT", + "name": "DraftOrderDeleted" + }, + { + "kind": "OBJECT", + "name": "DraftOrderUpdated" + }, + { + "kind": "OBJECT", + "name": "FulfillmentApproved" + }, + { + "kind": "OBJECT", + "name": "FulfillmentCanceled" + }, + { + "kind": "OBJECT", + "name": "FulfillmentCreated" + }, + { + "kind": "OBJECT", + "name": "FulfillmentMetadataUpdated" + }, + { + "kind": "OBJECT", + "name": "GiftCardCreated" + }, + { + "kind": "OBJECT", + "name": "GiftCardDeleted" + }, + { + "kind": "OBJECT", + "name": "GiftCardMetadataUpdated" + }, + { + "kind": "OBJECT", + "name": "GiftCardStatusChanged" + }, + { + "kind": "OBJECT", + "name": "GiftCardUpdated" + }, + { + "kind": "OBJECT", + "name": "InvoiceDeleted" + }, + { + "kind": "OBJECT", + "name": "InvoiceRequested" + }, + { + "kind": "OBJECT", + "name": "InvoiceSent" + }, + { + "kind": "OBJECT", + "name": "MenuCreated" + }, + { + "kind": "OBJECT", + "name": "MenuDeleted" + }, + { + "kind": "OBJECT", + "name": "MenuItemCreated" + }, + { + "kind": "OBJECT", + "name": "MenuItemDeleted" + }, + { + "kind": "OBJECT", + "name": "MenuItemUpdated" + }, + { + "kind": "OBJECT", + "name": "MenuUpdated" + }, + { + "kind": "OBJECT", + "name": "OrderCancelled" + }, + { + "kind": "OBJECT", + "name": "OrderConfirmed" + }, + { + "kind": "OBJECT", + "name": "OrderCreated" + }, + { + "kind": "OBJECT", + "name": "OrderFilterShippingMethods" + }, + { + "kind": "OBJECT", + "name": "OrderFulfilled" + }, + { + "kind": "OBJECT", + "name": "OrderFullyPaid" + }, + { + "kind": "OBJECT", + "name": "OrderMetadataUpdated" + }, + { + "kind": "OBJECT", + "name": "OrderUpdated" + }, + { + "kind": "OBJECT", + "name": "PageCreated" + }, + { + "kind": "OBJECT", + "name": "PageDeleted" + }, + { + "kind": "OBJECT", + "name": "PageTypeCreated" + }, + { + "kind": "OBJECT", + "name": "PageTypeDeleted" + }, + { + "kind": "OBJECT", + "name": "PageTypeUpdated" + }, + { + "kind": "OBJECT", + "name": "PageUpdated" + }, + { + "kind": "OBJECT", + "name": "PaymentAuthorize" + }, + { + "kind": "OBJECT", + "name": "PaymentCaptureEvent" + }, + { + "kind": "OBJECT", + "name": "PaymentConfirmEvent" + }, + { + "kind": "OBJECT", + "name": "PaymentListGateways" + }, + { + "kind": "OBJECT", + "name": "PaymentProcessEvent" + }, + { + "kind": "OBJECT", + "name": "PaymentRefundEvent" + }, + { + "kind": "OBJECT", + "name": "PaymentVoidEvent" + }, + { + "kind": "OBJECT", + "name": "PermissionGroupCreated" + }, + { + "kind": "OBJECT", + "name": "PermissionGroupDeleted" + }, + { + "kind": "OBJECT", + "name": "PermissionGroupUpdated" + }, + { + "kind": "OBJECT", + "name": "ProductCreated" + }, + { + "kind": "OBJECT", + "name": "ProductDeleted" + }, + { + "kind": "OBJECT", + "name": "ProductMetadataUpdated" + }, + { + "kind": "OBJECT", + "name": "ProductUpdated" + }, + { + "kind": "OBJECT", + "name": "ProductVariantBackInStock" + }, + { + "kind": "OBJECT", + "name": "ProductVariantCreated" + }, + { + "kind": "OBJECT", + "name": "ProductVariantDeleted" + }, + { + "kind": "OBJECT", + "name": "ProductVariantMetadataUpdated" + }, + { + "kind": "OBJECT", + "name": "ProductVariantOutOfStock" + }, + { + "kind": "OBJECT", + "name": "ProductVariantUpdated" + }, + { + "kind": "OBJECT", + "name": "SaleCreated" + }, + { + "kind": "OBJECT", + "name": "SaleDeleted" + }, + { + "kind": "OBJECT", + "name": "SaleToggle" + }, + { + "kind": "OBJECT", + "name": "SaleUpdated" + }, + { + "kind": "OBJECT", + "name": "ShippingListMethodsForCheckout" + }, + { + "kind": "OBJECT", + "name": "ShippingPriceCreated" + }, + { + "kind": "OBJECT", + "name": "ShippingPriceDeleted" + }, + { + "kind": "OBJECT", + "name": "ShippingPriceUpdated" + }, + { + "kind": "OBJECT", + "name": "ShippingZoneCreated" + }, + { + "kind": "OBJECT", + "name": "ShippingZoneDeleted" + }, + { + "kind": "OBJECT", + "name": "ShippingZoneMetadataUpdated" + }, + { + "kind": "OBJECT", + "name": "ShippingZoneUpdated" + }, + { + "kind": "OBJECT", + "name": "StaffCreated" + }, + { + "kind": "OBJECT", + "name": "StaffDeleted" + }, + { + "kind": "OBJECT", + "name": "StaffUpdated" + }, + { + "kind": "OBJECT", + "name": "TransactionActionRequest" + }, + { + "kind": "OBJECT", + "name": "TransactionItemMetadataUpdated" + }, + { + "kind": "OBJECT", + "name": "TranslationCreated" + }, + { + "kind": "OBJECT", + "name": "TranslationUpdated" + }, + { + "kind": "OBJECT", + "name": "VoucherCreated" + }, + { + "kind": "OBJECT", + "name": "VoucherDeleted" + }, + { + "kind": "OBJECT", + "name": "VoucherMetadataUpdated" + }, + { + "kind": "OBJECT", + "name": "VoucherUpdated" + }, + { + "kind": "OBJECT", + "name": "WarehouseCreated" + }, + { + "kind": "OBJECT", + "name": "WarehouseDeleted" + }, + { + "kind": "OBJECT", + "name": "WarehouseMetadataUpdated" + }, + { + "kind": "OBJECT", + "name": "WarehouseUpdated" + } + ] + }, + { + "kind": "OBJECT", + "name": "EventDelivery", + "fields": [ + { + "name": "attempts", + "type": { + "kind": "OBJECT", + "name": "EventDeliveryAttemptCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "eventType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "payload", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "EventDeliveryAttempt", + "fields": [ + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "duration", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "requestHeaders", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "response", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "responseHeaders", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "responseStatusCode", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "taskId", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "EventDeliveryAttemptCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "EventDeliveryAttemptCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "EventDeliveryAttemptCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "EventDeliveryAttempt", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "EventDeliveryCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "EventDeliveryCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "EventDeliveryCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "EventDelivery", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "EventDeliveryRetry", + "fields": [ + { + "name": "delivery", + "type": { + "kind": "OBJECT", + "name": "EventDelivery", + "ofType": null + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WebhookError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExportError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExportEvent", + "fields": [ + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "date", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "ExportFile", + "fields": [ + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "events", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExportEvent", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "url", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Job" + }, + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "ExportFileCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExportFileCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExportFileCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExportFile", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExportGiftCards", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExportError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "exportFile", + "type": { + "kind": "OBJECT", + "name": "ExportFile", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExportProducts", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExportError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "exportErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExportError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "exportFile", + "type": { + "kind": "OBJECT", + "name": "ExportFile", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExternalAuthentication", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExternalAuthenticationUrl", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "authenticationData", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExternalLogout", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "logoutData", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExternalNotificationError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExternalNotificationTrigger", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExternalNotificationError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExternalObtainAccessTokens", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "csrfToken", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "refreshToken", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExternalRefresh", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "csrfToken", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "refreshToken", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExternalVerify", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "isValid", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + }, + { + "name": "verifyData", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "File", + "fields": [ + { + "name": "contentType", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "url", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "FileUpload", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "UploadError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "uploadErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "UploadError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "uploadedFile", + "type": { + "kind": "OBJECT", + "name": "File", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Fulfillment", + "fields": [ + { + "name": "created", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "fulfillmentOrder", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "lines", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "FulfillmentLine", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "statusDisplay", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "trackingNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "FulfillmentApprove", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "fulfillment", + "type": { + "kind": "OBJECT", + "name": "Fulfillment", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "FulfillmentApproved", + "fields": [ + { + "name": "fulfillment", + "type": { + "kind": "OBJECT", + "name": "Fulfillment", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "FulfillmentCancel", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "fulfillment", + "type": { + "kind": "OBJECT", + "name": "Fulfillment", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "FulfillmentCanceled", + "fields": [ + { + "name": "fulfillment", + "type": { + "kind": "OBJECT", + "name": "Fulfillment", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "FulfillmentCreated", + "fields": [ + { + "name": "fulfillment", + "type": { + "kind": "OBJECT", + "name": "Fulfillment", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "FulfillmentLine", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "orderLine", + "type": { + "kind": "OBJECT", + "name": "OrderLine", + "ofType": null + }, + "args": [] + }, + { + "name": "quantity", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "FulfillmentMetadataUpdated", + "fields": [ + { + "name": "fulfillment", + "type": { + "kind": "OBJECT", + "name": "Fulfillment", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "FulfillmentRefundProducts", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "fulfillment", + "type": { + "kind": "OBJECT", + "name": "Fulfillment", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "FulfillmentReturnProducts", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "replaceFulfillment", + "type": { + "kind": "OBJECT", + "name": "Fulfillment", + "ofType": null + }, + "args": [] + }, + { + "name": "replaceOrder", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "returnFulfillment", + "type": { + "kind": "OBJECT", + "name": "Fulfillment", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "FulfillmentUpdateTracking", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "fulfillment", + "type": { + "kind": "OBJECT", + "name": "Fulfillment", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GatewayConfigLine", + "fields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "value", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCard", + "fields": [ + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "boughtInChannel", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "created", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "createdBy", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + }, + { + "name": "createdByEmail", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "currentBalance", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "displayCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "events", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardEvent", + "ofType": null + } + } + } + }, + "args": [ + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "expiryDate", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "initialBalance", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "isActive", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "last4CodeChars", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "lastUsedOn", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [] + }, + { + "name": "startDate", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "tags", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardTag", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "usedBy", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + }, + { + "name": "usedByEmail", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "GiftCardActivate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "giftCard", + "type": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + }, + "args": [] + }, + { + "name": "giftCardErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardAddNote", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "event", + "type": { + "kind": "OBJECT", + "name": "GiftCardEvent", + "ofType": null + }, + "args": [] + }, + { + "name": "giftCard", + "type": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardBulkActivate", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardBulkCreate", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "giftCards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardBulkDeactivate", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "giftCard", + "type": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + }, + "args": [] + }, + { + "name": "giftCardErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardCreated", + "fields": [ + { + "name": "giftCard", + "type": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "GiftCardDeactivate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "giftCard", + "type": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + }, + "args": [] + }, + { + "name": "giftCardErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "giftCard", + "type": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + }, + "args": [] + }, + { + "name": "giftCardErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardDeleted", + "fields": [ + { + "name": "giftCard", + "type": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "GiftCardError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "tags", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardEvent", + "fields": [ + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "balance", + "type": { + "kind": "OBJECT", + "name": "GiftCardEventBalance", + "ofType": null + }, + "args": [] + }, + { + "name": "date", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "expiryDate", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "oldExpiryDate", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "oldTags", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "orderId", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "orderNumber", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "tags", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "GiftCardEventBalance", + "fields": [ + { + "name": "currentBalance", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "initialBalance", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "oldCurrentBalance", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "oldInitialBalance", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardMetadataUpdated", + "fields": [ + { + "name": "giftCard", + "type": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "GiftCardResend", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "giftCard", + "type": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardSettings", + "fields": [ + { + "name": "expiryPeriod", + "type": { + "kind": "OBJECT", + "name": "TimePeriod", + "ofType": null + }, + "args": [] + }, + { + "name": "expiryType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardSettingsError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardSettingsUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardSettingsError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "giftCardSettings", + "type": { + "kind": "OBJECT", + "name": "GiftCardSettings", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardStatusChanged", + "fields": [ + { + "name": "giftCard", + "type": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "GiftCardTag", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "GiftCardTagCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardTagCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardTagCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardTag", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "giftCard", + "type": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + }, + "args": [] + }, + { + "name": "giftCardErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GiftCardUpdated", + "fields": [ + { + "name": "giftCard", + "type": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "Group", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "permissions", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Permission", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "userCanManage", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "users", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "GroupCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GroupCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GroupCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Group", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Image", + "fields": [ + { + "name": "alt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "url", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Invoice", + "fields": [ + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "externalUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "number", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "url", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Job" + }, + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "InvoiceCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InvoiceError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "invoice", + "type": { + "kind": "OBJECT", + "name": "Invoice", + "ofType": null + }, + "args": [] + }, + { + "name": "invoiceErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InvoiceError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InvoiceDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InvoiceError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "invoice", + "type": { + "kind": "OBJECT", + "name": "Invoice", + "ofType": null + }, + "args": [] + }, + { + "name": "invoiceErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InvoiceError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InvoiceDeleted", + "fields": [ + { + "name": "invoice", + "type": { + "kind": "OBJECT", + "name": "Invoice", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "InvoiceError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InvoiceRequest", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InvoiceError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "invoice", + "type": { + "kind": "OBJECT", + "name": "Invoice", + "ofType": null + }, + "args": [] + }, + { + "name": "invoiceErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InvoiceError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InvoiceRequestDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InvoiceError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "invoice", + "type": { + "kind": "OBJECT", + "name": "Invoice", + "ofType": null + }, + "args": [] + }, + { + "name": "invoiceErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InvoiceError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InvoiceRequested", + "fields": [ + { + "name": "invoice", + "type": { + "kind": "OBJECT", + "name": "Invoice", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + } + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "InvoiceSendNotification", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InvoiceError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "invoice", + "type": { + "kind": "OBJECT", + "name": "Invoice", + "ofType": null + }, + "args": [] + }, + { + "name": "invoiceErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InvoiceError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InvoiceSent", + "fields": [ + { + "name": "invoice", + "type": { + "kind": "OBJECT", + "name": "Invoice", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "InvoiceUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InvoiceError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "invoice", + "type": { + "kind": "OBJECT", + "name": "Invoice", + "ofType": null + }, + "args": [] + }, + { + "name": "invoiceErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InvoiceError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "UNION", + "name": "IssuingPrincipal", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "App" + }, + { + "kind": "OBJECT", + "name": "User" + } + ] + }, + { + "kind": "INTERFACE", + "name": "Job", + "fields": [ + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AppInstallation" + }, + { + "kind": "OBJECT", + "name": "ExportFile" + }, + { + "kind": "OBJECT", + "name": "Invoice" + } + ] + }, + { + "kind": "OBJECT", + "name": "LanguageDisplay", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "LimitInfo", + "fields": [ + { + "name": "allowedUsage", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Limits", + "ofType": null + } + }, + "args": [] + }, + { + "name": "currentUsage", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Limits", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Limits", + "fields": [ + { + "name": "channels", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "orders", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "productVariants", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "staffUsers", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "warehouses", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Manifest", + "fields": [ + { + "name": "about", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "appUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "audience", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "configurationUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "dataPrivacy", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "dataPrivacyUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "extensions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppManifestExtension", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "homepageUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "identifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "permissions", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Permission", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "supportUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "tokenTargetUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "webhooks", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppManifestWebhook", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Margin", + "fields": [ + { + "name": "start", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "stop", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Menu", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "items", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuItem", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "slug", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "MenuBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "menuErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MenuCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MenuCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MenuCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "menu", + "type": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + }, + "args": [] + }, + { + "name": "menuErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MenuCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "menu", + "type": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "MenuDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "menu", + "type": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + }, + "args": [] + }, + { + "name": "menuErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MenuDeleted", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "menu", + "type": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "MenuError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MenuItem", + "fields": [ + { + "name": "category", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [] + }, + { + "name": "children", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuItem", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "collection", + "type": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "level", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "menu", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "page", + "type": { + "kind": "OBJECT", + "name": "Page", + "ofType": null + }, + "args": [] + }, + { + "name": "parent", + "type": { + "kind": "OBJECT", + "name": "MenuItem", + "ofType": null + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "MenuItemTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "url", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "MenuItemBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "menuErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MenuItemCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuItemCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MenuItemCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuItem", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MenuItemCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "menuErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "menuItem", + "type": { + "kind": "OBJECT", + "name": "MenuItem", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MenuItemCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "menuItem", + "type": { + "kind": "OBJECT", + "name": "MenuItem", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "MenuItemDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "menuErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "menuItem", + "type": { + "kind": "OBJECT", + "name": "MenuItem", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MenuItemDeleted", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "menuItem", + "type": { + "kind": "OBJECT", + "name": "MenuItem", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "MenuItemMove", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "menu", + "type": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + }, + "args": [] + }, + { + "name": "menuErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MenuItemTranslatableContent", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "menuItem", + "type": { + "kind": "OBJECT", + "name": "MenuItem", + "ofType": null + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "MenuItemTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "MenuItemTranslate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "menuItem", + "type": { + "kind": "OBJECT", + "name": "MenuItem", + "ofType": null + }, + "args": [] + }, + { + "name": "translationErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MenuItemTranslation", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LanguageDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "MenuItemUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "menuErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "menuItem", + "type": { + "kind": "OBJECT", + "name": "MenuItem", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MenuItemUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "menuItem", + "type": { + "kind": "OBJECT", + "name": "MenuItem", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "MenuUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "menu", + "type": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + }, + "args": [] + }, + { + "name": "menuErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MenuError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MenuUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "menu", + "type": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "MetadataError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MetadataItem", + "fields": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Money", + "fields": [ + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "currency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MoneyRange", + "fields": [ + { + "name": "start", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "stop", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Mutation", + "fields": [ + { + "name": "accountAddressCreate", + "type": { + "kind": "OBJECT", + "name": "AccountAddressCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "accountAddressDelete", + "type": { + "kind": "OBJECT", + "name": "AccountAddressDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "accountAddressUpdate", + "type": { + "kind": "OBJECT", + "name": "AccountAddressUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "accountDelete", + "type": { + "kind": "OBJECT", + "name": "AccountDelete", + "ofType": null + }, + "args": [ + { + "name": "token", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "accountRegister", + "type": { + "kind": "OBJECT", + "name": "AccountRegister", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "accountRequestDeletion", + "type": { + "kind": "OBJECT", + "name": "AccountRequestDeletion", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "redirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "accountSetDefaultAddress", + "type": { + "kind": "OBJECT", + "name": "AccountSetDefaultAddress", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "accountUpdate", + "type": { + "kind": "OBJECT", + "name": "AccountUpdate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "addressCreate", + "type": { + "kind": "OBJECT", + "name": "AddressCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "userId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "addressDelete", + "type": { + "kind": "OBJECT", + "name": "AddressDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "addressSetDefault", + "type": { + "kind": "OBJECT", + "name": "AddressSetDefault", + "ofType": null + }, + "args": [ + { + "name": "addressId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "userId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "addressUpdate", + "type": { + "kind": "OBJECT", + "name": "AddressUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "appActivate", + "type": { + "kind": "OBJECT", + "name": "AppActivate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "appCreate", + "type": { + "kind": "OBJECT", + "name": "AppCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "appDeactivate", + "type": { + "kind": "OBJECT", + "name": "AppDeactivate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "appDelete", + "type": { + "kind": "OBJECT", + "name": "AppDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "appDeleteFailedInstallation", + "type": { + "kind": "OBJECT", + "name": "AppDeleteFailedInstallation", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "appFetchManifest", + "type": { + "kind": "OBJECT", + "name": "AppFetchManifest", + "ofType": null + }, + "args": [ + { + "name": "manifestUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "appInstall", + "type": { + "kind": "OBJECT", + "name": "AppInstall", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "appRetryInstall", + "type": { + "kind": "OBJECT", + "name": "AppRetryInstall", + "ofType": null + }, + "args": [ + { + "name": "activateAfterInstallation", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "appTokenCreate", + "type": { + "kind": "OBJECT", + "name": "AppTokenCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "appTokenDelete", + "type": { + "kind": "OBJECT", + "name": "AppTokenDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "appTokenVerify", + "type": { + "kind": "OBJECT", + "name": "AppTokenVerify", + "ofType": null + }, + "args": [ + { + "name": "token", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "appUpdate", + "type": { + "kind": "OBJECT", + "name": "AppUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "assignNavigation", + "type": { + "kind": "OBJECT", + "name": "AssignNavigation", + "ofType": null + }, + "args": [ + { + "name": "menu", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "navigationType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "assignWarehouseShippingZone", + "type": { + "kind": "OBJECT", + "name": "WarehouseShippingZoneAssign", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "shippingZoneIds", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "attributeBulkDelete", + "type": { + "kind": "OBJECT", + "name": "AttributeBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "attributeCreate", + "type": { + "kind": "OBJECT", + "name": "AttributeCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "attributeDelete", + "type": { + "kind": "OBJECT", + "name": "AttributeDelete", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "attributeReorderValues", + "type": { + "kind": "OBJECT", + "name": "AttributeReorderValues", + "ofType": null + }, + "args": [ + { + "name": "attributeId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "moves", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "attributeTranslate", + "type": { + "kind": "OBJECT", + "name": "AttributeTranslate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "attributeUpdate", + "type": { + "kind": "OBJECT", + "name": "AttributeUpdate", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "attributeValueBulkDelete", + "type": { + "kind": "OBJECT", + "name": "AttributeValueBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "attributeValueCreate", + "type": { + "kind": "OBJECT", + "name": "AttributeValueCreate", + "ofType": null + }, + "args": [ + { + "name": "attribute", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "attributeValueDelete", + "type": { + "kind": "OBJECT", + "name": "AttributeValueDelete", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "attributeValueTranslate", + "type": { + "kind": "OBJECT", + "name": "AttributeValueTranslate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "attributeValueUpdate", + "type": { + "kind": "OBJECT", + "name": "AttributeValueUpdate", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "categoryBulkDelete", + "type": { + "kind": "OBJECT", + "name": "CategoryBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "categoryCreate", + "type": { + "kind": "OBJECT", + "name": "CategoryCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "parent", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "categoryDelete", + "type": { + "kind": "OBJECT", + "name": "CategoryDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "categoryTranslate", + "type": { + "kind": "OBJECT", + "name": "CategoryTranslate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "categoryUpdate", + "type": { + "kind": "OBJECT", + "name": "CategoryUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "channelActivate", + "type": { + "kind": "OBJECT", + "name": "ChannelActivate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "channelCreate", + "type": { + "kind": "OBJECT", + "name": "ChannelCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "channelDeactivate", + "type": { + "kind": "OBJECT", + "name": "ChannelDeactivate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "channelDelete", + "type": { + "kind": "OBJECT", + "name": "ChannelDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "channelReorderWarehouses", + "type": { + "kind": "OBJECT", + "name": "ChannelReorderWarehouses", + "ofType": null + }, + "args": [ + { + "name": "channelId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "moves", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "channelUpdate", + "type": { + "kind": "OBJECT", + "name": "ChannelUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "checkoutAddPromoCode", + "type": { + "kind": "OBJECT", + "name": "CheckoutAddPromoCode", + "ofType": null + }, + "args": [ + { + "name": "checkoutId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "promoCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutBillingAddressUpdate", + "type": { + "kind": "OBJECT", + "name": "CheckoutBillingAddressUpdate", + "ofType": null + }, + "args": [ + { + "name": "billingAddress", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "checkoutId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "validationRules", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutComplete", + "type": { + "kind": "OBJECT", + "name": "CheckoutComplete", + "ofType": null + }, + "args": [ + { + "name": "checkoutId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "metadata", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + { + "name": "paymentData", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "redirectUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "storeSource", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutCreate", + "type": { + "kind": "OBJECT", + "name": "CheckoutCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "checkoutCustomerAttach", + "type": { + "kind": "OBJECT", + "name": "CheckoutCustomerAttach", + "ofType": null + }, + "args": [ + { + "name": "checkoutId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "customerId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutCustomerDetach", + "type": { + "kind": "OBJECT", + "name": "CheckoutCustomerDetach", + "ofType": null + }, + "args": [ + { + "name": "checkoutId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutDeliveryMethodUpdate", + "type": { + "kind": "OBJECT", + "name": "CheckoutDeliveryMethodUpdate", + "ofType": null + }, + "args": [ + { + "name": "deliveryMethodId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutEmailUpdate", + "type": { + "kind": "OBJECT", + "name": "CheckoutEmailUpdate", + "ofType": null + }, + "args": [ + { + "name": "checkoutId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "email", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutLanguageCodeUpdate", + "type": { + "kind": "OBJECT", + "name": "CheckoutLanguageCodeUpdate", + "ofType": null + }, + "args": [ + { + "name": "checkoutId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutLineDelete", + "type": { + "kind": "OBJECT", + "name": "CheckoutLineDelete", + "ofType": null + }, + "args": [ + { + "name": "checkoutId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "lineId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutLinesAdd", + "type": { + "kind": "OBJECT", + "name": "CheckoutLinesAdd", + "ofType": null + }, + "args": [ + { + "name": "checkoutId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "lines", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutLinesDelete", + "type": { + "kind": "OBJECT", + "name": "CheckoutLinesDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "linesIds", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutLinesUpdate", + "type": { + "kind": "OBJECT", + "name": "CheckoutLinesUpdate", + "ofType": null + }, + "args": [ + { + "name": "checkoutId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "lines", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutPaymentCreate", + "type": { + "kind": "OBJECT", + "name": "CheckoutPaymentCreate", + "ofType": null + }, + "args": [ + { + "name": "checkoutId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutRemovePromoCode", + "type": { + "kind": "OBJECT", + "name": "CheckoutRemovePromoCode", + "ofType": null + }, + "args": [ + { + "name": "checkoutId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "promoCode", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "promoCodeId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutShippingAddressUpdate", + "type": { + "kind": "OBJECT", + "name": "CheckoutShippingAddressUpdate", + "ofType": null + }, + "args": [ + { + "name": "checkoutId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "shippingAddress", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "validationRules", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutShippingMethodUpdate", + "type": { + "kind": "OBJECT", + "name": "CheckoutShippingMethodUpdate", + "ofType": null + }, + "args": [ + { + "name": "checkoutId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "shippingMethodId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "collectionAddProducts", + "type": { + "kind": "OBJECT", + "name": "CollectionAddProducts", + "ofType": null + }, + "args": [ + { + "name": "collectionId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "products", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "collectionBulkDelete", + "type": { + "kind": "OBJECT", + "name": "CollectionBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "collectionChannelListingUpdate", + "type": { + "kind": "OBJECT", + "name": "CollectionChannelListingUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "collectionCreate", + "type": { + "kind": "OBJECT", + "name": "CollectionCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "collectionDelete", + "type": { + "kind": "OBJECT", + "name": "CollectionDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "collectionRemoveProducts", + "type": { + "kind": "OBJECT", + "name": "CollectionRemoveProducts", + "ofType": null + }, + "args": [ + { + "name": "collectionId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "products", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "collectionReorderProducts", + "type": { + "kind": "OBJECT", + "name": "CollectionReorderProducts", + "ofType": null + }, + "args": [ + { + "name": "collectionId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "moves", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "collectionTranslate", + "type": { + "kind": "OBJECT", + "name": "CollectionTranslate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "collectionUpdate", + "type": { + "kind": "OBJECT", + "name": "CollectionUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "confirmAccount", + "type": { + "kind": "OBJECT", + "name": "ConfirmAccount", + "ofType": null + }, + "args": [ + { + "name": "email", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "token", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "confirmEmailChange", + "type": { + "kind": "OBJECT", + "name": "ConfirmEmailChange", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "token", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "createWarehouse", + "type": { + "kind": "OBJECT", + "name": "WarehouseCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "customerBulkDelete", + "type": { + "kind": "OBJECT", + "name": "CustomerBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "customerCreate", + "type": { + "kind": "OBJECT", + "name": "CustomerCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "customerDelete", + "type": { + "kind": "OBJECT", + "name": "CustomerDelete", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "customerUpdate", + "type": { + "kind": "OBJECT", + "name": "CustomerUpdate", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "deleteMetadata", + "type": { + "kind": "OBJECT", + "name": "DeleteMetadata", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "keys", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "deletePrivateMetadata", + "type": { + "kind": "OBJECT", + "name": "DeletePrivateMetadata", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "keys", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "deleteWarehouse", + "type": { + "kind": "OBJECT", + "name": "WarehouseDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "digitalContentCreate", + "type": { + "kind": "OBJECT", + "name": "DigitalContentCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "variantId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "digitalContentDelete", + "type": { + "kind": "OBJECT", + "name": "DigitalContentDelete", + "ofType": null + }, + "args": [ + { + "name": "variantId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "digitalContentUpdate", + "type": { + "kind": "OBJECT", + "name": "DigitalContentUpdate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "variantId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "digitalContentUrlCreate", + "type": { + "kind": "OBJECT", + "name": "DigitalContentUrlCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "draftOrderBulkDelete", + "type": { + "kind": "OBJECT", + "name": "DraftOrderBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "draftOrderComplete", + "type": { + "kind": "OBJECT", + "name": "DraftOrderComplete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "draftOrderCreate", + "type": { + "kind": "OBJECT", + "name": "DraftOrderCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "draftOrderDelete", + "type": { + "kind": "OBJECT", + "name": "DraftOrderDelete", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "draftOrderLinesBulkDelete", + "type": { + "kind": "OBJECT", + "name": "DraftOrderLinesBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "draftOrderUpdate", + "type": { + "kind": "OBJECT", + "name": "DraftOrderUpdate", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "eventDeliveryRetry", + "type": { + "kind": "OBJECT", + "name": "EventDeliveryRetry", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "exportGiftCards", + "type": { + "kind": "OBJECT", + "name": "ExportGiftCards", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "exportProducts", + "type": { + "kind": "OBJECT", + "name": "ExportProducts", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "externalAuthenticationUrl", + "type": { + "kind": "OBJECT", + "name": "ExternalAuthenticationUrl", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "pluginId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "externalLogout", + "type": { + "kind": "OBJECT", + "name": "ExternalLogout", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "pluginId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "externalNotificationTrigger", + "type": { + "kind": "OBJECT", + "name": "ExternalNotificationTrigger", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "pluginId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "externalObtainAccessTokens", + "type": { + "kind": "OBJECT", + "name": "ExternalObtainAccessTokens", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "pluginId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "externalRefresh", + "type": { + "kind": "OBJECT", + "name": "ExternalRefresh", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "pluginId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "externalVerify", + "type": { + "kind": "OBJECT", + "name": "ExternalVerify", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "pluginId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "fileUpload", + "type": { + "kind": "OBJECT", + "name": "FileUpload", + "ofType": null + }, + "args": [ + { + "name": "file", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "giftCardActivate", + "type": { + "kind": "OBJECT", + "name": "GiftCardActivate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "giftCardAddNote", + "type": { + "kind": "OBJECT", + "name": "GiftCardAddNote", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "giftCardBulkActivate", + "type": { + "kind": "OBJECT", + "name": "GiftCardBulkActivate", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "giftCardBulkCreate", + "type": { + "kind": "OBJECT", + "name": "GiftCardBulkCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "giftCardBulkDeactivate", + "type": { + "kind": "OBJECT", + "name": "GiftCardBulkDeactivate", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "giftCardBulkDelete", + "type": { + "kind": "OBJECT", + "name": "GiftCardBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "giftCardCreate", + "type": { + "kind": "OBJECT", + "name": "GiftCardCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "giftCardDeactivate", + "type": { + "kind": "OBJECT", + "name": "GiftCardDeactivate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "giftCardDelete", + "type": { + "kind": "OBJECT", + "name": "GiftCardDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "giftCardResend", + "type": { + "kind": "OBJECT", + "name": "GiftCardResend", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "giftCardSettingsUpdate", + "type": { + "kind": "OBJECT", + "name": "GiftCardSettingsUpdate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "giftCardUpdate", + "type": { + "kind": "OBJECT", + "name": "GiftCardUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "invoiceCreate", + "type": { + "kind": "OBJECT", + "name": "InvoiceCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "orderId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "invoiceDelete", + "type": { + "kind": "OBJECT", + "name": "InvoiceDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "invoiceRequest", + "type": { + "kind": "OBJECT", + "name": "InvoiceRequest", + "ofType": null + }, + "args": [ + { + "name": "number", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "orderId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "invoiceRequestDelete", + "type": { + "kind": "OBJECT", + "name": "InvoiceRequestDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "invoiceSendNotification", + "type": { + "kind": "OBJECT", + "name": "InvoiceSendNotification", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "invoiceUpdate", + "type": { + "kind": "OBJECT", + "name": "InvoiceUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "menuBulkDelete", + "type": { + "kind": "OBJECT", + "name": "MenuBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "menuCreate", + "type": { + "kind": "OBJECT", + "name": "MenuCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "menuDelete", + "type": { + "kind": "OBJECT", + "name": "MenuDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "menuItemBulkDelete", + "type": { + "kind": "OBJECT", + "name": "MenuItemBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "menuItemCreate", + "type": { + "kind": "OBJECT", + "name": "MenuItemCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "menuItemDelete", + "type": { + "kind": "OBJECT", + "name": "MenuItemDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "menuItemMove", + "type": { + "kind": "OBJECT", + "name": "MenuItemMove", + "ofType": null + }, + "args": [ + { + "name": "menu", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "moves", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "menuItemTranslate", + "type": { + "kind": "OBJECT", + "name": "MenuItemTranslate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "menuItemUpdate", + "type": { + "kind": "OBJECT", + "name": "MenuItemUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "menuUpdate", + "type": { + "kind": "OBJECT", + "name": "MenuUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderAddNote", + "type": { + "kind": "OBJECT", + "name": "OrderAddNote", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "order", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderBulkCancel", + "type": { + "kind": "OBJECT", + "name": "OrderBulkCancel", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "orderCancel", + "type": { + "kind": "OBJECT", + "name": "OrderCancel", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderCapture", + "type": { + "kind": "OBJECT", + "name": "OrderCapture", + "ofType": null + }, + "args": [ + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderConfirm", + "type": { + "kind": "OBJECT", + "name": "OrderConfirm", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderCreateFromCheckout", + "type": { + "kind": "OBJECT", + "name": "OrderCreateFromCheckout", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "metadata", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + { + "name": "privateMetadata", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + { + "name": "removeCheckout", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "orderDiscountAdd", + "type": { + "kind": "OBJECT", + "name": "OrderDiscountAdd", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "orderId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderDiscountDelete", + "type": { + "kind": "OBJECT", + "name": "OrderDiscountDelete", + "ofType": null + }, + "args": [ + { + "name": "discountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderDiscountUpdate", + "type": { + "kind": "OBJECT", + "name": "OrderDiscountUpdate", + "ofType": null + }, + "args": [ + { + "name": "discountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderFulfill", + "type": { + "kind": "OBJECT", + "name": "OrderFulfill", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "order", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "orderFulfillmentApprove", + "type": { + "kind": "OBJECT", + "name": "FulfillmentApprove", + "ofType": null + }, + "args": [ + { + "name": "allowStockToBeExceeded", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "notifyCustomer", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderFulfillmentCancel", + "type": { + "kind": "OBJECT", + "name": "FulfillmentCancel", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "orderFulfillmentRefundProducts", + "type": { + "kind": "OBJECT", + "name": "FulfillmentRefundProducts", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "order", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderFulfillmentReturnProducts", + "type": { + "kind": "OBJECT", + "name": "FulfillmentReturnProducts", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "order", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderFulfillmentUpdateTracking", + "type": { + "kind": "OBJECT", + "name": "FulfillmentUpdateTracking", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderLineDelete", + "type": { + "kind": "OBJECT", + "name": "OrderLineDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderLineDiscountRemove", + "type": { + "kind": "OBJECT", + "name": "OrderLineDiscountRemove", + "ofType": null + }, + "args": [ + { + "name": "orderLineId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderLineDiscountUpdate", + "type": { + "kind": "OBJECT", + "name": "OrderLineDiscountUpdate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "orderLineId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderLineUpdate", + "type": { + "kind": "OBJECT", + "name": "OrderLineUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderLinesCreate", + "type": { + "kind": "OBJECT", + "name": "OrderLinesCreate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "orderMarkAsPaid", + "type": { + "kind": "OBJECT", + "name": "OrderMarkAsPaid", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "transactionReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "orderRefund", + "type": { + "kind": "OBJECT", + "name": "OrderRefund", + "ofType": null + }, + "args": [ + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderSettingsUpdate", + "type": { + "kind": "OBJECT", + "name": "OrderSettingsUpdate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderUpdate", + "type": { + "kind": "OBJECT", + "name": "OrderUpdate", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderUpdateShipping", + "type": { + "kind": "OBJECT", + "name": "OrderUpdateShipping", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "order", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderVoid", + "type": { + "kind": "OBJECT", + "name": "OrderVoid", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "pageAttributeAssign", + "type": { + "kind": "OBJECT", + "name": "PageAttributeAssign", + "ofType": null + }, + "args": [ + { + "name": "attributeIds", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "pageTypeId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "pageAttributeUnassign", + "type": { + "kind": "OBJECT", + "name": "PageAttributeUnassign", + "ofType": null + }, + "args": [ + { + "name": "attributeIds", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "pageTypeId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "pageBulkDelete", + "type": { + "kind": "OBJECT", + "name": "PageBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "pageBulkPublish", + "type": { + "kind": "OBJECT", + "name": "PageBulkPublish", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "isPublished", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "pageCreate", + "type": { + "kind": "OBJECT", + "name": "PageCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "pageDelete", + "type": { + "kind": "OBJECT", + "name": "PageDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "pageReorderAttributeValues", + "type": { + "kind": "OBJECT", + "name": "PageReorderAttributeValues", + "ofType": null + }, + "args": [ + { + "name": "attributeId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "moves", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "pageId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "pageTranslate", + "type": { + "kind": "OBJECT", + "name": "PageTranslate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "pageTypeBulkDelete", + "type": { + "kind": "OBJECT", + "name": "PageTypeBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "pageTypeCreate", + "type": { + "kind": "OBJECT", + "name": "PageTypeCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "pageTypeDelete", + "type": { + "kind": "OBJECT", + "name": "PageTypeDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "pageTypeReorderAttributes", + "type": { + "kind": "OBJECT", + "name": "PageTypeReorderAttributes", + "ofType": null + }, + "args": [ + { + "name": "moves", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "pageTypeId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "pageTypeUpdate", + "type": { + "kind": "OBJECT", + "name": "PageTypeUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "pageUpdate", + "type": { + "kind": "OBJECT", + "name": "PageUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "passwordChange", + "type": { + "kind": "OBJECT", + "name": "PasswordChange", + "ofType": null + }, + "args": [ + { + "name": "newPassword", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "oldPassword", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "paymentCapture", + "type": { + "kind": "OBJECT", + "name": "PaymentCapture", + "ofType": null + }, + "args": [ + { + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "paymentId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "paymentCheckBalance", + "type": { + "kind": "OBJECT", + "name": "PaymentCheckBalance", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "paymentInitialize", + "type": { + "kind": "OBJECT", + "name": "PaymentInitialize", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "gateway", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "paymentData", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "paymentRefund", + "type": { + "kind": "OBJECT", + "name": "PaymentRefund", + "ofType": null + }, + "args": [ + { + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "paymentId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "paymentVoid", + "type": { + "kind": "OBJECT", + "name": "PaymentVoid", + "ofType": null + }, + "args": [ + { + "name": "paymentId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "permissionGroupCreate", + "type": { + "kind": "OBJECT", + "name": "PermissionGroupCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "permissionGroupDelete", + "type": { + "kind": "OBJECT", + "name": "PermissionGroupDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "permissionGroupUpdate", + "type": { + "kind": "OBJECT", + "name": "PermissionGroupUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "pluginUpdate", + "type": { + "kind": "OBJECT", + "name": "PluginUpdate", + "ofType": null + }, + "args": [ + { + "name": "channelId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productAttributeAssign", + "type": { + "kind": "OBJECT", + "name": "ProductAttributeAssign", + "ofType": null + }, + "args": [ + { + "name": "operations", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "productTypeId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productAttributeAssignmentUpdate", + "type": { + "kind": "OBJECT", + "name": "ProductAttributeAssignmentUpdate", + "ofType": null + }, + "args": [ + { + "name": "operations", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "productTypeId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productAttributeUnassign", + "type": { + "kind": "OBJECT", + "name": "ProductAttributeUnassign", + "ofType": null + }, + "args": [ + { + "name": "attributeIds", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "productTypeId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productBulkDelete", + "type": { + "kind": "OBJECT", + "name": "ProductBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "productChannelListingUpdate", + "type": { + "kind": "OBJECT", + "name": "ProductChannelListingUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productCreate", + "type": { + "kind": "OBJECT", + "name": "ProductCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productDelete", + "type": { + "kind": "OBJECT", + "name": "ProductDelete", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "productMediaBulkDelete", + "type": { + "kind": "OBJECT", + "name": "ProductMediaBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "productMediaCreate", + "type": { + "kind": "OBJECT", + "name": "ProductMediaCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productMediaDelete", + "type": { + "kind": "OBJECT", + "name": "ProductMediaDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productMediaReorder", + "type": { + "kind": "OBJECT", + "name": "ProductMediaReorder", + "ofType": null + }, + "args": [ + { + "name": "mediaIds", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "productId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productMediaUpdate", + "type": { + "kind": "OBJECT", + "name": "ProductMediaUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productReorderAttributeValues", + "type": { + "kind": "OBJECT", + "name": "ProductReorderAttributeValues", + "ofType": null + }, + "args": [ + { + "name": "attributeId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "moves", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "productId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productTranslate", + "type": { + "kind": "OBJECT", + "name": "ProductTranslate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productTypeBulkDelete", + "type": { + "kind": "OBJECT", + "name": "ProductTypeBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "productTypeCreate", + "type": { + "kind": "OBJECT", + "name": "ProductTypeCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productTypeDelete", + "type": { + "kind": "OBJECT", + "name": "ProductTypeDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productTypeReorderAttributes", + "type": { + "kind": "OBJECT", + "name": "ProductTypeReorderAttributes", + "ofType": null + }, + "args": [ + { + "name": "moves", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "productTypeId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productTypeUpdate", + "type": { + "kind": "OBJECT", + "name": "ProductTypeUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productUpdate", + "type": { + "kind": "OBJECT", + "name": "ProductUpdate", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productVariantBulkCreate", + "type": { + "kind": "OBJECT", + "name": "ProductVariantBulkCreate", + "ofType": null + }, + "args": [ + { + "name": "product", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "variants", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "productVariantBulkDelete", + "type": { + "kind": "OBJECT", + "name": "ProductVariantBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + { + "name": "skus", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "productVariantChannelListingUpdate", + "type": { + "kind": "OBJECT", + "name": "ProductVariantChannelListingUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "sku", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "productVariantCreate", + "type": { + "kind": "OBJECT", + "name": "ProductVariantCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productVariantDelete", + "type": { + "kind": "OBJECT", + "name": "ProductVariantDelete", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sku", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "productVariantPreorderDeactivate", + "type": { + "kind": "OBJECT", + "name": "ProductVariantPreorderDeactivate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productVariantReorder", + "type": { + "kind": "OBJECT", + "name": "ProductVariantReorder", + "ofType": null + }, + "args": [ + { + "name": "moves", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "productId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productVariantReorderAttributeValues", + "type": { + "kind": "OBJECT", + "name": "ProductVariantReorderAttributeValues", + "ofType": null + }, + "args": [ + { + "name": "attributeId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "moves", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "variantId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productVariantSetDefault", + "type": { + "kind": "OBJECT", + "name": "ProductVariantSetDefault", + "ofType": null + }, + "args": [ + { + "name": "productId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "variantId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productVariantStocksCreate", + "type": { + "kind": "OBJECT", + "name": "ProductVariantStocksCreate", + "ofType": null + }, + "args": [ + { + "name": "stocks", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "variantId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productVariantStocksDelete", + "type": { + "kind": "OBJECT", + "name": "ProductVariantStocksDelete", + "ofType": null + }, + "args": [ + { + "name": "sku", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "variantId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "warehouseIds", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "productVariantStocksUpdate", + "type": { + "kind": "OBJECT", + "name": "ProductVariantStocksUpdate", + "ofType": null + }, + "args": [ + { + "name": "sku", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "stocks", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "variantId", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "productVariantTranslate", + "type": { + "kind": "OBJECT", + "name": "ProductVariantTranslate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productVariantUpdate", + "type": { + "kind": "OBJECT", + "name": "ProductVariantUpdate", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "sku", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "requestEmailChange", + "type": { + "kind": "OBJECT", + "name": "RequestEmailChange", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "newEmail", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "password", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "redirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "requestPasswordReset", + "type": { + "kind": "OBJECT", + "name": "RequestPasswordReset", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "email", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "redirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "saleBulkDelete", + "type": { + "kind": "OBJECT", + "name": "SaleBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "saleCataloguesAdd", + "type": { + "kind": "OBJECT", + "name": "SaleAddCatalogues", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "saleCataloguesRemove", + "type": { + "kind": "OBJECT", + "name": "SaleRemoveCatalogues", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "saleChannelListingUpdate", + "type": { + "kind": "OBJECT", + "name": "SaleChannelListingUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "saleCreate", + "type": { + "kind": "OBJECT", + "name": "SaleCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "saleDelete", + "type": { + "kind": "OBJECT", + "name": "SaleDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "saleTranslate", + "type": { + "kind": "OBJECT", + "name": "SaleTranslate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "saleUpdate", + "type": { + "kind": "OBJECT", + "name": "SaleUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "setPassword", + "type": { + "kind": "OBJECT", + "name": "SetPassword", + "ofType": null + }, + "args": [ + { + "name": "email", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "password", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "token", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "shippingMethodChannelListingUpdate", + "type": { + "kind": "OBJECT", + "name": "ShippingMethodChannelListingUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "shippingPriceBulkDelete", + "type": { + "kind": "OBJECT", + "name": "ShippingPriceBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "shippingPriceCreate", + "type": { + "kind": "OBJECT", + "name": "ShippingPriceCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "shippingPriceDelete", + "type": { + "kind": "OBJECT", + "name": "ShippingPriceDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "shippingPriceExcludeProducts", + "type": { + "kind": "OBJECT", + "name": "ShippingPriceExcludeProducts", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "shippingPriceRemoveProductFromExclude", + "type": { + "kind": "OBJECT", + "name": "ShippingPriceRemoveProductFromExclude", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "products", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "shippingPriceTranslate", + "type": { + "kind": "OBJECT", + "name": "ShippingPriceTranslate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "shippingPriceUpdate", + "type": { + "kind": "OBJECT", + "name": "ShippingPriceUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "shippingZoneBulkDelete", + "type": { + "kind": "OBJECT", + "name": "ShippingZoneBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "shippingZoneCreate", + "type": { + "kind": "OBJECT", + "name": "ShippingZoneCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "shippingZoneDelete", + "type": { + "kind": "OBJECT", + "name": "ShippingZoneDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "shippingZoneUpdate", + "type": { + "kind": "OBJECT", + "name": "ShippingZoneUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "shopAddressUpdate", + "type": { + "kind": "OBJECT", + "name": "ShopAddressUpdate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "shopDomainUpdate", + "type": { + "kind": "OBJECT", + "name": "ShopDomainUpdate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "shopFetchTaxRates", + "type": { + "kind": "OBJECT", + "name": "ShopFetchTaxRates", + "ofType": null + }, + "args": [] + }, + { + "name": "shopSettingsTranslate", + "type": { + "kind": "OBJECT", + "name": "ShopSettingsTranslate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "shopSettingsUpdate", + "type": { + "kind": "OBJECT", + "name": "ShopSettingsUpdate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "staffBulkDelete", + "type": { + "kind": "OBJECT", + "name": "StaffBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "staffCreate", + "type": { + "kind": "OBJECT", + "name": "StaffCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "staffDelete", + "type": { + "kind": "OBJECT", + "name": "StaffDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "staffNotificationRecipientCreate", + "type": { + "kind": "OBJECT", + "name": "StaffNotificationRecipientCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "staffNotificationRecipientDelete", + "type": { + "kind": "OBJECT", + "name": "StaffNotificationRecipientDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "staffNotificationRecipientUpdate", + "type": { + "kind": "OBJECT", + "name": "StaffNotificationRecipientUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "staffUpdate", + "type": { + "kind": "OBJECT", + "name": "StaffUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "taxClassCreate", + "type": { + "kind": "OBJECT", + "name": "TaxClassCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "taxClassDelete", + "type": { + "kind": "OBJECT", + "name": "TaxClassDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "taxClassUpdate", + "type": { + "kind": "OBJECT", + "name": "TaxClassUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "taxConfigurationUpdate", + "type": { + "kind": "OBJECT", + "name": "TaxConfigurationUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "taxCountryConfigurationDelete", + "type": { + "kind": "OBJECT", + "name": "TaxCountryConfigurationDelete", + "ofType": null + }, + "args": [ + { + "name": "countryCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "taxCountryConfigurationUpdate", + "type": { + "kind": "OBJECT", + "name": "TaxCountryConfigurationUpdate", + "ofType": null + }, + "args": [ + { + "name": "countryCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "updateTaxClassRates", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "taxExemptionManage", + "type": { + "kind": "OBJECT", + "name": "TaxExemptionManage", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "taxExemption", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "tokenCreate", + "type": { + "kind": "OBJECT", + "name": "CreateToken", + "ofType": null + }, + "args": [ + { + "name": "audience", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "email", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "password", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "tokenRefresh", + "type": { + "kind": "OBJECT", + "name": "RefreshToken", + "ofType": null + }, + "args": [ + { + "name": "csrfToken", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "refreshToken", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "tokenVerify", + "type": { + "kind": "OBJECT", + "name": "VerifyToken", + "ofType": null + }, + "args": [ + { + "name": "token", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "tokensDeactivateAll", + "type": { + "kind": "OBJECT", + "name": "DeactivateAllUserTokens", + "ofType": null + }, + "args": [] + }, + { + "name": "transactionCreate", + "type": { + "kind": "OBJECT", + "name": "TransactionCreate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "transaction", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "transactionEvent", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "transactionRequestAction", + "type": { + "kind": "OBJECT", + "name": "TransactionRequestAction", + "ofType": null + }, + "args": [ + { + "name": "actionType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "transactionUpdate", + "type": { + "kind": "OBJECT", + "name": "TransactionUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "transaction", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "transactionEvent", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "unassignWarehouseShippingZone", + "type": { + "kind": "OBJECT", + "name": "WarehouseShippingZoneUnassign", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "shippingZoneIds", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "updateMetadata", + "type": { + "kind": "OBJECT", + "name": "UpdateMetadata", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "updatePrivateMetadata", + "type": { + "kind": "OBJECT", + "name": "UpdatePrivateMetadata", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "updateWarehouse", + "type": { + "kind": "OBJECT", + "name": "WarehouseUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "userAvatarDelete", + "type": { + "kind": "OBJECT", + "name": "UserAvatarDelete", + "ofType": null + }, + "args": [] + }, + { + "name": "userAvatarUpdate", + "type": { + "kind": "OBJECT", + "name": "UserAvatarUpdate", + "ofType": null + }, + "args": [ + { + "name": "image", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "userBulkSetActive", + "type": { + "kind": "OBJECT", + "name": "UserBulkSetActive", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + }, + { + "name": "isActive", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "variantMediaAssign", + "type": { + "kind": "OBJECT", + "name": "VariantMediaAssign", + "ofType": null + }, + "args": [ + { + "name": "mediaId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "variantId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "variantMediaUnassign", + "type": { + "kind": "OBJECT", + "name": "VariantMediaUnassign", + "ofType": null + }, + "args": [ + { + "name": "mediaId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "variantId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "voucherBulkDelete", + "type": { + "kind": "OBJECT", + "name": "VoucherBulkDelete", + "ofType": null + }, + "args": [ + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + } + ] + }, + { + "name": "voucherCataloguesAdd", + "type": { + "kind": "OBJECT", + "name": "VoucherAddCatalogues", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "voucherCataloguesRemove", + "type": { + "kind": "OBJECT", + "name": "VoucherRemoveCatalogues", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "voucherChannelListingUpdate", + "type": { + "kind": "OBJECT", + "name": "VoucherChannelListingUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "voucherCreate", + "type": { + "kind": "OBJECT", + "name": "VoucherCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "voucherDelete", + "type": { + "kind": "OBJECT", + "name": "VoucherDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "voucherTranslate", + "type": { + "kind": "OBJECT", + "name": "VoucherTranslate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "voucherUpdate", + "type": { + "kind": "OBJECT", + "name": "VoucherUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "webhookCreate", + "type": { + "kind": "OBJECT", + "name": "WebhookCreate", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "webhookDelete", + "type": { + "kind": "OBJECT", + "name": "WebhookDelete", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "webhookUpdate", + "type": { + "kind": "OBJECT", + "name": "WebhookUpdate", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [] + }, + { + "kind": "INTERFACE", + "name": "Node", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Address" + }, + { + "kind": "OBJECT", + "name": "Allocation" + }, + { + "kind": "OBJECT", + "name": "App" + }, + { + "kind": "OBJECT", + "name": "AppExtension" + }, + { + "kind": "OBJECT", + "name": "AppInstallation" + }, + { + "kind": "OBJECT", + "name": "AppToken" + }, + { + "kind": "OBJECT", + "name": "Attribute" + }, + { + "kind": "OBJECT", + "name": "AttributeTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "AttributeTranslation" + }, + { + "kind": "OBJECT", + "name": "AttributeValue" + }, + { + "kind": "OBJECT", + "name": "AttributeValueTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "AttributeValueTranslation" + }, + { + "kind": "OBJECT", + "name": "Category" + }, + { + "kind": "OBJECT", + "name": "CategoryTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "CategoryTranslation" + }, + { + "kind": "OBJECT", + "name": "Channel" + }, + { + "kind": "OBJECT", + "name": "Checkout" + }, + { + "kind": "OBJECT", + "name": "CheckoutLine" + }, + { + "kind": "OBJECT", + "name": "Collection" + }, + { + "kind": "OBJECT", + "name": "CollectionChannelListing" + }, + { + "kind": "OBJECT", + "name": "CollectionTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "CollectionTranslation" + }, + { + "kind": "OBJECT", + "name": "CustomerEvent" + }, + { + "kind": "OBJECT", + "name": "DigitalContent" + }, + { + "kind": "OBJECT", + "name": "DigitalContentUrl" + }, + { + "kind": "OBJECT", + "name": "EventDelivery" + }, + { + "kind": "OBJECT", + "name": "EventDeliveryAttempt" + }, + { + "kind": "OBJECT", + "name": "ExportEvent" + }, + { + "kind": "OBJECT", + "name": "ExportFile" + }, + { + "kind": "OBJECT", + "name": "Fulfillment" + }, + { + "kind": "OBJECT", + "name": "FulfillmentLine" + }, + { + "kind": "OBJECT", + "name": "GiftCard" + }, + { + "kind": "OBJECT", + "name": "GiftCardEvent" + }, + { + "kind": "OBJECT", + "name": "GiftCardTag" + }, + { + "kind": "OBJECT", + "name": "Group" + }, + { + "kind": "OBJECT", + "name": "Invoice" + }, + { + "kind": "OBJECT", + "name": "Menu" + }, + { + "kind": "OBJECT", + "name": "MenuItem" + }, + { + "kind": "OBJECT", + "name": "MenuItemTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "MenuItemTranslation" + }, + { + "kind": "OBJECT", + "name": "Order" + }, + { + "kind": "OBJECT", + "name": "OrderDiscount" + }, + { + "kind": "OBJECT", + "name": "OrderEvent" + }, + { + "kind": "OBJECT", + "name": "OrderLine" + }, + { + "kind": "OBJECT", + "name": "Page" + }, + { + "kind": "OBJECT", + "name": "PageTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "PageTranslation" + }, + { + "kind": "OBJECT", + "name": "PageType" + }, + { + "kind": "OBJECT", + "name": "Payment" + }, + { + "kind": "OBJECT", + "name": "Product" + }, + { + "kind": "OBJECT", + "name": "ProductChannelListing" + }, + { + "kind": "OBJECT", + "name": "ProductMedia" + }, + { + "kind": "OBJECT", + "name": "ProductTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "ProductTranslation" + }, + { + "kind": "OBJECT", + "name": "ProductType" + }, + { + "kind": "OBJECT", + "name": "ProductVariant" + }, + { + "kind": "OBJECT", + "name": "ProductVariantChannelListing" + }, + { + "kind": "OBJECT", + "name": "ProductVariantTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "ProductVariantTranslation" + }, + { + "kind": "OBJECT", + "name": "Sale" + }, + { + "kind": "OBJECT", + "name": "SaleChannelListing" + }, + { + "kind": "OBJECT", + "name": "SaleTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "SaleTranslation" + }, + { + "kind": "OBJECT", + "name": "ShippingMethod" + }, + { + "kind": "OBJECT", + "name": "ShippingMethodChannelListing" + }, + { + "kind": "OBJECT", + "name": "ShippingMethodPostalCodeRule" + }, + { + "kind": "OBJECT", + "name": "ShippingMethodTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "ShippingMethodTranslation" + }, + { + "kind": "OBJECT", + "name": "ShippingMethodType" + }, + { + "kind": "OBJECT", + "name": "ShippingZone" + }, + { + "kind": "OBJECT", + "name": "ShopTranslation" + }, + { + "kind": "OBJECT", + "name": "StaffNotificationRecipient" + }, + { + "kind": "OBJECT", + "name": "Stock" + }, + { + "kind": "OBJECT", + "name": "TaxClass" + }, + { + "kind": "OBJECT", + "name": "TaxConfiguration" + }, + { + "kind": "OBJECT", + "name": "Transaction" + }, + { + "kind": "OBJECT", + "name": "TransactionEvent" + }, + { + "kind": "OBJECT", + "name": "TransactionItem" + }, + { + "kind": "OBJECT", + "name": "User" + }, + { + "kind": "OBJECT", + "name": "Voucher" + }, + { + "kind": "OBJECT", + "name": "VoucherChannelListing" + }, + { + "kind": "OBJECT", + "name": "VoucherTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "VoucherTranslation" + }, + { + "kind": "OBJECT", + "name": "Warehouse" + }, + { + "kind": "OBJECT", + "name": "Webhook" + } + ] + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata", + "fields": [ + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Address" + }, + { + "kind": "OBJECT", + "name": "App" + }, + { + "kind": "OBJECT", + "name": "Attribute" + }, + { + "kind": "OBJECT", + "name": "Category" + }, + { + "kind": "OBJECT", + "name": "Checkout" + }, + { + "kind": "OBJECT", + "name": "CheckoutLine" + }, + { + "kind": "OBJECT", + "name": "Collection" + }, + { + "kind": "OBJECT", + "name": "DigitalContent" + }, + { + "kind": "OBJECT", + "name": "Fulfillment" + }, + { + "kind": "OBJECT", + "name": "GiftCard" + }, + { + "kind": "OBJECT", + "name": "Invoice" + }, + { + "kind": "OBJECT", + "name": "Menu" + }, + { + "kind": "OBJECT", + "name": "MenuItem" + }, + { + "kind": "OBJECT", + "name": "Order" + }, + { + "kind": "OBJECT", + "name": "OrderLine" + }, + { + "kind": "OBJECT", + "name": "Page" + }, + { + "kind": "OBJECT", + "name": "PageType" + }, + { + "kind": "OBJECT", + "name": "Payment" + }, + { + "kind": "OBJECT", + "name": "Product" + }, + { + "kind": "OBJECT", + "name": "ProductType" + }, + { + "kind": "OBJECT", + "name": "ProductVariant" + }, + { + "kind": "OBJECT", + "name": "Sale" + }, + { + "kind": "OBJECT", + "name": "ShippingMethod" + }, + { + "kind": "OBJECT", + "name": "ShippingMethodType" + }, + { + "kind": "OBJECT", + "name": "ShippingZone" + }, + { + "kind": "OBJECT", + "name": "TaxClass" + }, + { + "kind": "OBJECT", + "name": "TaxConfiguration" + }, + { + "kind": "OBJECT", + "name": "TransactionItem" + }, + { + "kind": "OBJECT", + "name": "User" + }, + { + "kind": "OBJECT", + "name": "Voucher" + }, + { + "kind": "OBJECT", + "name": "Warehouse" + } + ] + }, + { + "kind": "OBJECT", + "name": "Order", + "fields": [ + { + "name": "actions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + }, + { + "name": "authorizeStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "availableCollectionPoints", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "availableShippingMethods", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "billingAddress", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "canFinalize", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "channel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + } + }, + "args": [] + }, + { + "name": "chargeStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "collectionPointName", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "created", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "customerNote", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "deliveryMethod", + "type": { + "kind": "UNION", + "name": "DeliveryMethod", + "ofType": null + }, + "args": [] + }, + { + "name": "discount", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "discountName", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "discounts", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderDiscount", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "displayGrossPrices", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "events", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderEvent", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "fulfillments", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Fulfillment", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "giftCards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "invoices", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Invoice", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "isPaid", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isShippingRequired", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "languageCodeEnum", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "lines", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderLine", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "number", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "origin", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "original", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "paymentStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "paymentStatusDisplay", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "payments", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "redirectUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "shippingAddress", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingMethod", + "type": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingMethodName", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "shippingMethods", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingPrice", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + } + }, + "args": [] + }, + { + "name": "shippingTaxClass", + "type": { + "kind": "OBJECT", + "name": "TaxClass", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingTaxClassMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingTaxClassName", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "shippingTaxClassPrivateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingTaxRate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "statusDisplay", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "subtotal", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + } + }, + "args": [] + }, + { + "name": "taxExemption", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "token", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "total", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalAuthorized", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalBalance", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCaptured", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "trackingClientId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "transactions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TransactionItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "translatedDiscountName", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "undiscountedTotal", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + }, + { + "name": "userEmail", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "voucher", + "type": { + "kind": "OBJECT", + "name": "Voucher", + "ofType": null + }, + "args": [] + }, + { + "name": "weight", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Weight", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "OrderAddNote", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "event", + "type": { + "kind": "OBJECT", + "name": "OrderEvent", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderBulkCancel", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderCancel", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderCancelled", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "OrderCapture", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderConfirm", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderConfirmed", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "OrderCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderCreateFromCheckout", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderCreateFromCheckoutError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderCreateFromCheckoutError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "lines", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "variants", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "OrderDiscount", + "fields": [ + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "translatedName", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "valueType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "OrderDiscountAdd", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderDiscountDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderDiscountUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderError", + "fields": [ + { + "name": "addressType", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "orderLines", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "variants", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderEvent", + "fields": [ + { + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "composedId", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "date", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "discount", + "type": { + "kind": "OBJECT", + "name": "OrderEventDiscountObject", + "ofType": null + }, + "args": [] + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "emailType", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "fulfilledItems", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "FulfillmentLine", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "invoiceNumber", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "lines", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderEventOrderLineObject", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "orderNumber", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "oversoldItems", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "paymentGateway", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "paymentId", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "quantity", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "reference", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "relatedOrder", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingCostsIncluded", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "transactionReference", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "OrderEventCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderEventCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderEventCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderEvent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderEventDiscountObject", + "fields": [ + { + "name": "amount", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "oldAmount", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "oldValue", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "oldValueType", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "valueType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderEventOrderLineObject", + "fields": [ + { + "name": "discount", + "type": { + "kind": "OBJECT", + "name": "OrderEventDiscountObject", + "ofType": null + }, + "args": [] + }, + { + "name": "itemName", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "orderLine", + "type": { + "kind": "OBJECT", + "name": "OrderLine", + "ofType": null + }, + "args": [] + }, + { + "name": "quantity", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderFilterShippingMethods", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingMethods", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "OrderFulfill", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "fulfillments", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Fulfillment", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderFulfilled", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "OrderFullyPaid", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "OrderLine", + "fields": [ + { + "name": "allocations", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Allocation", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "digitalContentUrl", + "type": { + "kind": "OBJECT", + "name": "DigitalContentUrl", + "ofType": null + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isShippingRequired", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "productName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "productSku", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "productVariantId", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "quantity", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "quantityFulfilled", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "quantityToFulfill", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "taxClass", + "type": { + "kind": "OBJECT", + "name": "TaxClass", + "ofType": null + }, + "args": [] + }, + { + "name": "taxClassMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "taxClassName", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "taxClassPrivateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "taxRate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "thumbnail", + "type": { + "kind": "OBJECT", + "name": "Image", + "ofType": null + }, + "args": [ + { + "name": "format", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "size", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "totalPrice", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + } + }, + "args": [] + }, + { + "name": "translatedProductName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "translatedVariantName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "undiscountedUnitPrice", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + } + }, + "args": [] + }, + { + "name": "unitDiscount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "unitDiscountReason", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "unitDiscountType", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "unitDiscountValue", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "unitPrice", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + } + }, + "args": [] + }, + { + "name": "variant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + }, + { + "name": "variantName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "OrderLineDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "orderLine", + "type": { + "kind": "OBJECT", + "name": "OrderLine", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderLineDiscountRemove", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "orderLine", + "type": { + "kind": "OBJECT", + "name": "OrderLine", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderLineDiscountUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "orderLine", + "type": { + "kind": "OBJECT", + "name": "OrderLine", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderLineUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "orderLine", + "type": { + "kind": "OBJECT", + "name": "OrderLine", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderLinesCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "orderLines", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderLine", + "ofType": null + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderMarkAsPaid", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderMetadataUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "OrderRefund", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderSettings", + "fields": [ + { + "name": "automaticallyConfirmAllNewOrders", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "automaticallyFulfillNonShippableGiftCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderSettingsError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderSettingsUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderSettingsError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "orderSettings", + "type": { + "kind": "OBJECT", + "name": "OrderSettings", + "ofType": null + }, + "args": [] + }, + { + "name": "orderSettingsErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderSettingsError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderUpdateShipping", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OrderUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "OrderVoid", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "orderErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OrderError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Page", + "fields": [ + { + "name": "attributes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SelectedAttribute", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "content", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "contentJson", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "created", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isPublished", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "pageType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "publicationDate", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "publishedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoDescription", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoTitle", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "slug", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "title", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "PageTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "PageAttributeAssign", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageType", + "type": { + "kind": "OBJECT", + "name": "PageType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageAttributeUnassign", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageType", + "type": { + "kind": "OBJECT", + "name": "PageType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageBulkPublish", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Page", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "page", + "type": { + "kind": "OBJECT", + "name": "Page", + "ofType": null + }, + "args": [] + }, + { + "name": "pageErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "page", + "type": { + "kind": "OBJECT", + "name": "Page", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "PageDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "page", + "type": { + "kind": "OBJECT", + "name": "Page", + "ofType": null + }, + "args": [] + }, + { + "name": "pageErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageDeleted", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "page", + "type": { + "kind": "OBJECT", + "name": "Page", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "PageError", + "fields": [ + { + "name": "attributes", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "values", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageInfo", + "fields": [ + { + "name": "endCursor", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "hasNextPage", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "hasPreviousPage", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "startCursor", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageReorderAttributeValues", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "page", + "type": { + "kind": "OBJECT", + "name": "Page", + "ofType": null + }, + "args": [] + }, + { + "name": "pageErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageTranslatableContent", + "fields": [ + { + "name": "attributeValues", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeValueTranslatableContent", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "content", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "contentJson", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "page", + "type": { + "kind": "OBJECT", + "name": "Page", + "ofType": null + }, + "args": [] + }, + { + "name": "seoDescription", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoTitle", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "title", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "PageTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "PageTranslate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "page", + "type": { + "kind": "OBJECT", + "name": "PageTranslatableContent", + "ofType": null + }, + "args": [] + }, + { + "name": "translationErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageTranslation", + "fields": [ + { + "name": "content", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "contentJson", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LanguageDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "seoDescription", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoTitle", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "title", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "PageType", + "fields": [ + { + "name": "attributes", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "availableAttributes", + "type": { + "kind": "OBJECT", + "name": "AttributeCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "hasPages", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "slug", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "PageTypeBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageTypeCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageTypeCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageTypeCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageType", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageTypeCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageType", + "type": { + "kind": "OBJECT", + "name": "PageType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageTypeCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "pageType", + "type": { + "kind": "OBJECT", + "name": "PageType", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "PageTypeDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageType", + "type": { + "kind": "OBJECT", + "name": "PageType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageTypeDeleted", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "pageType", + "type": { + "kind": "OBJECT", + "name": "PageType", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "PageTypeReorderAttributes", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageType", + "type": { + "kind": "OBJECT", + "name": "PageType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageTypeUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageType", + "type": { + "kind": "OBJECT", + "name": "PageType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageTypeUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "pageType", + "type": { + "kind": "OBJECT", + "name": "PageType", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "PageUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "page", + "type": { + "kind": "OBJECT", + "name": "Page", + "ofType": null + }, + "args": [] + }, + { + "name": "pageErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PageUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "page", + "type": { + "kind": "OBJECT", + "name": "Page", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "PasswordChange", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Payment", + "fields": [ + { + "name": "actions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + }, + { + "name": "availableCaptureAmount", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "availableRefundAmount", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "capturedAmount", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "chargeStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "created", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "creditCard", + "type": { + "kind": "OBJECT", + "name": "CreditCard", + "ofType": null + }, + "args": [] + }, + { + "name": "customerIpAddress", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "gateway", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isActive", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "modified", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentMethodType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "token", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "total", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "transactions", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Transaction", + "ofType": null + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentAuthorize", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentCapture", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PaymentCaptureEvent", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentCheckBalance", + "fields": [ + { + "name": "data", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "paymentErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PaymentConfirmEvent", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PaymentCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PaymentError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "variants", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PaymentGateway", + "fields": [ + { + "name": "config", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GatewayConfigLine", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "currencies", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PaymentInitialize", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "initializedPayment", + "type": { + "kind": "OBJECT", + "name": "PaymentInitialized", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PaymentInitialized", + "fields": [ + { + "name": "data", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "gateway", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PaymentListGateways", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentProcessEvent", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentRefund", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PaymentRefundEvent", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentSource", + "fields": [ + { + "name": "creditCardInfo", + "type": { + "kind": "OBJECT", + "name": "CreditCard", + "ofType": null + }, + "args": [] + }, + { + "name": "gateway", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "paymentMethodId", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PaymentVoid", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PaymentVoidEvent", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "Permission", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PermissionGroupCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PermissionGroupError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "group", + "type": { + "kind": "OBJECT", + "name": "Group", + "ofType": null + }, + "args": [] + }, + { + "name": "permissionGroupErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PermissionGroupError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PermissionGroupCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "permissionGroup", + "type": { + "kind": "OBJECT", + "name": "Group", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "PermissionGroupDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PermissionGroupError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "group", + "type": { + "kind": "OBJECT", + "name": "Group", + "ofType": null + }, + "args": [] + }, + { + "name": "permissionGroupErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PermissionGroupError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PermissionGroupDeleted", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "permissionGroup", + "type": { + "kind": "OBJECT", + "name": "Group", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "PermissionGroupError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "permissions", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "users", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PermissionGroupUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PermissionGroupError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "group", + "type": { + "kind": "OBJECT", + "name": "Group", + "ofType": null + }, + "args": [] + }, + { + "name": "permissionGroupErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PermissionGroupError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PermissionGroupUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "permissionGroup", + "type": { + "kind": "OBJECT", + "name": "Group", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "Plugin", + "fields": [ + { + "name": "channelConfigurations", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PluginConfiguration", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "description", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "globalConfiguration", + "type": { + "kind": "OBJECT", + "name": "PluginConfiguration", + "ofType": null + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PluginConfiguration", + "fields": [ + { + "name": "active", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "channel", + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + "args": [] + }, + { + "name": "configuration", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ConfigurationItem", + "ofType": null + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PluginCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PluginCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PluginCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Plugin", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PluginError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PluginUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PluginError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "plugin", + "type": { + "kind": "OBJECT", + "name": "Plugin", + "ofType": null + }, + "args": [] + }, + { + "name": "pluginsErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PluginError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PreorderData", + "fields": [ + { + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "globalSoldUnits", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "globalThreshold", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PreorderThreshold", + "fields": [ + { + "name": "quantity", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "soldUnits", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Product", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "OBJECT", + "name": "SelectedAttribute", + "ofType": null + }, + "args": [ + { + "name": "slug", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "attributes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SelectedAttribute", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "availableForPurchase", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "availableForPurchaseAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "category", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [] + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "channelListings", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductChannelListing", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "chargeTaxes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "collections", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "created", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "defaultVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "descriptionJson", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "imageById", + "type": { + "kind": "OBJECT", + "name": "ProductImage", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "images", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductImage", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "isAvailable", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "address", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "isAvailableForPurchase", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "media", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductMedia", + "ofType": null + } + } + }, + "args": [ + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "mediaById", + "type": { + "kind": "OBJECT", + "name": "ProductMedia", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "pricing", + "type": { + "kind": "OBJECT", + "name": "ProductPricingInfo", + "ofType": null + }, + "args": [ + { + "name": "address", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "productType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rating", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoDescription", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoTitle", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "slug", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "taxClass", + "type": { + "kind": "OBJECT", + "name": "TaxClass", + "ofType": null + }, + "args": [] + }, + { + "name": "taxType", + "type": { + "kind": "OBJECT", + "name": "TaxType", + "ofType": null + }, + "args": [] + }, + { + "name": "thumbnail", + "type": { + "kind": "OBJECT", + "name": "Image", + "ofType": null + }, + "args": [ + { + "name": "format", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "size", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "ProductTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "variant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sku", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "variants", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "weight", + "type": { + "kind": "OBJECT", + "name": "Weight", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductAttributeAssign", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productType", + "type": { + "kind": "OBJECT", + "name": "ProductType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductAttributeAssignmentUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productType", + "type": { + "kind": "OBJECT", + "name": "ProductType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductAttributeUnassign", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productType", + "type": { + "kind": "OBJECT", + "name": "ProductType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductChannelListing", + "fields": [ + { + "name": "availableForPurchase", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "availableForPurchaseAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "channel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + } + }, + "args": [] + }, + { + "name": "discountedPrice", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isAvailableForPurchase", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "isPublished", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "margin", + "type": { + "kind": "OBJECT", + "name": "Margin", + "ofType": null + }, + "args": [] + }, + { + "name": "pricing", + "type": { + "kind": "OBJECT", + "name": "ProductPricingInfo", + "ofType": null + }, + "args": [ + { + "name": "address", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "publicationDate", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "publishedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "purchaseCost", + "type": { + "kind": "OBJECT", + "name": "MoneyRange", + "ofType": null + }, + "args": [] + }, + { + "name": "visibleInListings", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductChannelListingError", + "fields": [ + { + "name": "attributes", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "channels", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "values", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "variants", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductChannelListingUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductChannelListingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [] + }, + { + "name": "productChannelListingErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductChannelListingError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductCreated", + "fields": [ + { + "name": "category", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductDeleted", + "fields": [ + { + "name": "category", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductError", + "fields": [ + { + "name": "attributes", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "values", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductImage", + "fields": [ + { + "name": "alt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "sortOrder", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "url", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [ + { + "name": "format", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "size", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductMedia", + "fields": [ + { + "name": "alt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "oembedData", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "sortOrder", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "url", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [ + { + "name": "format", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "size", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductMediaBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductMediaCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "media", + "type": { + "kind": "OBJECT", + "name": "ProductMedia", + "ofType": null + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductMediaDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "media", + "type": { + "kind": "OBJECT", + "name": "ProductMedia", + "ofType": null + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductMediaReorder", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "media", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductMedia", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductMediaUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "media", + "type": { + "kind": "OBJECT", + "name": "ProductMedia", + "ofType": null + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductMetadataUpdated", + "fields": [ + { + "name": "category", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductPricingInfo", + "fields": [ + { + "name": "discount", + "type": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + }, + "args": [] + }, + { + "name": "discountLocalCurrency", + "type": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + }, + "args": [] + }, + { + "name": "displayGrossPrices", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "onSale", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "priceRange", + "type": { + "kind": "OBJECT", + "name": "TaxedMoneyRange", + "ofType": null + }, + "args": [] + }, + { + "name": "priceRangeLocalCurrency", + "type": { + "kind": "OBJECT", + "name": "TaxedMoneyRange", + "ofType": null + }, + "args": [] + }, + { + "name": "priceRangeUndiscounted", + "type": { + "kind": "OBJECT", + "name": "TaxedMoneyRange", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductReorderAttributeValues", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductTranslatableContent", + "fields": [ + { + "name": "attributeValues", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeValueTranslatableContent", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "descriptionJson", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [] + }, + { + "name": "seoDescription", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoTitle", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "ProductTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductTranslate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [] + }, + { + "name": "translationErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductTranslation", + "fields": [ + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "descriptionJson", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LanguageDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoDescription", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "seoTitle", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductType", + "fields": [ + { + "name": "assignedVariantAttributes", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AssignedVariantAttribute", + "ofType": null + } + } + }, + "args": [ + { + "name": "variantSelection", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "availableAttributes", + "type": { + "kind": "OBJECT", + "name": "AttributeCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "hasVariants", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isDigital", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isShippingRequired", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "kind", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "productAttributes", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "products", + "type": { + "kind": "OBJECT", + "name": "ProductCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "slug", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "taxClass", + "type": { + "kind": "OBJECT", + "name": "TaxClass", + "ofType": null + }, + "args": [] + }, + { + "name": "taxType", + "type": { + "kind": "OBJECT", + "name": "TaxType", + "ofType": null + }, + "args": [] + }, + { + "name": "variantAttributes", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + } + } + }, + "args": [ + { + "name": "variantSelection", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "weight", + "type": { + "kind": "OBJECT", + "name": "Weight", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductTypeBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductTypeCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductTypeCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductTypeCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductType", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductTypeCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productType", + "type": { + "kind": "OBJECT", + "name": "ProductType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductTypeDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productType", + "type": { + "kind": "OBJECT", + "name": "ProductType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductTypeReorderAttributes", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productType", + "type": { + "kind": "OBJECT", + "name": "ProductType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductTypeUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productType", + "type": { + "kind": "OBJECT", + "name": "ProductType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductUpdated", + "fields": [ + { + "name": "category", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductVariant", + "fields": [ + { + "name": "attributes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SelectedAttribute", + "ofType": null + } + } + } + }, + "args": [ + { + "name": "variantSelection", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "channelListings", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductVariantChannelListing", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "created", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "digitalContent", + "type": { + "kind": "OBJECT", + "name": "DigitalContent", + "ofType": null + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "images", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductImage", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "margin", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "media", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductMedia", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "preorder", + "type": { + "kind": "OBJECT", + "name": "PreorderData", + "ofType": null + }, + "args": [] + }, + { + "name": "pricing", + "type": { + "kind": "OBJECT", + "name": "VariantPricingInfo", + "ofType": null + }, + "args": [ + { + "name": "address", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "product", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + } + }, + "args": [] + }, + { + "name": "quantityAvailable", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "address", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "countryCode", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "quantityLimitPerCustomer", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "quantityOrdered", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "revenue", + "type": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + }, + "args": [ + { + "name": "period", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "sku", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "stocks", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Stock", + "ofType": null + } + } + }, + "args": [ + { + "name": "address", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "countryCode", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "trackInventory", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "ProductVariantTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "weight", + "type": { + "kind": "OBJECT", + "name": "Weight", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductVariantBackInStock", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductVariantBulkCreate", + "fields": [ + { + "name": "bulkProductErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "BulkProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "BulkProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productVariants", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantChannelListing", + "fields": [ + { + "name": "channel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + } + }, + "args": [] + }, + { + "name": "costPrice", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "margin", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "preorderThreshold", + "type": { + "kind": "OBJECT", + "name": "PreorderThreshold", + "ofType": null + }, + "args": [] + }, + { + "name": "price", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductVariantChannelListingUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductChannelListingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productChannelListingErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductChannelListingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "variant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductVariantCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductVariantDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantDeleted", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductVariantMetadataUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductVariantOutOfStock", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductVariantPreorderDeactivate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantReorder", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantReorderAttributeValues", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantSetDefault", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantStocksCreate", + "fields": [ + { + "name": "bulkStockErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "BulkStockError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "BulkStockError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantStocksDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StockError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + }, + { + "name": "stockErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StockError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantStocksUpdate", + "fields": [ + { + "name": "bulkStockErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "BulkStockError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "BulkStockError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantTranslatableContent", + "fields": [ + { + "name": "attributeValues", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeValueTranslatableContent", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "ProductVariantTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductVariantTranslate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + }, + { + "name": "translationErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantTranslation", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LanguageDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductVariantUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProductVariantUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "Query", + "fields": [ + { + "name": "_entities", + "type": { + "kind": "LIST", + "ofType": { + "kind": "UNION", + "name": "_Entity", + "ofType": null + } + }, + "args": [ + { + "name": "representations", + "type": { + "kind": "LIST", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "_service", + "type": { + "kind": "OBJECT", + "name": "_Service", + "ofType": null + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "addressValidationRules", + "type": { + "kind": "OBJECT", + "name": "AddressValidationData", + "ofType": null + }, + "args": [ + { + "name": "city", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "cityArea", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "countryArea", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "countryCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "app", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "appExtension", + "type": { + "kind": "OBJECT", + "name": "AppExtension", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "appExtensions", + "type": { + "kind": "OBJECT", + "name": "AppExtensionCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "apps", + "type": { + "kind": "OBJECT", + "name": "AppCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "appsInstallations", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AppInstallation", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "attribute", + "type": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "slug", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "attributes", + "type": { + "kind": "OBJECT", + "name": "AttributeCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "categories", + "type": { + "kind": "OBJECT", + "name": "CategoryCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "level", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "category", + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "slug", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "channel", + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "slug", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "channels", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutLines", + "type": { + "kind": "OBJECT", + "name": "CheckoutLineCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkouts", + "type": { + "kind": "OBJECT", + "name": "CheckoutCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "collection", + "type": { + "kind": "OBJECT", + "name": "Collection", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "slug", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "collections", + "type": { + "kind": "OBJECT", + "name": "CollectionCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "customers", + "type": { + "kind": "OBJECT", + "name": "UserCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "digitalContent", + "type": { + "kind": "OBJECT", + "name": "DigitalContent", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "digitalContents", + "type": { + "kind": "OBJECT", + "name": "DigitalContentCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "draftOrders", + "type": { + "kind": "OBJECT", + "name": "OrderCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "exportFile", + "type": { + "kind": "OBJECT", + "name": "ExportFile", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "exportFiles", + "type": { + "kind": "OBJECT", + "name": "ExportFileCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "giftCard", + "type": { + "kind": "OBJECT", + "name": "GiftCard", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "giftCardCurrencies", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + }, + { + "name": "giftCardSettings", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "GiftCardSettings", + "ofType": null + } + }, + "args": [] + }, + { + "name": "giftCardTags", + "type": { + "kind": "OBJECT", + "name": "GiftCardTagCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "giftCards", + "type": { + "kind": "OBJECT", + "name": "GiftCardCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "homepageEvents", + "type": { + "kind": "OBJECT", + "name": "OrderEventCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "me", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + }, + { + "name": "menu", + "type": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "slug", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "menuItem", + "type": { + "kind": "OBJECT", + "name": "MenuItem", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "menuItems", + "type": { + "kind": "OBJECT", + "name": "MenuItemCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "menus", + "type": { + "kind": "OBJECT", + "name": "MenuCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "orderByToken", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [ + { + "name": "token", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "orderSettings", + "type": { + "kind": "OBJECT", + "name": "OrderSettings", + "ofType": null + }, + "args": [] + }, + { + "name": "orders", + "type": { + "kind": "OBJECT", + "name": "OrderCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "ordersTotal", + "type": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "period", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "page", + "type": { + "kind": "OBJECT", + "name": "Page", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "slug", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "pageType", + "type": { + "kind": "OBJECT", + "name": "PageType", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "pageTypes", + "type": { + "kind": "OBJECT", + "name": "PageTypeCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "pages", + "type": { + "kind": "OBJECT", + "name": "PageCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "payments", + "type": { + "kind": "OBJECT", + "name": "PaymentCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "permissionGroup", + "type": { + "kind": "OBJECT", + "name": "Group", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "permissionGroups", + "type": { + "kind": "OBJECT", + "name": "GroupCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "plugin", + "type": { + "kind": "OBJECT", + "name": "Plugin", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "plugins", + "type": { + "kind": "OBJECT", + "name": "PluginCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "product", + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "slug", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "productType", + "type": { + "kind": "OBJECT", + "name": "ProductType", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "productTypes", + "type": { + "kind": "OBJECT", + "name": "ProductTypeCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sku", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "productVariants", + "type": { + "kind": "OBJECT", + "name": "ProductVariantCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "ids", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "products", + "type": { + "kind": "OBJECT", + "name": "ProductCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "reportProductSales", + "type": { + "kind": "OBJECT", + "name": "ProductVariantCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "period", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "sale", + "type": { + "kind": "OBJECT", + "name": "Sale", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "sales", + "type": { + "kind": "OBJECT", + "name": "SaleCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "query", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "shippingZone", + "type": { + "kind": "OBJECT", + "name": "ShippingZone", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "shippingZones", + "type": { + "kind": "OBJECT", + "name": "ShippingZoneCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "shop", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Shop", + "ofType": null + } + }, + "args": [] + }, + { + "name": "staffUsers", + "type": { + "kind": "OBJECT", + "name": "UserCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "stock", + "type": { + "kind": "OBJECT", + "name": "Stock", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "stocks", + "type": { + "kind": "OBJECT", + "name": "StockCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "taxClass", + "type": { + "kind": "OBJECT", + "name": "TaxClass", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "taxClasses", + "type": { + "kind": "OBJECT", + "name": "TaxClassCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "taxConfiguration", + "type": { + "kind": "OBJECT", + "name": "TaxConfiguration", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "taxConfigurations", + "type": { + "kind": "OBJECT", + "name": "TaxConfigurationCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "taxCountryConfiguration", + "type": { + "kind": "OBJECT", + "name": "TaxCountryConfiguration", + "ofType": null + }, + "args": [ + { + "name": "countryCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "taxCountryConfigurations", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxCountryConfiguration", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "taxTypes", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxType", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "transaction", + "type": { + "kind": "OBJECT", + "name": "TransactionItem", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "translation", + "type": { + "kind": "UNION", + "name": "TranslatableItem", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "kind", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "translations", + "type": { + "kind": "OBJECT", + "name": "TranslatableItemConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "kind", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [ + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "voucher", + "type": { + "kind": "OBJECT", + "name": "Voucher", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "vouchers", + "type": { + "kind": "OBJECT", + "name": "VoucherCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "query", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "warehouse", + "type": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + }, + "args": [ + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "warehouses", + "type": { + "kind": "OBJECT", + "name": "WarehouseCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "webhook", + "type": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "webhookEvents", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WebhookEvent", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "webhookSamplePayload", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "eventType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ReducedRate", + "fields": [ + { + "name": "rate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "rateType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "RefreshToken", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "RequestEmailChange", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "RequestPasswordReset", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Sale", + "fields": [ + { + "name": "categories", + "type": { + "kind": "OBJECT", + "name": "CategoryCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "channelListings", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SaleChannelListing", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "collections", + "type": { + "kind": "OBJECT", + "name": "CollectionCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "created", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "currency", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "discountValue", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "products", + "type": { + "kind": "OBJECT", + "name": "ProductCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "startDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "SaleTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "variants", + "type": { + "kind": "OBJECT", + "name": "ProductVariantCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "SaleAddCatalogues", + "fields": [ + { + "name": "discountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "sale", + "type": { + "kind": "OBJECT", + "name": "Sale", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SaleBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "discountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SaleChannelListing", + "fields": [ + { + "name": "channel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + } + }, + "args": [] + }, + { + "name": "currency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "discountValue", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "SaleChannelListingUpdate", + "fields": [ + { + "name": "discountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "sale", + "type": { + "kind": "OBJECT", + "name": "Sale", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SaleCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SaleCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SaleCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Sale", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SaleCreate", + "fields": [ + { + "name": "discountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "sale", + "type": { + "kind": "OBJECT", + "name": "Sale", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SaleCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "sale", + "type": { + "kind": "OBJECT", + "name": "Sale", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "SaleDelete", + "fields": [ + { + "name": "discountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "sale", + "type": { + "kind": "OBJECT", + "name": "Sale", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SaleDeleted", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "sale", + "type": { + "kind": "OBJECT", + "name": "Sale", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "SaleRemoveCatalogues", + "fields": [ + { + "name": "discountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "sale", + "type": { + "kind": "OBJECT", + "name": "Sale", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SaleToggle", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "sale", + "type": { + "kind": "OBJECT", + "name": "Sale", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "SaleTranslatableContent", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "sale", + "type": { + "kind": "OBJECT", + "name": "Sale", + "ofType": null + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "SaleTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "SaleTranslate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "sale", + "type": { + "kind": "OBJECT", + "name": "Sale", + "ofType": null + }, + "args": [] + }, + { + "name": "translationErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SaleTranslation", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LanguageDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "SaleUpdate", + "fields": [ + { + "name": "discountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "sale", + "type": { + "kind": "OBJECT", + "name": "Sale", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SaleUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "sale", + "type": { + "kind": "OBJECT", + "name": "Sale", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "SelectedAttribute", + "fields": [ + { + "name": "attribute", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Attribute", + "ofType": null + } + }, + "args": [] + }, + { + "name": "values", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AttributeValue", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SetPassword", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "csrfToken", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "refreshToken", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "token", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingError", + "fields": [ + { + "name": "channels", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "warehouses", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingListMethodsForCheckout", + "fields": [ + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingMethods", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ShippingMethod", + "fields": [ + { + "name": "active", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "maximumDeliveryDays", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "maximumOrderPrice", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "maximumOrderWeight", + "type": { + "kind": "OBJECT", + "name": "Weight", + "ofType": null + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "minimumDeliveryDays", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "minimumOrderPrice", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "minimumOrderWeight", + "type": { + "kind": "OBJECT", + "name": "Weight", + "ofType": null + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "price", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "ShippingMethodTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "ShippingMethodChannelListing", + "fields": [ + { + "name": "channel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "maximumOrderPrice", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "minimumOrderPrice", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "price", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "ShippingMethodChannelListingUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingMethod", + "type": { + "kind": "OBJECT", + "name": "ShippingMethodType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingMethodPostalCodeRule", + "fields": [ + { + "name": "end", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "inclusionType", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "start", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "ShippingMethodTranslatableContent", + "fields": [ + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "shippingMethod", + "type": { + "kind": "OBJECT", + "name": "ShippingMethodType", + "ofType": null + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "ShippingMethodTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "ShippingMethodTranslation", + "fields": [ + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LanguageDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "ShippingMethodType", + "fields": [ + { + "name": "channelListings", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethodChannelListing", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "excludedProducts", + "type": { + "kind": "OBJECT", + "name": "ProductCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "maximumDeliveryDays", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "maximumOrderPrice", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "maximumOrderWeight", + "type": { + "kind": "OBJECT", + "name": "Weight", + "ofType": null + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "minimumDeliveryDays", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "minimumOrderPrice", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "minimumOrderWeight", + "type": { + "kind": "OBJECT", + "name": "Weight", + "ofType": null + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "postalCodeRules", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethodPostalCodeRule", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "taxClass", + "type": { + "kind": "OBJECT", + "name": "TaxClass", + "ofType": null + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "ShippingMethodTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "ShippingMethodsPerCountry", + "fields": [ + { + "name": "countryCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "shippingMethods", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingPriceBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingPriceCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingMethod", + "type": { + "kind": "OBJECT", + "name": "ShippingMethodType", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingZone", + "type": { + "kind": "OBJECT", + "name": "ShippingZone", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingPriceCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingMethod", + "type": { + "kind": "OBJECT", + "name": "ShippingMethodType", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "shippingZone", + "type": { + "kind": "OBJECT", + "name": "ShippingZone", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ShippingPriceDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingMethod", + "type": { + "kind": "OBJECT", + "name": "ShippingMethodType", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingZone", + "type": { + "kind": "OBJECT", + "name": "ShippingZone", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingPriceDeleted", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingMethod", + "type": { + "kind": "OBJECT", + "name": "ShippingMethodType", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "shippingZone", + "type": { + "kind": "OBJECT", + "name": "ShippingZone", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ShippingPriceExcludeProducts", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingMethod", + "type": { + "kind": "OBJECT", + "name": "ShippingMethodType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingPriceRemoveProductFromExclude", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingMethod", + "type": { + "kind": "OBJECT", + "name": "ShippingMethodType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingPriceTranslate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingMethod", + "type": { + "kind": "OBJECT", + "name": "ShippingMethodType", + "ofType": null + }, + "args": [] + }, + { + "name": "translationErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingPriceUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingMethod", + "type": { + "kind": "OBJECT", + "name": "ShippingMethodType", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingZone", + "type": { + "kind": "OBJECT", + "name": "ShippingZone", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingPriceUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingMethod", + "type": { + "kind": "OBJECT", + "name": "ShippingMethodType", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "shippingZone", + "type": { + "kind": "OBJECT", + "name": "ShippingZone", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ShippingZone", + "fields": [ + { + "name": "channels", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "countries", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CountryDisplay", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "default", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "priceRange", + "type": { + "kind": "OBJECT", + "name": "MoneyRange", + "ofType": null + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "shippingMethods", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethodType", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "warehouses", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "ShippingZoneBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingZoneCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingZoneCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingZoneCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingZone", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingZoneCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingZone", + "type": { + "kind": "OBJECT", + "name": "ShippingZone", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingZoneCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingZone", + "type": { + "kind": "OBJECT", + "name": "ShippingZone", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ShippingZoneDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingZone", + "type": { + "kind": "OBJECT", + "name": "ShippingZone", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingZoneDeleted", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingZone", + "type": { + "kind": "OBJECT", + "name": "ShippingZone", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ShippingZoneMetadataUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingZone", + "type": { + "kind": "OBJECT", + "name": "ShippingZone", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "ShippingZoneUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shippingZone", + "type": { + "kind": "OBJECT", + "name": "ShippingZone", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShippingZoneUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingZone", + "type": { + "kind": "OBJECT", + "name": "ShippingZone", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "Shop", + "fields": [ + { + "name": "automaticFulfillmentDigitalProducts", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "availableExternalAuthentications", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExternalAuthentication", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "availablePaymentGateways", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentGateway", + "ofType": null + } + } + } + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "currency", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "availableShippingMethods", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + } + } + }, + "args": [ + { + "name": "address", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "channelCurrencies", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + }, + { + "name": "chargeTaxesOnShipping", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "companyAddress", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "countries", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CountryDisplay", + "ofType": null + } + } + } + }, + "args": [ + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "languageCode", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "customerSetPasswordUrl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "defaultCountry", + "type": { + "kind": "OBJECT", + "name": "CountryDisplay", + "ofType": null + }, + "args": [] + }, + { + "name": "defaultDigitalMaxDownloads", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "defaultDigitalUrlValidDays", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "defaultMailSenderAddress", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "defaultMailSenderName", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "defaultWeightUnit", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "displayGrossPrices", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "domain", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Domain", + "ofType": null + } + }, + "args": [] + }, + { + "name": "fulfillmentAllowUnpaid", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "fulfillmentAutoApprove", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "headerText", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "includeTaxesInPrices", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "languages", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LanguageDisplay", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "limitQuantityPerCheckout", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "limits", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LimitInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "permissions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Permission", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "phonePrefixes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + }, + { + "name": "reserveStockDurationAnonymousUser", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "reserveStockDurationAuthenticatedUser", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "schemaVersion", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "staffNotificationRecipients", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StaffNotificationRecipient", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "trackInventoryByDefault", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "ShopTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "version", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShopAddressUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShopError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shop", + "type": { + "kind": "OBJECT", + "name": "Shop", + "ofType": null + }, + "args": [] + }, + { + "name": "shopErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShopError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShopDomainUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShopError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shop", + "type": { + "kind": "OBJECT", + "name": "Shop", + "ofType": null + }, + "args": [] + }, + { + "name": "shopErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShopError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShopError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShopFetchTaxRates", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShopError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shop", + "type": { + "kind": "OBJECT", + "name": "Shop", + "ofType": null + }, + "args": [] + }, + { + "name": "shopErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShopError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShopSettingsTranslate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shop", + "type": { + "kind": "OBJECT", + "name": "Shop", + "ofType": null + }, + "args": [] + }, + { + "name": "translationErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShopSettingsUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShopError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shop", + "type": { + "kind": "OBJECT", + "name": "Shop", + "ofType": null + }, + "args": [] + }, + { + "name": "shopErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShopError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ShopTranslation", + "fields": [ + { + "name": "description", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "headerText", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LanguageDisplay", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "StaffBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StaffError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "staffErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StaffError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "StaffCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StaffError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "staffErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StaffError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "StaffCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "StaffDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StaffError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "staffErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StaffError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "StaffDeleted", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "StaffError", + "fields": [ + { + "name": "addressType", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "groups", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "permissions", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + }, + { + "name": "users", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "StaffNotificationRecipient", + "fields": [ + { + "name": "active", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "StaffNotificationRecipientCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShopError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shopErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShopError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "staffNotificationRecipient", + "type": { + "kind": "OBJECT", + "name": "StaffNotificationRecipient", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "StaffNotificationRecipientDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShopError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shopErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShopError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "staffNotificationRecipient", + "type": { + "kind": "OBJECT", + "name": "StaffNotificationRecipient", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "StaffNotificationRecipientUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShopError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "shopErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShopError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "staffNotificationRecipient", + "type": { + "kind": "OBJECT", + "name": "StaffNotificationRecipient", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "StaffUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StaffError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "staffErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StaffError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "StaffUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "Stock", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + } + }, + "args": [] + }, + { + "name": "quantity", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "quantityAllocated", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "quantityReserved", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "StockCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StockCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "StockCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Stock", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "StockError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "StockSettings", + "fields": [ + { + "name": "allocationStrategy", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Subscription", + "fields": [ + { + "name": "event", + "type": { + "kind": "INTERFACE", + "name": "Event", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxClass", + "fields": [ + { + "name": "countries", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxClassCountryRate", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "TaxClassCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxClassCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxClassCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxClass", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxClassCountryRate", + "fields": [ + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CountryDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "taxClass", + "type": { + "kind": "OBJECT", + "name": "TaxClass", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxClassCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxClassCreateError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "taxClass", + "type": { + "kind": "OBJECT", + "name": "TaxClass", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxClassCreateError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "countryCodes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxClassDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxClassDeleteError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "taxClass", + "type": { + "kind": "OBJECT", + "name": "TaxClass", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxClassDeleteError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxClassUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxClassUpdateError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "taxClass", + "type": { + "kind": "OBJECT", + "name": "TaxClass", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxClassUpdateError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "countryCodes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxConfiguration", + "fields": [ + { + "name": "channel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + } + }, + "args": [] + }, + { + "name": "chargeTaxes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "countries", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxConfigurationPerCountry", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "displayGrossPrices", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "pricesEnteredWithTax", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "taxCalculationStrategy", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "TaxConfigurationCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxConfigurationCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxConfigurationCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxConfiguration", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxConfigurationPerCountry", + "fields": [ + { + "name": "chargeTaxes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CountryDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "displayGrossPrices", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "taxCalculationStrategy", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxConfigurationUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxConfigurationUpdateError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "taxConfiguration", + "type": { + "kind": "OBJECT", + "name": "TaxConfiguration", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxConfigurationUpdateError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "countryCodes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxCountryConfiguration", + "fields": [ + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CountryDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "taxClassCountryRates", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxClassCountryRate", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxCountryConfigurationDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxCountryConfigurationDeleteError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "taxCountryConfiguration", + "type": { + "kind": "OBJECT", + "name": "TaxCountryConfiguration", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxCountryConfigurationDeleteError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxCountryConfigurationUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxCountryConfigurationUpdateError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "taxCountryConfiguration", + "type": { + "kind": "OBJECT", + "name": "TaxCountryConfiguration", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxCountryConfigurationUpdateError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "taxClassIds", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxExemptionManage", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxExemptionManageError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "taxableObject", + "type": { + "kind": "UNION", + "name": "TaxSourceObject", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxExemptionManageError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "UNION", + "name": "TaxSourceLine", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CheckoutLine" + }, + { + "kind": "OBJECT", + "name": "OrderLine" + } + ] + }, + { + "kind": "UNION", + "name": "TaxSourceObject", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Checkout" + }, + { + "kind": "OBJECT", + "name": "Order" + } + ] + }, + { + "kind": "OBJECT", + "name": "TaxType", + "fields": [ + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "taxCode", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxableObject", + "fields": [ + { + "name": "address", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "channel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + } + }, + "args": [] + }, + { + "name": "currency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "discounts", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxableObjectDiscount", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "lines", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TaxableObjectLine", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pricesEnteredWithTax", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "shippingPrice", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "sourceObject", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "TaxSourceObject", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxableObjectDiscount", + "fields": [ + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxableObjectLine", + "fields": [ + { + "name": "chargeTaxes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "productName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "productSku", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "quantity", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "sourceLine", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "TaxSourceLine", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalPrice", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "unitPrice", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "variantName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxedMoney", + "fields": [ + { + "name": "currency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "gross", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "net", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "tax", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TaxedMoneyRange", + "fields": [ + { + "name": "start", + "type": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + }, + "args": [] + }, + { + "name": "stop", + "type": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TimePeriod", + "fields": [ + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Transaction", + "fields": [ + { + "name": "amount", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "created", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "error", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "gatewayResponse", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isSuccess", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "kind", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + } + }, + "args": [] + }, + { + "name": "token", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "TransactionAction", + "fields": [ + { + "name": "actionType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TransactionActionRequest", + "fields": [ + { + "name": "action", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TransactionAction", + "ofType": null + } + }, + "args": [] + }, + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "transaction", + "type": { + "kind": "OBJECT", + "name": "TransactionItem", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "TransactionCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TransactionCreateError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "transaction", + "type": { + "kind": "OBJECT", + "name": "TransactionItem", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TransactionCreateError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TransactionEvent", + "fields": [ + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "reference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "TransactionItem", + "fields": [ + { + "name": "actions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + }, + "args": [] + }, + { + "name": "authorizedAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "chargedAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "events", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TransactionEvent", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "modifiedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "order", + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "reference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "refundedAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "voidedAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "TransactionItemMetadataUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "transaction", + "type": { + "kind": "OBJECT", + "name": "TransactionItem", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "TransactionRequestAction", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TransactionRequestActionError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "transaction", + "type": { + "kind": "OBJECT", + "name": "TransactionItem", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TransactionRequestActionError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TransactionUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TransactionUpdateError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "transaction", + "type": { + "kind": "OBJECT", + "name": "TransactionItem", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TransactionUpdateError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "UNION", + "name": "TranslatableItem", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AttributeTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "AttributeValueTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "CategoryTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "CollectionTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "MenuItemTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "PageTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "ProductTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "ProductVariantTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "SaleTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "ShippingMethodTranslatableContent" + }, + { + "kind": "OBJECT", + "name": "VoucherTranslatableContent" + } + ] + }, + { + "kind": "OBJECT", + "name": "TranslatableItemConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslatableItemEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TranslatableItemEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "TranslatableItem", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "TranslationCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "UNION", + "name": "TranslationTypes", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "TranslationError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "UNION", + "name": "TranslationTypes", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AttributeTranslation" + }, + { + "kind": "OBJECT", + "name": "AttributeValueTranslation" + }, + { + "kind": "OBJECT", + "name": "CategoryTranslation" + }, + { + "kind": "OBJECT", + "name": "CollectionTranslation" + }, + { + "kind": "OBJECT", + "name": "MenuItemTranslation" + }, + { + "kind": "OBJECT", + "name": "PageTranslation" + }, + { + "kind": "OBJECT", + "name": "ProductTranslation" + }, + { + "kind": "OBJECT", + "name": "ProductVariantTranslation" + }, + { + "kind": "OBJECT", + "name": "SaleTranslation" + }, + { + "kind": "OBJECT", + "name": "ShippingMethodTranslation" + }, + { + "kind": "OBJECT", + "name": "VoucherTranslation" + } + ] + }, + { + "kind": "OBJECT", + "name": "TranslationUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "UNION", + "name": "TranslationTypes", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "UpdateMetadata", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "item", + "type": { + "kind": "INTERFACE", + "name": "ObjectWithMetadata", + "ofType": null + }, + "args": [] + }, + { + "name": "metadataErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "UpdatePrivateMetadata", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "item", + "type": { + "kind": "INTERFACE", + "name": "ObjectWithMetadata", + "ofType": null + }, + "args": [] + }, + { + "name": "metadataErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "UploadError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "User", + "fields": [ + { + "name": "addresses", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "avatar", + "type": { + "kind": "OBJECT", + "name": "Image", + "ofType": null + }, + "args": [ + { + "name": "format", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "size", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkout", + "type": { + "kind": "OBJECT", + "name": "Checkout", + "ofType": null + }, + "args": [] + }, + { + "name": "checkoutIds", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkoutTokens", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "checkouts", + "type": { + "kind": "OBJECT", + "name": "CheckoutCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "dateJoined", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "defaultBillingAddress", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "defaultShippingAddress", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "editableGroups", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Group", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "email", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "events", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CustomerEvent", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "firstName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "giftCards", + "type": { + "kind": "OBJECT", + "name": "GiftCardCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isActive", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isStaff", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "lastLogin", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "lastName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "note", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "orders", + "type": { + "kind": "OBJECT", + "name": "OrderCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "permissionGroups", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Group", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "storedPaymentSources", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentSource", + "ofType": null + } + } + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "userPermissions", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "UserPermission", + "ofType": null + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "UserAvatarDelete", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "UserAvatarUpdate", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "UserBulkSetActive", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "UserCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "UserCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "UserCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "UserPermission", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "sourcePermissionGroups", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Group", + "ofType": null + } + } + }, + "args": [ + { + "name": "userId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VAT", + "fields": [ + { + "name": "countryCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "reducedRates", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ReducedRate", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "standardRate", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VariantMediaAssign", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "media", + "type": { + "kind": "OBJECT", + "name": "ProductMedia", + "ofType": null + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VariantMediaUnassign", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "media", + "type": { + "kind": "OBJECT", + "name": "ProductMedia", + "ofType": null + }, + "args": [] + }, + { + "name": "productErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProductError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "productVariant", + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VariantPricingInfo", + "fields": [ + { + "name": "discount", + "type": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + }, + "args": [] + }, + { + "name": "discountLocalCurrency", + "type": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + }, + "args": [] + }, + { + "name": "onSale", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "price", + "type": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + }, + "args": [] + }, + { + "name": "priceLocalCurrency", + "type": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + }, + "args": [] + }, + { + "name": "priceUndiscounted", + "type": { + "kind": "OBJECT", + "name": "TaxedMoney", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VerifyToken", + "fields": [ + { + "name": "accountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "isValid", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "payload", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Voucher", + "fields": [ + { + "name": "applyOncePerCustomer", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "applyOncePerOrder", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "categories", + "type": { + "kind": "OBJECT", + "name": "CategoryCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "channelListings", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "VoucherChannelListing", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "collections", + "type": { + "kind": "OBJECT", + "name": "CollectionCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "countries", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CountryDisplay", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "currency", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "discountValue", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "discountValueType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "minCheckoutItemsQuantity", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "minSpent", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "onlyForStaff", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "products", + "type": { + "kind": "OBJECT", + "name": "ProductCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "startDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "VoucherTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "usageLimit", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "used", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "variants", + "type": { + "kind": "OBJECT", + "name": "ProductVariantCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "VoucherAddCatalogues", + "fields": [ + { + "name": "discountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "voucher", + "type": { + "kind": "OBJECT", + "name": "Voucher", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VoucherBulkDelete", + "fields": [ + { + "name": "count", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "discountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VoucherChannelListing", + "fields": [ + { + "name": "channel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + } + }, + "args": [] + }, + { + "name": "currency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "discountValue", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "minSpent", + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "VoucherChannelListingUpdate", + "fields": [ + { + "name": "discountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "voucher", + "type": { + "kind": "OBJECT", + "name": "Voucher", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VoucherCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "VoucherCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VoucherCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Voucher", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VoucherCreate", + "fields": [ + { + "name": "discountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "voucher", + "type": { + "kind": "OBJECT", + "name": "Voucher", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VoucherCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "voucher", + "type": { + "kind": "OBJECT", + "name": "Voucher", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "VoucherDelete", + "fields": [ + { + "name": "discountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "voucher", + "type": { + "kind": "OBJECT", + "name": "Voucher", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VoucherDeleted", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "voucher", + "type": { + "kind": "OBJECT", + "name": "Voucher", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "VoucherMetadataUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "voucher", + "type": { + "kind": "OBJECT", + "name": "Voucher", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "VoucherRemoveCatalogues", + "fields": [ + { + "name": "discountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "voucher", + "type": { + "kind": "OBJECT", + "name": "Voucher", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VoucherTranslatableContent", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "translation", + "type": { + "kind": "OBJECT", + "name": "VoucherTranslation", + "ofType": null + }, + "args": [ + { + "name": "languageCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "voucher", + "type": { + "kind": "OBJECT", + "name": "Voucher", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "VoucherTranslate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "translationErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TranslationError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "voucher", + "type": { + "kind": "OBJECT", + "name": "Voucher", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VoucherTranslation", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LanguageDisplay", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "VoucherUpdate", + "fields": [ + { + "name": "discountErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DiscountError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "voucher", + "type": { + "kind": "OBJECT", + "name": "Voucher", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VoucherUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "voucher", + "type": { + "kind": "OBJECT", + "name": "Voucher", + "ofType": null + }, + "args": [ + { + "name": "channel", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "Warehouse", + "fields": [ + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } + }, + "args": [] + }, + { + "name": "clickAndCollectOption", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "companyName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "email", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isPrivate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "metadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "metafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "metafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "privateMetadata", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MetadataItem", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "privateMetafield", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + ] + }, + { + "name": "privateMetafields", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [ + { + "name": "keys", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + } + } + ] + }, + { + "name": "shippingZones", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ShippingZoneCountableConnection", + "ofType": null + } + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "slug", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + }, + { + "kind": "INTERFACE", + "name": "ObjectWithMetadata" + } + ] + }, + { + "kind": "OBJECT", + "name": "WarehouseCountableConnection", + "fields": [ + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WarehouseCountableEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WarehouseCountableEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WarehouseCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WarehouseError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + }, + "args": [] + }, + { + "name": "warehouseErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WarehouseError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WarehouseCreated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "WarehouseDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WarehouseError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + }, + "args": [] + }, + { + "name": "warehouseErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WarehouseError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WarehouseDeleted", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "WarehouseError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "shippingZones", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WarehouseMetadataUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "WarehouseShippingZoneAssign", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WarehouseError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + }, + "args": [] + }, + { + "name": "warehouseErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WarehouseError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WarehouseShippingZoneUnassign", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WarehouseError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + }, + "args": [] + }, + { + "name": "warehouseErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WarehouseError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WarehouseUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WarehouseError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + }, + "args": [] + }, + { + "name": "warehouseErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WarehouseError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WarehouseUpdated", + "fields": [ + { + "name": "issuedAt", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "issuingPrincipal", + "type": { + "kind": "UNION", + "name": "IssuingPrincipal", + "ofType": null + }, + "args": [] + }, + { + "name": "recipient", + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": null + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "warehouse", + "type": { + "kind": "OBJECT", + "name": "Warehouse", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Event" + } + ] + }, + { + "kind": "OBJECT", + "name": "Webhook", + "fields": [ + { + "name": "app", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "App", + "ofType": null + } + }, + "args": [] + }, + { + "name": "asyncEvents", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WebhookEventAsync", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "eventDeliveries", + "type": { + "kind": "OBJECT", + "name": "EventDeliveryCountableConnection", + "ofType": null + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "filter", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Any" + } + }, + { + "name": "sortBy", + "type": { + "kind": "SCALAR", + "name": "Any" + } + } + ] + }, + { + "name": "events", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WebhookEvent", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "isActive", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "secretKey", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "subscriptionQuery", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "syncEvents", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WebhookEventSync", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "targetUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node" + } + ] + }, + { + "kind": "OBJECT", + "name": "WebhookCreate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WebhookError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "webhook", + "type": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + }, + "args": [] + }, + { + "name": "webhookErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WebhookError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WebhookDelete", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WebhookError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "webhook", + "type": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + }, + "args": [] + }, + { + "name": "webhookErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WebhookError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WebhookError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "field", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WebhookEvent", + "fields": [ + { + "name": "eventType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WebhookEventAsync", + "fields": [ + { + "name": "eventType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WebhookEventSync", + "fields": [ + { + "name": "eventType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WebhookUpdate", + "fields": [ + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WebhookError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "webhook", + "type": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + }, + "args": [] + }, + { + "name": "webhookErrors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WebhookError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Weight", + "fields": [ + { + "name": "unit", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + }, + { + "name": "value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Any" + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "UNION", + "name": "_Entity", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Address" + }, + { + "kind": "OBJECT", + "name": "App" + }, + { + "kind": "OBJECT", + "name": "Category" + }, + { + "kind": "OBJECT", + "name": "Collection" + }, + { + "kind": "OBJECT", + "name": "Group" + }, + { + "kind": "OBJECT", + "name": "PageType" + }, + { + "kind": "OBJECT", + "name": "Product" + }, + { + "kind": "OBJECT", + "name": "ProductMedia" + }, + { + "kind": "OBJECT", + "name": "ProductType" + }, + { + "kind": "OBJECT", + "name": "ProductVariant" + }, + { + "kind": "OBJECT", + "name": "User" + } + ] + }, + { + "kind": "OBJECT", + "name": "_Service", + "fields": [ + { + "name": "sdl", + "type": { + "kind": "SCALAR", + "name": "Any" + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "SCALAR", + "name": "Any" + } + ], + "directives": [] + } +} as unknown as IntrospectionQuery; +export const UntypedAddressFragmentFragmentDoc = gql` + fragment AddressFragment on Address { + __typename + id + firstName + lastName + companyName + streetAddress1 + streetAddress2 + city + cityArea + postalCode + country { + code + } + countryArea + phone +} + `; +export const UntypedMetadataFragmentFragmentDoc = gql` + fragment MetadataFragment on MetadataItem { + key + value +} + `; +export const UntypedCustomerCreatedWebhookPayloadFragmentDoc = gql` + fragment CustomerCreatedWebhookPayload on CustomerCreated { + user { + __typename + id + defaultShippingAddress { + ...AddressFragment + } + defaultBillingAddress { + ...AddressFragment + } + addresses { + ...AddressFragment + } + privateMetadata { + ...MetadataFragment + } + metadata { + ...MetadataFragment + } + email + firstName + lastName + isActive + dateJoined + languageCode + } +} + `; +export const UntypedMoneyFragmentFragmentDoc = gql` + fragment MoneyFragment on Money { + amount + currency +} + `; +export const UntypedTaxedMoneyFragmentFragmentDoc = gql` + fragment TaxedMoneyFragment on TaxedMoney { + currency + net { + ...MoneyFragment + } + gross { + ...MoneyFragment + } +} + `; +export const UntypedPaymentFragmentFragmentDoc = gql` + fragment PaymentFragment on Payment { + __typename + id + created + modified + gateway + isActive + chargeStatus + total { + amount + } + capturedAmount { + ...MoneyFragment + } + creditCard { + brand + } + paymentMethodType +} + `; +export const UntypedOrderFragmentFragmentDoc = gql` + fragment OrderFragment on Order { + __typename + id + channel { + __typename + id + slug + currencyCode + } + shippingMethod { + type + id + name + } + shippingAddress { + ...AddressFragment + } + billingAddress { + ...AddressFragment + } + discounts { + id + } + token + userEmail + created + original + lines { + __typename + id + productVariantId + totalPrice { + ...TaxedMoneyFragment + } + allocations { + quantity + warehouse { + id + } + } + productName + variantName + translatedProductName + translatedVariantName + productSku + quantity + unitDiscountValue + unitDiscountType + unitDiscountReason + unitPrice { + ...TaxedMoneyFragment + } + undiscountedUnitPrice { + ...TaxedMoneyFragment + } + taxRate + } + fulfillments { + id + } + payments { + ...PaymentFragment + } + privateMetadata { + ...MetadataFragment + } + metadata { + ...MetadataFragment + } + status + languageCodeEnum + origin + shippingMethodName + collectionPointName + shippingPrice { + ...TaxedMoneyFragment + } + shippingTaxRate + total { + ...TaxedMoneyFragment + } + undiscountedTotal { + ...TaxedMoneyFragment + } + weight { + value + unit + } +} + `; +export const UntypedFulfillmentCreatedWebhookPayloadFragmentDoc = gql` + fragment FulfillmentCreatedWebhookPayload on FulfillmentCreated { + fulfillment { + __typename + id + warehouse { + address { + ...AddressFragment + } + } + lines { + __typename + id + quantity + orderLine { + productName + variantName + productSku + productVariantId + unitPrice { + ...TaxedMoneyFragment + } + undiscountedUnitPrice { + ...TaxedMoneyFragment + } + totalPrice { + ...TaxedMoneyFragment + } + } + } + } + order { + ...OrderFragment + } +} + `; +export const UntypedOrderCreatedWebhookPayloadFragmentDoc = gql` + fragment OrderCreatedWebhookPayload on OrderCreated { + order { + ...OrderFragment + } +} + `; +export const UntypedOrderFullyPaidWebhookPayloadFragmentDoc = gql` + fragment OrderFullyPaidWebhookPayload on OrderFullyPaid { + order { + ...OrderFragment + } +} + `; +export const UntypedUpdateAppMetadataDocument = gql` + mutation UpdateAppMetadata($id: ID!, $input: [MetadataInput!]!) { + updatePrivateMetadata(id: $id, input: $input) { + item { + privateMetadata { + key + value + } + } + } +} + `; + +export function useUpdateAppMetadataMutation() { + return Urql.useMutation(UntypedUpdateAppMetadataDocument); +}; +export const UntypedFetchAppDetailsDocument = gql` + query FetchAppDetails { + app { + id + privateMetadata { + key + value + } + } +} + `; + +export function useFetchAppDetailsQuery(options?: Omit, 'query'>) { + return Urql.useQuery({ query: UntypedFetchAppDetailsDocument, ...options }); +}; +export const UntypedCustomerCreatedDocument = gql` + subscription CustomerCreated { + event { + ...CustomerCreatedWebhookPayload + } +} + ${UntypedCustomerCreatedWebhookPayloadFragmentDoc} +${UntypedAddressFragmentFragmentDoc} +${UntypedMetadataFragmentFragmentDoc}`; + +export function useCustomerCreatedSubscription(options: Omit, 'query'> = {}, handler?: Urql.SubscriptionHandler) { + return Urql.useSubscription({ query: UntypedCustomerCreatedDocument, ...options }, handler); +}; +export const UntypedFulfillmentCreatedDocument = gql` + subscription FulfillmentCreated { + event { + ...FulfillmentCreatedWebhookPayload + } +} + ${UntypedFulfillmentCreatedWebhookPayloadFragmentDoc} +${UntypedAddressFragmentFragmentDoc} +${UntypedTaxedMoneyFragmentFragmentDoc} +${UntypedMoneyFragmentFragmentDoc} +${UntypedOrderFragmentFragmentDoc} +${UntypedPaymentFragmentFragmentDoc} +${UntypedMetadataFragmentFragmentDoc}`; + +export function useFulfillmentCreatedSubscription(options: Omit, 'query'> = {}, handler?: Urql.SubscriptionHandler) { + return Urql.useSubscription({ query: UntypedFulfillmentCreatedDocument, ...options }, handler); +}; +export const UntypedOrderCreatedDocument = gql` + subscription OrderCreated { + event { + ...OrderCreatedWebhookPayload + } +} + ${UntypedOrderCreatedWebhookPayloadFragmentDoc} +${UntypedOrderFragmentFragmentDoc} +${UntypedAddressFragmentFragmentDoc} +${UntypedTaxedMoneyFragmentFragmentDoc} +${UntypedMoneyFragmentFragmentDoc} +${UntypedPaymentFragmentFragmentDoc} +${UntypedMetadataFragmentFragmentDoc}`; + +export function useOrderCreatedSubscription(options: Omit, 'query'> = {}, handler?: Urql.SubscriptionHandler) { + return Urql.useSubscription({ query: UntypedOrderCreatedDocument, ...options }, handler); +}; +export const UntypedOrderFullyPaidDocument = gql` + subscription OrderFullyPaid { + event { + ...OrderFullyPaidWebhookPayload + } +} + ${UntypedOrderFullyPaidWebhookPayloadFragmentDoc} +${UntypedOrderFragmentFragmentDoc} +${UntypedAddressFragmentFragmentDoc} +${UntypedTaxedMoneyFragmentFragmentDoc} +${UntypedMoneyFragmentFragmentDoc} +${UntypedPaymentFragmentFragmentDoc} +${UntypedMetadataFragmentFragmentDoc}`; + +export function useOrderFullyPaidSubscription(options: Omit, 'query'> = {}, handler?: Urql.SubscriptionHandler) { + return Urql.useSubscription({ query: UntypedOrderFullyPaidDocument, ...options }, handler); +}; +export const AddressFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AddressFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Address"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"companyName"}},{"kind":"Field","name":{"kind":"Name","value":"streetAddress1"}},{"kind":"Field","name":{"kind":"Name","value":"streetAddress2"}},{"kind":"Field","name":{"kind":"Name","value":"city"}},{"kind":"Field","name":{"kind":"Name","value":"cityArea"}},{"kind":"Field","name":{"kind":"Name","value":"postalCode"}},{"kind":"Field","name":{"kind":"Name","value":"country"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"code"}}]}},{"kind":"Field","name":{"kind":"Name","value":"countryArea"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}}]}}]} as unknown as DocumentNode; +export const MetadataFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"MetadataFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MetadataItem"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}}]} as unknown as DocumentNode; +export const CustomerCreatedWebhookPayloadFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"CustomerCreatedWebhookPayload"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomerCreated"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"user"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"defaultShippingAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AddressFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"defaultBillingAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AddressFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"addresses"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AddressFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"privateMetadata"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"MetadataFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"metadata"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"MetadataFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"dateJoined"}},{"kind":"Field","name":{"kind":"Name","value":"languageCode"}}]}}]}}]} as unknown as DocumentNode; +export const MoneyFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"MoneyFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Money"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]} as unknown as DocumentNode; +export const TaxedMoneyFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TaxedMoneyFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TaxedMoney"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"net"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"MoneyFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"gross"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"MoneyFragment"}}]}}]}}]} as unknown as DocumentNode; +export const PaymentFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PaymentFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Payment"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"created"}},{"kind":"Field","name":{"kind":"Name","value":"modified"}},{"kind":"Field","name":{"kind":"Name","value":"gateway"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"chargeStatus"}},{"kind":"Field","name":{"kind":"Name","value":"total"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"capturedAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"MoneyFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"creditCard"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"brand"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethodType"}}]}}]} as unknown as DocumentNode; +export const OrderFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OrderFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Order"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"channel"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"currencyCode"}}]}},{"kind":"Field","name":{"kind":"Name","value":"shippingMethod"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"shippingAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AddressFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"billingAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AddressFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"discounts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token"}},{"kind":"Field","name":{"kind":"Name","value":"userEmail"}},{"kind":"Field","name":{"kind":"Name","value":"created"}},{"kind":"Field","name":{"kind":"Name","value":"original"}},{"kind":"Field","name":{"kind":"Name","value":"lines"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"productVariantId"}},{"kind":"Field","name":{"kind":"Name","value":"totalPrice"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TaxedMoneyFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"allocations"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"quantity"}},{"kind":"Field","name":{"kind":"Name","value":"warehouse"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"productName"}},{"kind":"Field","name":{"kind":"Name","value":"variantName"}},{"kind":"Field","name":{"kind":"Name","value":"translatedProductName"}},{"kind":"Field","name":{"kind":"Name","value":"translatedVariantName"}},{"kind":"Field","name":{"kind":"Name","value":"productSku"}},{"kind":"Field","name":{"kind":"Name","value":"quantity"}},{"kind":"Field","name":{"kind":"Name","value":"unitDiscountValue"}},{"kind":"Field","name":{"kind":"Name","value":"unitDiscountType"}},{"kind":"Field","name":{"kind":"Name","value":"unitDiscountReason"}},{"kind":"Field","name":{"kind":"Name","value":"unitPrice"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TaxedMoneyFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"undiscountedUnitPrice"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TaxedMoneyFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxRate"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fulfillments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"payments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PaymentFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"privateMetadata"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"MetadataFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"metadata"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"MetadataFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"languageCodeEnum"}},{"kind":"Field","name":{"kind":"Name","value":"origin"}},{"kind":"Field","name":{"kind":"Name","value":"shippingMethodName"}},{"kind":"Field","name":{"kind":"Name","value":"collectionPointName"}},{"kind":"Field","name":{"kind":"Name","value":"shippingPrice"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TaxedMoneyFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"shippingTaxRate"}},{"kind":"Field","name":{"kind":"Name","value":"total"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TaxedMoneyFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"undiscountedTotal"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TaxedMoneyFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"weight"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"unit"}}]}}]}}]} as unknown as DocumentNode; +export const FulfillmentCreatedWebhookPayloadFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FulfillmentCreatedWebhookPayload"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FulfillmentCreated"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"fulfillment"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"warehouse"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AddressFragment"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"lines"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"quantity"}},{"kind":"Field","name":{"kind":"Name","value":"orderLine"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"productName"}},{"kind":"Field","name":{"kind":"Name","value":"variantName"}},{"kind":"Field","name":{"kind":"Name","value":"productSku"}},{"kind":"Field","name":{"kind":"Name","value":"productVariantId"}},{"kind":"Field","name":{"kind":"Name","value":"unitPrice"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TaxedMoneyFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"undiscountedUnitPrice"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TaxedMoneyFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalPrice"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TaxedMoneyFragment"}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"order"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OrderFragment"}}]}}]}}]} as unknown as DocumentNode; +export const OrderCreatedWebhookPayloadFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OrderCreatedWebhookPayload"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OrderCreated"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"order"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OrderFragment"}}]}}]}}]} as unknown as DocumentNode; +export const OrderFullyPaidWebhookPayloadFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OrderFullyPaidWebhookPayload"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OrderFullyPaid"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"order"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OrderFragment"}}]}}]}}]} as unknown as DocumentNode; +export const UpdateAppMetadataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateAppMetadata"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MetadataInput"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updatePrivateMetadata"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}},{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"item"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"privateMetadata"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const FetchAppDetailsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FetchAppDetails"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"app"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"privateMetadata"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}}]}}]}}]} as unknown as DocumentNode; +export const CustomerCreatedDocument = {"kind":"Document", "definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"CustomerCreated"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"event"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"CustomerCreatedWebhookPayload"}}]}}]}},...CustomerCreatedWebhookPayloadFragmentDoc.definitions,...AddressFragmentFragmentDoc.definitions,...MetadataFragmentFragmentDoc.definitions]} as unknown as DocumentNode; +export const FulfillmentCreatedDocument = {"kind":"Document", "definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"FulfillmentCreated"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"event"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FulfillmentCreatedWebhookPayload"}}]}}]}},...FulfillmentCreatedWebhookPayloadFragmentDoc.definitions,...AddressFragmentFragmentDoc.definitions,...TaxedMoneyFragmentFragmentDoc.definitions,...MoneyFragmentFragmentDoc.definitions,...OrderFragmentFragmentDoc.definitions,...PaymentFragmentFragmentDoc.definitions,...MetadataFragmentFragmentDoc.definitions]} as unknown as DocumentNode; +export const OrderCreatedDocument = {"kind":"Document", "definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OrderCreated"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"event"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OrderCreatedWebhookPayload"}}]}}]}},...OrderCreatedWebhookPayloadFragmentDoc.definitions,...OrderFragmentFragmentDoc.definitions,...AddressFragmentFragmentDoc.definitions,...TaxedMoneyFragmentFragmentDoc.definitions,...MoneyFragmentFragmentDoc.definitions,...PaymentFragmentFragmentDoc.definitions,...MetadataFragmentFragmentDoc.definitions]} as unknown as DocumentNode; +export const OrderFullyPaidDocument = {"kind":"Document", "definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OrderFullyPaid"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"event"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OrderFullyPaidWebhookPayload"}}]}}]}},...OrderFullyPaidWebhookPayloadFragmentDoc.definitions,...OrderFragmentFragmentDoc.definitions,...AddressFragmentFragmentDoc.definitions,...TaxedMoneyFragmentFragmentDoc.definitions,...MoneyFragmentFragmentDoc.definitions,...PaymentFragmentFragmentDoc.definitions,...MetadataFragmentFragmentDoc.definitions]} as unknown as DocumentNode; \ No newline at end of file diff --git a/apps/klaviyo/generated/schema.graphql b/apps/klaviyo/generated/schema.graphql new file mode 100644 index 0000000..31790bc --- /dev/null +++ b/apps/klaviyo/generated/schema.graphql @@ -0,0 +1,26689 @@ +""" +Create a new address for the customer. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type AccountAddressCreate { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + address: Address + errors: [AccountError!]! + + """A user instance for which the address was created.""" + user: User +} + +""" +Delete an address of the logged-in user. Requires one of the following permissions: MANAGE_USERS, IS_OWNER. +""" +type AccountAddressDelete { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + address: Address + errors: [AccountError!]! + + """A user instance for which the address was deleted.""" + user: User +} + +""" +Updates an address of the logged-in user. Requires one of the following permissions: MANAGE_USERS, IS_OWNER. +""" +type AccountAddressUpdate { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + address: Address + errors: [AccountError!]! + + """A user object for which the address was edited.""" + user: User +} + +""" +Remove user account. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type AccountDelete { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + user: User +} + +type AccountError { + """A type of address that causes the error.""" + addressType: AddressTypeEnum + + """The error code.""" + code: AccountErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum AccountErrorCode { + ACCOUNT_NOT_CONFIRMED + ACTIVATE_OWN_ACCOUNT + ACTIVATE_SUPERUSER_ACCOUNT + CHANNEL_INACTIVE + DEACTIVATE_OWN_ACCOUNT + DEACTIVATE_SUPERUSER_ACCOUNT + DELETE_NON_STAFF_USER + DELETE_OWN_ACCOUNT + DELETE_STAFF_ACCOUNT + DELETE_SUPERUSER_ACCOUNT + DUPLICATED_INPUT_ITEM + GRAPHQL_ERROR + INACTIVE + INVALID + INVALID_CREDENTIALS + INVALID_PASSWORD + JWT_DECODE_ERROR + JWT_INVALID_CSRF_TOKEN + JWT_INVALID_TOKEN + JWT_MISSING_TOKEN + JWT_SIGNATURE_EXPIRED + LEFT_NOT_MANAGEABLE_PERMISSION + MISSING_CHANNEL_SLUG + NOT_FOUND + OUT_OF_SCOPE_GROUP + OUT_OF_SCOPE_PERMISSION + OUT_OF_SCOPE_USER + PASSWORD_ENTIRELY_NUMERIC + PASSWORD_TOO_COMMON + PASSWORD_TOO_SHORT + PASSWORD_TOO_SIMILAR + REQUIRED + UNIQUE +} + +input AccountInput { + """Billing address of the customer.""" + defaultBillingAddress: AddressInput + + """Shipping address of the customer.""" + defaultShippingAddress: AddressInput + + """Given name.""" + firstName: String + + """User language code.""" + languageCode: LanguageCodeEnum + + """Family name.""" + lastName: String +} + +"""Register a new user.""" +type AccountRegister { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + + """Informs whether users need to confirm their email address.""" + requiresConfirmation: Boolean + user: User +} + +input AccountRegisterInput { + """ + Slug of a channel which will be used to notify users. Optional when only one channel exists. + """ + channel: String + + """The email address of the user.""" + email: String! + + """Given name.""" + firstName: String + + """User language code.""" + languageCode: LanguageCodeEnum + + """Family name.""" + lastName: String + + """User public metadata.""" + metadata: [MetadataInput!] + + """Password.""" + password: String! + + """Base of frontend URL that will be needed to create confirmation URL.""" + redirectUrl: String +} + +""" +Sends an email with the account removal link for the logged-in user. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type AccountRequestDeletion { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +""" +Sets a default address for the authenticated user. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type AccountSetDefaultAddress { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + + """An updated user instance.""" + user: User +} + +""" +Updates the account of the logged-in user. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type AccountUpdate { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + user: User +} + +"""Represents user address data.""" +type Address implements Node & ObjectWithMetadata { + city: String! + cityArea: String! + companyName: String! + + """Shop's default country.""" + country: CountryDisplay! + countryArea: String! + firstName: String! + id: ID! + + """Address is user's default billing address.""" + isDefaultBillingAddress: Boolean + + """Address is user's default shipping address.""" + isDefaultShippingAddress: Boolean + lastName: String! + + """ + List of public metadata items. Can be accessed without permissions. + + Added in Saleor 3.10. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.10. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.10. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + phone: String + postalCode: String! + + """ + List of private metadata items. Requires staff permissions to access. + + Added in Saleor 3.10. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.10. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.10. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + streetAddress1: String! + streetAddress2: String! +} + +""" +Creates user address. + +Requires one of the following permissions: MANAGE_USERS. +""" +type AddressCreate { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + address: Address + errors: [AccountError!]! + + """A user instance for which the address was created.""" + user: User +} + +""" +Event sent when new address is created. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AddressCreated implements Event { + """The address the event relates to.""" + address: Address + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes an address. + +Requires one of the following permissions: MANAGE_USERS. +""" +type AddressDelete { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + address: Address + errors: [AccountError!]! + + """A user instance for which the address was deleted.""" + user: User +} + +""" +Event sent when address is deleted. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AddressDeleted implements Event { + """The address the event relates to.""" + address: Address + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +input AddressInput { + """City.""" + city: String + + """District.""" + cityArea: String + + """Company or organization.""" + companyName: String + + """Country.""" + country: CountryCode + + """State or province.""" + countryArea: String + + """Given name.""" + firstName: String + + """Family name.""" + lastName: String + + """Phone number.""" + phone: String + + """Postal code.""" + postalCode: String + + """Address.""" + streetAddress1: String + + """Address.""" + streetAddress2: String +} + +""" +Sets a default address for the given user. + +Requires one of the following permissions: MANAGE_USERS. +""" +type AddressSetDefault { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + + """An updated user instance.""" + user: User +} + +"""An enumeration.""" +enum AddressTypeEnum { + BILLING + SHIPPING +} + +""" +Updates an address. + +Requires one of the following permissions: MANAGE_USERS. +""" +type AddressUpdate { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + address: Address + errors: [AccountError!]! + + """A user object for which the address was edited.""" + user: User +} + +""" +Event sent when address is updated. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AddressUpdated implements Event { + """The address the event relates to.""" + address: Address + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +type AddressValidationData { + addressFormat: String! + addressLatinFormat: String! + allowedFields: [String!]! + cityAreaChoices: [ChoiceValue!]! + cityAreaType: String! + cityChoices: [ChoiceValue!]! + cityType: String! + countryAreaChoices: [ChoiceValue!]! + countryAreaType: String! + countryCode: String! + countryName: String! + postalCodeExamples: [String!]! + postalCodeMatchers: [String!]! + postalCodePrefix: String! + postalCodeType: String! + requiredFields: [String!]! + upperFields: [String!]! +} + +"""Represents allocation.""" +type Allocation implements Node { + id: ID! + + """ + Quantity allocated for orders. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + """ + quantity: Int! + + """ + The warehouse were items were allocated. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + """ + warehouse: Warehouse! +} + +""" +Determine the allocation strategy for the channel. + + PRIORITIZE_SORTING_ORDER - allocate stocks according to the warehouses' order + within the channel + + PRIORITIZE_HIGH_STOCK - allocate stock in a warehouse with the most stock +""" +enum AllocationStrategyEnum { + PRIORITIZE_HIGH_STOCK + PRIORITIZE_SORTING_ORDER +} + +"""Represents app data.""" +type App implements Node & ObjectWithMetadata { + """Description of this app.""" + aboutApp: String + + """JWT token used to authenticate by thridparty app.""" + accessToken: String + + """URL to iframe with the app.""" + appUrl: String + + """URL to iframe with the configuration for the app.""" + configurationUrl: String @deprecated(reason: "This field will be removed in Saleor 4.0. Use `appUrl` instead.") + + """The date and time when the app was created.""" + created: DateTime + + """Description of the data privacy defined for this app.""" + dataPrivacy: String @deprecated(reason: "This field will be removed in Saleor 4.0. Use `dataPrivacyUrl` instead.") + + """URL to details about the privacy policy on the app owner page.""" + dataPrivacyUrl: String + + """ + App's dashboard extensions. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + extensions: [AppExtension!]! + + """Homepage of the app.""" + homepageUrl: String + id: ID! + + """Determine if app will be set active or not.""" + isActive: Boolean + + """ + URL to manifest used during app's installation. + + Added in Saleor 3.5. + """ + manifestUrl: String + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """Name of the app.""" + name: String + + """List of the app's permissions.""" + permissions: [Permission!] + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """Support page for the app.""" + supportUrl: String + + """ + Last 4 characters of the tokens. + + Requires one of the following permissions: MANAGE_APPS, OWNER. + """ + tokens: [AppToken!] + + """Type of the app.""" + type: AppTypeEnum + + """Version number of the app.""" + version: String + + """ + List of webhooks assigned to this app. + + Requires one of the following permissions: MANAGE_APPS, OWNER. + """ + webhooks: [Webhook!] +} + +""" +Activate the app. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppActivate { + app: App + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! +} + +type AppCountableConnection { + edges: [AppCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type AppCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: App! +} + +""" +Creates a new app. Requires the following permissions: AUTHENTICATED_STAFF_USER and MANAGE_APPS. +""" +type AppCreate { + app: App + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """The newly created authentication token.""" + authToken: String + errors: [AppError!]! +} + +""" +Deactivate the app. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppDeactivate { + app: App + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! +} + +""" +Deletes an app. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppDelete { + app: App + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! +} + +""" +Delete failed installation. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppDeleteFailedInstallation { + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + appInstallation: AppInstallation + errors: [AppError!]! +} + +""" +Event sent when app is deleted. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AppDeleted implements Event { + """The application the event relates to.""" + app: App + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +type AppError { + """The error code.""" + code: AppErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of permissions which causes the error.""" + permissions: [PermissionEnum!] +} + +"""An enumeration.""" +enum AppErrorCode { + FORBIDDEN + GRAPHQL_ERROR + INVALID + INVALID_MANIFEST_FORMAT + INVALID_PERMISSION + INVALID_STATUS + INVALID_URL_FORMAT + MANIFEST_URL_CANT_CONNECT + NOT_FOUND + OUT_OF_SCOPE_APP + OUT_OF_SCOPE_PERMISSION + REQUIRED + UNIQUE +} + +"""Represents app data.""" +type AppExtension implements Node { + """JWT token used to authenticate by thridparty app extension.""" + accessToken: String + app: App! + id: ID! + + """Label of the extension to show in the dashboard.""" + label: String! + + """Place where given extension will be mounted.""" + mount: AppExtensionMountEnum! + + """List of the app extension's permissions.""" + permissions: [Permission!]! + + """Type of way how app extension will be opened.""" + target: AppExtensionTargetEnum! + + """URL of a view where extension's iframe is placed.""" + url: String! +} + +type AppExtensionCountableConnection { + edges: [AppExtensionCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type AppExtensionCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: AppExtension! +} + +input AppExtensionFilterInput { + mount: [AppExtensionMountEnum!] + target: AppExtensionTargetEnum +} + +"""All places where app extension can be mounted.""" +enum AppExtensionMountEnum { + CUSTOMER_DETAILS_MORE_ACTIONS + CUSTOMER_OVERVIEW_CREATE + CUSTOMER_OVERVIEW_MORE_ACTIONS + NAVIGATION_CATALOG + NAVIGATION_CUSTOMERS + NAVIGATION_DISCOUNTS + NAVIGATION_ORDERS + NAVIGATION_PAGES + NAVIGATION_TRANSLATIONS + ORDER_DETAILS_MORE_ACTIONS + ORDER_OVERVIEW_CREATE + ORDER_OVERVIEW_MORE_ACTIONS + PRODUCT_DETAILS_MORE_ACTIONS + PRODUCT_OVERVIEW_CREATE + PRODUCT_OVERVIEW_MORE_ACTIONS +} + +""" +All available ways of opening an app extension. + + POPUP - app's extension will be mounted as a popup window + APP_PAGE - redirect to app's page +""" +enum AppExtensionTargetEnum { + APP_PAGE + POPUP +} + +""" +Fetch and validate manifest. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppFetchManifest { + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! + manifest: Manifest +} + +input AppFilterInput { + isActive: Boolean + search: String + type: AppTypeEnum +} + +input AppInput { + """Name of the app.""" + name: String + + """List of permission code names to assign to this app.""" + permissions: [PermissionEnum!] +} + +""" +Install new app by using app manifest. Requires the following permissions: AUTHENTICATED_STAFF_USER and MANAGE_APPS. +""" +type AppInstall { + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + appInstallation: AppInstallation + errors: [AppError!]! +} + +input AppInstallInput { + """Determine if app will be set active or not.""" + activateAfterInstallation: Boolean = true + + """Name of the app to install.""" + appName: String + + """Url to app's manifest in JSON format.""" + manifestUrl: String + + """List of permission code names to assign to this app.""" + permissions: [PermissionEnum!] +} + +"""Represents ongoing installation of app.""" +type AppInstallation implements Job & Node { + appName: String! + + """Created date time of job in ISO 8601 format.""" + createdAt: DateTime! + id: ID! + manifestUrl: String! + + """Job message.""" + message: String + + """Job status.""" + status: JobStatusEnum! + + """Date time of job last update in ISO 8601 format.""" + updatedAt: DateTime! +} + +""" +Event sent when new app is installed. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AppInstalled implements Event { + """The application the event relates to.""" + app: App + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +type AppManifestExtension { + """Label of the extension to show in the dashboard.""" + label: String! + + """Place where given extension will be mounted.""" + mount: AppExtensionMountEnum! + + """List of the app extension's permissions.""" + permissions: [Permission!]! + + """Type of way how app extension will be opened.""" + target: AppExtensionTargetEnum! + + """URL of a view where extension's iframe is placed.""" + url: String! +} + +type AppManifestWebhook { + """The asynchronous events that webhook wants to subscribe.""" + asyncEvents: [WebhookEventTypeAsyncEnum!] + + """The name of the webhook.""" + name: String! + + """Subscription query of a webhook""" + query: String! + + """The synchronous events that webhook wants to subscribe.""" + syncEvents: [WebhookEventTypeSyncEnum!] + + """The url to receive the payload.""" + targetUrl: String! +} + +""" +Retry failed installation of new app. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppRetryInstall { + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + appInstallation: AppInstallation + errors: [AppError!]! +} + +enum AppSortField { + """Sort apps by creation date.""" + CREATION_DATE + + """Sort apps by name.""" + NAME +} + +input AppSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort apps by the selected field.""" + field: AppSortField! +} + +""" +Event sent when app status has changed. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AppStatusChanged implements Event { + """The application the event relates to.""" + app: App + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""Represents token data.""" +type AppToken implements Node { + """Last 4 characters of the token.""" + authToken: String + id: ID! + + """Name of the authenticated token.""" + name: String +} + +""" +Creates a new token. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppTokenCreate { + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + appToken: AppToken + + """The newly created authentication token.""" + authToken: String + errors: [AppError!]! +} + +""" +Deletes an authentication token assigned to app. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppTokenDelete { + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + appToken: AppToken + errors: [AppError!]! +} + +input AppTokenInput { + """ID of app.""" + app: ID! + + """Name of the token.""" + name: String +} + +"""Verify provided app token.""" +type AppTokenVerify { + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! + + """Determine if token is valid or not.""" + valid: Boolean! +} + +"""Enum determining type of your App.""" +enum AppTypeEnum { + """ + Local Saleor App. The app is fully manageable from dashboard. You can change assigned permissions, add webhooks, or authentication token + """ + LOCAL + + """ + Third party external App. Installation is fully automated. Saleor uses a defined App manifest to gather all required information. + """ + THIRDPARTY +} + +""" +Updates an existing app. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppUpdate { + app: App + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! +} + +""" +Event sent when app is updated. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AppUpdated implements Event { + """The application the event relates to.""" + app: App + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""An enumeration.""" +enum AreaUnitsEnum { + SQ_CM + SQ_FT + SQ_INCH + SQ_KM + SQ_M + SQ_YD +} + +""" +Assigns storefront's navigation menus. + +Requires one of the following permissions: MANAGE_MENUS, MANAGE_SETTINGS. +""" +type AssignNavigation { + errors: [MenuError!]! + + """Assigned navigation menu.""" + menu: Menu + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Represents assigned attribute to variant with variant selection attached. + +Added in Saleor 3.1. +""" +type AssignedVariantAttribute { + """Attribute assigned to variant.""" + attribute: Attribute! + + """ + Determines, whether assigned attribute is allowed for variant selection. Supported variant types for variant selection are: ['dropdown', 'boolean', 'swatch', 'numeric'] + """ + variantSelection: Boolean! +} + +""" +Custom attribute of a product. Attributes can be assigned to products and variants at the product type level. +""" +type Attribute implements Node & ObjectWithMetadata { + """ + Whether the attribute can be displayed in the admin product list. Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + availableInGrid: Boolean! + + """List of attribute's values.""" + choices( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for attribute choices.""" + filter: AttributeValueFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort attribute choices.""" + sortBy: AttributeChoicesSortingInput + ): AttributeValueCountableConnection + + """The entity type which can be used as a reference.""" + entityType: AttributeEntityTypeEnum + + """ + External ID of this attribute. + + Added in Saleor 3.10. + """ + externalReference: String + + """ + Whether the attribute can be filtered in dashboard. Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + filterableInDashboard: Boolean! + + """ + Whether the attribute can be filtered in storefront. Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + filterableInStorefront: Boolean! + id: ID! + + """The input type to use for entering attribute values in the dashboard.""" + inputType: AttributeInputTypeEnum + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """Name of an attribute displayed in the interface.""" + name: String + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + productTypes( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductTypeCountableConnection! + productVariantTypes( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductTypeCountableConnection! + + """Internal representation of an attribute name.""" + slug: String + + """ + The position of the attribute in the storefront navigation (0 by default). Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + storefrontSearchPosition: Int! + + """Returns translated attribute fields for the given language code.""" + translation( + """A language code to return the translation for attribute.""" + languageCode: LanguageCodeEnum! + ): AttributeTranslation + + """The attribute type.""" + type: AttributeTypeEnum + + """The unit of attribute values.""" + unit: MeasurementUnitsEnum + + """ + Whether the attribute requires values to be passed or not. Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + valueRequired: Boolean! + + """ + Whether the attribute should be visible or not in storefront. Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + visibleInStorefront: Boolean! + + """Flag indicating that attribute has predefined choices.""" + withChoices: Boolean! +} + +""" +Deletes attributes. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type AttributeBulkDelete { + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """Returns how many objects were affected.""" + count: Int! + errors: [AttributeError!]! +} + +enum AttributeChoicesSortField { + """Sort attribute choice by name.""" + NAME + + """Sort attribute choice by slug.""" + SLUG +} + +input AttributeChoicesSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort attribute choices by the selected field.""" + field: AttributeChoicesSortField! +} + +type AttributeCountableConnection { + edges: [AttributeCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type AttributeCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: Attribute! +} + +"""Creates an attribute.""" +type AttributeCreate { + attribute: Attribute + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AttributeError!]! +} + +input AttributeCreateInput { + """Whether the attribute can be displayed in the admin product list.""" + availableInGrid: Boolean + + """The entity type which can be used as a reference.""" + entityType: AttributeEntityTypeEnum + + """ + External ID of this attribute. + + Added in Saleor 3.10. + """ + externalReference: String + + """Whether the attribute can be filtered in dashboard.""" + filterableInDashboard: Boolean + + """Whether the attribute can be filtered in storefront.""" + filterableInStorefront: Boolean + + """The input type to use for entering attribute values in the dashboard.""" + inputType: AttributeInputTypeEnum + + """Whether the attribute is for variants only.""" + isVariantOnly: Boolean + + """Name of an attribute displayed in the interface.""" + name: String! + + """Internal representation of an attribute name.""" + slug: String + + """ + The position of the attribute in the storefront navigation (0 by default). + """ + storefrontSearchPosition: Int + + """The attribute type.""" + type: AttributeTypeEnum! + + """The unit of attribute values.""" + unit: MeasurementUnitsEnum + + """Whether the attribute requires values to be passed or not.""" + valueRequired: Boolean + + """List of attribute's values.""" + values: [AttributeValueCreateInput!] + + """Whether the attribute should be visible or not in storefront.""" + visibleInStorefront: Boolean +} + +""" +Event sent when new attribute is created. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AttributeCreated implements Event { + """The attribute the event relates to.""" + attribute: Attribute + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes an attribute. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type AttributeDelete { + attribute: Attribute + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AttributeError!]! +} + +""" +Event sent when attribute is deleted. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AttributeDeleted implements Event { + """The attribute the event relates to.""" + attribute: Attribute + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""An enumeration.""" +enum AttributeEntityTypeEnum { + PAGE + PRODUCT + PRODUCT_VARIANT +} + +type AttributeError { + """The error code.""" + code: AttributeErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum AttributeErrorCode { + ALREADY_EXISTS + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE +} + +input AttributeFilterInput { + availableInGrid: Boolean + + """ + Specifies the channel by which the data should be filtered. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String + filterableInDashboard: Boolean + filterableInStorefront: Boolean + ids: [ID!] + inCategory: ID + inCollection: ID + isVariantOnly: Boolean + metadata: [MetadataFilter!] + search: String + slugs: [String!] + type: AttributeTypeEnum + valueRequired: Boolean + visibleInStorefront: Boolean +} + +input AttributeInput { + """The boolean value of the attribute.""" + boolean: Boolean + + """ + The date range that the returned values should be in. In case of date/time attributes, the UTC midnight of the given date is used. + """ + date: DateRangeInput + + """The date/time range that the returned values should be in.""" + dateTime: DateTimeRangeInput + + """Internal representation of an attribute name.""" + slug: String! + + """Internal representation of a value (unique per attribute).""" + values: [String!] + + """The range that the returned values should be in.""" + valuesRange: IntRangeInput +} + +"""An enumeration.""" +enum AttributeInputTypeEnum { + BOOLEAN + DATE + DATE_TIME + DROPDOWN + FILE + MULTISELECT + NUMERIC + PLAIN_TEXT + REFERENCE + RICH_TEXT + SWATCH +} + +""" +Reorder the values of an attribute. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type AttributeReorderValues { + """Attribute from which values are reordered.""" + attribute: Attribute + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AttributeError!]! +} + +enum AttributeSortField { + """ + Sort attributes based on whether they can be displayed or not in a product grid. + """ + AVAILABLE_IN_GRID + + """Sort attributes by the filterable in dashboard flag""" + FILTERABLE_IN_DASHBOARD + + """Sort attributes by the filterable in storefront flag""" + FILTERABLE_IN_STOREFRONT + + """Sort attributes by the variant only flag""" + IS_VARIANT_ONLY + + """Sort attributes by name""" + NAME + + """Sort attributes by slug""" + SLUG + + """Sort attributes by their position in storefront""" + STOREFRONT_SEARCH_POSITION + + """Sort attributes by the value required flag""" + VALUE_REQUIRED + + """Sort attributes by visibility in the storefront""" + VISIBLE_IN_STOREFRONT +} + +input AttributeSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort attributes by the selected field.""" + field: AttributeSortField! +} + +type AttributeTranslatableContent implements Node { + """Custom attribute of a product.""" + attribute: Attribute @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") + id: ID! + name: String! + + """Returns translated attribute fields for the given language code.""" + translation( + """A language code to return the translation for attribute.""" + languageCode: LanguageCodeEnum! + ): AttributeTranslation +} + +""" +Creates/updates translations for an attribute. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type AttributeTranslate { + attribute: Attribute + errors: [TranslationError!]! + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type AttributeTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String! +} + +"""An enumeration.""" +enum AttributeTypeEnum { + PAGE_TYPE + PRODUCT_TYPE +} + +""" +Updates attribute. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type AttributeUpdate { + attribute: Attribute + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AttributeError!]! +} + +input AttributeUpdateInput { + """New values to be created for this attribute.""" + addValues: [AttributeValueUpdateInput!] + + """Whether the attribute can be displayed in the admin product list.""" + availableInGrid: Boolean + + """ + External ID of this product. + + Added in Saleor 3.10. + """ + externalReference: String + + """Whether the attribute can be filtered in dashboard.""" + filterableInDashboard: Boolean + + """Whether the attribute can be filtered in storefront.""" + filterableInStorefront: Boolean + + """Whether the attribute is for variants only.""" + isVariantOnly: Boolean + + """Name of an attribute displayed in the interface.""" + name: String + + """IDs of values to be removed from this attribute.""" + removeValues: [ID!] + + """Internal representation of an attribute name.""" + slug: String + + """ + The position of the attribute in the storefront navigation (0 by default). + """ + storefrontSearchPosition: Int + + """The unit of attribute values.""" + unit: MeasurementUnitsEnum + + """Whether the attribute requires values to be passed or not.""" + valueRequired: Boolean + + """Whether the attribute should be visible or not in storefront.""" + visibleInStorefront: Boolean +} + +""" +Event sent when attribute is updated. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AttributeUpdated implements Event { + """The attribute the event relates to.""" + attribute: Attribute + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""Represents a value of an attribute.""" +type AttributeValue implements Node { + """Represents the boolean value of the attribute value.""" + boolean: Boolean + + """Represents the date value of the attribute value.""" + date: Date + + """Represents the date/time value of the attribute value.""" + dateTime: DateTime + + """ + External ID of this attribute value. + + Added in Saleor 3.10. + """ + externalReference: String + + """Represents file URL and content type (if attribute value is a file).""" + file: File + id: ID! + + """The input type to use for entering attribute values in the dashboard.""" + inputType: AttributeInputTypeEnum + + """Name of a value displayed in the interface.""" + name: String + + """ + Represents the text of the attribute value, plain text without formating. + """ + plainText: String + + """The ID of the attribute reference.""" + reference: ID + + """ + Represents the text of the attribute value, includes formatting. + + Rich text format. For reference see https://editorjs.io/ + """ + richText: JSONString + + """Internal representation of a value (unique per attribute).""" + slug: String + + """Returns translated attribute value fields for the given language code.""" + translation( + """A language code to return the translation for attribute value.""" + languageCode: LanguageCodeEnum! + ): AttributeValueTranslation + + """ + Represent value of the attribute value (e.g. color values for swatch attributes). + """ + value: String +} + +""" +Deletes values of attributes. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type AttributeValueBulkDelete { + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """Returns how many objects were affected.""" + count: Int! + errors: [AttributeError!]! +} + +type AttributeValueCountableConnection { + edges: [AttributeValueCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type AttributeValueCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: AttributeValue! +} + +""" +Creates a value for an attribute. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type AttributeValueCreate { + """The updated attribute.""" + attribute: Attribute + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + attributeValue: AttributeValue + errors: [AttributeError!]! +} + +input AttributeValueCreateInput { + """File content type.""" + contentType: String + + """ + External ID of this attribute value. + + Added in Saleor 3.10. + """ + externalReference: String + + """URL of the file attribute. Every time, a new value is created.""" + fileUrl: String + + """Name of a value displayed in the interface.""" + name: String! + + """ + Represents the text of the attribute value, plain text without formating. + + DEPRECATED: this field will be removed in Saleor 4.0.The plain text attribute hasn't got predefined value, so can be specified only from instance that supports the given attribute. + """ + plainText: String + + """ + Represents the text of the attribute value, includes formatting. + + Rich text format. For reference see https://editorjs.io/ + + DEPRECATED: this field will be removed in Saleor 4.0.The rich text attribute hasn't got predefined value, so can be specified only from instance that supports the given attribute. + """ + richText: JSONString + + """ + Represent value of the attribute value (e.g. color values for swatch attributes). + """ + value: String +} + +""" +Event sent when new attribute value is created. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AttributeValueCreated implements Event { + """The attribute value the event relates to.""" + attributeValue: AttributeValue + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes a value of an attribute. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type AttributeValueDelete { + """The updated attribute.""" + attribute: Attribute + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + attributeValue: AttributeValue + errors: [AttributeError!]! +} + +""" +Event sent when attribute value is deleted. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AttributeValueDeleted implements Event { + """The attribute value the event relates to.""" + attributeValue: AttributeValue + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +input AttributeValueFilterInput { + ids: [ID!] + search: String +} + +input AttributeValueInput { + """Represents the boolean value of the attribute value.""" + boolean: Boolean + + """File content type.""" + contentType: String + + """Represents the date value of the attribute value.""" + date: Date + + """Represents the date/time value of the attribute value.""" + dateTime: DateTime + + """ + Attribute value ID. + + Added in Saleor 3.9. + """ + dropdown: AttributeValueSelectableTypeInput + + """URL of the file attribute. Every time, a new value is created.""" + file: String + + """ID of the selected attribute.""" + id: ID + + """ + List of attribute value IDs. + + Added in Saleor 3.9. + """ + multiselect: [AttributeValueSelectableTypeInput!] + + """ + Numeric value of an attribute. + + Added in Saleor 3.9. + """ + numeric: String + + """Plain text content.""" + plainText: String + + """List of entity IDs that will be used as references.""" + references: [ID!] + + """Text content in JSON format.""" + richText: JSONString + + """ + Attribute value ID. + + Added in Saleor 3.9. + """ + swatch: AttributeValueSelectableTypeInput + + """ + The value or slug of an attribute to resolve. If the passed value is non-existent, it will be created. This field will be removed in Saleor 4.0. + """ + values: [String!] +} + +""" +Represents attribute value. If no ID provided, value will be resolved. + +Added in Saleor 3.9. +""" +input AttributeValueSelectableTypeInput { + """ID of an attribute value.""" + id: ID + + """ + The value or slug of an attribute to resolve. If the passed value is non-existent, it will be created. + """ + value: String +} + +type AttributeValueTranslatableContent implements Node { + """ + Associated attribute that can be translated. + + Added in Saleor 3.9. + """ + attribute: AttributeTranslatableContent + + """Represents a value of an attribute.""" + attributeValue: AttributeValue @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") + id: ID! + name: String! + + """Attribute plain text value.""" + plainText: String + + """ + Attribute value. + + Rich text format. For reference see https://editorjs.io/ + """ + richText: JSONString + + """Returns translated attribute value fields for the given language code.""" + translation( + """A language code to return the translation for attribute value.""" + languageCode: LanguageCodeEnum! + ): AttributeValueTranslation +} + +""" +Creates/updates translations for an attribute value. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type AttributeValueTranslate { + attributeValue: AttributeValue + errors: [TranslationError!]! + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type AttributeValueTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String! + + """Attribute plain text value.""" + plainText: String + + """ + Attribute value. + + Rich text format. For reference see https://editorjs.io/ + """ + richText: JSONString +} + +input AttributeValueTranslationInput { + name: String + + """Translated text.""" + plainText: String + + """ + Translated text. + + Rich text format. For reference see https://editorjs.io/ + """ + richText: JSONString +} + +""" +Updates value of an attribute. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type AttributeValueUpdate { + """The updated attribute.""" + attribute: Attribute + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + attributeValue: AttributeValue + errors: [AttributeError!]! +} + +input AttributeValueUpdateInput { + """File content type.""" + contentType: String + + """ + External ID of this attribute value. + + Added in Saleor 3.10. + """ + externalReference: String + + """URL of the file attribute. Every time, a new value is created.""" + fileUrl: String + + """Name of a value displayed in the interface.""" + name: String + + """ + Represents the text of the attribute value, plain text without formating. + + DEPRECATED: this field will be removed in Saleor 4.0.The plain text attribute hasn't got predefined value, so can be specified only from instance that supports the given attribute. + """ + plainText: String + + """ + Represents the text of the attribute value, includes formatting. + + Rich text format. For reference see https://editorjs.io/ + + DEPRECATED: this field will be removed in Saleor 4.0.The rich text attribute hasn't got predefined value, so can be specified only from instance that supports the given attribute. + """ + richText: JSONString + + """ + Represent value of the attribute value (e.g. color values for swatch attributes). + """ + value: String +} + +""" +Event sent when attribute value is updated. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AttributeValueUpdated implements Event { + """The attribute value the event relates to.""" + attributeValue: AttributeValue + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +input BulkAttributeValueInput { + """ + The boolean value of an attribute to resolve. If the passed value is non-existent, it will be created. + """ + boolean: Boolean + + """ID of the selected attribute.""" + id: ID + + """ + The value or slug of an attribute to resolve. If the passed value is non-existent, it will be created. + """ + values: [String!] +} + +type BulkProductError { + """List of attributes IDs which causes the error.""" + attributes: [ID!] + + """List of channel IDs which causes the error.""" + channels: [ID!] + + """The error code.""" + code: ProductErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """Index of an input list item that caused the error.""" + index: Int + + """The error message.""" + message: String + + """List of attribute values IDs which causes the error.""" + values: [ID!] + + """List of warehouse IDs which causes the error.""" + warehouses: [ID!] +} + +type BulkStockError { + """List of attributes IDs which causes the error.""" + attributes: [ID!] + + """The error code.""" + code: ProductErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """Index of an input list item that caused the error.""" + index: Int + + """The error message.""" + message: String + + """List of attribute values IDs which causes the error.""" + values: [ID!] +} + +""" +Synchronous webhook for calculating checkout/order taxes. + +Added in Saleor 3.7. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CalculateTaxes implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + taxBase: TaxableObject! + + """Saleor version that triggered the event.""" + version: String +} + +input CardInput { + """ + Payment method nonce, a token returned by the appropriate provider's SDK. + """ + code: String! + + """Card security code.""" + cvc: String + + """Information about currency and amount.""" + money: MoneyInput! +} + +input CatalogueInput { + """Categories related to the discount.""" + categories: [ID!] + + """Collections related to the discount.""" + collections: [ID!] + + """Products related to the discount.""" + products: [ID!] + + """ + Product variant related to the discount. + + Added in Saleor 3.1. + """ + variants: [ID!] +} + +""" +Represents a single category of products. Categories allow to organize products in a tree-hierarchies which can be used for navigation in the storefront. +""" +type Category implements Node & ObjectWithMetadata { + """List of ancestors of the category.""" + ancestors( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CategoryCountableConnection + backgroundImage( + """ + The format of the image. When not provided, format of the original image will be used. Must be provided together with the size value, otherwise original image will be returned. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + format: ThumbnailFormatEnum + + """ + Size of the image. If not provided, the original image will be returned. + """ + size: Int + ): Image + + """List of children of the category.""" + children( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CategoryCountableConnection + + """ + Description of the category. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Description of the category. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") + id: ID! + level: Int! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + parent: Category + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """ + List of products in the category. Requires the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + products( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """ + Filtering options for products. + + Added in Saleor 3.10. + """ + filter: ProductFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """ + Sort products. + + Added in Saleor 3.10. + """ + sortBy: ProductOrder + ): ProductCountableConnection + seoDescription: String + seoTitle: String + slug: String! + + """Returns translated category fields for the given language code.""" + translation( + """A language code to return the translation for category.""" + languageCode: LanguageCodeEnum! + ): CategoryTranslation +} + +""" +Deletes categories. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CategoryBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type CategoryCountableConnection { + edges: [CategoryCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type CategoryCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: Category! +} + +""" +Creates a new category. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CategoryCreate { + category: Category + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when new category is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CategoryCreated implements Event { + """The category the event relates to.""" + category: Category + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes a category. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CategoryDelete { + category: Category + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when category is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CategoryDeleted implements Event { + """The category the event relates to.""" + category: Category + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +input CategoryFilterInput { + ids: [ID!] + metadata: [MetadataFilter!] + search: String + slugs: [String!] +} + +input CategoryInput { + """Background image file.""" + backgroundImage: Upload + + """Alt text for a product media.""" + backgroundImageAlt: String + + """ + Category description. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Fields required to update the category metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """Category name.""" + name: String + + """ + Fields required to update the category private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """Search engine optimization fields.""" + seo: SeoInput + + """Category slug.""" + slug: String +} + +enum CategorySortField { + """Sort categories by name.""" + NAME + + """Sort categories by product count.""" + PRODUCT_COUNT + + """Sort categories by subcategory count.""" + SUBCATEGORY_COUNT +} + +input CategorySortingInput { + """ + Specifies the channel in which to sort the data. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String + + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort categories by the selected field.""" + field: CategorySortField! +} + +type CategoryTranslatableContent implements Node { + """Represents a single category of products.""" + category: Category @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") + + """ + Description of the category. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Description of the category. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") + id: ID! + name: String! + seoDescription: String + seoTitle: String + + """Returns translated category fields for the given language code.""" + translation( + """A language code to return the translation for category.""" + languageCode: LanguageCodeEnum! + ): CategoryTranslation +} + +""" +Creates/updates translations for a category. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type CategoryTranslate { + category: Category + errors: [TranslationError!]! + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type CategoryTranslation implements Node { + """ + Translated description of the category. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Translated description of the category. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String + seoDescription: String + seoTitle: String +} + +""" +Updates a category. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CategoryUpdate { + category: Category + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when category is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CategoryUpdated implements Event { + """The category the event relates to.""" + category: Category + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""Represents channel.""" +type Channel implements Node { + """ + Shipping methods that are available for the channel. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + availableShippingMethodsPerCountry(countries: [CountryCode!]): [ShippingMethodsPerCountry!] + + """ + List of shippable countries for the channel. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + countries: [CountryDisplay!] + + """ + A currency that is assigned to the channel. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + currencyCode: String! + + """ + Default country for the channel. Default country can be used in checkout to determine the stock quantities or calculate taxes when the country was not explicitly provided. + + Added in Saleor 3.1. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + defaultCountry: CountryDisplay! + + """ + Whether a channel has associated orders. + + Requires one of the following permissions: MANAGE_CHANNELS. + """ + hasOrders: Boolean! + id: ID! + + """ + Whether the channel is active. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + isActive: Boolean! + + """ + Name of the channel. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + name: String! + + """Slug of the channel.""" + slug: String! + + """ + Define the stock setting for this channel. + + Added in Saleor 3.7. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + stockSettings: StockSettings! + + """ + List of warehouses assigned to this channel. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + warehouses: [Warehouse!]! +} + +""" +Activate a channel. + +Requires one of the following permissions: MANAGE_CHANNELS. +""" +type ChannelActivate { + """Activated channel.""" + channel: Channel + channelErrors: [ChannelError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ChannelError!]! +} + +""" +Creates new channel. + +Requires one of the following permissions: MANAGE_CHANNELS. +""" +type ChannelCreate { + channel: Channel + channelErrors: [ChannelError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ChannelError!]! +} + +input ChannelCreateInput { + """List of shipping zones to assign to the channel.""" + addShippingZones: [ID!] + + """ + List of warehouses to assign to the channel. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + addWarehouses: [ID!] + + """Currency of the channel.""" + currencyCode: String! + + """ + Default country for the channel. Default country can be used in checkout to determine the stock quantities or calculate taxes when the country was not explicitly provided. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + defaultCountry: CountryCode! + + """isActive flag.""" + isActive: Boolean + + """Name of the channel.""" + name: String! + + """Slug of the channel.""" + slug: String! + + """ + The channel stock settings. + + Added in Saleor 3.7. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + stockSettings: StockSettingsInput +} + +""" +Event sent when new channel is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ChannelCreated implements Event { + """The channel the event relates to.""" + channel: Channel + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deactivate a channel. + +Requires one of the following permissions: MANAGE_CHANNELS. +""" +type ChannelDeactivate { + """Deactivated channel.""" + channel: Channel + channelErrors: [ChannelError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ChannelError!]! +} + +""" +Delete a channel. Orders associated with the deleted channel will be moved to the target channel. Checkouts, product availability, and pricing will be removed. + +Requires one of the following permissions: MANAGE_CHANNELS. +""" +type ChannelDelete { + channel: Channel + channelErrors: [ChannelError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ChannelError!]! +} + +input ChannelDeleteInput { + """ID of channel to migrate orders from origin channel.""" + channelId: ID! +} + +""" +Event sent when channel is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ChannelDeleted implements Event { + """The channel the event relates to.""" + channel: Channel + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +type ChannelError { + """The error code.""" + code: ChannelErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of shipping zone IDs which causes the error.""" + shippingZones: [ID!] + + """List of warehouses IDs which causes the error.""" + warehouses: [ID!] +} + +"""An enumeration.""" +enum ChannelErrorCode { + ALREADY_EXISTS + CHANNELS_CURRENCY_MUST_BE_THE_SAME + CHANNEL_WITH_ORDERS + DUPLICATED_INPUT_ITEM + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE +} + +""" +Reorder the warehouses of a channel. + +Added in Saleor 3.7. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_CHANNELS. +""" +type ChannelReorderWarehouses { + """Channel within the warehouses are reordered.""" + channel: Channel + errors: [ChannelError!]! +} + +""" +Event sent when channel status has changed. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ChannelStatusChanged implements Event { + """The channel the event relates to.""" + channel: Channel + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Update a channel. + +Requires one of the following permissions: MANAGE_CHANNELS. +""" +type ChannelUpdate { + channel: Channel + channelErrors: [ChannelError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ChannelError!]! +} + +input ChannelUpdateInput { + """List of shipping zones to assign to the channel.""" + addShippingZones: [ID!] + + """ + List of warehouses to assign to the channel. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + addWarehouses: [ID!] + + """ + Default country for the channel. Default country can be used in checkout to determine the stock quantities or calculate taxes when the country was not explicitly provided. + + Added in Saleor 3.1. + """ + defaultCountry: CountryCode + + """isActive flag.""" + isActive: Boolean + + """Name of the channel.""" + name: String + + """List of shipping zones to unassign from the channel.""" + removeShippingZones: [ID!] + + """ + List of warehouses to unassign from the channel. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + removeWarehouses: [ID!] + + """Slug of the channel.""" + slug: String + + """ + The channel stock settings. + + Added in Saleor 3.7. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + stockSettings: StockSettingsInput +} + +""" +Event sent when channel is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ChannelUpdated implements Event { + """The channel the event relates to.""" + channel: Channel + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""Checkout object.""" +type Checkout implements Node & ObjectWithMetadata { + """ + Collection points that can be used for this order. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + availableCollectionPoints: [Warehouse!]! + + """List of available payment gateways.""" + availablePaymentGateways: [PaymentGateway!]! + + """Shipping methods that can be used with this checkout.""" + availableShippingMethods: [ShippingMethod!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `shippingMethods` instead.") + billingAddress: Address + channel: Channel! + created: DateTime! + + """ + The delivery method selected for this checkout. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + deliveryMethod: DeliveryMethod + discount: Money + discountName: String + + """ + Determines whether checkout prices should include taxes when displayed in a storefront. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + displayGrossPrices: Boolean! + + """Email of a customer.""" + email: String + + """List of gift cards associated with this checkout.""" + giftCards: [GiftCard!]! + id: ID! + + """Returns True, if checkout requires shipping.""" + isShippingRequired: Boolean! + + """Checkout language code.""" + languageCode: LanguageCodeEnum! + lastChange: DateTime! + + """ + A list of checkout lines, each containing information about an item in the checkout. + """ + lines: [CheckoutLine!]! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + note: String! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """The number of items purchased.""" + quantity: Int! + shippingAddress: Address + + """The shipping method related with checkout.""" + shippingMethod: ShippingMethod @deprecated(reason: "This field will be removed in Saleor 4.0. Use `deliveryMethod` instead.") + + """Shipping methods that can be used with this checkout.""" + shippingMethods: [ShippingMethod!]! + + """The price of the shipping, with all the taxes included.""" + shippingPrice: TaxedMoney! + + """ + Date when oldest stock reservation for this checkout expires or null if no stock is reserved. + + Added in Saleor 3.1. + """ + stockReservationExpires: DateTime + + """The price of the checkout before shipping, with taxes included.""" + subtotalPrice: TaxedMoney! + + """ + Returns True if checkout has to be exempt from taxes. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + taxExemption: Boolean! + + """The checkout's token.""" + token: UUID! + + """ + The sum of the the checkout line prices, with all the taxes,shipping costs, and discounts included. + """ + totalPrice: TaxedMoney! + + """ + List of transactions for the checkout. Requires one of the following permissions: MANAGE_CHECKOUTS, HANDLE_PAYMENTS. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + transactions: [TransactionItem!] + translatedDiscountName: String + user: User + voucherCode: String +} + +"""Adds a gift card or a voucher to a checkout.""" +type CheckoutAddPromoCode { + """The checkout with the added gift card or voucher.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +input CheckoutAddressValidationRules { + """ + Determines if an error should be raised when the provided address doesn't match the expected format. Example: using letters for postal code when the numbers are expected. + """ + checkFieldsFormat: Boolean = true + + """ + Determines if an error should be raised when the provided address doesn't have all the required fields. The list of required fields is dynamic and depends on the country code (use the `addressValidationRules` query to fetch them). Note: country code is mandatory for all addresses regardless of the rules provided in this input. + """ + checkRequiredFields: Boolean = true + + """ + Determines if Saleor should apply normalization on address fields. Example: converting city field to uppercase letters. + """ + enableFieldsNormalization: Boolean = true +} + +"""Update billing address in the existing checkout.""" +type CheckoutBillingAddressUpdate { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +""" +Completes the checkout. As a result a new order is created and a payment charge is made. This action requires a successful payment before it can be performed. In case additional confirmation step as 3D secure is required confirmationNeeded flag will be set to True and no order created until payment is confirmed with second call of this mutation. +""" +type CheckoutComplete { + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """Confirmation data used to process additional authorization steps.""" + confirmationData: JSONString + + """ + Set to true if payment needs to be confirmed before checkout is complete. + """ + confirmationNeeded: Boolean! + errors: [CheckoutError!]! + + """Placed order.""" + order: Order +} + +type CheckoutCountableConnection { + edges: [CheckoutCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type CheckoutCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: Checkout! +} + +"""Create a new checkout.""" +type CheckoutCreate { + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """ + Whether the checkout was created or the current active one was returned. Refer to checkoutLinesAdd and checkoutLinesUpdate to merge a cart with an active checkout. + """ + created: Boolean @deprecated(reason: "This field will be removed in Saleor 4.0. Always returns `true`.") + errors: [CheckoutError!]! +} + +input CheckoutCreateInput { + """Billing address of the customer.""" + billingAddress: AddressInput + + """Slug of a channel in which to create a checkout.""" + channel: String + + """The customer's email address.""" + email: String + + """Checkout language code.""" + languageCode: LanguageCodeEnum + + """ + A list of checkout lines, each containing information about an item in the checkout. + """ + lines: [CheckoutLineInput!]! + + """ + The mailing address to where the checkout will be shipped. Note: the address will be ignored if the checkout doesn't contain shippable items. + """ + shippingAddress: AddressInput + + """ + The checkout validation rules that can be changed. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + validationRules: CheckoutValidationRules +} + +""" +Event sent when new checkout is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CheckoutCreated implements Event { + """The checkout the event relates to.""" + checkout: Checkout + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Sets the customer as the owner of the checkout. + +Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_USER. +""" +type CheckoutCustomerAttach { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +""" +Removes the user assigned as the owner of the checkout. + +Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_USER. +""" +type CheckoutCustomerDetach { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +""" +Updates the delivery method (shipping method or pick up point) of the checkout. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CheckoutDeliveryMethodUpdate { + """An updated checkout.""" + checkout: Checkout + errors: [CheckoutError!]! +} + +"""Updates email address in the existing checkout object.""" +type CheckoutEmailUpdate { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +type CheckoutError { + """A type of address that causes the error.""" + addressType: AddressTypeEnum + + """The error code.""" + code: CheckoutErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """List of line Ids which cause the error.""" + lines: [ID!] + + """The error message.""" + message: String + + """List of varint IDs which causes the error.""" + variants: [ID!] +} + +"""An enumeration.""" +enum CheckoutErrorCode { + BILLING_ADDRESS_NOT_SET + CHANNEL_INACTIVE + CHECKOUT_NOT_FULLY_PAID + DELIVERY_METHOD_NOT_APPLICABLE + EMAIL_NOT_SET + GIFT_CARD_NOT_APPLICABLE + GRAPHQL_ERROR + INACTIVE_PAYMENT + INSUFFICIENT_STOCK + INVALID + INVALID_SHIPPING_METHOD + MISSING_CHANNEL_SLUG + NOT_FOUND + NO_LINES + PAYMENT_ERROR + PRODUCT_NOT_PUBLISHED + PRODUCT_UNAVAILABLE_FOR_PURCHASE + QUANTITY_GREATER_THAN_LIMIT + REQUIRED + SHIPPING_ADDRESS_NOT_SET + SHIPPING_METHOD_NOT_APPLICABLE + SHIPPING_METHOD_NOT_SET + SHIPPING_NOT_REQUIRED + TAX_ERROR + UNAVAILABLE_VARIANT_IN_CHANNEL + UNIQUE + VOUCHER_NOT_APPLICABLE + ZERO_QUANTITY +} + +input CheckoutFilterInput { + channels: [ID!] + created: DateRangeInput + customer: String + metadata: [MetadataFilter!] + search: String +} + +""" +Filter shipping methods for checkout. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CheckoutFilterShippingMethods implements Event { + """The checkout the event relates to.""" + checkout: Checkout + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """ + Shipping methods that can be used with this checkout. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + shippingMethods: [ShippingMethod!] + + """Saleor version that triggered the event.""" + version: String +} + +"""Update language code in the existing checkout.""" +type CheckoutLanguageCodeUpdate { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +"""Represents an item in the checkout.""" +type CheckoutLine implements Node & ObjectWithMetadata { + id: ID! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + quantity: Int! + + """Indicates whether the item need to be delivered.""" + requiresShipping: Boolean! + + """The sum of the checkout line price, taxes and discounts.""" + totalPrice: TaxedMoney! + + """The sum of the checkout line price, without discounts.""" + undiscountedTotalPrice: Money! + + """The unit price of the checkout line, without discounts.""" + undiscountedUnitPrice: Money! + + """The unit price of the checkout line, with taxes and discounts.""" + unitPrice: TaxedMoney! + variant: ProductVariant! +} + +type CheckoutLineCountableConnection { + edges: [CheckoutLineCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type CheckoutLineCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: CheckoutLine! +} + +"""Deletes a CheckoutLine.""" +type CheckoutLineDelete { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +input CheckoutLineInput { + """ + Flag that allow force splitting the same variant into multiple lines by skipping the matching logic. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + forceNewLine: Boolean = false + + """ + Fields required to update the object's metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """ + Custom price of the item. Can be set only by apps with `HANDLE_CHECKOUTS` permission. When the line with the same variant will be provided multiple times, the last price will be used. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + price: PositiveDecimal + + """The number of items purchased.""" + quantity: Int! + + """ID of the product variant.""" + variantId: ID! +} + +input CheckoutLineUpdateInput { + """ + ID of the line. + + Added in Saleor 3.6. + """ + lineId: ID + + """ + Custom price of the item. Can be set only by apps with `HANDLE_CHECKOUTS` permission. When the line with the same variant will be provided multiple times, the last price will be used. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + price: PositiveDecimal + + """ + The number of items purchased. Optional for apps, required for any other users. + """ + quantity: Int + + """ + ID of the product variant. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `lineId` instead. + """ + variantId: ID +} + +""" +Adds a checkout line to the existing checkout.If line was already in checkout, its quantity will be increased. +""" +type CheckoutLinesAdd { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +"""Deletes checkout lines.""" +type CheckoutLinesDelete { + """An updated checkout.""" + checkout: Checkout + errors: [CheckoutError!]! +} + +"""Updates checkout line in the existing checkout.""" +type CheckoutLinesUpdate { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +""" +Event sent when checkout metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CheckoutMetadataUpdated implements Event { + """The checkout the event relates to.""" + checkout: Checkout + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""Create a new payment for given checkout.""" +type CheckoutPaymentCreate { + """Related checkout object.""" + checkout: Checkout + errors: [PaymentError!]! + + """A newly created payment.""" + payment: Payment + paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +"""Remove a gift card or a voucher from a checkout.""" +type CheckoutRemovePromoCode { + """The checkout with the removed gift card or voucher.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +"""Update shipping address in the existing checkout.""" +type CheckoutShippingAddressUpdate { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +"""Updates the shipping method of the checkout.""" +type CheckoutShippingMethodUpdate { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +enum CheckoutSortField { + """Sort checkouts by creation date.""" + CREATION_DATE + + """Sort checkouts by customer.""" + CUSTOMER + + """Sort checkouts by payment.""" + PAYMENT +} + +input CheckoutSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort checkouts by the selected field.""" + field: CheckoutSortField! +} + +""" +Event sent when checkout is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CheckoutUpdated implements Event { + """The checkout the event relates to.""" + checkout: Checkout + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +input CheckoutValidationRules { + """ + The validation rules that can be applied to provided billing address data. + """ + billingAddress: CheckoutAddressValidationRules + + """ + The validation rules that can be applied to provided shipping address data. + """ + shippingAddress: CheckoutAddressValidationRules +} + +type ChoiceValue { + raw: String + verbose: String +} + +"""Represents a collection of products.""" +type Collection implements Node & ObjectWithMetadata { + backgroundImage( + """ + The format of the image. When not provided, format of the original image will be used. Must be provided together with the size value, otherwise original image will be returned. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + format: ThumbnailFormatEnum + + """ + Size of the image. If not provided, the original image will be returned. + """ + size: Int + ): Image + + """ + Channel given to retrieve this collection. Also used by federation gateway to resolve this object in a federated query. + """ + channel: String + + """ + List of channels in which the collection is available. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + channelListings: [CollectionChannelListing!] + + """ + Description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") + id: ID! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of products in this collection.""" + products( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for products.""" + filter: ProductFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort products.""" + sortBy: ProductOrder + ): ProductCountableConnection + seoDescription: String + seoTitle: String + slug: String! + + """Returns translated collection fields for the given language code.""" + translation( + """A language code to return the translation for collection.""" + languageCode: LanguageCodeEnum! + ): CollectionTranslation +} + +""" +Adds products to a collection. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionAddProducts { + """Collection to which products will be added.""" + collection: Collection + collectionErrors: [CollectionError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CollectionError!]! +} + +""" +Deletes collections. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionBulkDelete { + collectionErrors: [CollectionError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """Returns how many objects were affected.""" + count: Int! + errors: [CollectionError!]! +} + +"""Represents collection channel listing.""" +type CollectionChannelListing implements Node { + channel: Channel! + id: ID! + isPublished: Boolean! + publicationDate: Date @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `publishedAt` field to fetch the publication date.") + + """ + The collection publication date. + + Added in Saleor 3.3. + """ + publishedAt: DateTime +} + +type CollectionChannelListingError { + """List of attributes IDs which causes the error.""" + attributes: [ID!] + + """List of channels IDs which causes the error.""" + channels: [ID!] + + """The error code.""" + code: ProductErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of attribute values IDs which causes the error.""" + values: [ID!] +} + +""" +Manage collection's availability in channels. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionChannelListingUpdate { + """An updated collection instance.""" + collection: Collection + collectionChannelListingErrors: [CollectionChannelListingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CollectionChannelListingError!]! +} + +input CollectionChannelListingUpdateInput { + """List of channels to which the collection should be assigned.""" + addChannels: [PublishableChannelListingInput!] + + """List of channels from which the collection should be unassigned.""" + removeChannels: [ID!] +} + +type CollectionCountableConnection { + edges: [CollectionCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type CollectionCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: Collection! +} + +""" +Creates a new collection. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionCreate { + collection: Collection + collectionErrors: [CollectionError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CollectionError!]! +} + +input CollectionCreateInput { + """Background image file.""" + backgroundImage: Upload + + """Alt text for an image.""" + backgroundImageAlt: String + + """ + Description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """Informs whether a collection is published.""" + isPublished: Boolean + + """ + Fields required to update the collection metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """Name of the collection.""" + name: String + + """ + Fields required to update the collection private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """List of products to be added to the collection.""" + products: [ID!] + + """ + Publication date. ISO 8601 standard. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + publicationDate: Date + + """Search engine optimization fields.""" + seo: SeoInput + + """Slug of the collection.""" + slug: String +} + +""" +Event sent when new collection is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CollectionCreated implements Event { + """The collection the event relates to.""" + collection( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Collection + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes a collection. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionDelete { + collection: Collection + collectionErrors: [CollectionError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CollectionError!]! +} + +""" +Event sent when collection is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CollectionDeleted implements Event { + """The collection the event relates to.""" + collection( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Collection + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +type CollectionError { + """The error code.""" + code: CollectionErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of products IDs which causes the error.""" + products: [ID!] +} + +"""An enumeration.""" +enum CollectionErrorCode { + CANNOT_MANAGE_PRODUCT_WITHOUT_VARIANT + DUPLICATED_INPUT_ITEM + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE +} + +input CollectionFilterInput { + """ + Specifies the channel by which the data should be filtered. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String + ids: [ID!] + metadata: [MetadataFilter!] + published: CollectionPublished + search: String + slugs: [String!] +} + +input CollectionInput { + """Background image file.""" + backgroundImage: Upload + + """Alt text for an image.""" + backgroundImageAlt: String + + """ + Description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """Informs whether a collection is published.""" + isPublished: Boolean + + """ + Fields required to update the collection metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """Name of the collection.""" + name: String + + """ + Fields required to update the collection private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """ + Publication date. ISO 8601 standard. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + publicationDate: Date + + """Search engine optimization fields.""" + seo: SeoInput + + """Slug of the collection.""" + slug: String +} + +""" +Event sent when collection metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CollectionMetadataUpdated implements Event { + """The collection the event relates to.""" + collection( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Collection + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +enum CollectionPublished { + HIDDEN + PUBLISHED +} + +""" +Remove products from a collection. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionRemoveProducts { + """Collection from which products will be removed.""" + collection: Collection + collectionErrors: [CollectionError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CollectionError!]! +} + +""" +Reorder the products of a collection. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionReorderProducts { + """Collection from which products are reordered.""" + collection: Collection + collectionErrors: [CollectionError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CollectionError!]! +} + +enum CollectionSortField { + """ + Sort collections by availability. + + This option requires a channel filter to work as the values can vary between channels. + """ + AVAILABILITY + + """Sort collections by name.""" + NAME + + """Sort collections by product count.""" + PRODUCT_COUNT + + """ + Sort collections by publication date. + + This option requires a channel filter to work as the values can vary between channels. + """ + PUBLICATION_DATE + + """ + Sort collections by publication date. + + This option requires a channel filter to work as the values can vary between channels. + """ + PUBLISHED_AT +} + +input CollectionSortingInput { + """ + Specifies the channel in which to sort the data. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String + + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort collections by the selected field.""" + field: CollectionSortField! +} + +type CollectionTranslatableContent implements Node { + """Represents a collection of products.""" + collection: Collection @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") + + """ + Description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") + id: ID! + name: String! + seoDescription: String + seoTitle: String + + """Returns translated collection fields for the given language code.""" + translation( + """A language code to return the translation for collection.""" + languageCode: LanguageCodeEnum! + ): CollectionTranslation +} + +""" +Creates/updates translations for a collection. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type CollectionTranslate { + collection: Collection + errors: [TranslationError!]! + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type CollectionTranslation implements Node { + """ + Translated description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Translated description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String + seoDescription: String + seoTitle: String +} + +""" +Updates a collection. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionUpdate { + collection: Collection + collectionErrors: [CollectionError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CollectionError!]! +} + +""" +Event sent when collection is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CollectionUpdated implements Event { + """The collection the event relates to.""" + collection( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Collection + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""Stores information about a single configuration field.""" +type ConfigurationItem { + """Help text for the field.""" + helpText: String + + """Label for the field.""" + label: String + + """Name of the field.""" + name: String! + + """Type of the field.""" + type: ConfigurationTypeFieldEnum + + """Current value of the field.""" + value: String +} + +input ConfigurationItemInput { + """Name of the field to update.""" + name: String! + + """Value of the given field to update.""" + value: String +} + +"""An enumeration.""" +enum ConfigurationTypeFieldEnum { + BOOLEAN + MULTILINE + OUTPUT + PASSWORD + SECRET + SECRETMULTILINE + STRING +} + +"""Confirm user account with token sent by email during registration.""" +type ConfirmAccount { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + + """An activated user account.""" + user: User +} + +""" +Confirm the email change of the logged-in user. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type ConfirmEmailChange { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + + """A user instance with a new email.""" + user: User +} + +"""An enumeration.""" +enum CountryCode { + AD + AE + AF + AG + AI + AL + AM + AO + AQ + AR + AS + AT + AU + AW + AX + AZ + BA + BB + BD + BE + BF + BG + BH + BI + BJ + BL + BM + BN + BO + BQ + BR + BS + BT + BV + BW + BY + BZ + CA + CC + CD + CF + CG + CH + CI + CK + CL + CM + CN + CO + CR + CU + CV + CW + CX + CY + CZ + DE + DJ + DK + DM + DO + DZ + EC + EE + EG + EH + ER + ES + ET + EU + FI + FJ + FK + FM + FO + FR + GA + GB + GD + GE + GF + GG + GH + GI + GL + GM + GN + GP + GQ + GR + GS + GT + GU + GW + GY + HK + HM + HN + HR + HT + HU + ID + IE + IL + IM + IN + IO + IQ + IR + IS + IT + JE + JM + JO + JP + KE + KG + KH + KI + KM + KN + KP + KR + KW + KY + KZ + LA + LB + LC + LI + LK + LR + LS + LT + LU + LV + LY + MA + MC + MD + ME + MF + MG + MH + MK + ML + MM + MN + MO + MP + MQ + MR + MS + MT + MU + MV + MW + MX + MY + MZ + NA + NC + NE + NF + NG + NI + NL + NO + NP + NR + NU + NZ + OM + PA + PE + PF + PG + PH + PK + PL + PM + PN + PR + PS + PT + PW + PY + QA + RE + RO + RS + RU + RW + SA + SB + SC + SD + SE + SG + SH + SI + SJ + SK + SL + SM + SN + SO + SR + SS + ST + SV + SX + SY + SZ + TC + TD + TF + TG + TH + TJ + TK + TL + TM + TN + TO + TR + TT + TV + TW + TZ + UA + UG + UM + US + UY + UZ + VA + VC + VE + VG + VI + VN + VU + WF + WS + YE + YT + ZA + ZM + ZW +} + +type CountryDisplay { + """Country code.""" + code: String! + + """Country name.""" + country: String! + + """Country tax.""" + vat: VAT @deprecated(reason: "This field will be removed in Saleor 4.0. Use `TaxClassCountryRate` type to manage tax rates per country.") +} + +input CountryFilterInput { + """ + Boolean for filtering countries by having shipping zone assigned.If 'true', return countries with shipping zone assigned.If 'false', return countries without any shipping zone assigned.If the argument is not provided (null), return all countries. + """ + attachedToShippingZones: Boolean +} + +input CountryRateInput { + """Country in which this rate applies.""" + countryCode: CountryCode! + + """ + Tax rate value provided as percentage. Example: provide `23` to represent `23%` tax rate. + """ + rate: Float! +} + +input CountryRateUpdateInput { + """Country in which this rate applies.""" + countryCode: CountryCode! + + """ + Tax rate value provided as percentage. Example: provide `23` to represent `23%` tax rate. Provide `null` to remove the particular rate. + """ + rate: Float +} + +"""Create JWT token.""" +type CreateToken { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """CSRF token required to re-generate access token.""" + csrfToken: String + errors: [AccountError!]! + + """JWT refresh token, required to re-generate access token.""" + refreshToken: String + + """JWT token, required to authenticate.""" + token: String + + """A user instance.""" + user: User +} + +type CreditCard { + """Card brand.""" + brand: String! + + """Two-digit number representing the card’s expiration month.""" + expMonth: Int + + """Four-digit number representing the card’s expiration year.""" + expYear: Int + + """First 4 digits of the card number.""" + firstDigits: String + + """Last 4 digits of the card number.""" + lastDigits: String! +} + +""" +Deletes customers. + +Requires one of the following permissions: MANAGE_USERS. +""" +type CustomerBulkDelete { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """Returns how many objects were affected.""" + count: Int! + errors: [AccountError!]! +} + +""" +Creates a new customer. + +Requires one of the following permissions: MANAGE_USERS. +""" +type CustomerCreate { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + user: User +} + +""" +Event sent when new customer user is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CustomerCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The user the event relates to.""" + user: User + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes a customer. + +Requires one of the following permissions: MANAGE_USERS. +""" +type CustomerDelete { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + user: User +} + +"""History log of the customer.""" +type CustomerEvent implements Node { + """App that performed the action.""" + app: App + + """Number of objects concerned by the event.""" + count: Int + + """Date when event happened at in ISO 8601 format.""" + date: DateTime + id: ID! + + """Content of the event.""" + message: String + + """The concerned order.""" + order: Order + + """The concerned order line.""" + orderLine: OrderLine + + """Customer event type.""" + type: CustomerEventsEnum + + """User who performed the action.""" + user: User +} + +"""An enumeration.""" +enum CustomerEventsEnum { + ACCOUNT_ACTIVATED + ACCOUNT_CREATED + ACCOUNT_DEACTIVATED + CUSTOMER_DELETED + DIGITAL_LINK_DOWNLOADED + EMAIL_ASSIGNED + EMAIL_CHANGED + EMAIL_CHANGED_REQUEST + NAME_ASSIGNED + NOTE_ADDED + NOTE_ADDED_TO_ORDER + PASSWORD_CHANGED + PASSWORD_RESET + PASSWORD_RESET_LINK_SENT + PLACED_ORDER +} + +input CustomerFilterInput { + dateJoined: DateRangeInput + + """ + Filter by ids. + + Added in Saleor 3.8. + """ + ids: [ID!] + metadata: [MetadataFilter!] + numberOfOrders: IntRangeInput + placedOrders: DateRangeInput + search: String + updatedAt: DateTimeRangeInput +} + +input CustomerInput { + """Billing address of the customer.""" + defaultBillingAddress: AddressInput + + """Shipping address of the customer.""" + defaultShippingAddress: AddressInput + + """The unique email address of the user.""" + email: String + + """ + External ID of the customer. + + Added in Saleor 3.10. + """ + externalReference: String + + """Given name.""" + firstName: String + + """User account is active.""" + isActive: Boolean + + """User language code.""" + languageCode: LanguageCodeEnum + + """Family name.""" + lastName: String + + """A note about the user.""" + note: String +} + +""" +Event sent when customer user metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CustomerMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The user the event relates to.""" + user: User + + """Saleor version that triggered the event.""" + version: String +} + +""" +Updates an existing customer. + +Requires one of the following permissions: MANAGE_USERS. +""" +type CustomerUpdate { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + user: User +} + +""" +Event sent when customer user is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CustomerUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The user the event relates to.""" + user: User + + """Saleor version that triggered the event.""" + version: String +} + +""" +The `Date` scalar type represents a Date +value as specified by +[iso8601](https://en.wikipedia.org/wiki/ISO_8601). +""" +scalar Date + +input DateRangeInput { + """Start date.""" + gte: Date + + """End date.""" + lte: Date +} + +""" +The `DateTime` scalar type represents a DateTime +value as specified by +[iso8601](https://en.wikipedia.org/wiki/ISO_8601). +""" +scalar DateTime + +input DateTimeRangeInput { + """Start date.""" + gte: DateTime + + """End date.""" + lte: DateTime +} + +""" +Deactivate all JWT tokens of the currently authenticated user. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type DeactivateAllUserTokens { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +""" +Delete metadata of an object. To use it, you need to have access to the modified object. +""" +type DeleteMetadata { + errors: [MetadataError!]! + item: ObjectWithMetadata + metadataErrors: [MetadataError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Delete object's private metadata. To use it, you need to be an authenticated staff user or an app and have access to the modified object. +""" +type DeletePrivateMetadata { + errors: [MetadataError!]! + item: ObjectWithMetadata + metadataErrors: [MetadataError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Represents a delivery method chosen for the checkout. `Warehouse` type is used when checkout is marked as "click and collect" and `ShippingMethod` otherwise. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +union DeliveryMethod = ShippingMethod | Warehouse + +type DigitalContent implements Node & ObjectWithMetadata { + automaticFulfillment: Boolean! + contentFile: String! + id: ID! + maxDownloads: Int + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """Product variant assigned to digital content.""" + productVariant: ProductVariant! + urlValidDays: Int + + """List of URLs for the digital variant.""" + urls: [DigitalContentUrl!] + useDefaultSettings: Boolean! +} + +type DigitalContentCountableConnection { + edges: [DigitalContentCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type DigitalContentCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: DigitalContent! +} + +""" +Create new digital content. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type DigitalContentCreate { + content: DigitalContent + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + variant: ProductVariant +} + +""" +Remove digital content assigned to given variant. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type DigitalContentDelete { + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + variant: ProductVariant +} + +input DigitalContentInput { + """Overwrite default automatic_fulfillment setting for variant.""" + automaticFulfillment: Boolean + + """ + Determines how many times a download link can be accessed by a customer. + """ + maxDownloads: Int + + """ + Fields required to update the digital content metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """ + Fields required to update the digital content private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """ + Determines for how many days a download link is active since it was generated. + """ + urlValidDays: Int + + """Use default digital content settings for this product.""" + useDefaultSettings: Boolean! +} + +""" +Update digital content. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type DigitalContentUpdate { + content: DigitalContent + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + variant: ProductVariant +} + +input DigitalContentUploadInput { + """Overwrite default automatic_fulfillment setting for variant.""" + automaticFulfillment: Boolean + + """Represents an file in a multipart request.""" + contentFile: Upload! + + """ + Determines how many times a download link can be accessed by a customer. + """ + maxDownloads: Int + + """ + Fields required to update the digital content metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """ + Fields required to update the digital content private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """ + Determines for how many days a download link is active since it was generated. + """ + urlValidDays: Int + + """Use default digital content settings for this product.""" + useDefaultSettings: Boolean! +} + +type DigitalContentUrl implements Node { + content: DigitalContent! + created: DateTime! + downloadNum: Int! + id: ID! + + """UUID of digital content.""" + token: UUID! + + """URL for digital content.""" + url: String +} + +""" +Generate new URL to digital content. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type DigitalContentUrlCreate { + digitalContentUrl: DigitalContentUrl + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input DigitalContentUrlCreateInput { + """Digital content ID which URL will belong to.""" + content: ID! +} + +type DiscountError { + """List of channels IDs which causes the error.""" + channels: [ID!] + + """The error code.""" + code: DiscountErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of products IDs which causes the error.""" + products: [ID!] +} + +"""An enumeration.""" +enum DiscountErrorCode { + ALREADY_EXISTS + CANNOT_MANAGE_PRODUCT_WITHOUT_VARIANT + DUPLICATED_INPUT_ITEM + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE +} + +enum DiscountStatusEnum { + ACTIVE + EXPIRED + SCHEDULED +} + +enum DiscountValueTypeEnum { + FIXED + PERCENTAGE +} + +"""An enumeration.""" +enum DistanceUnitsEnum { + CM + FT + INCH + KM + M + YD +} + +"""Represents shop's domain.""" +type Domain { + """The host name of the domain.""" + host: String! + + """Inform if SSL is enabled.""" + sslEnabled: Boolean! + + """Shop's absolute URL.""" + url: String! +} + +""" +Deletes draft orders. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type DraftOrderBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [OrderError!]! + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Completes creating an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type DraftOrderComplete { + errors: [OrderError!]! + + """Completed order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Creates a new draft order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type DraftOrderCreate { + errors: [OrderError!]! + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input DraftOrderCreateInput { + """Billing address of the customer.""" + billingAddress: AddressInput + + """ID of the channel associated with the order.""" + channelId: ID + + """A note from a customer. Visible by customers in the order summary.""" + customerNote: String + + """Discount amount for the order.""" + discount: PositiveDecimal + + """ + External ID of this order. + + Added in Saleor 3.10. + """ + externalReference: String + + """Variant line input consisting of variant ID and quantity of products.""" + lines: [OrderLineCreateInput!] + + """ + URL of a view where users should be redirected to see the order details. URL in RFC 1808 format. + """ + redirectUrl: String + + """Shipping address of the customer.""" + shippingAddress: AddressInput + + """ID of a selected shipping method.""" + shippingMethod: ID + + """Customer associated with the draft order.""" + user: ID + + """Email address of the customer.""" + userEmail: String + + """ID of the voucher associated with the order.""" + voucher: ID +} + +""" +Event sent when new draft order is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type DraftOrderCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The order the event relates to.""" + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes a draft order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type DraftOrderDelete { + errors: [OrderError!]! + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when draft order is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type DraftOrderDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The order the event relates to.""" + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +input DraftOrderInput { + """Billing address of the customer.""" + billingAddress: AddressInput + + """ID of the channel associated with the order.""" + channelId: ID + + """A note from a customer. Visible by customers in the order summary.""" + customerNote: String + + """Discount amount for the order.""" + discount: PositiveDecimal + + """ + External ID of this order. + + Added in Saleor 3.10. + """ + externalReference: String + + """ + URL of a view where users should be redirected to see the order details. URL in RFC 1808 format. + """ + redirectUrl: String + + """Shipping address of the customer.""" + shippingAddress: AddressInput + + """ID of a selected shipping method.""" + shippingMethod: ID + + """Customer associated with the draft order.""" + user: ID + + """Email address of the customer.""" + userEmail: String + + """ID of the voucher associated with the order.""" + voucher: ID +} + +""" +Deletes order lines. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type DraftOrderLinesBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [OrderError!]! + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Updates a draft order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type DraftOrderUpdate { + errors: [OrderError!]! + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when draft order is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type DraftOrderUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The order the event relates to.""" + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +interface Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""Event delivery.""" +type EventDelivery implements Node { + """Event delivery attempts.""" + attempts( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Event delivery sorter""" + sortBy: EventDeliveryAttemptSortingInput + ): EventDeliveryAttemptCountableConnection + createdAt: DateTime! + + """Webhook event type.""" + eventType: WebhookEventTypeEnum! + id: ID! + + """Event payload.""" + payload: String + + """Event delivery status.""" + status: EventDeliveryStatusEnum! +} + +"""Event delivery attempts.""" +type EventDeliveryAttempt implements Node { + """Event delivery creation date and time.""" + createdAt: DateTime! + + """Delivery attempt duration.""" + duration: Float + id: ID! + + """Request headers for delivery attempt.""" + requestHeaders: String + + """Delivery attempt response content.""" + response: String + + """Response headers for delivery attempt.""" + responseHeaders: String + + """Delivery attempt response status code.""" + responseStatusCode: Int + + """Event delivery status.""" + status: EventDeliveryStatusEnum! + + """Task id for delivery attempt.""" + taskId: String +} + +type EventDeliveryAttemptCountableConnection { + edges: [EventDeliveryAttemptCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type EventDeliveryAttemptCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: EventDeliveryAttempt! +} + +enum EventDeliveryAttemptSortField { + """Sort event delivery attempts by created at.""" + CREATED_AT +} + +input EventDeliveryAttemptSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort attempts by the selected field.""" + field: EventDeliveryAttemptSortField! +} + +type EventDeliveryCountableConnection { + edges: [EventDeliveryCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type EventDeliveryCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: EventDelivery! +} + +input EventDeliveryFilterInput { + eventType: WebhookEventTypeEnum + status: EventDeliveryStatusEnum +} + +""" +Retries event delivery. + +Requires one of the following permissions: MANAGE_APPS. +""" +type EventDeliveryRetry { + """Event delivery.""" + delivery: EventDelivery + errors: [WebhookError!]! +} + +enum EventDeliverySortField { + """Sort event deliveries by created at.""" + CREATED_AT +} + +input EventDeliverySortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort deliveries by the selected field.""" + field: EventDeliverySortField! +} + +enum EventDeliveryStatusEnum { + FAILED + PENDING + SUCCESS +} + +type ExportError { + """The error code.""" + code: ExportErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum ExportErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED +} + +"""History log of export file.""" +type ExportEvent implements Node { + """ + App which performed the action. Requires one of the following permissions: OWNER, MANAGE_APPS. + """ + app: App + + """Date when event happened at in ISO 8601 format.""" + date: DateTime! + + """The ID of the object.""" + id: ID! + + """Content of the event.""" + message: String! + + """Export event type.""" + type: ExportEventsEnum! + + """ + User who performed the action. Requires one of the following permissions: OWNER, MANAGE_STAFF. + """ + user: User +} + +"""An enumeration.""" +enum ExportEventsEnum { + EXPORTED_FILE_SENT + EXPORT_DELETED + EXPORT_FAILED + EXPORT_FAILED_INFO_SENT + EXPORT_PENDING + EXPORT_SUCCESS +} + +"""Represents a job data of exported file.""" +type ExportFile implements Job & Node { + app: App + + """Created date time of job in ISO 8601 format.""" + createdAt: DateTime! + + """List of events associated with the export.""" + events: [ExportEvent!] + id: ID! + + """Job message.""" + message: String + + """Job status.""" + status: JobStatusEnum! + + """Date time of job last update in ISO 8601 format.""" + updatedAt: DateTime! + + """The URL of field to download.""" + url: String + user: User +} + +type ExportFileCountableConnection { + edges: [ExportFileCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type ExportFileCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: ExportFile! +} + +input ExportFileFilterInput { + app: String + createdAt: DateTimeRangeInput + status: JobStatusEnum + updatedAt: DateTimeRangeInput + user: String +} + +enum ExportFileSortField { + CREATED_AT + LAST_MODIFIED_AT + STATUS + UPDATED_AT +} + +input ExportFileSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort export file by the selected field.""" + field: ExportFileSortField! +} + +""" +Export gift cards to csv file. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type ExportGiftCards { + errors: [ExportError!]! + + """ + The newly created export file job which is responsible for export data. + """ + exportFile: ExportFile +} + +input ExportGiftCardsInput { + """Type of exported file.""" + fileType: FileTypesEnum! + + """Filtering options for gift cards.""" + filter: GiftCardFilterInput + + """List of gift cards IDs to export.""" + ids: [ID!] + + """Determine which gift cards should be exported.""" + scope: ExportScope! +} + +input ExportInfoInput { + """List of attribute ids witch should be exported.""" + attributes: [ID!] + + """List of channels ids which should be exported.""" + channels: [ID!] + + """List of product fields witch should be exported.""" + fields: [ProductFieldEnum!] + + """List of warehouse ids witch should be exported.""" + warehouses: [ID!] +} + +""" +Export products to csv file. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ExportProducts { + errors: [ExportError!]! + exportErrors: [ExportError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """ + The newly created export file job which is responsible for export data. + """ + exportFile: ExportFile +} + +input ExportProductsInput { + """Input with info about fields which should be exported.""" + exportInfo: ExportInfoInput + + """Type of exported file.""" + fileType: FileTypesEnum! + + """Filtering options for products.""" + filter: ProductFilterInput + + """List of products IDs to export.""" + ids: [ID!] + + """Determine which products should be exported.""" + scope: ExportScope! +} + +enum ExportScope { + """Export all products.""" + ALL + + """Export the filtered products.""" + FILTER + + """Export products with given ids.""" + IDS +} + +type ExternalAuthentication { + """ID of external authentication plugin.""" + id: String! + + """Name of external authentication plugin.""" + name: String +} + +"""Prepare external authentication url for user by custom plugin.""" +type ExternalAuthenticationUrl { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """The data returned by authentication plugin.""" + authenticationData: JSONString + errors: [AccountError!]! +} + +"""Logout user by custom plugin.""" +type ExternalLogout { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + + """The data returned by authentication plugin.""" + logoutData: JSONString +} + +type ExternalNotificationError { + """The error code.""" + code: ExternalNotificationErrorCodes! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum ExternalNotificationErrorCodes { + CHANNEL_INACTIVE + INVALID_MODEL_TYPE + NOT_FOUND + REQUIRED +} + +""" +Trigger sending a notification with the notify plugin method. Serializes nodes provided as ids parameter and includes this data in the notification payload. + +Added in Saleor 3.1. +""" +type ExternalNotificationTrigger { + errors: [ExternalNotificationError!]! +} + +input ExternalNotificationTriggerInput { + """ + External event type. This field is passed to a plugin as an event type. + """ + externalEventType: String! + + """ + Additional payload that will be merged with the one based on the bussines object ID. + """ + extraPayload: JSONString + + """ + The list of customers or orders node IDs that will be serialized and included in the notification payload. + """ + ids: [ID!]! +} + +"""Obtain external access tokens for user by custom plugin.""" +type ExternalObtainAccessTokens { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """CSRF token required to re-generate external access token.""" + csrfToken: String + errors: [AccountError!]! + + """The refresh token, required to re-generate external access token.""" + refreshToken: String + + """The token, required to authenticate.""" + token: String + + """A user instance.""" + user: User +} + +"""Refresh user's access by custom plugin.""" +type ExternalRefresh { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """CSRF token required to re-generate external access token.""" + csrfToken: String + errors: [AccountError!]! + + """The refresh token, required to re-generate external access token.""" + refreshToken: String + + """The token, required to authenticate.""" + token: String + + """A user instance.""" + user: User +} + +"""Verify external authentication data by plugin.""" +type ExternalVerify { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + + """Determine if authentication data is valid or not.""" + isValid: Boolean! + + """User assigned to data.""" + user: User + + """External data.""" + verifyData: JSONString +} + +type File { + """Content type of the file.""" + contentType: String + + """The URL of the file.""" + url: String! +} + +"""An enumeration.""" +enum FileTypesEnum { + CSV + XLSX +} + +""" +Upload a file. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + +Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. +""" +type FileUpload { + errors: [UploadError!]! + uploadErrors: [UploadError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + uploadedFile: File +} + +"""Represents order fulfillment.""" +type Fulfillment implements Node & ObjectWithMetadata { + created: DateTime! + fulfillmentOrder: Int! + id: ID! + + """List of lines for the fulfillment.""" + lines: [FulfillmentLine!] + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + status: FulfillmentStatus! + + """User-friendly fulfillment status.""" + statusDisplay: String + trackingNumber: String! + + """Warehouse from fulfillment was fulfilled.""" + warehouse: Warehouse +} + +""" +Approve existing fulfillment. + +Added in Saleor 3.1. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type FulfillmentApprove { + errors: [OrderError!]! + + """An approved fulfillment.""" + fulfillment: Fulfillment + + """Order which fulfillment was approved.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when fulfillment is approved. + +Added in Saleor 3.7. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type FulfillmentApproved implements Event { + """The fulfillment the event relates to.""" + fulfillment: Fulfillment + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The order the fulfillment belongs to.""" + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Cancels existing fulfillment and optionally restocks items. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type FulfillmentCancel { + errors: [OrderError!]! + + """A canceled fulfillment.""" + fulfillment: Fulfillment + + """Order which fulfillment was cancelled.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input FulfillmentCancelInput { + """ + ID of a warehouse where items will be restocked. Optional when fulfillment is in WAITING_FOR_APPROVAL state. + """ + warehouseId: ID +} + +""" +Event sent when fulfillment is canceled. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type FulfillmentCanceled implements Event { + """The fulfillment the event relates to.""" + fulfillment: Fulfillment + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The order the fulfillment belongs to.""" + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Event sent when new fulfillment is created. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type FulfillmentCreated implements Event { + """The fulfillment the event relates to.""" + fulfillment: Fulfillment + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The order the fulfillment belongs to.""" + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""Represents line of the fulfillment.""" +type FulfillmentLine implements Node { + id: ID! + orderLine: OrderLine + quantity: Int! +} + +""" +Event sent when fulfillment metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type FulfillmentMetadataUpdated implements Event { + """The fulfillment the event relates to.""" + fulfillment: Fulfillment + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The order the fulfillment belongs to.""" + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Refund products. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type FulfillmentRefundProducts { + errors: [OrderError!]! + + """A refunded fulfillment.""" + fulfillment: Fulfillment + + """Order which fulfillment was refunded.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Return products. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type FulfillmentReturnProducts { + errors: [OrderError!]! + + """Order which fulfillment was returned.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """A replace fulfillment.""" + replaceFulfillment: Fulfillment + + """A draft order which was created for products with replace flag.""" + replaceOrder: Order + + """A return fulfillment.""" + returnFulfillment: Fulfillment +} + +"""An enumeration.""" +enum FulfillmentStatus { + CANCELED + FULFILLED + REFUNDED + REFUNDED_AND_RETURNED + REPLACED + RETURNED + WAITING_FOR_APPROVAL +} + +""" +Updates a fulfillment for an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type FulfillmentUpdateTracking { + errors: [OrderError!]! + + """A fulfillment with updated tracking.""" + fulfillment: Fulfillment + + """Order for which fulfillment was updated.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input FulfillmentUpdateTrackingInput { + """If true, send an email notification to the customer.""" + notifyCustomer: Boolean = false + + """Fulfillment tracking number.""" + trackingNumber: String +} + +"""Payment gateway client configuration key and value pair.""" +type GatewayConfigLine { + """Gateway config key.""" + field: String! + + """Gateway config value for key.""" + value: String +} + +""" +The `GenericScalar` scalar type represents a generic +GraphQL scalar value that could be: +String, Boolean, Int, Float, List or Object. +""" +scalar GenericScalar + +""" +A gift card is a prepaid electronic payment card accepted in stores. They can be used during checkout by providing a valid gift card codes. +""" +type GiftCard implements Node & ObjectWithMetadata { + """ + App which created the gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_APPS, OWNER. + """ + app: App + + """ + Slug of the channel where the gift card was bought. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + boughtInChannel: String + + """ + Gift card code. Can be fetched by a staff member with MANAGE_GIFT_CARD when gift card wasn't yet used and by the gift card owner. + """ + code: String! + created: DateTime! + + """ + The user who bought or issued a gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + createdBy: User + + """ + Email address of the user who bought or issued gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_USERS, OWNER. + """ + createdByEmail: String + currentBalance: Money! + + """Code in format which allows displaying in a user interface.""" + displayCode: String! + + """End date of gift card.""" + endDate: DateTime @deprecated(reason: "This field will be removed in Saleor 4.0. Use `expiryDate` field instead.") + + """ + List of events associated with the gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + events( + """Filtering options for gift card events.""" + filter: GiftCardEventFilterInput + ): [GiftCardEvent!]! + expiryDate: Date + id: ID! + initialBalance: Money! + isActive: Boolean! + + """Last 4 characters of gift card code.""" + last4CodeChars: String! + lastUsedOn: DateTime + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """ + Related gift card product. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + product: Product + + """Start date of gift card.""" + startDate: DateTime @deprecated(reason: "This field will be removed in Saleor 4.0.") + + """ + The gift card tag. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + tags: [GiftCardTag!]! + + """ + The customer who used a gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + usedBy: User + + """ + Email address of the customer who used a gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + usedByEmail: String + + """The customer who bought a gift card.""" + user: User @deprecated(reason: "This field will be removed in Saleor 4.0. Use `createdBy` field instead.") +} + +""" +Activate a gift card. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardActivate { + errors: [GiftCardError!]! + + """Activated gift card.""" + giftCard: GiftCard + giftCardErrors: [GiftCardError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Adds note to the gift card. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardAddNote { + errors: [GiftCardError!]! + + """Gift card note created.""" + event: GiftCardEvent + + """Gift card with the note added.""" + giftCard: GiftCard +} + +input GiftCardAddNoteInput { + """Note message.""" + message: String! +} + +""" +Activate gift cards. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardBulkActivate { + """Returns how many objects were affected.""" + count: Int! + errors: [GiftCardError!]! +} + +""" +Create gift cards. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardBulkCreate { + """Returns how many objects were created.""" + count: Int! + errors: [GiftCardError!]! + + """List of created gift cards.""" + giftCards: [GiftCard!]! +} + +input GiftCardBulkCreateInput { + """Balance of the gift card.""" + balance: PriceInput! + + """The number of cards to issue.""" + count: Int! + + """The gift card expiry date.""" + expiryDate: Date + + """Determine if gift card is active.""" + isActive: Boolean! + + """The gift card tags.""" + tags: [String!] +} + +""" +Deactivate gift cards. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardBulkDeactivate { + """Returns how many objects were affected.""" + count: Int! + errors: [GiftCardError!]! +} + +""" +Delete gift cards. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [GiftCardError!]! +} + +type GiftCardCountableConnection { + edges: [GiftCardCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type GiftCardCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: GiftCard! +} + +""" +Creates a new gift card. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardCreate { + errors: [GiftCardError!]! + giftCard: GiftCard + giftCardErrors: [GiftCardError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input GiftCardCreateInput { + """ + The gift card tags to add. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + addTags: [String!] + + """Balance of the gift card.""" + balance: PriceInput! + + """ + Slug of a channel from which the email should be sent. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + channel: String + + """ + Code to use the gift card. + + DEPRECATED: this field will be removed in Saleor 4.0. The code is now auto generated. + """ + code: String + + """ + End date of the gift card in ISO 8601 format. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `expiryDate` from `expirySettings` instead. + """ + endDate: Date + + """ + The gift card expiry date. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + expiryDate: Date + + """ + Determine if gift card is active. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + isActive: Boolean! + + """ + The gift card note from the staff member. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + note: String + + """ + Start date of the gift card in ISO 8601 format. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + startDate: Date + + """Email of the customer to whom gift card will be sent.""" + userEmail: String +} + +""" +Event sent when new gift card is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type GiftCardCreated implements Event { + """The gift card the event relates to.""" + giftCard: GiftCard + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deactivate a gift card. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardDeactivate { + errors: [GiftCardError!]! + + """Deactivated gift card.""" + giftCard: GiftCard + giftCardErrors: [GiftCardError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Delete gift card. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardDelete { + errors: [GiftCardError!]! + giftCard: GiftCard + giftCardErrors: [GiftCardError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when gift card is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type GiftCardDeleted implements Event { + """The gift card the event relates to.""" + giftCard: GiftCard + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +type GiftCardError { + """The error code.""" + code: GiftCardErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of tag values that cause the error.""" + tags: [String!] +} + +"""An enumeration.""" +enum GiftCardErrorCode { + ALREADY_EXISTS + DUPLICATED_INPUT_ITEM + EXPIRED_GIFT_CARD + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE +} + +""" +History log of the gift card. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type GiftCardEvent implements Node { + """ + App that performed the action. Requires one of the following permissions: MANAGE_APPS, OWNER. + """ + app: App + + """The gift card balance.""" + balance: GiftCardEventBalance + + """Date when event happened at in ISO 8601 format.""" + date: DateTime + + """Email of the customer.""" + email: String + + """The gift card expiry date.""" + expiryDate: Date + id: ID! + + """Content of the event.""" + message: String + + """Previous gift card expiry date.""" + oldExpiryDate: Date + + """The list of old gift card tags.""" + oldTags: [String!] + + """The order ID where gift card was used or bought.""" + orderId: ID + + """User-friendly number of an order where gift card was used or bought.""" + orderNumber: String + + """The list of gift card tags.""" + tags: [String!] + + """Gift card event type.""" + type: GiftCardEventsEnum + + """ + User who performed the action. Requires one of the following permissions: MANAGE_USERS, MANAGE_STAFF, OWNER. + """ + user: User +} + +type GiftCardEventBalance { + """Current balance of the gift card.""" + currentBalance: Money! + + """Initial balance of the gift card.""" + initialBalance: Money + + """Previous current balance of the gift card.""" + oldCurrentBalance: Money + + """Previous initial balance of the gift card.""" + oldInitialBalance: Money +} + +input GiftCardEventFilterInput { + orders: [ID!] + type: GiftCardEventsEnum +} + +"""An enumeration.""" +enum GiftCardEventsEnum { + ACTIVATED + BALANCE_RESET + BOUGHT + DEACTIVATED + EXPIRY_DATE_UPDATED + ISSUED + NOTE_ADDED + RESENT + SENT_TO_CUSTOMER + TAGS_UPDATED + UPDATED + USED_IN_ORDER +} + +input GiftCardFilterInput { + code: String + currency: String + currentBalance: PriceRangeInput + initialBalance: PriceRangeInput + isActive: Boolean + metadata: [MetadataFilter!] + products: [ID!] + tags: [String!] + used: Boolean + usedBy: [ID!] +} + +""" +Event sent when gift card metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type GiftCardMetadataUpdated implements Event { + """The gift card the event relates to.""" + giftCard: GiftCard + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Resend a gift card. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardResend { + errors: [GiftCardError!]! + + """Gift card which has been sent.""" + giftCard: GiftCard +} + +input GiftCardResendInput { + """Slug of a channel from which the email should be sent.""" + channel: String! + + """Email to which gift card should be send.""" + email: String + + """ID of a gift card to resend.""" + id: ID! +} + +"""Gift card related settings from site settings.""" +type GiftCardSettings { + """The gift card expiry period settings.""" + expiryPeriod: TimePeriod + + """The gift card expiry type settings.""" + expiryType: GiftCardSettingsExpiryTypeEnum! +} + +type GiftCardSettingsError { + """The error code.""" + code: GiftCardSettingsErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum GiftCardSettingsErrorCode { + GRAPHQL_ERROR + INVALID + REQUIRED +} + +"""An enumeration.""" +enum GiftCardSettingsExpiryTypeEnum { + EXPIRY_PERIOD + NEVER_EXPIRE +} + +""" +Update gift card settings. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardSettingsUpdate { + errors: [GiftCardSettingsError!]! + + """Gift card settings.""" + giftCardSettings: GiftCardSettings +} + +input GiftCardSettingsUpdateInput { + """Defines gift card expiry period.""" + expiryPeriod: TimePeriodInputType + + """Defines gift card default expiry settings.""" + expiryType: GiftCardSettingsExpiryTypeEnum +} + +enum GiftCardSortField { + """ + Sort gift cards by created at. + + Added in Saleor 3.8. + """ + CREATED_AT + + """Sort gift cards by current balance.""" + CURRENT_BALANCE + + """Sort gift cards by product.""" + PRODUCT + + """Sort gift cards by used by.""" + USED_BY +} + +input GiftCardSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort gift cards by the selected field.""" + field: GiftCardSortField! +} + +""" +Event sent when gift card status has changed. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type GiftCardStatusChanged implements Event { + """The gift card the event relates to.""" + giftCard: GiftCard + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +The gift card tag. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type GiftCardTag implements Node { + id: ID! + name: String! +} + +type GiftCardTagCountableConnection { + edges: [GiftCardTagCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type GiftCardTagCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: GiftCardTag! +} + +input GiftCardTagFilterInput { + search: String +} + +""" +Update a gift card. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardUpdate { + errors: [GiftCardError!]! + giftCard: GiftCard + giftCardErrors: [GiftCardError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input GiftCardUpdateInput { + """ + The gift card tags to add. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + addTags: [String!] + + """ + The gift card balance amount. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + balanceAmount: PositiveDecimal + + """ + End date of the gift card in ISO 8601 format. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `expiryDate` from `expirySettings` instead. + """ + endDate: Date + + """ + The gift card expiry date. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + expiryDate: Date + + """ + The gift card tags to remove. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + removeTags: [String!] + + """ + Start date of the gift card in ISO 8601 format. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + startDate: Date +} + +""" +Event sent when gift card is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type GiftCardUpdated implements Event { + """The gift card the event relates to.""" + giftCard: GiftCard + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""Represents permission group data.""" +type Group implements Node { + id: ID! + name: String! + + """List of group permissions""" + permissions: [Permission!] + + """ + True, if the currently authenticated user has rights to manage a group. + """ + userCanManage: Boolean! + + """ + List of group users + + Requires one of the following permissions: MANAGE_STAFF. + """ + users: [User!] +} + +type GroupCountableConnection { + edges: [GroupCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type GroupCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: Group! +} + +"""Represents an image.""" +type Image { + """Alt text for an image.""" + alt: String + + """The URL of the image.""" + url: String! +} + +input IntRangeInput { + """Value greater than or equal to.""" + gte: Int + + """Value less than or equal to.""" + lte: Int +} + +"""Represents an Invoice.""" +type Invoice implements Job & Node & ObjectWithMetadata { + createdAt: DateTime! + externalUrl: String + + """The ID of the object.""" + id: ID! + message: String + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + number: String + + """ + Order related to the invoice. + + Added in Saleor 3.10. + """ + order: Order + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """Job status.""" + status: JobStatusEnum! + updatedAt: DateTime! + + """URL to download an invoice.""" + url: String +} + +""" +Creates a ready to send invoice. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type InvoiceCreate { + errors: [InvoiceError!]! + invoice: Invoice + invoiceErrors: [InvoiceError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input InvoiceCreateInput { + """Invoice number.""" + number: String! + + """URL of an invoice to download.""" + url: String! +} + +""" +Deletes an invoice. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type InvoiceDelete { + errors: [InvoiceError!]! + invoice: Invoice + invoiceErrors: [InvoiceError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when invoice is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type InvoiceDeleted implements Event { + """The invoice the event relates to.""" + invoice: Invoice + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """ + Order related to the invoice. + + Added in Saleor 3.10. + """ + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +type InvoiceError { + """The error code.""" + code: InvoiceErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum InvoiceErrorCode { + EMAIL_NOT_SET + INVALID_STATUS + NOT_FOUND + NOT_READY + NO_INVOICE_PLUGIN + NUMBER_NOT_SET + REQUIRED + URL_NOT_SET +} + +""" +Request an invoice for the order using plugin. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type InvoiceRequest { + errors: [InvoiceError!]! + invoice: Invoice + invoiceErrors: [InvoiceError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """Order related to an invoice.""" + order: Order +} + +""" +Requests deletion of an invoice. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type InvoiceRequestDelete { + errors: [InvoiceError!]! + invoice: Invoice + invoiceErrors: [InvoiceError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when invoice is requested. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type InvoiceRequested implements Event { + """The invoice the event relates to.""" + invoice: Invoice + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """ + Order related to the invoice. + + Added in Saleor 3.10. + """ + order: Order! + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Send an invoice notification to the customer. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type InvoiceSendNotification { + errors: [InvoiceError!]! + invoice: Invoice + invoiceErrors: [InvoiceError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when invoice is sent. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type InvoiceSent implements Event { + """The invoice the event relates to.""" + invoice: Invoice + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """ + Order related to the invoice. + + Added in Saleor 3.10. + """ + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Updates an invoice. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type InvoiceUpdate { + errors: [InvoiceError!]! + invoice: Invoice + invoiceErrors: [InvoiceError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +union IssuingPrincipal = App | User + +scalar JSONString + +interface Job { + """Created date time of job in ISO 8601 format.""" + createdAt: DateTime! + + """Job message.""" + message: String + + """Job status.""" + status: JobStatusEnum! + + """Date time of job last update in ISO 8601 format.""" + updatedAt: DateTime! +} + +"""An enumeration.""" +enum JobStatusEnum { + DELETED + FAILED + PENDING + SUCCESS +} + +"""An enumeration.""" +enum LanguageCodeEnum { + AF + AF_NA + AF_ZA + AGQ + AGQ_CM + AK + AK_GH + AM + AM_ET + AR + AR_AE + AR_BH + AR_DJ + AR_DZ + AR_EG + AR_EH + AR_ER + AR_IL + AR_IQ + AR_JO + AR_KM + AR_KW + AR_LB + AR_LY + AR_MA + AR_MR + AR_OM + AR_PS + AR_QA + AR_SA + AR_SD + AR_SO + AR_SS + AR_SY + AR_TD + AR_TN + AR_YE + AS + ASA + ASA_TZ + AST + AST_ES + AS_IN + AZ + AZ_CYRL + AZ_CYRL_AZ + AZ_LATN + AZ_LATN_AZ + BAS + BAS_CM + BE + BEM + BEM_ZM + BEZ + BEZ_TZ + BE_BY + BG + BG_BG + BM + BM_ML + BN + BN_BD + BN_IN + BO + BO_CN + BO_IN + BR + BRX + BRX_IN + BR_FR + BS + BS_CYRL + BS_CYRL_BA + BS_LATN + BS_LATN_BA + CA + CA_AD + CA_ES + CA_ES_VALENCIA + CA_FR + CA_IT + CCP + CCP_BD + CCP_IN + CE + CEB + CEB_PH + CE_RU + CGG + CGG_UG + CHR + CHR_US + CKB + CKB_IQ + CKB_IR + CS + CS_CZ + CU + CU_RU + CY + CY_GB + DA + DAV + DAV_KE + DA_DK + DA_GL + DE + DE_AT + DE_BE + DE_CH + DE_DE + DE_IT + DE_LI + DE_LU + DJE + DJE_NE + DSB + DSB_DE + DUA + DUA_CM + DYO + DYO_SN + DZ + DZ_BT + EBU + EBU_KE + EE + EE_GH + EE_TG + EL + EL_CY + EL_GR + EN + EN_AE + EN_AG + EN_AI + EN_AS + EN_AT + EN_AU + EN_BB + EN_BE + EN_BI + EN_BM + EN_BS + EN_BW + EN_BZ + EN_CA + EN_CC + EN_CH + EN_CK + EN_CM + EN_CX + EN_CY + EN_DE + EN_DG + EN_DK + EN_DM + EN_ER + EN_FI + EN_FJ + EN_FK + EN_FM + EN_GB + EN_GD + EN_GG + EN_GH + EN_GI + EN_GM + EN_GU + EN_GY + EN_HK + EN_IE + EN_IL + EN_IM + EN_IN + EN_IO + EN_JE + EN_JM + EN_KE + EN_KI + EN_KN + EN_KY + EN_LC + EN_LR + EN_LS + EN_MG + EN_MH + EN_MO + EN_MP + EN_MS + EN_MT + EN_MU + EN_MW + EN_MY + EN_NA + EN_NF + EN_NG + EN_NL + EN_NR + EN_NU + EN_NZ + EN_PG + EN_PH + EN_PK + EN_PN + EN_PR + EN_PW + EN_RW + EN_SB + EN_SC + EN_SD + EN_SE + EN_SG + EN_SH + EN_SI + EN_SL + EN_SS + EN_SX + EN_SZ + EN_TC + EN_TK + EN_TO + EN_TT + EN_TV + EN_TZ + EN_UG + EN_UM + EN_US + EN_VC + EN_VG + EN_VI + EN_VU + EN_WS + EN_ZA + EN_ZM + EN_ZW + EO + ES + ES_AR + ES_BO + ES_BR + ES_BZ + ES_CL + ES_CO + ES_CR + ES_CU + ES_DO + ES_EA + ES_EC + ES_ES + ES_GQ + ES_GT + ES_HN + ES_IC + ES_MX + ES_NI + ES_PA + ES_PE + ES_PH + ES_PR + ES_PY + ES_SV + ES_US + ES_UY + ES_VE + ET + ET_EE + EU + EU_ES + EWO + EWO_CM + FA + FA_AF + FA_IR + FF + FF_ADLM + FF_ADLM_BF + FF_ADLM_CM + FF_ADLM_GH + FF_ADLM_GM + FF_ADLM_GN + FF_ADLM_GW + FF_ADLM_LR + FF_ADLM_MR + FF_ADLM_NE + FF_ADLM_NG + FF_ADLM_SL + FF_ADLM_SN + FF_LATN + FF_LATN_BF + FF_LATN_CM + FF_LATN_GH + FF_LATN_GM + FF_LATN_GN + FF_LATN_GW + FF_LATN_LR + FF_LATN_MR + FF_LATN_NE + FF_LATN_NG + FF_LATN_SL + FF_LATN_SN + FI + FIL + FIL_PH + FI_FI + FO + FO_DK + FO_FO + FR + FR_BE + FR_BF + FR_BI + FR_BJ + FR_BL + FR_CA + FR_CD + FR_CF + FR_CG + FR_CH + FR_CI + FR_CM + FR_DJ + FR_DZ + FR_FR + FR_GA + FR_GF + FR_GN + FR_GP + FR_GQ + FR_HT + FR_KM + FR_LU + FR_MA + FR_MC + FR_MF + FR_MG + FR_ML + FR_MQ + FR_MR + FR_MU + FR_NC + FR_NE + FR_PF + FR_PM + FR_RE + FR_RW + FR_SC + FR_SN + FR_SY + FR_TD + FR_TG + FR_TN + FR_VU + FR_WF + FR_YT + FUR + FUR_IT + FY + FY_NL + GA + GA_GB + GA_IE + GD + GD_GB + GL + GL_ES + GSW + GSW_CH + GSW_FR + GSW_LI + GU + GUZ + GUZ_KE + GU_IN + GV + GV_IM + HA + HAW + HAW_US + HA_GH + HA_NE + HA_NG + HE + HE_IL + HI + HI_IN + HR + HR_BA + HR_HR + HSB + HSB_DE + HU + HU_HU + HY + HY_AM + IA + ID + ID_ID + IG + IG_NG + II + II_CN + IS + IS_IS + IT + IT_CH + IT_IT + IT_SM + IT_VA + JA + JA_JP + JGO + JGO_CM + JMC + JMC_TZ + JV + JV_ID + KA + KAB + KAB_DZ + KAM + KAM_KE + KA_GE + KDE + KDE_TZ + KEA + KEA_CV + KHQ + KHQ_ML + KI + KI_KE + KK + KKJ + KKJ_CM + KK_KZ + KL + KLN + KLN_KE + KL_GL + KM + KM_KH + KN + KN_IN + KO + KOK + KOK_IN + KO_KP + KO_KR + KS + KSB + KSB_TZ + KSF + KSF_CM + KSH + KSH_DE + KS_ARAB + KS_ARAB_IN + KU + KU_TR + KW + KW_GB + KY + KY_KG + LAG + LAG_TZ + LB + LB_LU + LG + LG_UG + LKT + LKT_US + LN + LN_AO + LN_CD + LN_CF + LN_CG + LO + LO_LA + LRC + LRC_IQ + LRC_IR + LT + LT_LT + LU + LUO + LUO_KE + LUY + LUY_KE + LU_CD + LV + LV_LV + MAI + MAI_IN + MAS + MAS_KE + MAS_TZ + MER + MER_KE + MFE + MFE_MU + MG + MGH + MGH_MZ + MGO + MGO_CM + MG_MG + MI + MI_NZ + MK + MK_MK + ML + ML_IN + MN + MNI + MNI_BENG + MNI_BENG_IN + MN_MN + MR + MR_IN + MS + MS_BN + MS_ID + MS_MY + MS_SG + MT + MT_MT + MUA + MUA_CM + MY + MY_MM + MZN + MZN_IR + NAQ + NAQ_NA + NB + NB_NO + NB_SJ + ND + NDS + NDS_DE + NDS_NL + ND_ZW + NE + NE_IN + NE_NP + NL + NL_AW + NL_BE + NL_BQ + NL_CW + NL_NL + NL_SR + NL_SX + NMG + NMG_CM + NN + NNH + NNH_CM + NN_NO + NUS + NUS_SS + NYN + NYN_UG + OM + OM_ET + OM_KE + OR + OR_IN + OS + OS_GE + OS_RU + PA + PA_ARAB + PA_ARAB_PK + PA_GURU + PA_GURU_IN + PCM + PCM_NG + PL + PL_PL + PRG + PS + PS_AF + PS_PK + PT + PT_AO + PT_BR + PT_CH + PT_CV + PT_GQ + PT_GW + PT_LU + PT_MO + PT_MZ + PT_PT + PT_ST + PT_TL + QU + QU_BO + QU_EC + QU_PE + RM + RM_CH + RN + RN_BI + RO + ROF + ROF_TZ + RO_MD + RO_RO + RU + RU_BY + RU_KG + RU_KZ + RU_MD + RU_RU + RU_UA + RW + RWK + RWK_TZ + RW_RW + SAH + SAH_RU + SAQ + SAQ_KE + SAT + SAT_OLCK + SAT_OLCK_IN + SBP + SBP_TZ + SD + SD_ARAB + SD_ARAB_PK + SD_DEVA + SD_DEVA_IN + SE + SEH + SEH_MZ + SES + SES_ML + SE_FI + SE_NO + SE_SE + SG + SG_CF + SHI + SHI_LATN + SHI_LATN_MA + SHI_TFNG + SHI_TFNG_MA + SI + SI_LK + SK + SK_SK + SL + SL_SI + SMN + SMN_FI + SN + SN_ZW + SO + SO_DJ + SO_ET + SO_KE + SO_SO + SQ + SQ_AL + SQ_MK + SQ_XK + SR + SR_CYRL + SR_CYRL_BA + SR_CYRL_ME + SR_CYRL_RS + SR_CYRL_XK + SR_LATN + SR_LATN_BA + SR_LATN_ME + SR_LATN_RS + SR_LATN_XK + SU + SU_LATN + SU_LATN_ID + SV + SV_AX + SV_FI + SV_SE + SW + SW_CD + SW_KE + SW_TZ + SW_UG + TA + TA_IN + TA_LK + TA_MY + TA_SG + TE + TEO + TEO_KE + TEO_UG + TE_IN + TG + TG_TJ + TH + TH_TH + TI + TI_ER + TI_ET + TK + TK_TM + TO + TO_TO + TR + TR_CY + TR_TR + TT + TT_RU + TWQ + TWQ_NE + TZM + TZM_MA + UG + UG_CN + UK + UK_UA + UR + UR_IN + UR_PK + UZ + UZ_ARAB + UZ_ARAB_AF + UZ_CYRL + UZ_CYRL_UZ + UZ_LATN + UZ_LATN_UZ + VAI + VAI_LATN + VAI_LATN_LR + VAI_VAII + VAI_VAII_LR + VI + VI_VN + VO + VUN + VUN_TZ + WAE + WAE_CH + WO + WO_SN + XH + XH_ZA + XOG + XOG_UG + YAV + YAV_CM + YI + YO + YO_BJ + YO_NG + YUE + YUE_HANS + YUE_HANS_CN + YUE_HANT + YUE_HANT_HK + ZGH + ZGH_MA + ZH + ZH_HANS + ZH_HANS_CN + ZH_HANS_HK + ZH_HANS_MO + ZH_HANS_SG + ZH_HANT + ZH_HANT_HK + ZH_HANT_MO + ZH_HANT_TW + ZU + ZU_ZA +} + +type LanguageDisplay { + """ISO 639 representation of the language name.""" + code: LanguageCodeEnum! + + """Full name of the language.""" + language: String! +} + +type LimitInfo { + """Defines the allowed maximum resource usage, null means unlimited.""" + allowedUsage: Limits! + + """Defines the current resource usage.""" + currentUsage: Limits! +} + +type Limits { + channels: Int + orders: Int + productVariants: Int + staffUsers: Int + warehouses: Int +} + +"""The manifest definition.""" +type Manifest { + about: String + appUrl: String + + """ + The audience that will be included in all JWT tokens for the app. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + audience: String + + """URL to iframe with the configuration for the app.""" + configurationUrl: String @deprecated(reason: "This field will be removed in Saleor 4.0. Use `appUrl` instead.") + + """Description of the data privacy defined for this app.""" + dataPrivacy: String @deprecated(reason: "This field will be removed in Saleor 4.0. Use `dataPrivacyUrl` instead.") + dataPrivacyUrl: String + extensions: [AppManifestExtension!]! + homepageUrl: String + identifier: String! + name: String! + permissions: [Permission!] + supportUrl: String + tokenTargetUrl: String + version: String! + + """ + List of the app's webhooks. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + webhooks: [AppManifestWebhook!]! +} + +type Margin { + start: Int + stop: Int +} + +"""An enumeration.""" +enum MeasurementUnitsEnum { + ACRE_FT + ACRE_IN + CM + CUBIC_CENTIMETER + CUBIC_DECIMETER + CUBIC_FOOT + CUBIC_INCH + CUBIC_METER + CUBIC_MILLIMETER + CUBIC_YARD + FL_OZ + FT + G + INCH + KG + KM + LB + LITER + M + OZ + PINT + QT + SQ_CM + SQ_FT + SQ_INCH + SQ_KM + SQ_M + SQ_YD + TONNE + YD +} + +enum MediaChoicesSortField { + """Sort media by ID.""" + ID +} + +input MediaSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort media by the selected field.""" + field: MediaChoicesSortField! +} + +""" +Represents a single menu - an object that is used to help navigate through the store. +""" +type Menu implements Node & ObjectWithMetadata { + id: ID! + items: [MenuItem!] + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + slug: String! +} + +""" +Deletes menus. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [MenuError!]! + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type MenuCountableConnection { + edges: [MenuCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type MenuCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: Menu! +} + +""" +Creates a new Menu. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuCreate { + errors: [MenuError!]! + menu: Menu + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input MenuCreateInput { + """List of menu items.""" + items: [MenuItemInput!] + + """Name of the menu.""" + name: String! + + """Slug of the menu. Will be generated if not provided.""" + slug: String +} + +""" +Event sent when new menu is created. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type MenuCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The menu the event relates to.""" + menu( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Menu + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes a menu. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuDelete { + errors: [MenuError!]! + menu: Menu + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when menu is deleted. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type MenuDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The menu the event relates to.""" + menu( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Menu + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +type MenuError { + """The error code.""" + code: MenuErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum MenuErrorCode { + CANNOT_ASSIGN_NODE + GRAPHQL_ERROR + INVALID + INVALID_MENU_ITEM + NOT_FOUND + NO_MENU_ITEM_PROVIDED + REQUIRED + TOO_MANY_MENU_ITEMS + UNIQUE +} + +input MenuFilterInput { + metadata: [MetadataFilter!] + search: String + slug: [String!] + slugs: [String!] +} + +input MenuInput { + """Name of the menu.""" + name: String + + """Slug of the menu.""" + slug: String +} + +""" +Represents a single item of the related menu. Can store categories, collection or pages. +""" +type MenuItem implements Node & ObjectWithMetadata { + category: Category + children: [MenuItem!] + + """ + A collection associated with this menu item. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + collection: Collection + id: ID! + level: Int! + menu: Menu! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + + """ + A page associated with this menu item. Requires one of the following permissions to include unpublished items: MANAGE_PAGES. + """ + page: Page + parent: MenuItem + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """Returns translated menu item fields for the given language code.""" + translation( + """A language code to return the translation for menu item.""" + languageCode: LanguageCodeEnum! + ): MenuItemTranslation + + """URL to the menu item.""" + url: String +} + +""" +Deletes menu items. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuItemBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [MenuError!]! + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type MenuItemCountableConnection { + edges: [MenuItemCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type MenuItemCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: MenuItem! +} + +""" +Creates a new menu item. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuItemCreate { + errors: [MenuError!]! + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + menuItem: MenuItem +} + +input MenuItemCreateInput { + """Category to which item points.""" + category: ID + + """Collection to which item points.""" + collection: ID + + """Menu to which item belongs.""" + menu: ID! + + """Name of the menu item.""" + name: String! + + """Page to which item points.""" + page: ID + + """ID of the parent menu. If empty, menu will be top level menu.""" + parent: ID + + """URL of the pointed item.""" + url: String +} + +""" +Event sent when new menu item is created. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type MenuItemCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The menu item the event relates to.""" + menuItem( + """Slug of a channel for which the data should be returned.""" + channel: String + ): MenuItem + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes a menu item. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuItemDelete { + errors: [MenuError!]! + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + menuItem: MenuItem +} + +""" +Event sent when menu item is deleted. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type MenuItemDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The menu item the event relates to.""" + menuItem( + """Slug of a channel for which the data should be returned.""" + channel: String + ): MenuItem + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +input MenuItemFilterInput { + metadata: [MetadataFilter!] + search: String +} + +input MenuItemInput { + """Category to which item points.""" + category: ID + + """Collection to which item points.""" + collection: ID + + """Name of the menu item.""" + name: String + + """Page to which item points.""" + page: ID + + """URL of the pointed item.""" + url: String +} + +""" +Moves items of menus. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuItemMove { + errors: [MenuError!]! + + """Assigned menu to move within.""" + menu: Menu + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input MenuItemMoveInput { + """The menu item ID to move.""" + itemId: ID! + + """ID of the parent menu. If empty, menu will be top level menu.""" + parentId: ID + + """ + The new relative sorting position of the item (from -inf to +inf). 1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged. + """ + sortOrder: Int +} + +input MenuItemSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort menu items by the selected field.""" + field: MenuItemsSortField! +} + +type MenuItemTranslatableContent implements Node { + id: ID! + + """ + Represents a single item of the related menu. Can store categories, collection or pages. + """ + menuItem: MenuItem @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") + name: String! + + """Returns translated menu item fields for the given language code.""" + translation( + """A language code to return the translation for menu item.""" + languageCode: LanguageCodeEnum! + ): MenuItemTranslation +} + +""" +Creates/updates translations for a menu item. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type MenuItemTranslate { + errors: [TranslationError!]! + menuItem: MenuItem + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type MenuItemTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String! +} + +""" +Updates a menu item. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuItemUpdate { + errors: [MenuError!]! + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + menuItem: MenuItem +} + +""" +Event sent when menu item is updated. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type MenuItemUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The menu item the event relates to.""" + menuItem( + """Slug of a channel for which the data should be returned.""" + channel: String + ): MenuItem + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +enum MenuItemsSortField { + """Sort menu items by name.""" + NAME +} + +enum MenuSortField { + """Sort menus by items count.""" + ITEMS_COUNT + + """Sort menus by name.""" + NAME +} + +input MenuSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort menus by the selected field.""" + field: MenuSortField! +} + +""" +Updates a menu. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuUpdate { + errors: [MenuError!]! + menu: Menu + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when menu is updated. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type MenuUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The menu the event relates to.""" + menu( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Menu + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Metadata is a map of key-value pairs, both keys and values are `String`. + +Example: +``` +{ + "key1": "value1", + "key2": "value2" +} +``` +""" +scalar Metadata + +type MetadataError { + """The error code.""" + code: MetadataErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum MetadataErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND + NOT_UPDATED + REQUIRED +} + +input MetadataFilter { + """Key of a metadata item.""" + key: String! + + """Value of a metadata item.""" + value: String +} + +input MetadataInput { + """Key of a metadata item.""" + key: String! + + """Value of a metadata item.""" + value: String! +} + +type MetadataItem { + """Key of a metadata item.""" + key: String! + + """Value of a metadata item.""" + value: String! +} + +"""Represents amount of money in specific currency.""" +type Money { + """Amount of money.""" + amount: Float! + + """Currency code.""" + currency: String! +} + +input MoneyInput { + """Amount of money.""" + amount: PositiveDecimal! + + """Currency code.""" + currency: String! +} + +"""Represents a range of amounts of money.""" +type MoneyRange { + """Lower bound of a price range.""" + start: Money + + """Upper bound of a price range.""" + stop: Money +} + +input MoveProductInput { + """The ID of the product to move.""" + productId: ID! + + """ + The relative sorting position of the product (from -inf to +inf) starting from the first given product's actual position.1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged. + """ + sortOrder: Int +} + +type Mutation { + """ + Create a new address for the customer. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + accountAddressCreate( + """Fields required to create address.""" + input: AddressInput! + + """ + A type of address. If provided, the new address will be automatically assigned as the customer's default address of that type. + """ + type: AddressTypeEnum + ): AccountAddressCreate + + """ + Delete an address of the logged-in user. Requires one of the following permissions: MANAGE_USERS, IS_OWNER. + """ + accountAddressDelete( + """ID of the address to delete.""" + id: ID! + ): AccountAddressDelete + + """ + Updates an address of the logged-in user. Requires one of the following permissions: MANAGE_USERS, IS_OWNER. + """ + accountAddressUpdate( + """ID of the address to update.""" + id: ID! + + """Fields required to update the address.""" + input: AddressInput! + ): AccountAddressUpdate + + """ + Remove user account. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + accountDelete( + """ + A one-time token required to remove account. Sent by email using AccountRequestDeletion mutation. + """ + token: String! + ): AccountDelete + + """Register a new user.""" + accountRegister( + """Fields required to create a user.""" + input: AccountRegisterInput! + ): AccountRegister + + """ + Sends an email with the account removal link for the logged-in user. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + accountRequestDeletion( + """ + Slug of a channel which will be used to notify users. Optional when only one channel exists. + """ + channel: String + + """ + URL of a view where users should be redirected to delete their account. URL in RFC 1808 format. + """ + redirectUrl: String! + ): AccountRequestDeletion + + """ + Sets a default address for the authenticated user. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + accountSetDefaultAddress( + """ID of the address to set as default.""" + id: ID! + + """The type of address.""" + type: AddressTypeEnum! + ): AccountSetDefaultAddress + + """ + Updates the account of the logged-in user. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + accountUpdate( + """Fields required to update the account of the logged-in user.""" + input: AccountInput! + ): AccountUpdate + + """ + Creates user address. + + Requires one of the following permissions: MANAGE_USERS. + """ + addressCreate( + """Fields required to create address.""" + input: AddressInput! + + """ID of a user to create address for.""" + userId: ID! + ): AddressCreate + + """ + Deletes an address. + + Requires one of the following permissions: MANAGE_USERS. + """ + addressDelete( + """ID of the address to delete.""" + id: ID! + ): AddressDelete + + """ + Sets a default address for the given user. + + Requires one of the following permissions: MANAGE_USERS. + """ + addressSetDefault( + """ID of the address.""" + addressId: ID! + + """The type of address.""" + type: AddressTypeEnum! + + """ID of the user to change the address for.""" + userId: ID! + ): AddressSetDefault + + """ + Updates an address. + + Requires one of the following permissions: MANAGE_USERS. + """ + addressUpdate( + """ID of the address to update.""" + id: ID! + + """Fields required to update the address.""" + input: AddressInput! + ): AddressUpdate + + """ + Activate the app. + + Requires one of the following permissions: MANAGE_APPS. + """ + appActivate( + """ID of app to activate.""" + id: ID! + ): AppActivate + + """ + Creates a new app. Requires the following permissions: AUTHENTICATED_STAFF_USER and MANAGE_APPS. + """ + appCreate( + """Fields required to create a new app.""" + input: AppInput! + ): AppCreate + + """ + Deactivate the app. + + Requires one of the following permissions: MANAGE_APPS. + """ + appDeactivate( + """ID of app to deactivate.""" + id: ID! + ): AppDeactivate + + """ + Deletes an app. + + Requires one of the following permissions: MANAGE_APPS. + """ + appDelete( + """ID of an app to delete.""" + id: ID! + ): AppDelete + + """ + Delete failed installation. + + Requires one of the following permissions: MANAGE_APPS. + """ + appDeleteFailedInstallation( + """ID of failed installation to delete.""" + id: ID! + ): AppDeleteFailedInstallation + + """ + Fetch and validate manifest. + + Requires one of the following permissions: MANAGE_APPS. + """ + appFetchManifest(manifestUrl: String!): AppFetchManifest + + """ + Install new app by using app manifest. Requires the following permissions: AUTHENTICATED_STAFF_USER and MANAGE_APPS. + """ + appInstall( + """Fields required to install a new app.""" + input: AppInstallInput! + ): AppInstall + + """ + Retry failed installation of new app. + + Requires one of the following permissions: MANAGE_APPS. + """ + appRetryInstall( + """Determine if app will be set active or not.""" + activateAfterInstallation: Boolean = true + + """ID of failed installation.""" + id: ID! + ): AppRetryInstall + + """ + Creates a new token. + + Requires one of the following permissions: MANAGE_APPS. + """ + appTokenCreate( + """Fields required to create a new auth token.""" + input: AppTokenInput! + ): AppTokenCreate + + """ + Deletes an authentication token assigned to app. + + Requires one of the following permissions: MANAGE_APPS. + """ + appTokenDelete( + """ID of an auth token to delete.""" + id: ID! + ): AppTokenDelete + + """Verify provided app token.""" + appTokenVerify( + """App token to verify.""" + token: String! + ): AppTokenVerify + + """ + Updates an existing app. + + Requires one of the following permissions: MANAGE_APPS. + """ + appUpdate( + """ID of an app to update.""" + id: ID! + + """Fields required to update an existing app.""" + input: AppInput! + ): AppUpdate + + """ + Assigns storefront's navigation menus. + + Requires one of the following permissions: MANAGE_MENUS, MANAGE_SETTINGS. + """ + assignNavigation( + """ID of the menu.""" + menu: ID + + """Type of the navigation bar to assign the menu to.""" + navigationType: NavigationType! + ): AssignNavigation + + """ + Add shipping zone to given warehouse. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + assignWarehouseShippingZone( + """ID of a warehouse to update.""" + id: ID! + + """List of shipping zone IDs.""" + shippingZoneIds: [ID!]! + ): WarehouseShippingZoneAssign + + """ + Deletes attributes. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + attributeBulkDelete( + """List of attribute IDs to delete.""" + ids: [ID!]! + ): AttributeBulkDelete + + """Creates an attribute.""" + attributeCreate( + """Fields required to create an attribute.""" + input: AttributeCreateInput! + ): AttributeCreate + + """ + Deletes an attribute. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + attributeDelete( + """ + External ID of an attribute to delete. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of an attribute to delete.""" + id: ID + ): AttributeDelete + + """ + Reorder the values of an attribute. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + attributeReorderValues( + """ID of an attribute.""" + attributeId: ID! + + """The list of reordering operations for given attribute values.""" + moves: [ReorderInput!]! + ): AttributeReorderValues + + """ + Creates/updates translations for an attribute. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + attributeTranslate( + """Attribute ID or AttributeTranslatableContent ID.""" + id: ID! + input: NameTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): AttributeTranslate + + """ + Updates attribute. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + attributeUpdate( + """ + External ID of an attribute to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of an attribute to update.""" + id: ID + + """Fields required to update an attribute.""" + input: AttributeUpdateInput! + ): AttributeUpdate + + """ + Deletes values of attributes. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + attributeValueBulkDelete( + """List of attribute value IDs to delete.""" + ids: [ID!]! + ): AttributeValueBulkDelete + + """ + Creates a value for an attribute. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + attributeValueCreate( + """Attribute to which value will be assigned.""" + attribute: ID! + + """Fields required to create an AttributeValue.""" + input: AttributeValueCreateInput! + ): AttributeValueCreate + + """ + Deletes a value of an attribute. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + attributeValueDelete( + """ + External ID of a value to delete. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a value to delete.""" + id: ID + ): AttributeValueDelete + + """ + Creates/updates translations for an attribute value. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + attributeValueTranslate( + """AttributeValue ID or AttributeValueTranslatableContent ID.""" + id: ID! + input: AttributeValueTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): AttributeValueTranslate + + """ + Updates value of an attribute. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + attributeValueUpdate( + """ + External ID of an AttributeValue to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of an AttributeValue to update.""" + id: ID + + """Fields required to update an AttributeValue.""" + input: AttributeValueUpdateInput! + ): AttributeValueUpdate + + """ + Deletes categories. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + categoryBulkDelete( + """List of category IDs to delete.""" + ids: [ID!]! + ): CategoryBulkDelete + + """ + Creates a new category. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + categoryCreate( + """Fields required to create a category.""" + input: CategoryInput! + + """ + ID of the parent category. If empty, category will be top level category. + """ + parent: ID + ): CategoryCreate + + """ + Deletes a category. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + categoryDelete( + """ID of a category to delete.""" + id: ID! + ): CategoryDelete + + """ + Creates/updates translations for a category. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + categoryTranslate( + """Category ID or CategoryTranslatableContent ID.""" + id: ID! + input: TranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): CategoryTranslate + + """ + Updates a category. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + categoryUpdate( + """ID of a category to update.""" + id: ID! + + """Fields required to update a category.""" + input: CategoryInput! + ): CategoryUpdate + + """ + Activate a channel. + + Requires one of the following permissions: MANAGE_CHANNELS. + """ + channelActivate( + """ID of the channel to activate.""" + id: ID! + ): ChannelActivate + + """ + Creates new channel. + + Requires one of the following permissions: MANAGE_CHANNELS. + """ + channelCreate( + """Fields required to create channel.""" + input: ChannelCreateInput! + ): ChannelCreate + + """ + Deactivate a channel. + + Requires one of the following permissions: MANAGE_CHANNELS. + """ + channelDeactivate( + """ID of the channel to deactivate.""" + id: ID! + ): ChannelDeactivate + + """ + Delete a channel. Orders associated with the deleted channel will be moved to the target channel. Checkouts, product availability, and pricing will be removed. + + Requires one of the following permissions: MANAGE_CHANNELS. + """ + channelDelete( + """ID of a channel to delete.""" + id: ID! + + """Fields required to delete a channel.""" + input: ChannelDeleteInput + ): ChannelDelete + + """ + Reorder the warehouses of a channel. + + Added in Saleor 3.7. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_CHANNELS. + """ + channelReorderWarehouses( + """ID of a channel.""" + channelId: ID! + + """The list of reordering operations for the given channel warehouses.""" + moves: [ReorderInput!]! + ): ChannelReorderWarehouses + + """ + Update a channel. + + Requires one of the following permissions: MANAGE_CHANNELS. + """ + channelUpdate( + """ID of a channel to update.""" + id: ID! + + """Fields required to update a channel.""" + input: ChannelUpdateInput! + ): ChannelUpdate + + """Adds a gift card or a voucher to a checkout.""" + checkoutAddPromoCode( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """Gift card code or voucher code.""" + promoCode: String! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutAddPromoCode + + """Update billing address in the existing checkout.""" + checkoutBillingAddressUpdate( + """The billing address of the checkout.""" + billingAddress: AddressInput! + + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + + """ + The rules for changing validation for received billing address data. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + validationRules: CheckoutAddressValidationRules + ): CheckoutBillingAddressUpdate + + """ + Completes the checkout. As a result a new order is created and a payment charge is made. This action requires a successful payment before it can be performed. In case additional confirmation step as 3D secure is required confirmationNeeded flag will be set to True and no order created until payment is confirmed with second call of this mutation. + """ + checkoutComplete( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + Fields required to update the checkout metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """Client-side generated data required to finalize the payment.""" + paymentData: JSONString + + """ + URL of a view where users should be redirected to see the order details. URL in RFC 1808 format. + """ + redirectUrl: String + + """ + Determines whether to store the payment source for future usage. + + DEPRECATED: this field will be removed in Saleor 4.0. Use checkoutPaymentCreate for this action. + """ + storeSource: Boolean = false + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutComplete + + """Create a new checkout.""" + checkoutCreate( + """Fields required to create checkout.""" + input: CheckoutCreateInput! + ): CheckoutCreate + + """ + Sets the customer as the owner of the checkout. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_USER. + """ + checkoutCustomerAttach( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + ID of customer to attach to checkout. Requires IMPERSONATE_USER permission when customerId is different than the logged-in user. + """ + customerId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutCustomerAttach + + """ + Removes the user assigned as the owner of the checkout. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_USER. + """ + checkoutCustomerDetach( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutCustomerDetach + + """ + Updates the delivery method (shipping method or pick up point) of the checkout. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + checkoutDeliveryMethodUpdate( + """Delivery Method ID (`Warehouse` ID or `ShippingMethod` ID).""" + deliveryMethodId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutDeliveryMethodUpdate + + """Updates email address in the existing checkout object.""" + checkoutEmailUpdate( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """email.""" + email: String! + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutEmailUpdate + + """Update language code in the existing checkout.""" + checkoutLanguageCodeUpdate( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """New language code.""" + languageCode: LanguageCodeEnum! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutLanguageCodeUpdate + + """Deletes a CheckoutLine.""" + checkoutLineDelete( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ID of the checkout line to delete.""" + lineId: ID + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutLineDelete @deprecated(reason: "This field will be removed in Saleor 4.0. Use `checkoutLinesDelete` instead.") + + """ + Adds a checkout line to the existing checkout.If line was already in checkout, its quantity will be increased. + """ + checkoutLinesAdd( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + A list of checkout lines, each containing information about an item in the checkout. + """ + lines: [CheckoutLineInput!]! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutLinesAdd + + """Deletes checkout lines.""" + checkoutLinesDelete( + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """A list of checkout lines.""" + linesIds: [ID!]! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutLinesDelete + + """Updates checkout line in the existing checkout.""" + checkoutLinesUpdate( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + A list of checkout lines, each containing information about an item in the checkout. + """ + lines: [CheckoutLineUpdateInput!]! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutLinesUpdate + + """Create a new payment for given checkout.""" + checkoutPaymentCreate( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """Data required to create a new payment.""" + input: PaymentInput! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutPaymentCreate + + """Remove a gift card or a voucher from a checkout.""" + checkoutRemovePromoCode( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """Gift card code or voucher code.""" + promoCode: String + + """Gift card or voucher ID.""" + promoCodeId: ID + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutRemovePromoCode + + """Update shipping address in the existing checkout.""" + checkoutShippingAddressUpdate( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """The mailing address to where the checkout will be shipped.""" + shippingAddress: AddressInput! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + + """ + The rules for changing validation for received shipping address data. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + validationRules: CheckoutAddressValidationRules + ): CheckoutShippingAddressUpdate + + """Updates the shipping method of the checkout.""" + checkoutShippingMethodUpdate( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """Shipping method.""" + shippingMethodId: ID! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutShippingMethodUpdate @deprecated(reason: "This field will be removed in Saleor 4.0. Use `checkoutDeliveryMethodUpdate` instead.") + + """ + Adds products to a collection. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionAddProducts( + """ID of a collection.""" + collectionId: ID! + + """List of product IDs.""" + products: [ID!]! + ): CollectionAddProducts + + """ + Deletes collections. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionBulkDelete( + """List of collection IDs to delete.""" + ids: [ID!]! + ): CollectionBulkDelete + + """ + Manage collection's availability in channels. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionChannelListingUpdate( + """ID of a collection to update.""" + id: ID! + + """Fields required to create or update collection channel listings.""" + input: CollectionChannelListingUpdateInput! + ): CollectionChannelListingUpdate + + """ + Creates a new collection. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionCreate( + """Fields required to create a collection.""" + input: CollectionCreateInput! + ): CollectionCreate + + """ + Deletes a collection. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionDelete( + """ID of a collection to delete.""" + id: ID! + ): CollectionDelete + + """ + Remove products from a collection. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionRemoveProducts( + """ID of a collection.""" + collectionId: ID! + + """List of product IDs.""" + products: [ID!]! + ): CollectionRemoveProducts + + """ + Reorder the products of a collection. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionReorderProducts( + """ID of a collection.""" + collectionId: ID! + + """The collection products position operations.""" + moves: [MoveProductInput!]! + ): CollectionReorderProducts + + """ + Creates/updates translations for a collection. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + collectionTranslate( + """Collection ID or CollectionTranslatableContent ID.""" + id: ID! + input: TranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): CollectionTranslate + + """ + Updates a collection. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionUpdate( + """ID of a collection to update.""" + id: ID! + + """Fields required to update a collection.""" + input: CollectionInput! + ): CollectionUpdate + + """Confirm user account with token sent by email during registration.""" + confirmAccount( + """E-mail of the user performing account confirmation.""" + email: String! + + """A one-time token required to confirm the account.""" + token: String! + ): ConfirmAccount + + """ + Confirm the email change of the logged-in user. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + confirmEmailChange( + """ + Slug of a channel which will be used to notify users. Optional when only one channel exists. + """ + channel: String + + """A one-time token required to change the email.""" + token: String! + ): ConfirmEmailChange + + """ + Creates new warehouse. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + createWarehouse( + """Fields required to create warehouse.""" + input: WarehouseCreateInput! + ): WarehouseCreate + + """ + Deletes customers. + + Requires one of the following permissions: MANAGE_USERS. + """ + customerBulkDelete( + """List of user IDs to delete.""" + ids: [ID!]! + ): CustomerBulkDelete + + """ + Creates a new customer. + + Requires one of the following permissions: MANAGE_USERS. + """ + customerCreate( + """Fields required to create a customer.""" + input: UserCreateInput! + ): CustomerCreate + + """ + Deletes a customer. + + Requires one of the following permissions: MANAGE_USERS. + """ + customerDelete( + """ + External ID of a customer to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a customer to delete.""" + id: ID + ): CustomerDelete + + """ + Updates an existing customer. + + Requires one of the following permissions: MANAGE_USERS. + """ + customerUpdate( + """ + External ID of a customer to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a customer to update.""" + id: ID + + """Fields required to update a customer.""" + input: CustomerInput! + ): CustomerUpdate + + """ + Delete metadata of an object. To use it, you need to have access to the modified object. + """ + deleteMetadata( + """ID or token (for Order and Checkout) of an object to update.""" + id: ID! + + """Metadata keys to delete.""" + keys: [String!]! + ): DeleteMetadata + + """ + Delete object's private metadata. To use it, you need to be an authenticated staff user or an app and have access to the modified object. + """ + deletePrivateMetadata( + """ID or token (for Order and Checkout) of an object to update.""" + id: ID! + + """Metadata keys to delete.""" + keys: [String!]! + ): DeletePrivateMetadata + + """ + Deletes selected warehouse. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + deleteWarehouse( + """ID of a warehouse to delete.""" + id: ID! + ): WarehouseDelete + + """ + Create new digital content. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + digitalContentCreate( + """Fields required to create a digital content.""" + input: DigitalContentUploadInput! + + """ID of a product variant to upload digital content.""" + variantId: ID! + ): DigitalContentCreate + + """ + Remove digital content assigned to given variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + digitalContentDelete( + """ID of a product variant with digital content to remove.""" + variantId: ID! + ): DigitalContentDelete + + """ + Update digital content. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + digitalContentUpdate( + """Fields required to update a digital content.""" + input: DigitalContentInput! + + """ID of a product variant with digital content to update.""" + variantId: ID! + ): DigitalContentUpdate + + """ + Generate new URL to digital content. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + digitalContentUrlCreate( + """Fields required to create a new url.""" + input: DigitalContentUrlCreateInput! + ): DigitalContentUrlCreate + + """ + Deletes draft orders. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + draftOrderBulkDelete( + """List of draft order IDs to delete.""" + ids: [ID!]! + ): DraftOrderBulkDelete + + """ + Completes creating an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + draftOrderComplete( + """ID of the order that will be completed.""" + id: ID! + ): DraftOrderComplete + + """ + Creates a new draft order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + draftOrderCreate( + """Fields required to create an order.""" + input: DraftOrderCreateInput! + ): DraftOrderCreate + + """ + Deletes a draft order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + draftOrderDelete( + """ + External ID of a product to delete. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a product to delete.""" + id: ID + ): DraftOrderDelete + + """ + Deletes order lines. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + draftOrderLinesBulkDelete( + """List of order lines IDs to delete.""" + ids: [ID!]! + ): DraftOrderLinesBulkDelete @deprecated(reason: "This field will be removed in Saleor 4.0.") + + """ + Updates a draft order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + draftOrderUpdate( + """ + External ID of a draft order to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a draft order to update.""" + id: ID + + """Fields required to update an order.""" + input: DraftOrderInput! + ): DraftOrderUpdate + + """ + Retries event delivery. + + Requires one of the following permissions: MANAGE_APPS. + """ + eventDeliveryRetry( + """ID of the event delivery to retry.""" + id: ID! + ): EventDeliveryRetry + + """ + Export gift cards to csv file. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + exportGiftCards( + """Fields required to export gift cards data.""" + input: ExportGiftCardsInput! + ): ExportGiftCards + + """ + Export products to csv file. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + exportProducts( + """Fields required to export product data.""" + input: ExportProductsInput! + ): ExportProducts + + """Prepare external authentication url for user by custom plugin.""" + externalAuthenticationUrl( + """The data required by plugin to create external authentication url.""" + input: JSONString! + + """The ID of the authentication plugin.""" + pluginId: String! + ): ExternalAuthenticationUrl + + """Logout user by custom plugin.""" + externalLogout( + """The data required by plugin to proceed the logout process.""" + input: JSONString! + + """The ID of the authentication plugin.""" + pluginId: String! + ): ExternalLogout + + """ + Trigger sending a notification with the notify plugin method. Serializes nodes provided as ids parameter and includes this data in the notification payload. + + Added in Saleor 3.1. + """ + externalNotificationTrigger( + """ + Channel slug. Saleor will send a notification within a provided channel. Please, make sure that necessary plugins are active. + """ + channel: String! + + """Input for External Notification Trigger.""" + input: ExternalNotificationTriggerInput! + + """The ID of notification plugin.""" + pluginId: String + ): ExternalNotificationTrigger + + """Obtain external access tokens for user by custom plugin.""" + externalObtainAccessTokens( + """The data required by plugin to create authentication data.""" + input: JSONString! + + """The ID of the authentication plugin.""" + pluginId: String! + ): ExternalObtainAccessTokens + + """Refresh user's access by custom plugin.""" + externalRefresh( + """The data required by plugin to proceed the refresh process.""" + input: JSONString! + + """The ID of the authentication plugin.""" + pluginId: String! + ): ExternalRefresh + + """Verify external authentication data by plugin.""" + externalVerify( + """The data required by plugin to proceed the verification.""" + input: JSONString! + + """The ID of the authentication plugin.""" + pluginId: String! + ): ExternalVerify + + """ + Upload a file. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + fileUpload( + """Represents a file in a multipart request.""" + file: Upload! + ): FileUpload + + """ + Activate a gift card. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardActivate( + """ID of a gift card to activate.""" + id: ID! + ): GiftCardActivate + + """ + Adds note to the gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardAddNote( + """ID of the gift card to add a note for.""" + id: ID! + + """Fields required to create a note for the gift card.""" + input: GiftCardAddNoteInput! + ): GiftCardAddNote + + """ + Activate gift cards. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardBulkActivate( + """List of gift card IDs to activate.""" + ids: [ID!]! + ): GiftCardBulkActivate + + """ + Create gift cards. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardBulkCreate( + """Fields required to create gift cards.""" + input: GiftCardBulkCreateInput! + ): GiftCardBulkCreate + + """ + Deactivate gift cards. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardBulkDeactivate( + """List of gift card IDs to deactivate.""" + ids: [ID!]! + ): GiftCardBulkDeactivate + + """ + Delete gift cards. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardBulkDelete( + """List of gift card IDs to delete.""" + ids: [ID!]! + ): GiftCardBulkDelete + + """ + Creates a new gift card. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardCreate( + """Fields required to create a gift card.""" + input: GiftCardCreateInput! + ): GiftCardCreate + + """ + Deactivate a gift card. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardDeactivate( + """ID of a gift card to deactivate.""" + id: ID! + ): GiftCardDeactivate + + """ + Delete gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardDelete( + """ID of the gift card to delete.""" + id: ID! + ): GiftCardDelete + + """ + Resend a gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardResend( + """Fields required to resend a gift card.""" + input: GiftCardResendInput! + ): GiftCardResend + + """ + Update gift card settings. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardSettingsUpdate( + """Fields required to update gift card settings.""" + input: GiftCardSettingsUpdateInput! + ): GiftCardSettingsUpdate + + """ + Update a gift card. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardUpdate( + """ID of a gift card to update.""" + id: ID! + + """Fields required to update a gift card.""" + input: GiftCardUpdateInput! + ): GiftCardUpdate + + """ + Creates a ready to send invoice. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + invoiceCreate( + """Fields required when creating an invoice.""" + input: InvoiceCreateInput! + + """ID of the order related to invoice.""" + orderId: ID! + ): InvoiceCreate + + """ + Deletes an invoice. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + invoiceDelete( + """ID of an invoice to delete.""" + id: ID! + ): InvoiceDelete + + """ + Request an invoice for the order using plugin. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + invoiceRequest( + """Invoice number, if not provided it will be generated.""" + number: String + + """ID of the order related to invoice.""" + orderId: ID! + ): InvoiceRequest + + """ + Requests deletion of an invoice. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + invoiceRequestDelete( + """ID of an invoice to request the deletion.""" + id: ID! + ): InvoiceRequestDelete + + """ + Send an invoice notification to the customer. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + invoiceSendNotification( + """ID of an invoice to be sent.""" + id: ID! + ): InvoiceSendNotification + + """ + Updates an invoice. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + invoiceUpdate( + """ID of an invoice to update.""" + id: ID! + + """Fields to use when updating an invoice.""" + input: UpdateInvoiceInput! + ): InvoiceUpdate + + """ + Deletes menus. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuBulkDelete( + """List of menu IDs to delete.""" + ids: [ID!]! + ): MenuBulkDelete + + """ + Creates a new Menu. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuCreate( + """Fields required to create a menu.""" + input: MenuCreateInput! + ): MenuCreate + + """ + Deletes a menu. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuDelete( + """ID of a menu to delete.""" + id: ID! + ): MenuDelete + + """ + Deletes menu items. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuItemBulkDelete( + """List of menu item IDs to delete.""" + ids: [ID!]! + ): MenuItemBulkDelete + + """ + Creates a new menu item. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuItemCreate( + """ + Fields required to update a menu item. Only one of `url`, `category`, `page`, `collection` is allowed per item. + """ + input: MenuItemCreateInput! + ): MenuItemCreate + + """ + Deletes a menu item. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuItemDelete( + """ID of a menu item to delete.""" + id: ID! + ): MenuItemDelete + + """ + Moves items of menus. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuItemMove( + """ID of the menu.""" + menu: ID! + + """The menu position data.""" + moves: [MenuItemMoveInput!]! + ): MenuItemMove + + """ + Creates/updates translations for a menu item. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + menuItemTranslate( + """MenuItem ID or MenuItemTranslatableContent ID.""" + id: ID! + input: NameTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): MenuItemTranslate + + """ + Updates a menu item. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuItemUpdate( + """ID of a menu item to update.""" + id: ID! + + """ + Fields required to update a menu item. Only one of `url`, `category`, `page`, `collection` is allowed per item. + """ + input: MenuItemInput! + ): MenuItemUpdate + + """ + Updates a menu. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuUpdate( + """ID of a menu to update.""" + id: ID! + + """Fields required to update a menu.""" + input: MenuInput! + ): MenuUpdate + + """ + Adds note to the order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderAddNote( + """Fields required to create a note for the order.""" + input: OrderAddNoteInput! + + """ID of the order to add a note for.""" + order: ID! + ): OrderAddNote + + """ + Cancels orders. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderBulkCancel( + """List of orders IDs to cancel.""" + ids: [ID!]! + ): OrderBulkCancel + + """ + Cancel an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderCancel( + """ID of the order to cancel.""" + id: ID! + ): OrderCancel + + """ + Capture an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderCapture( + """Amount of money to capture.""" + amount: PositiveDecimal! + + """ID of the order to capture.""" + id: ID! + ): OrderCapture + + """ + Confirms an unconfirmed order by changing status to unfulfilled. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderConfirm( + """ID of an order to confirm.""" + id: ID! + ): OrderConfirm + + """ + Create new order from existing checkout. Requires the following permissions: AUTHENTICATED_APP and HANDLE_CHECKOUTS. + + Added in Saleor 3.2. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + orderCreateFromCheckout( + """ID of a checkout that will be converted to an order.""" + id: ID! + + """ + Fields required to update the checkout metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """ + Fields required to update the checkout private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """ + Determines if checkout should be removed after creating an order. Default true. + """ + removeCheckout: Boolean = true + ): OrderCreateFromCheckout + + """ + Adds discount to the order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderDiscountAdd( + """Fields required to create a discount for the order.""" + input: OrderDiscountCommonInput! + + """ID of an order to discount.""" + orderId: ID! + ): OrderDiscountAdd + + """ + Remove discount from the order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderDiscountDelete( + """ID of a discount to remove.""" + discountId: ID! + ): OrderDiscountDelete + + """ + Update discount for the order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderDiscountUpdate( + """ID of a discount to update.""" + discountId: ID! + + """Fields required to update a discount for the order.""" + input: OrderDiscountCommonInput! + ): OrderDiscountUpdate + + """ + Creates new fulfillments for an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderFulfill( + """Fields required to create a fulfillment.""" + input: OrderFulfillInput! + + """ID of the order to be fulfilled.""" + order: ID + ): OrderFulfill + + """ + Approve existing fulfillment. + + Added in Saleor 3.1. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderFulfillmentApprove( + """True if stock could be exceeded.""" + allowStockToBeExceeded: Boolean = false + + """ID of a fulfillment to approve.""" + id: ID! + + """True if confirmation email should be send.""" + notifyCustomer: Boolean! + ): FulfillmentApprove + + """ + Cancels existing fulfillment and optionally restocks items. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderFulfillmentCancel( + """ID of a fulfillment to cancel.""" + id: ID! + + """Fields required to cancel a fulfillment.""" + input: FulfillmentCancelInput + ): FulfillmentCancel + + """ + Refund products. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderFulfillmentRefundProducts( + """Fields required to create an refund fulfillment.""" + input: OrderRefundProductsInput! + + """ID of the order to be refunded.""" + order: ID! + ): FulfillmentRefundProducts + + """ + Return products. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderFulfillmentReturnProducts( + """Fields required to return products.""" + input: OrderReturnProductsInput! + + """ID of the order to be returned.""" + order: ID! + ): FulfillmentReturnProducts + + """ + Updates a fulfillment for an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderFulfillmentUpdateTracking( + """ID of a fulfillment to update.""" + id: ID! + + """Fields required to update a fulfillment.""" + input: FulfillmentUpdateTrackingInput! + ): FulfillmentUpdateTracking + + """ + Deletes an order line from an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderLineDelete( + """ID of the order line to delete.""" + id: ID! + ): OrderLineDelete + + """ + Remove discount applied to the order line. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderLineDiscountRemove( + """ID of a order line to remove its discount""" + orderLineId: ID! + ): OrderLineDiscountRemove + + """ + Update discount for the order line. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderLineDiscountUpdate( + """Fields required to update price for the order line.""" + input: OrderDiscountCommonInput! + + """ID of a order line to update price""" + orderLineId: ID! + ): OrderLineDiscountUpdate + + """ + Updates an order line of an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderLineUpdate( + """ID of the order line to update.""" + id: ID! + + """Fields required to update an order line.""" + input: OrderLineInput! + ): OrderLineUpdate + + """ + Create order lines for an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderLinesCreate( + """ID of the order to add the lines to.""" + id: ID! + + """Fields required to add order lines.""" + input: [OrderLineCreateInput!]! + ): OrderLinesCreate + + """ + Mark order as manually paid. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderMarkAsPaid( + """ID of the order to mark paid.""" + id: ID! + + """The external transaction reference.""" + transactionReference: String + ): OrderMarkAsPaid + + """ + Refund an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderRefund( + """Amount of money to refund.""" + amount: PositiveDecimal! + + """ID of the order to refund.""" + id: ID! + ): OrderRefund + + """ + Update shop order settings. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderSettingsUpdate( + """Fields required to update shop order settings.""" + input: OrderSettingsUpdateInput! + ): OrderSettingsUpdate + + """ + Updates an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderUpdate( + """ + External ID of an order to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of an order to update.""" + id: ID + + """Fields required to update an order.""" + input: OrderUpdateInput! + ): OrderUpdate + + """ + Updates a shipping method of the order. Requires shipping method ID to update, when null is passed then currently assigned shipping method is removed. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderUpdateShipping( + """Fields required to change shipping method of the order.""" + input: OrderUpdateShippingInput! + + """ID of the order to update a shipping method.""" + order: ID! + ): OrderUpdateShipping + + """ + Void an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderVoid( + """ID of the order to void.""" + id: ID! + ): OrderVoid + + """ + Assign attributes to a given page type. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + pageAttributeAssign( + """The IDs of the attributes to assign.""" + attributeIds: [ID!]! + + """ID of the page type to assign the attributes into.""" + pageTypeId: ID! + ): PageAttributeAssign + + """ + Unassign attributes from a given page type. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + pageAttributeUnassign( + """The IDs of the attributes to unassign.""" + attributeIds: [ID!]! + + """ID of the page type from which the attributes should be unassign.""" + pageTypeId: ID! + ): PageAttributeUnassign + + """ + Deletes pages. + + Requires one of the following permissions: MANAGE_PAGES. + """ + pageBulkDelete( + """List of page IDs to delete.""" + ids: [ID!]! + ): PageBulkDelete + + """ + Publish pages. + + Requires one of the following permissions: MANAGE_PAGES. + """ + pageBulkPublish( + """List of page IDs to (un)publish.""" + ids: [ID!]! + + """Determine if pages will be published or not.""" + isPublished: Boolean! + ): PageBulkPublish + + """ + Creates a new page. + + Requires one of the following permissions: MANAGE_PAGES. + """ + pageCreate( + """Fields required to create a page.""" + input: PageCreateInput! + ): PageCreate + + """ + Deletes a page. + + Requires one of the following permissions: MANAGE_PAGES. + """ + pageDelete( + """ID of a page to delete.""" + id: ID! + ): PageDelete + + """ + Reorder page attribute values. + + Requires one of the following permissions: MANAGE_PAGES. + """ + pageReorderAttributeValues( + """ID of an attribute.""" + attributeId: ID! + + """The list of reordering operations for given attribute values.""" + moves: [ReorderInput!]! + + """ID of a page.""" + pageId: ID! + ): PageReorderAttributeValues + + """ + Creates/updates translations for a page. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + pageTranslate( + """Page ID or PageTranslatableContent ID.""" + id: ID! + input: PageTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): PageTranslate + + """ + Delete page types. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + pageTypeBulkDelete( + """List of page type IDs to delete""" + ids: [ID!]! + ): PageTypeBulkDelete + + """ + Create a new page type. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + pageTypeCreate( + """Fields required to create page type.""" + input: PageTypeCreateInput! + ): PageTypeCreate + + """ + Delete a page type. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + pageTypeDelete( + """ID of the page type to delete.""" + id: ID! + ): PageTypeDelete + + """ + Reorder the attributes of a page type. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + pageTypeReorderAttributes( + """The list of attribute reordering operations.""" + moves: [ReorderInput!]! + + """ID of a page type.""" + pageTypeId: ID! + ): PageTypeReorderAttributes + + """ + Update page type. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + pageTypeUpdate( + """ID of the page type to update.""" + id: ID + + """Fields required to update page type.""" + input: PageTypeUpdateInput! + ): PageTypeUpdate + + """ + Updates an existing page. + + Requires one of the following permissions: MANAGE_PAGES. + """ + pageUpdate( + """ID of a page to update.""" + id: ID! + + """Fields required to update a page.""" + input: PageInput! + ): PageUpdate + + """ + Change the password of the logged in user. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + passwordChange( + """New user password.""" + newPassword: String! + + """Current user password.""" + oldPassword: String! + ): PasswordChange + + """ + Captures the authorized payment amount. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + paymentCapture( + """Transaction amount.""" + amount: PositiveDecimal + + """Payment ID.""" + paymentId: ID! + ): PaymentCapture + + """Check payment balance.""" + paymentCheckBalance( + """Fields required to check payment balance.""" + input: PaymentCheckBalanceInput! + ): PaymentCheckBalance + + """Initializes payment process when it is required by gateway.""" + paymentInitialize( + """Slug of a channel for which the data should be returned.""" + channel: String + + """A gateway name used to initialize the payment.""" + gateway: String! + + """Client-side generated data required to initialize the payment.""" + paymentData: JSONString + ): PaymentInitialize + + """ + Refunds the captured payment amount. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + paymentRefund( + """Transaction amount.""" + amount: PositiveDecimal + + """Payment ID.""" + paymentId: ID! + ): PaymentRefund + + """ + Voids the authorized payment. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + paymentVoid( + """Payment ID.""" + paymentId: ID! + ): PaymentVoid + + """ + Create new permission group. Apps are not allowed to perform this mutation. + + Requires one of the following permissions: MANAGE_STAFF. + """ + permissionGroupCreate( + """Input fields to create permission group.""" + input: PermissionGroupCreateInput! + ): PermissionGroupCreate + + """ + Delete permission group. Apps are not allowed to perform this mutation. + + Requires one of the following permissions: MANAGE_STAFF. + """ + permissionGroupDelete( + """ID of the group to delete.""" + id: ID! + ): PermissionGroupDelete + + """ + Update permission group. Apps are not allowed to perform this mutation. + + Requires one of the following permissions: MANAGE_STAFF. + """ + permissionGroupUpdate( + """ID of the group to update.""" + id: ID! + + """Input fields to create permission group.""" + input: PermissionGroupUpdateInput! + ): PermissionGroupUpdate + + """ + Update plugin configuration. + + Requires one of the following permissions: MANAGE_PLUGINS. + """ + pluginUpdate( + """ID of a channel for which the data should be modified.""" + channelId: ID + + """ID of plugin to update.""" + id: ID! + + """Fields required to update a plugin configuration.""" + input: PluginUpdateInput! + ): PluginUpdate + + """ + Assign attributes to a given product type. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productAttributeAssign( + """The operations to perform.""" + operations: [ProductAttributeAssignInput!]! + + """ID of the product type to assign the attributes into.""" + productTypeId: ID! + ): ProductAttributeAssign + + """ + Update attributes assigned to product variant for given product type. + + Added in Saleor 3.1. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productAttributeAssignmentUpdate( + """The operations to perform.""" + operations: [ProductAttributeAssignmentUpdateInput!]! + + """ID of the product type to assign the attributes into.""" + productTypeId: ID! + ): ProductAttributeAssignmentUpdate + + """ + Un-assign attributes from a given product type. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productAttributeUnassign( + """The IDs of the attributes to unassign.""" + attributeIds: [ID!]! + + """ID of the product type from which the attributes should be unassigned.""" + productTypeId: ID! + ): ProductAttributeUnassign + + """ + Deletes products. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productBulkDelete( + """List of product IDs to delete.""" + ids: [ID!]! + ): ProductBulkDelete + + """ + Manage product's availability in channels. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productChannelListingUpdate( + """ID of a product to update.""" + id: ID! + + """Fields required to create or update product channel listings.""" + input: ProductChannelListingUpdateInput! + ): ProductChannelListingUpdate + + """ + Creates a new product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productCreate( + """Fields required to create a product.""" + input: ProductCreateInput! + ): ProductCreate + + """ + Deletes a product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productDelete( + """ + External ID of a product to delete. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a product to delete.""" + id: ID + ): ProductDelete + + """ + Deletes product media. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productMediaBulkDelete( + """List of product media IDs to delete.""" + ids: [ID!]! + ): ProductMediaBulkDelete + + """ + Create a media object (image or video URL) associated with product. For image, this mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productMediaCreate( + """Fields required to create a product media.""" + input: ProductMediaCreateInput! + ): ProductMediaCreate + + """ + Deletes a product media. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productMediaDelete( + """ID of a product media to delete.""" + id: ID! + ): ProductMediaDelete + + """ + Changes ordering of the product media. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productMediaReorder( + """IDs of a product media in the desired order.""" + mediaIds: [ID!]! + + """ID of product that media order will be altered.""" + productId: ID! + ): ProductMediaReorder + + """ + Updates a product media. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productMediaUpdate( + """ID of a product media to update.""" + id: ID! + + """Fields required to update a product media.""" + input: ProductMediaUpdateInput! + ): ProductMediaUpdate + + """ + Reorder product attribute values. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productReorderAttributeValues( + """ID of an attribute.""" + attributeId: ID! + + """The list of reordering operations for given attribute values.""" + moves: [ReorderInput!]! + + """ID of a product.""" + productId: ID! + ): ProductReorderAttributeValues + + """ + Creates/updates translations for a product. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + productTranslate( + """Product ID or ProductTranslatableContent ID.""" + id: ID! + input: TranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): ProductTranslate + + """ + Deletes product types. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productTypeBulkDelete( + """List of product type IDs to delete.""" + ids: [ID!]! + ): ProductTypeBulkDelete + + """ + Creates a new product type. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productTypeCreate( + """Fields required to create a product type.""" + input: ProductTypeInput! + ): ProductTypeCreate + + """ + Deletes a product type. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productTypeDelete( + """ID of a product type to delete.""" + id: ID! + ): ProductTypeDelete + + """ + Reorder the attributes of a product type. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productTypeReorderAttributes( + """The list of attribute reordering operations.""" + moves: [ReorderInput!]! + + """ID of a product type.""" + productTypeId: ID! + + """The attribute type to reorder.""" + type: ProductAttributeType! + ): ProductTypeReorderAttributes + + """ + Updates an existing product type. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productTypeUpdate( + """ID of a product type to update.""" + id: ID! + + """Fields required to update a product type.""" + input: ProductTypeInput! + ): ProductTypeUpdate + + """ + Updates an existing product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productUpdate( + """ + External ID of a product to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a product to update.""" + id: ID + + """Fields required to update a product.""" + input: ProductInput! + ): ProductUpdate + + """ + Creates product variants for a given product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantBulkCreate( + """ID of the product to create the variants for.""" + product: ID! + + """Input list of product variants to create.""" + variants: [ProductVariantBulkCreateInput!]! + ): ProductVariantBulkCreate + + """ + Deletes product variants. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantBulkDelete( + """List of product variant IDs to delete.""" + ids: [ID!] + + """ + List of product variant SKUs to delete. + + Added in Saleor 3.8. + """ + skus: [String!] + ): ProductVariantBulkDelete + + """ + Manage product variant prices in channels. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantChannelListingUpdate( + """ID of a product variant to update.""" + id: ID + + """ + List of fields required to create or upgrade product variant channel listings. + """ + input: [ProductVariantChannelListingAddInput!]! + + """ + SKU of a product variant to update. + + Added in Saleor 3.8. + """ + sku: String + ): ProductVariantChannelListingUpdate + + """ + Creates a new variant for a product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantCreate( + """Fields required to create a product variant.""" + input: ProductVariantCreateInput! + ): ProductVariantCreate + + """ + Deletes a product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantDelete( + """ + External ID of a product variant to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a product variant to delete.""" + id: ID + + """ + SKU of a product variant to delete. + + Added in Saleor 3.8. + """ + sku: String + ): ProductVariantDelete + + """ + Deactivates product variant preorder. It changes all preorder allocation into regular allocation. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantPreorderDeactivate( + """ID of a variant which preorder should be deactivated.""" + id: ID! + ): ProductVariantPreorderDeactivate + + """ + Reorder the variants of a product. Mutation updates updated_at on product and triggers PRODUCT_UPDATED webhook. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantReorder( + """The list of variant reordering operations.""" + moves: [ReorderInput!]! + + """Id of product that variants order will be altered.""" + productId: ID! + ): ProductVariantReorder + + """ + Reorder product variant attribute values. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantReorderAttributeValues( + """ID of an attribute.""" + attributeId: ID! + + """The list of reordering operations for given attribute values.""" + moves: [ReorderInput!]! + + """ID of a product variant.""" + variantId: ID! + ): ProductVariantReorderAttributeValues + + """ + Set default variant for a product. Mutation triggers PRODUCT_UPDATED webhook. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantSetDefault( + """Id of a product that will have the default variant set.""" + productId: ID! + + """Id of a variant that will be set as default.""" + variantId: ID! + ): ProductVariantSetDefault + + """ + Creates stocks for product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantStocksCreate( + """Input list of stocks to create.""" + stocks: [StockInput!]! + + """ID of a product variant for which stocks will be created.""" + variantId: ID! + ): ProductVariantStocksCreate + + """ + Delete stocks from product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantStocksDelete( + """SKU of product variant for which stocks will be deleted.""" + sku: String + + """ID of product variant for which stocks will be deleted.""" + variantId: ID + + """Input list of warehouse IDs.""" + warehouseIds: [ID!] + ): ProductVariantStocksDelete + + """ + Update stocks for product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantStocksUpdate( + """SKU of product variant for which stocks will be updated.""" + sku: String + + """Input list of stocks to create or update.""" + stocks: [StockInput!]! + + """ID of a product variant for which stocks will be updated.""" + variantId: ID + ): ProductVariantStocksUpdate + + """ + Creates/updates translations for a product variant. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + productVariantTranslate( + """ProductVariant ID or ProductVariantTranslatableContent ID.""" + id: ID! + input: NameTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): ProductVariantTranslate + + """ + Updates an existing variant for product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantUpdate( + """ + External ID of a product variant to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a product to update.""" + id: ID + + """Fields required to update a product variant.""" + input: ProductVariantInput! + + """ + SKU of a product variant to update. + + Added in Saleor 3.8. + """ + sku: String + ): ProductVariantUpdate + + """ + Request email change of the logged in user. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + requestEmailChange( + """ + Slug of a channel which will be used to notify users. Optional when only one channel exists. + """ + channel: String + + """New user email.""" + newEmail: String! + + """User password.""" + password: String! + + """ + URL of a view where users should be redirected to update the email address. URL in RFC 1808 format. + """ + redirectUrl: String! + ): RequestEmailChange + + """Sends an email with the account password modification link.""" + requestPasswordReset( + """ + Slug of a channel which will be used for notify user. Optional when only one channel exists. + """ + channel: String + + """Email of the user that will be used for password recovery.""" + email: String! + + """ + URL of a view where users should be redirected to reset the password. URL in RFC 1808 format. + """ + redirectUrl: String! + ): RequestPasswordReset + + """ + Deletes sales. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + saleBulkDelete( + """List of sale IDs to delete.""" + ids: [ID!]! + ): SaleBulkDelete + + """ + Adds products, categories, collections to a voucher. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + saleCataloguesAdd( + """ID of a sale.""" + id: ID! + + """Fields required to modify catalogue IDs of sale.""" + input: CatalogueInput! + ): SaleAddCatalogues + + """ + Removes products, categories, collections from a sale. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + saleCataloguesRemove( + """ID of a sale.""" + id: ID! + + """Fields required to modify catalogue IDs of sale.""" + input: CatalogueInput! + ): SaleRemoveCatalogues + + """ + Manage sale's availability in channels. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + saleChannelListingUpdate( + """ID of a sale to update.""" + id: ID! + + """Fields required to update sale channel listings.""" + input: SaleChannelListingInput! + ): SaleChannelListingUpdate + + """ + Creates a new sale. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + saleCreate( + """Fields required to create a sale.""" + input: SaleInput! + ): SaleCreate + + """ + Deletes a sale. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + saleDelete( + """ID of a sale to delete.""" + id: ID! + ): SaleDelete + + """ + Creates/updates translations for a sale. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + saleTranslate( + """Sale ID or SaleTranslatableContent ID.""" + id: ID! + input: NameTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): SaleTranslate + + """ + Updates a sale. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + saleUpdate( + """ID of a sale to update.""" + id: ID! + + """Fields required to update a sale.""" + input: SaleInput! + ): SaleUpdate + + """ + Sets the user's password from the token sent by email using the RequestPasswordReset mutation. + """ + setPassword( + """Email of a user.""" + email: String! + + """Password of a user.""" + password: String! + + """A one-time token required to set the password.""" + token: String! + ): SetPassword + + """ + Manage shipping method's availability in channels. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingMethodChannelListingUpdate( + """ID of a shipping method to update.""" + id: ID! + + """Fields required to update shipping method channel listings.""" + input: ShippingMethodChannelListingInput! + ): ShippingMethodChannelListingUpdate + + """ + Deletes shipping prices. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingPriceBulkDelete( + """List of shipping price IDs to delete.""" + ids: [ID!]! + ): ShippingPriceBulkDelete + + """ + Creates a new shipping price. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingPriceCreate( + """Fields required to create a shipping price.""" + input: ShippingPriceInput! + ): ShippingPriceCreate + + """ + Deletes a shipping price. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingPriceDelete( + """ID of a shipping price to delete.""" + id: ID! + ): ShippingPriceDelete + + """ + Exclude products from shipping price. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingPriceExcludeProducts( + """ID of a shipping price.""" + id: ID! + + """Exclude products input.""" + input: ShippingPriceExcludeProductsInput! + ): ShippingPriceExcludeProducts + + """ + Remove product from excluded list for shipping price. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingPriceRemoveProductFromExclude( + """ID of a shipping price.""" + id: ID! + + """List of products which will be removed from excluded list.""" + products: [ID!]! + ): ShippingPriceRemoveProductFromExclude + + """ + Creates/updates translations for a shipping method. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + shippingPriceTranslate( + """ShippingMethodType ID or ShippingMethodTranslatableContent ID.""" + id: ID! + input: ShippingPriceTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): ShippingPriceTranslate + + """ + Updates a new shipping price. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingPriceUpdate( + """ID of a shipping price to update.""" + id: ID! + + """Fields required to update a shipping price.""" + input: ShippingPriceInput! + ): ShippingPriceUpdate + + """ + Deletes shipping zones. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingZoneBulkDelete( + """List of shipping zone IDs to delete.""" + ids: [ID!]! + ): ShippingZoneBulkDelete + + """ + Creates a new shipping zone. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingZoneCreate( + """Fields required to create a shipping zone.""" + input: ShippingZoneCreateInput! + ): ShippingZoneCreate + + """ + Deletes a shipping zone. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingZoneDelete( + """ID of a shipping zone to delete.""" + id: ID! + ): ShippingZoneDelete + + """ + Updates a new shipping zone. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingZoneUpdate( + """ID of a shipping zone to update.""" + id: ID! + + """Fields required to update a shipping zone.""" + input: ShippingZoneUpdateInput! + ): ShippingZoneUpdate + + """ + Update the shop's address. If the `null` value is passed, the currently selected address will be deleted. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + shopAddressUpdate( + """Fields required to update shop address.""" + input: AddressInput + ): ShopAddressUpdate + + """ + Updates site domain of the shop. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + shopDomainUpdate( + """Fields required to update site.""" + input: SiteDomainInput + ): ShopDomainUpdate + + """ + Fetch tax rates. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + shopFetchTaxRates: ShopFetchTaxRates @deprecated(reason: "\\n\\nDEPRECATED: this mutation will be removed in Saleor 4.0.") + + """ + Creates/updates translations for shop settings. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + shopSettingsTranslate( + """Fields required to update shop settings translations.""" + input: ShopSettingsTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): ShopSettingsTranslate + + """ + Updates shop settings. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + shopSettingsUpdate( + """Fields required to update shop settings.""" + input: ShopSettingsInput! + ): ShopSettingsUpdate + + """ + Deletes staff users. Apps are not allowed to perform this mutation. + + Requires one of the following permissions: MANAGE_STAFF. + """ + staffBulkDelete( + """List of user IDs to delete.""" + ids: [ID!]! + ): StaffBulkDelete + + """ + Creates a new staff user. Apps are not allowed to perform this mutation. + + Requires one of the following permissions: MANAGE_STAFF. + """ + staffCreate( + """Fields required to create a staff user.""" + input: StaffCreateInput! + ): StaffCreate + + """ + Deletes a staff user. Apps are not allowed to perform this mutation. + + Requires one of the following permissions: MANAGE_STAFF. + """ + staffDelete( + """ID of a staff user to delete.""" + id: ID! + ): StaffDelete + + """ + Creates a new staff notification recipient. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + staffNotificationRecipientCreate( + """Fields required to create a staff notification recipient.""" + input: StaffNotificationRecipientInput! + ): StaffNotificationRecipientCreate + + """ + Delete staff notification recipient. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + staffNotificationRecipientDelete( + """ID of a staff notification recipient to delete.""" + id: ID! + ): StaffNotificationRecipientDelete + + """ + Updates a staff notification recipient. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + staffNotificationRecipientUpdate( + """ID of a staff notification recipient to update.""" + id: ID! + + """Fields required to update a staff notification recipient.""" + input: StaffNotificationRecipientInput! + ): StaffNotificationRecipientUpdate + + """ + Updates an existing staff user. Apps are not allowed to perform this mutation. + + Requires one of the following permissions: MANAGE_STAFF. + """ + staffUpdate( + """ID of a staff user to update.""" + id: ID! + + """Fields required to update a staff user.""" + input: StaffUpdateInput! + ): StaffUpdate + + """ + Create a tax class. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_TAXES. + """ + taxClassCreate( + """Fields required to create a tax class.""" + input: TaxClassCreateInput! + ): TaxClassCreate + + """ + Delete a tax class. After deleting the tax class any products, product types or shipping methods using it are updated to use the default tax class. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_TAXES. + """ + taxClassDelete( + """ID of a tax class to delete.""" + id: ID! + ): TaxClassDelete + + """ + Update a tax class. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_TAXES. + """ + taxClassUpdate( + """ID of the tax class.""" + id: ID! + + """Fields required to update a tax class.""" + input: TaxClassUpdateInput! + ): TaxClassUpdate + + """ + Update tax configuration for a channel. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_TAXES. + """ + taxConfigurationUpdate( + """ID of the tax configuration.""" + id: ID! + + """Fields required to update the tax configuration.""" + input: TaxConfigurationUpdateInput! + ): TaxConfigurationUpdate + + """ + Remove all tax class rates for a specific country. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_TAXES. + """ + taxCountryConfigurationDelete( + """Country in which to update the tax class rates.""" + countryCode: CountryCode! + ): TaxCountryConfigurationDelete + + """ + Update tax class rates for a specific country. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_TAXES. + """ + taxCountryConfigurationUpdate( + """Country in which to update the tax class rates.""" + countryCode: CountryCode! + + """ + List of tax rates per tax class to update. When `{taxClass: id, rate: null`} is passed, it deletes the rate object for given taxClass ID. When `{rate: Int}` is passed without a tax class, it updates the default tax class for this country. + """ + updateTaxClassRates: [TaxClassRateInput!]! + ): TaxCountryConfigurationUpdate + + """ + Exempt checkout or order from charging the taxes. When tax exemption is enabled, taxes won't be charged for the checkout or order. Taxes may still be calculated in cases when product prices are entered with the tax included and the net price needs to be known. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_TAXES. + """ + taxExemptionManage( + """ID of the Checkout or Order object.""" + id: ID! + + """Determines if a taxes should be exempt.""" + taxExemption: Boolean! + ): TaxExemptionManage + + """Create JWT token.""" + tokenCreate( + """ + The audience that will be included to JWT tokens with prefix `custom:`. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + audience: String + + """Email of a user.""" + email: String! + + """Password of a user.""" + password: String! + ): CreateToken + + """ + Refresh JWT token. Mutation tries to take refreshToken from the input.If it fails it will try to take refreshToken from the http-only cookie -refreshToken. csrfToken is required when refreshToken is provided as a cookie. + """ + tokenRefresh( + """ + CSRF token required to refresh token. This argument is required when refreshToken is provided as a cookie. + """ + csrfToken: String + + """Refresh token.""" + refreshToken: String + ): RefreshToken + + """Verify JWT token.""" + tokenVerify( + """JWT token to validate.""" + token: String! + ): VerifyToken + + """ + Deactivate all JWT tokens of the currently authenticated user. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + tokensDeactivateAll: DeactivateAllUserTokens + + """ + Create transaction for checkout or order. Requires the following permissions: AUTHENTICATED_APP and HANDLE_PAYMENTS. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + transactionCreate( + """The ID of the checkout or order.""" + id: ID! + + """Input data required to create a new transaction object.""" + transaction: TransactionCreateInput! + + """Data that defines a transaction event.""" + transactionEvent: TransactionEventInput + ): TransactionCreate + + """ + Request an action for payment transaction. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: HANDLE_PAYMENTS, MANAGE_ORDERS. + """ + transactionRequestAction( + """Determines the action type.""" + actionType: TransactionActionEnum! + + """ + Transaction request amount. If empty for refund or capture, maximal possible amount will be used. + """ + amount: PositiveDecimal + + """The ID of the transaction.""" + id: ID! + ): TransactionRequestAction + + """ + Create transaction for checkout or order. Requires the following permissions: AUTHENTICATED_APP and HANDLE_PAYMENTS. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + transactionUpdate( + """The ID of the transaction.""" + id: ID! + + """Input data required to create a new transaction object.""" + transaction: TransactionUpdateInput + + """Data that defines a transaction transaction.""" + transactionEvent: TransactionEventInput + ): TransactionUpdate + + """ + Remove shipping zone from given warehouse. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + unassignWarehouseShippingZone( + """ID of a warehouse to update.""" + id: ID! + + """List of shipping zone IDs.""" + shippingZoneIds: [ID!]! + ): WarehouseShippingZoneUnassign + + """ + Updates metadata of an object. To use it, you need to have access to the modified object. + """ + updateMetadata( + """ID or token (for Order and Checkout) of an object to update.""" + id: ID! + + """Fields required to update the object's metadata.""" + input: [MetadataInput!]! + ): UpdateMetadata + + """ + Updates private metadata of an object. To use it, you need to be an authenticated staff user or an app and have access to the modified object. + """ + updatePrivateMetadata( + """ID or token (for Order and Checkout) of an object to update.""" + id: ID! + + """Fields required to update the object's metadata.""" + input: [MetadataInput!]! + ): UpdatePrivateMetadata + + """ + Updates given warehouse. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + updateWarehouse( + """ID of a warehouse to update.""" + id: ID! + + """Fields required to update warehouse.""" + input: WarehouseUpdateInput! + ): WarehouseUpdate + + """ + Deletes a user avatar. Only for staff members. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + """ + userAvatarDelete: UserAvatarDelete + + """ + Create a user avatar. Only for staff members. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + """ + userAvatarUpdate( + """Represents an image file in a multipart request.""" + image: Upload! + ): UserAvatarUpdate + + """ + Activate or deactivate users. + + Requires one of the following permissions: MANAGE_USERS. + """ + userBulkSetActive( + """List of user IDs to (de)activate).""" + ids: [ID!]! + + """Determine if users will be set active or not.""" + isActive: Boolean! + ): UserBulkSetActive + + """ + Assign an media to a product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + variantMediaAssign( + """ID of a product media to assign to a variant.""" + mediaId: ID! + + """ID of a product variant.""" + variantId: ID! + ): VariantMediaAssign + + """ + Unassign an media from a product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + variantMediaUnassign( + """ID of a product media to unassign from a variant.""" + mediaId: ID! + + """ID of a product variant.""" + variantId: ID! + ): VariantMediaUnassign + + """ + Deletes vouchers. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucherBulkDelete( + """List of voucher IDs to delete.""" + ids: [ID!]! + ): VoucherBulkDelete + + """ + Adds products, categories, collections to a voucher. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucherCataloguesAdd( + """ID of a voucher.""" + id: ID! + + """Fields required to modify catalogue IDs of voucher.""" + input: CatalogueInput! + ): VoucherAddCatalogues + + """ + Removes products, categories, collections from a voucher. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucherCataloguesRemove( + """ID of a voucher.""" + id: ID! + + """Fields required to modify catalogue IDs of voucher.""" + input: CatalogueInput! + ): VoucherRemoveCatalogues + + """ + Manage voucher's availability in channels. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucherChannelListingUpdate( + """ID of a voucher to update.""" + id: ID! + + """Fields required to update voucher channel listings.""" + input: VoucherChannelListingInput! + ): VoucherChannelListingUpdate + + """ + Creates a new voucher. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucherCreate( + """Fields required to create a voucher.""" + input: VoucherInput! + ): VoucherCreate + + """ + Deletes a voucher. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucherDelete( + """ID of a voucher to delete.""" + id: ID! + ): VoucherDelete + + """ + Creates/updates translations for a voucher. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + voucherTranslate( + """Voucher ID or VoucherTranslatableContent ID.""" + id: ID! + input: NameTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): VoucherTranslate + + """ + Updates a voucher. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucherUpdate( + """ID of a voucher to update.""" + id: ID! + + """Fields required to update a voucher.""" + input: VoucherInput! + ): VoucherUpdate + + """ + Creates a new webhook subscription. + + Requires one of the following permissions: MANAGE_APPS, AUTHENTICATED_APP. + """ + webhookCreate( + """Fields required to create a webhook.""" + input: WebhookCreateInput! + ): WebhookCreate + + """ + Delete a webhook. Before the deletion, the webhook is deactivated to pause any deliveries that are already scheduled. The deletion might fail if delivery is in progress. In such a case, the webhook is not deleted but remains deactivated. + + Requires one of the following permissions: MANAGE_APPS, AUTHENTICATED_APP. + """ + webhookDelete( + """ID of a webhook to delete.""" + id: ID! + ): WebhookDelete + + """ + Updates a webhook subscription. + + Requires one of the following permissions: MANAGE_APPS. + """ + webhookUpdate( + """ID of a webhook to update.""" + id: ID! + + """Fields required to update a webhook.""" + input: WebhookUpdateInput! + ): WebhookUpdate +} + +input NameTranslationInput { + name: String +} + +enum NavigationType { + """Main storefront navigation.""" + MAIN + + """Secondary storefront navigation.""" + SECONDARY +} + +"""An object with an ID""" +interface Node { + """The ID of the object.""" + id: ID! +} + +interface ObjectWithMetadata { + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata +} + +"""Represents an order in the shop.""" +type Order implements Node & ObjectWithMetadata { + """ + List of actions that can be performed in the current state of an order. + """ + actions: [OrderAction!]! + + """ + The authorize status of the order. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + authorizeStatus: OrderAuthorizeStatusEnum! + + """ + Collection points that can be used for this order. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + availableCollectionPoints: [Warehouse!]! + + """Shipping methods that can be used with this order.""" + availableShippingMethods: [ShippingMethod!] @deprecated(reason: "Use `shippingMethods`, this field will be removed in 4.0") + + """ + Billing address. The full data can be access for orders created in Saleor 3.2 and later, for other orders requires one of the following permissions: MANAGE_ORDERS, OWNER. + """ + billingAddress: Address + + """ + Informs whether a draft order can be finalized(turned into a regular order). + """ + canFinalize: Boolean! + channel: Channel! + + """ + The charge status of the order. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + chargeStatus: OrderChargeStatusEnum! + collectionPointName: String + created: DateTime! + customerNote: String! + + """ + The delivery method selected for this order. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + deliveryMethod: DeliveryMethod + + """Returns applied discount.""" + discount: Money @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `discounts` field instead.") + + """Discount name.""" + discountName: String @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `discounts` field instead.") + + """List of all discounts assigned to the order.""" + discounts: [OrderDiscount!]! + + """ + Determines whether checkout prices should include taxes when displayed in a storefront. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + displayGrossPrices: Boolean! + + """List of errors that occurred during order validation.""" + errors: [OrderError!]! + + """ + List of events associated with the order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + events: [OrderEvent!]! + + """ + External ID of this order. + + Added in Saleor 3.10. + """ + externalReference: String + + """List of shipments for the order.""" + fulfillments: [Fulfillment!]! + + """List of user gift cards.""" + giftCards: [GiftCard!]! + id: ID! + + """ + List of order invoices. Can be fetched for orders created in Saleor 3.2 and later, for other orders requires one of the following permissions: MANAGE_ORDERS, OWNER. + """ + invoices: [Invoice!]! + + """Informs if an order is fully paid.""" + isPaid: Boolean! + + """Returns True, if order requires shipping.""" + isShippingRequired: Boolean! + languageCode: String! @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `languageCodeEnum` field to fetch the language code. ") + + """Order language code.""" + languageCodeEnum: LanguageCodeEnum! + + """List of order lines.""" + lines: [OrderLine!]! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """User-friendly number of an order.""" + number: String! + + """The order origin.""" + origin: OrderOriginEnum! + + """The ID of the order that was the base for this order.""" + original: ID + + """Internal payment status.""" + paymentStatus: PaymentChargeStatusEnum! + + """User-friendly payment status.""" + paymentStatusDisplay: String! + + """List of payments for the order.""" + payments: [Payment!]! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + redirectUrl: String + + """ + Shipping address. The full data can be access for orders created in Saleor 3.2 and later, for other orders requires one of the following permissions: MANAGE_ORDERS, OWNER. + """ + shippingAddress: Address + + """Shipping method for this order.""" + shippingMethod: ShippingMethod @deprecated(reason: "This field will be removed in Saleor 4.0. Use `deliveryMethod` instead.") + shippingMethodName: String + + """Shipping methods related to this order.""" + shippingMethods: [ShippingMethod!]! + + """Total price of shipping.""" + shippingPrice: TaxedMoney! + + """ + Denormalized tax class assigned to the shipping method. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + """ + shippingTaxClass: TaxClass + + """ + Denormalized public metadata of the shipping method's tax class. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + shippingTaxClassMetadata: [MetadataItem!]! + + """ + Denormalized name of the tax class assigned to the shipping method. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + shippingTaxClassName: String + + """ + Denormalized private metadata of the shipping method's tax class. Requires staff permissions to access. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + shippingTaxClassPrivateMetadata: [MetadataItem!]! + + """The shipping tax rate value.""" + shippingTaxRate: Float! + status: OrderStatus! + + """User-friendly order status.""" + statusDisplay: String! + + """The sum of line prices not including shipping.""" + subtotal: TaxedMoney! + + """ + Returns True if order has to be exempt from taxes. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + taxExemption: Boolean! + token: String! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `id` instead.") + + """Total amount of the order.""" + total: TaxedMoney! + + """Amount authorized for the order.""" + totalAuthorized: Money! + + """The difference between the paid and the order total amount.""" + totalBalance: Money! + + """Amount captured by payment.""" + totalCaptured: Money! + trackingClientId: String! + + """ + List of transactions for the order. Requires one of the following permissions: MANAGE_ORDERS, HANDLE_PAYMENTS. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + transactions: [TransactionItem!]! + + """Translated discount name.""" + translatedDiscountName: String @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `discounts` field instead. ") + + """Undiscounted total amount of the order.""" + undiscountedTotal: TaxedMoney! + updatedAt: DateTime! + + """ + User who placed the order. This field is set only for orders placed by authenticated users. Can be fetched for orders created in Saleor 3.2 and later, for other orders requires one of the following permissions: MANAGE_USERS, MANAGE_ORDERS, OWNER. + """ + user: User + + """ + Email address of the customer. The full data can be access for orders created in Saleor 3.2 and later, for other orders requires one of the following permissions: MANAGE_ORDERS, OWNER. + """ + userEmail: String + voucher: Voucher + weight: Weight! +} + +enum OrderAction { + """Represents the capture action.""" + CAPTURE + + """Represents a mark-as-paid action.""" + MARK_AS_PAID + + """Represents a refund action.""" + REFUND + + """Represents a void action.""" + VOID +} + +""" +Adds note to the order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderAddNote { + errors: [OrderError!]! + + """Order note created.""" + event: OrderEvent + + """Order with the note added.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input OrderAddNoteInput { + """Note message.""" + message: String! +} + +""" +Determine a current authorize status for order. + + We treat the order as fully authorized when the sum of authorized and charged funds + cover the order.total. + We treat the order as partially authorized when the sum of authorized and charged + funds covers only part of the order.total + We treat the order as not authorized when the sum of authorized and charged funds is + 0. + + NONE - the funds are not authorized + PARTIAL - the funds that are authorized or charged don't cover fully the order's + total + FULL - the funds that are authorized or charged fully cover the order's total +""" +enum OrderAuthorizeStatusEnum { + FULL + NONE + PARTIAL +} + +""" +Cancels orders. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderBulkCancel { + """Returns how many objects were affected.""" + count: Int! + errors: [OrderError!]! + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Cancel an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderCancel { + errors: [OrderError!]! + + """Canceled order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when order is canceled. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderCancelled implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The order the event relates to.""" + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Capture an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderCapture { + errors: [OrderError!]! + + """Captured order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Determine the current charge status for the order. + + We treat the order as overcharged when the charged amount is bigger that order.total + We treat the order as fully charged when the charged amount is equal to order.total. + We treat the order as partially charged when the charged amount covers only part of + the order.total + + NONE - the funds are not charged. + PARTIAL - the funds that are charged don't cover the order's total + FULL - the funds that are charged fully cover the order's total + OVERCHARGED - the charged funds are bigger than order's total +""" +enum OrderChargeStatusEnum { + FULL + NONE + OVERCHARGED + PARTIAL +} + +""" +Confirms an unconfirmed order by changing status to unfulfilled. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderConfirm { + errors: [OrderError!]! + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when order is confirmed. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderConfirmed implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The order the event relates to.""" + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +type OrderCountableConnection { + edges: [OrderCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type OrderCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: Order! +} + +""" +Create new order from existing checkout. Requires the following permissions: AUTHENTICATED_APP and HANDLE_CHECKOUTS. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderCreateFromCheckout { + errors: [OrderCreateFromCheckoutError!]! + + """Placed order.""" + order: Order +} + +type OrderCreateFromCheckoutError { + """The error code.""" + code: OrderCreateFromCheckoutErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """List of line Ids which cause the error.""" + lines: [ID!] + + """The error message.""" + message: String + + """List of variant IDs which causes the error.""" + variants: [ID!] +} + +"""An enumeration.""" +enum OrderCreateFromCheckoutErrorCode { + BILLING_ADDRESS_NOT_SET + CHANNEL_INACTIVE + CHECKOUT_NOT_FOUND + EMAIL_NOT_SET + GIFT_CARD_NOT_APPLICABLE + GRAPHQL_ERROR + INSUFFICIENT_STOCK + INVALID_SHIPPING_METHOD + NO_LINES + SHIPPING_ADDRESS_NOT_SET + SHIPPING_METHOD_NOT_SET + TAX_ERROR + UNAVAILABLE_VARIANT_IN_CHANNEL + VOUCHER_NOT_APPLICABLE +} + +""" +Event sent when new order is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The order the event relates to.""" + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +enum OrderDirection { + """Specifies an ascending sort order.""" + ASC + + """Specifies a descending sort order.""" + DESC +} + +"""Contains all details related to the applied discount to the order.""" +type OrderDiscount implements Node { + """Returns amount of discount.""" + amount: Money! + id: ID! + name: String + + """ + Explanation for the applied discount. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + reason: String + translatedName: String + type: OrderDiscountType! + + """Value of the discount. Can store fixed value or percent value""" + value: PositiveDecimal! + + """Type of the discount: fixed or percent""" + valueType: DiscountValueTypeEnum! +} + +""" +Adds discount to the order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderDiscountAdd { + errors: [OrderError!]! + + """Order which has been discounted.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input OrderDiscountCommonInput { + """Explanation for the applied discount.""" + reason: String + + """Value of the discount. Can store fixed value or percent value""" + value: PositiveDecimal! + + """Type of the discount: fixed or percent""" + valueType: DiscountValueTypeEnum! +} + +""" +Remove discount from the order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderDiscountDelete { + errors: [OrderError!]! + + """Order which has removed discount.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +"""An enumeration.""" +enum OrderDiscountType { + MANUAL + VOUCHER +} + +""" +Update discount for the order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderDiscountUpdate { + errors: [OrderError!]! + + """Order which has been discounted.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input OrderDraftFilterInput { + channels: [ID!] + created: DateRangeInput + customer: String + metadata: [MetadataFilter!] + search: String +} + +type OrderError { + """A type of address that causes the error.""" + addressType: AddressTypeEnum + + """The error code.""" + code: OrderErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of order line IDs that cause the error.""" + orderLines: [ID!] + + """List of product variants that are associated with the error""" + variants: [ID!] + + """Warehouse ID which causes the error.""" + warehouse: ID +} + +"""An enumeration.""" +enum OrderErrorCode { + BILLING_ADDRESS_NOT_SET + CANNOT_CANCEL_FULFILLMENT + CANNOT_CANCEL_ORDER + CANNOT_DELETE + CANNOT_DISCOUNT + CANNOT_FULFILL_UNPAID_ORDER + CANNOT_REFUND + CAPTURE_INACTIVE_PAYMENT + CHANNEL_INACTIVE + DUPLICATED_INPUT_ITEM + FULFILL_ORDER_LINE + GIFT_CARD_LINE + GRAPHQL_ERROR + INSUFFICIENT_STOCK + INVALID + INVALID_QUANTITY + MISSING_TRANSACTION_ACTION_REQUEST_WEBHOOK + NOT_AVAILABLE_IN_CHANNEL + NOT_EDITABLE + NOT_FOUND + ORDER_NO_SHIPPING_ADDRESS + PAYMENT_ERROR + PAYMENT_MISSING + PRODUCT_NOT_PUBLISHED + PRODUCT_UNAVAILABLE_FOR_PURCHASE + REQUIRED + SHIPPING_METHOD_NOT_APPLICABLE + SHIPPING_METHOD_REQUIRED + TAX_ERROR + UNIQUE + VOID_INACTIVE_PAYMENT + ZERO_QUANTITY +} + +"""History log of the order.""" +type OrderEvent implements Node { + """Amount of money.""" + amount: Float + + """ + App that performed the action. Requires of of the following permissions: MANAGE_APPS, MANAGE_ORDERS, OWNER. + """ + app: App + + """Composed ID of the Fulfillment.""" + composedId: String + + """Date when event happened at in ISO 8601 format.""" + date: DateTime + + """The discount applied to the order.""" + discount: OrderEventDiscountObject + + """Email of the customer.""" + email: String + + """Type of an email sent to the customer.""" + emailType: OrderEventsEmailsEnum + + """The lines fulfilled.""" + fulfilledItems: [FulfillmentLine!] + id: ID! + + """Number of an invoice related to the order.""" + invoiceNumber: String + + """The concerned lines.""" + lines: [OrderEventOrderLineObject!] + + """Content of the event.""" + message: String + + """User-friendly number of an order.""" + orderNumber: String + + """List of oversold lines names.""" + oversoldItems: [String!] + + """The payment gateway of the payment.""" + paymentGateway: String + + """The payment reference from the payment provider.""" + paymentId: String + + """Number of items.""" + quantity: Int + + """The reference of payment's transaction.""" + reference: String + + """The order which is related to this order.""" + relatedOrder: Order + + """Define if shipping costs were included to the refund.""" + shippingCostsIncluded: Boolean + + """The status of payment's transaction.""" + status: TransactionStatus + + """The transaction reference of captured payment.""" + transactionReference: String + + """Order event type.""" + type: OrderEventsEnum + + """User who performed the action.""" + user: User + + """The warehouse were items were restocked.""" + warehouse: Warehouse +} + +type OrderEventCountableConnection { + edges: [OrderEventCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type OrderEventCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: OrderEvent! +} + +type OrderEventDiscountObject { + """Returns amount of discount.""" + amount: Money + + """Returns amount of discount.""" + oldAmount: Money + + """Value of the discount. Can store fixed value or percent value.""" + oldValue: PositiveDecimal + + """Type of the discount: fixed or percent.""" + oldValueType: DiscountValueTypeEnum + + """Explanation for the applied discount.""" + reason: String + + """Value of the discount. Can store fixed value or percent value.""" + value: PositiveDecimal! + + """Type of the discount: fixed or percent.""" + valueType: DiscountValueTypeEnum! +} + +type OrderEventOrderLineObject { + """The discount applied to the order line.""" + discount: OrderEventDiscountObject + + """The variant name.""" + itemName: String + + """The order line.""" + orderLine: OrderLine + + """The variant quantity.""" + quantity: Int +} + +"""An enumeration.""" +enum OrderEventsEmailsEnum { + CONFIRMED + DIGITAL_LINKS + FULFILLMENT_CONFIRMATION + ORDER_CANCEL + ORDER_CONFIRMATION + ORDER_REFUND + PAYMENT_CONFIRMATION + SHIPPING_CONFIRMATION + TRACKING_UPDATED +} + +"""An enumeration.""" +enum OrderEventsEnum { + ADDED_PRODUCTS + CANCELED + CONFIRMED + DRAFT_CREATED + DRAFT_CREATED_FROM_REPLACE + EMAIL_SENT + EXTERNAL_SERVICE_NOTIFICATION + FULFILLMENT_AWAITS_APPROVAL + FULFILLMENT_CANCELED + FULFILLMENT_FULFILLED_ITEMS + FULFILLMENT_REFUNDED + FULFILLMENT_REPLACED + FULFILLMENT_RESTOCKED_ITEMS + FULFILLMENT_RETURNED + INVOICE_GENERATED + INVOICE_REQUESTED + INVOICE_SENT + INVOICE_UPDATED + NOTE_ADDED + ORDER_DISCOUNT_ADDED + ORDER_DISCOUNT_AUTOMATICALLY_UPDATED + ORDER_DISCOUNT_DELETED + ORDER_DISCOUNT_UPDATED + ORDER_FULLY_PAID + ORDER_LINE_DISCOUNT_REMOVED + ORDER_LINE_DISCOUNT_UPDATED + ORDER_LINE_PRODUCT_DELETED + ORDER_LINE_VARIANT_DELETED + ORDER_MARKED_AS_PAID + ORDER_REPLACEMENT_CREATED + OTHER + OVERSOLD_ITEMS + PAYMENT_AUTHORIZED + PAYMENT_CAPTURED + PAYMENT_FAILED + PAYMENT_REFUNDED + PAYMENT_VOIDED + PLACED + PLACED_FROM_DRAFT + REMOVED_PRODUCTS + TRACKING_UPDATED + TRANSACTION_CAPTURE_REQUESTED + TRANSACTION_EVENT + TRANSACTION_REFUND_REQUESTED + TRANSACTION_VOID_REQUESTED + UPDATED_ADDRESS +} + +input OrderFilterInput { + authorizeStatus: [OrderAuthorizeStatusEnum!] + channels: [ID!] + chargeStatus: [OrderChargeStatusEnum!] + created: DateRangeInput + customer: String + giftCardBought: Boolean + giftCardUsed: Boolean + ids: [ID!] + isClickAndCollect: Boolean + isPreorder: Boolean + metadata: [MetadataFilter!] + numbers: [String!] + paymentStatus: [PaymentChargeStatusEnum!] + search: String + status: [OrderStatusFilter!] + updatedAt: DateTimeRangeInput +} + +""" +Filter shipping methods for order. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderFilterShippingMethods implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The order the event relates to.""" + order: Order + + """The application receiving the webhook.""" + recipient: App + + """ + Shipping methods that can be used with this checkout. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + shippingMethods: [ShippingMethod!] + + """Saleor version that triggered the event.""" + version: String +} + +""" +Creates new fulfillments for an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderFulfill { + errors: [OrderError!]! + + """List of created fulfillments.""" + fulfillments: [Fulfillment!] + + """Fulfilled order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input OrderFulfillInput { + """If true, then allow proceed fulfillment when stock is exceeded.""" + allowStockToBeExceeded: Boolean = false + + """List of items informing how to fulfill the order.""" + lines: [OrderFulfillLineInput!]! + + """If true, send an email notification to the customer.""" + notifyCustomer: Boolean + + """ + Fulfillment tracking number. + + Added in Saleor 3.6. + """ + trackingNumber: String +} + +input OrderFulfillLineInput { + """The ID of the order line.""" + orderLineId: ID + + """List of stock items to create.""" + stocks: [OrderFulfillStockInput!]! +} + +input OrderFulfillStockInput { + """The number of line items to be fulfilled from given warehouse.""" + quantity: Int! + + """ID of the warehouse from which the item will be fulfilled.""" + warehouse: ID! +} + +""" +Event sent when order is fulfilled. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderFulfilled implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The order the event relates to.""" + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Event sent when order is fully paid. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderFullyPaid implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The order the event relates to.""" + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""Represents order line of particular order.""" +type OrderLine implements Node & ObjectWithMetadata { + """ + List of allocations across warehouses. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + """ + allocations: [Allocation!] + digitalContentUrl: DigitalContentUrl + id: ID! + isShippingRequired: Boolean! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + productName: String! + productSku: String + productVariantId: String + quantity: Int! + quantityFulfilled: Int! + + """ + A quantity of items remaining to be fulfilled. + + Added in Saleor 3.1. + """ + quantityToFulfill: Int! + + """ + Denormalized tax class of the product in this order line. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + """ + taxClass: TaxClass + + """ + Denormalized public metadata of the tax class. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + taxClassMetadata: [MetadataItem!]! + + """ + Denormalized name of the tax class. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + taxClassName: String + + """ + Denormalized private metadata of the tax class. Requires staff permissions to access. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + taxClassPrivateMetadata: [MetadataItem!]! + taxRate: Float! + thumbnail( + """ + The format of the image. When not provided, format of the original image will be used. Must be provided together with the size value, otherwise original image will be returned. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + format: ThumbnailFormatEnum + + """ + Size of the image. If not provided, the original image will be returned. + """ + size: Int + ): Image + + """Price of the order line.""" + totalPrice: TaxedMoney! + + """Product name in the customer's language""" + translatedProductName: String! + + """Variant name in the customer's language""" + translatedVariantName: String! + + """ + Price of the single item in the order line without applied an order line discount. + """ + undiscountedUnitPrice: TaxedMoney! + + """The discount applied to the single order line.""" + unitDiscount: Money! + unitDiscountReason: String + + """Type of the discount: fixed or percent""" + unitDiscountType: DiscountValueTypeEnum + + """Value of the discount. Can store fixed value or percent value""" + unitDiscountValue: PositiveDecimal! + + """Price of the single item in the order line.""" + unitPrice: TaxedMoney! + + """ + A purchased product variant. Note: this field may be null if the variant has been removed from stock at all. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + variant: ProductVariant + variantName: String! +} + +input OrderLineCreateInput { + """ + Flag that allow force splitting the same variant into multiple lines by skipping the matching logic. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + forceNewLine: Boolean = false + + """Number of variant items ordered.""" + quantity: Int! + + """Product variant ID.""" + variantId: ID! +} + +""" +Deletes an order line from an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderLineDelete { + errors: [OrderError!]! + + """A related order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """An order line that was deleted.""" + orderLine: OrderLine +} + +""" +Remove discount applied to the order line. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderLineDiscountRemove { + errors: [OrderError!]! + + """Order which is related to line which has removed discount.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """Order line which has removed discount.""" + orderLine: OrderLine +} + +""" +Update discount for the order line. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderLineDiscountUpdate { + errors: [OrderError!]! + + """Order which is related to the discounted line.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """Order line which has been discounted.""" + orderLine: OrderLine +} + +input OrderLineInput { + """Number of variant items ordered.""" + quantity: Int! +} + +""" +Updates an order line of an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderLineUpdate { + errors: [OrderError!]! + + """Related order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + orderLine: OrderLine +} + +""" +Create order lines for an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderLinesCreate { + errors: [OrderError!]! + + """Related order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """List of added order lines.""" + orderLines: [OrderLine!] +} + +""" +Mark order as manually paid. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderMarkAsPaid { + errors: [OrderError!]! + + """Order marked as paid.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when order metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The order the event relates to.""" + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""An enumeration.""" +enum OrderOriginEnum { + CHECKOUT + DRAFT + REISSUE +} + +""" +Refund an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderRefund { + errors: [OrderError!]! + + """A refunded order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input OrderRefundFulfillmentLineInput { + """The ID of the fulfillment line to refund.""" + fulfillmentLineId: ID! + + """The number of items to be refunded.""" + quantity: Int! +} + +input OrderRefundLineInput { + """The ID of the order line to refund.""" + orderLineId: ID! + + """The number of items to be refunded.""" + quantity: Int! +} + +input OrderRefundProductsInput { + """The total amount of refund when the value is provided manually.""" + amountToRefund: PositiveDecimal + + """List of fulfilled lines to refund.""" + fulfillmentLines: [OrderRefundFulfillmentLineInput!] + + """ + If true, Saleor will refund shipping costs. If amountToRefund is providedincludeShippingCosts will be ignored. + """ + includeShippingCosts: Boolean = false + + """List of unfulfilled lines to refund.""" + orderLines: [OrderRefundLineInput!] +} + +input OrderReturnFulfillmentLineInput { + """The ID of the fulfillment line to return.""" + fulfillmentLineId: ID! + + """The number of items to be returned.""" + quantity: Int! + + """Determines, if the line should be added to replace order.""" + replace: Boolean = false +} + +input OrderReturnLineInput { + """The ID of the order line to return.""" + orderLineId: ID! + + """The number of items to be returned.""" + quantity: Int! + + """Determines, if the line should be added to replace order.""" + replace: Boolean = false +} + +input OrderReturnProductsInput { + """The total amount of refund when the value is provided manually.""" + amountToRefund: PositiveDecimal + + """List of fulfilled lines to return.""" + fulfillmentLines: [OrderReturnFulfillmentLineInput!] + + """ + If true, Saleor will refund shipping costs. If amountToRefund is providedincludeShippingCosts will be ignored. + """ + includeShippingCosts: Boolean = false + + """List of unfulfilled lines to return.""" + orderLines: [OrderReturnLineInput!] + + """If true, Saleor will call refund action for all lines.""" + refund: Boolean = false +} + +"""Order related settings from site settings.""" +type OrderSettings { + automaticallyConfirmAllNewOrders: Boolean! + automaticallyFulfillNonShippableGiftCard: Boolean! +} + +type OrderSettingsError { + """The error code.""" + code: OrderSettingsErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum OrderSettingsErrorCode { + INVALID +} + +""" +Update shop order settings. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderSettingsUpdate { + errors: [OrderSettingsError!]! + + """Order settings.""" + orderSettings: OrderSettings + orderSettingsErrors: [OrderSettingsError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input OrderSettingsUpdateInput { + """ + When disabled, all new orders from checkout will be marked as unconfirmed. When enabled orders from checkout will become unfulfilled immediately. + """ + automaticallyConfirmAllNewOrders: Boolean + + """ + When enabled, all non-shippable gift card orders will be fulfilled automatically. + """ + automaticallyFulfillNonShippableGiftCard: Boolean +} + +enum OrderSortField { + """ + Sort orders by creation date. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + CREATED_AT + + """ + Sort orders by creation date. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + CREATION_DATE + + """Sort orders by customer.""" + CUSTOMER + + """Sort orders by fulfillment status.""" + FULFILLMENT_STATUS + + """Sort orders by last modified at.""" + LAST_MODIFIED_AT + + """Sort orders by number.""" + NUMBER + + """Sort orders by payment.""" + PAYMENT + + """ + Sort orders by rank. Note: This option is available only with the `search` filter. + """ + RANK +} + +input OrderSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort orders by the selected field.""" + field: OrderSortField! +} + +"""An enumeration.""" +enum OrderStatus { + CANCELED + DRAFT + FULFILLED + PARTIALLY_FULFILLED + PARTIALLY_RETURNED + RETURNED + UNCONFIRMED + UNFULFILLED +} + +enum OrderStatusFilter { + CANCELED + FULFILLED + PARTIALLY_FULFILLED + READY_TO_CAPTURE + READY_TO_FULFILL + UNCONFIRMED + UNFULFILLED +} + +""" +Updates an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderUpdate { + errors: [OrderError!]! + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input OrderUpdateInput { + """Billing address of the customer.""" + billingAddress: AddressInput + + """ + External ID of this order. + + Added in Saleor 3.10. + """ + externalReference: String + + """Shipping address of the customer.""" + shippingAddress: AddressInput + + """Email address of the customer.""" + userEmail: String +} + +""" +Updates a shipping method of the order. Requires shipping method ID to update, when null is passed then currently assigned shipping method is removed. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderUpdateShipping { + errors: [OrderError!]! + + """Order with updated shipping method.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input OrderUpdateShippingInput { + """ + ID of the selected shipping method, pass null to remove currently assigned shipping method. + """ + shippingMethod: ID +} + +""" +Event sent when order is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The order the event relates to.""" + order: Order + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Void an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderVoid { + errors: [OrderError!]! + + """A voided order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +A static page that can be manually added by a shop operator through the dashboard. +""" +type Page implements Node & ObjectWithMetadata { + """List of attributes assigned to this product.""" + attributes: [SelectedAttribute!]! + + """ + Content of the page. + + Rich text format. For reference see https://editorjs.io/ + """ + content: JSONString + + """ + Content of the page. + + Rich text format. For reference see https://editorjs.io/ + """ + contentJson: JSONString! @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `content` field instead.") + created: DateTime! + id: ID! + isPublished: Boolean! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + pageType: PageType! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + publicationDate: Date @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `publishedAt` field to fetch the publication date.") + + """ + The page publication date. + + Added in Saleor 3.3. + """ + publishedAt: DateTime + seoDescription: String + seoTitle: String + slug: String! + title: String! + + """Returns translated page fields for the given language code.""" + translation( + """A language code to return the translation for page.""" + languageCode: LanguageCodeEnum! + ): PageTranslation +} + +""" +Assign attributes to a given page type. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type PageAttributeAssign { + errors: [PageError!]! + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """The updated page type.""" + pageType: PageType +} + +""" +Unassign attributes from a given page type. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type PageAttributeUnassign { + errors: [PageError!]! + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """The updated page type.""" + pageType: PageType +} + +""" +Deletes pages. + +Requires one of the following permissions: MANAGE_PAGES. +""" +type PageBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [PageError!]! + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Publish pages. + +Requires one of the following permissions: MANAGE_PAGES. +""" +type PageBulkPublish { + """Returns how many objects were affected.""" + count: Int! + errors: [PageError!]! + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type PageCountableConnection { + edges: [PageCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type PageCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: Page! +} + +""" +Creates a new page. + +Requires one of the following permissions: MANAGE_PAGES. +""" +type PageCreate { + errors: [PageError!]! + page: Page + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input PageCreateInput { + """List of attributes.""" + attributes: [AttributeValueInput!] + + """ + Page content. + + Rich text format. For reference see https://editorjs.io/ + """ + content: JSONString + + """Determines if page is visible in the storefront.""" + isPublished: Boolean + + """ID of the page type that page belongs to.""" + pageType: ID! + + """ + Publication date. ISO 8601 standard. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `publishedAt` field instead. + """ + publicationDate: String + + """ + Publication date time. ISO 8601 standard. + + Added in Saleor 3.3. + """ + publishedAt: DateTime + + """Search engine optimization fields.""" + seo: SeoInput + + """Page internal name.""" + slug: String + + """Page title.""" + title: String +} + +""" +Event sent when new page is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PageCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The page the event relates to.""" + page: Page + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes a page. + +Requires one of the following permissions: MANAGE_PAGES. +""" +type PageDelete { + errors: [PageError!]! + page: Page + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when page is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PageDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The page the event relates to.""" + page: Page + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +type PageError { + """List of attributes IDs which causes the error.""" + attributes: [ID!] + + """The error code.""" + code: PageErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of attribute values IDs which causes the error.""" + values: [ID!] +} + +"""An enumeration.""" +enum PageErrorCode { + ATTRIBUTE_ALREADY_ASSIGNED + DUPLICATED_INPUT_ITEM + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE +} + +input PageFilterInput { + ids: [ID!] + metadata: [MetadataFilter!] + pageTypes: [ID!] + search: String + slugs: [String!] +} + +""" +The Relay compliant `PageInfo` type, containing data necessary to paginate this connection. +""" +type PageInfo { + """When paginating forwards, the cursor to continue.""" + endCursor: String + + """When paginating forwards, are there more items?""" + hasNextPage: Boolean! + + """When paginating backwards, are there more items?""" + hasPreviousPage: Boolean! + + """When paginating backwards, the cursor to continue.""" + startCursor: String +} + +input PageInput { + """List of attributes.""" + attributes: [AttributeValueInput!] + + """ + Page content. + + Rich text format. For reference see https://editorjs.io/ + """ + content: JSONString + + """Determines if page is visible in the storefront.""" + isPublished: Boolean + + """ + Publication date. ISO 8601 standard. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `publishedAt` field instead. + """ + publicationDate: String + + """ + Publication date time. ISO 8601 standard. + + Added in Saleor 3.3. + """ + publishedAt: DateTime + + """Search engine optimization fields.""" + seo: SeoInput + + """Page internal name.""" + slug: String + + """Page title.""" + title: String +} + +""" +Reorder page attribute values. + +Requires one of the following permissions: MANAGE_PAGES. +""" +type PageReorderAttributeValues { + errors: [PageError!]! + + """Page from which attribute values are reordered.""" + page: Page + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +enum PageSortField { + """ + Sort pages by creation date. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + CREATED_AT + + """ + Sort pages by creation date. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + CREATION_DATE + + """ + Sort pages by publication date. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + PUBLICATION_DATE + + """ + Sort pages by publication date. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + PUBLISHED_AT + + """Sort pages by slug.""" + SLUG + + """Sort pages by title.""" + TITLE + + """Sort pages by visibility.""" + VISIBILITY +} + +input PageSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort pages by the selected field.""" + field: PageSortField! +} + +type PageTranslatableContent implements Node { + """List of page content attribute values that can be translated.""" + attributeValues: [AttributeValueTranslatableContent!]! + + """ + Content of the page. + + Rich text format. For reference see https://editorjs.io/ + """ + content: JSONString + + """ + Content of the page. + + Rich text format. For reference see https://editorjs.io/ + """ + contentJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `content` field instead.") + id: ID! + + """ + A static page that can be manually added by a shop operator through the dashboard. + """ + page: Page @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") + seoDescription: String + seoTitle: String + title: String! + + """Returns translated page fields for the given language code.""" + translation( + """A language code to return the translation for page.""" + languageCode: LanguageCodeEnum! + ): PageTranslation +} + +""" +Creates/updates translations for a page. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type PageTranslate { + errors: [TranslationError!]! + page: PageTranslatableContent + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type PageTranslation implements Node { + """ + Translated content of the page. + + Rich text format. For reference see https://editorjs.io/ + """ + content: JSONString + + """ + Translated description of the page. + + Rich text format. For reference see https://editorjs.io/ + """ + contentJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `content` field instead.") + id: ID! + + """Translation language.""" + language: LanguageDisplay! + seoDescription: String + seoTitle: String + title: String +} + +input PageTranslationInput { + """ + Translated page content. + + Rich text format. For reference see https://editorjs.io/ + """ + content: JSONString + seoDescription: String + seoTitle: String + title: String +} + +""" +Represents a type of page. It defines what attributes are available to pages of this type. +""" +type PageType implements Node & ObjectWithMetadata { + """Page attributes of that page type.""" + attributes: [Attribute!] + + """ + Attributes that can be assigned to the page type. + + Requires one of the following permissions: MANAGE_PAGES. + """ + availableAttributes( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + filter: AttributeFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): AttributeCountableConnection + + """ + Whether page type has pages assigned. + + Requires one of the following permissions: MANAGE_PAGES. + """ + hasPages: Boolean + id: ID! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + slug: String! +} + +""" +Delete page types. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type PageTypeBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [PageError!]! + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type PageTypeCountableConnection { + edges: [PageTypeCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type PageTypeCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: PageType! +} + +""" +Create a new page type. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type PageTypeCreate { + errors: [PageError!]! + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + pageType: PageType +} + +input PageTypeCreateInput { + """List of attribute IDs to be assigned to the page type.""" + addAttributes: [ID!] + + """Name of the page type.""" + name: String + + """Page type slug.""" + slug: String +} + +""" +Event sent when new page type is created. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PageTypeCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The page type the event relates to.""" + pageType: PageType + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Delete a page type. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type PageTypeDelete { + errors: [PageError!]! + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + pageType: PageType +} + +""" +Event sent when page type is deleted. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PageTypeDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The page type the event relates to.""" + pageType: PageType + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +input PageTypeFilterInput { + search: String + slugs: [String!] +} + +""" +Reorder the attributes of a page type. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type PageTypeReorderAttributes { + errors: [PageError!]! + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """Page type from which attributes are reordered.""" + pageType: PageType +} + +enum PageTypeSortField { + """Sort page types by name.""" + NAME + + """Sort page types by slug.""" + SLUG +} + +input PageTypeSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort page types by the selected field.""" + field: PageTypeSortField! +} + +""" +Update page type. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type PageTypeUpdate { + errors: [PageError!]! + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + pageType: PageType +} + +input PageTypeUpdateInput { + """List of attribute IDs to be assigned to the page type.""" + addAttributes: [ID!] + + """Name of the page type.""" + name: String + + """List of attribute IDs to be assigned to the page type.""" + removeAttributes: [ID!] + + """Page type slug.""" + slug: String +} + +""" +Event sent when page type is updated. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PageTypeUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The page type the event relates to.""" + pageType: PageType + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Updates an existing page. + +Requires one of the following permissions: MANAGE_PAGES. +""" +type PageUpdate { + errors: [PageError!]! + page: Page + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when page is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PageUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The page the event relates to.""" + page: Page + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Change the password of the logged in user. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type PasswordChange { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + + """A user instance with a new password.""" + user: User +} + +"""Represents a payment of a given type.""" +type Payment implements Node & ObjectWithMetadata { + """ + List of actions that can be performed in the current state of a payment. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + actions: [OrderAction!]! + + """ + Maximum amount of money that can be captured. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + availableCaptureAmount: Money + + """ + Maximum amount of money that can be refunded. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + availableRefundAmount: Money + + """Total amount captured for this payment.""" + capturedAmount: Money + + """Internal payment status.""" + chargeStatus: PaymentChargeStatusEnum! + checkout: Checkout + created: DateTime! + + """The details of the card used for this payment.""" + creditCard: CreditCard + + """ + IP address of the user who created the payment. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + customerIpAddress: String + gateway: String! + id: ID! + isActive: Boolean! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + modified: DateTime! + order: Order + paymentMethodType: String! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + token: String! + + """Total amount of the payment.""" + total: Money + + """ + List of all transactions within this payment. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + transactions: [Transaction!] +} + +""" +Authorize payment. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PaymentAuthorize implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """Look up a payment.""" + payment: Payment + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Captures the authorized payment amount. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type PaymentCapture { + errors: [PaymentError!]! + + """Updated payment.""" + payment: Payment + paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Capture payment. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PaymentCaptureEvent implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """Look up a payment.""" + payment: Payment + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""An enumeration.""" +enum PaymentChargeStatusEnum { + CANCELLED + FULLY_CHARGED + FULLY_REFUNDED + NOT_CHARGED + PARTIALLY_CHARGED + PARTIALLY_REFUNDED + PENDING + REFUSED +} + +"""Check payment balance.""" +type PaymentCheckBalance { + """Response from the gateway.""" + data: JSONString + errors: [PaymentError!]! + paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input PaymentCheckBalanceInput { + """Information about card.""" + card: CardInput! + + """Slug of a channel for which the data should be returned.""" + channel: String! + + """An ID of a payment gateway to check.""" + gatewayId: String! + + """Payment method name.""" + method: String! +} + +""" +Confirm payment. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PaymentConfirmEvent implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """Look up a payment.""" + payment: Payment + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +type PaymentCountableConnection { + edges: [PaymentCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type PaymentCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: Payment! +} + +type PaymentError { + """The error code.""" + code: PaymentErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of variant IDs which causes the error.""" + variants: [ID!] +} + +"""An enumeration.""" +enum PaymentErrorCode { + BALANCE_CHECK_ERROR + BILLING_ADDRESS_NOT_SET + CHANNEL_INACTIVE + CHECKOUT_EMAIL_NOT_SET + GRAPHQL_ERROR + INVALID + INVALID_SHIPPING_METHOD + NOT_FOUND + NOT_SUPPORTED_GATEWAY + NO_CHECKOUT_LINES + PARTIAL_PAYMENT_NOT_ALLOWED + PAYMENT_ERROR + REQUIRED + SHIPPING_ADDRESS_NOT_SET + SHIPPING_METHOD_NOT_SET + UNAVAILABLE_VARIANT_IN_CHANNEL + UNIQUE +} + +input PaymentFilterInput { + checkouts: [ID!] + + """ + Filter by ids. + + Added in Saleor 3.8. + """ + ids: [ID!] +} + +""" +Available payment gateway backend with configuration necessary to setup client. +""" +type PaymentGateway { + """Payment gateway client configuration.""" + config: [GatewayConfigLine!]! + + """Payment gateway supported currencies.""" + currencies: [String!]! + + """Payment gateway ID.""" + id: ID! + + """Payment gateway name.""" + name: String! +} + +"""Initializes payment process when it is required by gateway.""" +type PaymentInitialize { + errors: [PaymentError!]! + initializedPayment: PaymentInitialized + paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Server-side data generated by a payment gateway. Optional step when the payment provider requires an additional action to initialize payment session. +""" +type PaymentInitialized { + """Initialized data by gateway.""" + data: JSONString + + """ID of a payment gateway.""" + gateway: String! + + """Payment gateway name.""" + name: String! +} + +input PaymentInput { + """ + Total amount of the transaction, including all taxes and discounts. If no amount is provided, the checkout total will be used. + """ + amount: PositiveDecimal + + """A gateway to use with that payment.""" + gateway: String! + + """ + User public metadata. + + Added in Saleor 3.1. + """ + metadata: [MetadataInput!] + + """ + URL of a storefront view where user should be redirected after requiring additional actions. Payment with additional actions will not be finished if this field is not provided. + """ + returnUrl: String + + """ + Payment store type. + + Added in Saleor 3.1. + """ + storePaymentMethod: StorePaymentMethodEnum = NONE + + """ + Client-side generated payment token, representing customer's billing data in a secure manner. + """ + token: String +} + +""" +List payment gateways. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PaymentListGateways implements Event { + """The checkout the event relates to.""" + checkout: Checkout + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Process payment. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PaymentProcessEvent implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """Look up a payment.""" + payment: Payment + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Refunds the captured payment amount. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type PaymentRefund { + errors: [PaymentError!]! + + """Updated payment.""" + payment: Payment + paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Refund payment. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PaymentRefundEvent implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """Look up a payment.""" + payment: Payment + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Represents a payment source stored for user in payment gateway, such as credit card. +""" +type PaymentSource { + """Stored credit card details if available.""" + creditCardInfo: CreditCard + + """Payment gateway name.""" + gateway: String! + + """ + List of public metadata items. + + Added in Saleor 3.1. + + Can be accessed without permissions. + """ + metadata: [MetadataItem!]! + + """ID of stored payment method.""" + paymentMethodId: String +} + +""" +Voids the authorized payment. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type PaymentVoid { + errors: [PaymentError!]! + + """Updated payment.""" + payment: Payment + paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Void payment. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PaymentVoidEvent implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """Look up a payment.""" + payment: Payment + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""Represents a permission object in a friendly form.""" +type Permission { + """Internal code for permission.""" + code: PermissionEnum! + + """Describe action(s) allowed to do by permission.""" + name: String! +} + +"""An enumeration.""" +enum PermissionEnum { + HANDLE_CHECKOUTS + HANDLE_PAYMENTS + HANDLE_TAXES + IMPERSONATE_USER + MANAGE_APPS + MANAGE_CHANNELS + MANAGE_CHECKOUTS + MANAGE_DISCOUNTS + MANAGE_GIFT_CARD + MANAGE_MENUS + MANAGE_OBSERVABILITY + MANAGE_ORDERS + MANAGE_PAGES + MANAGE_PAGE_TYPES_AND_ATTRIBUTES + MANAGE_PLUGINS + MANAGE_PRODUCTS + MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES + MANAGE_SETTINGS + MANAGE_SHIPPING + MANAGE_STAFF + MANAGE_TAXES + MANAGE_TRANSLATIONS + MANAGE_USERS +} + +""" +Create new permission group. Apps are not allowed to perform this mutation. + +Requires one of the following permissions: MANAGE_STAFF. +""" +type PermissionGroupCreate { + errors: [PermissionGroupError!]! + group: Group + permissionGroupErrors: [PermissionGroupError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input PermissionGroupCreateInput { + """List of permission code names to assign to this group.""" + addPermissions: [PermissionEnum!] + + """List of users to assign to this group.""" + addUsers: [ID!] + + """Group name.""" + name: String! +} + +""" +Event sent when new permission group is created. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PermissionGroupCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The permission group the event relates to.""" + permissionGroup: Group + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Delete permission group. Apps are not allowed to perform this mutation. + +Requires one of the following permissions: MANAGE_STAFF. +""" +type PermissionGroupDelete { + errors: [PermissionGroupError!]! + group: Group + permissionGroupErrors: [PermissionGroupError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when permission group is deleted. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PermissionGroupDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The permission group the event relates to.""" + permissionGroup: Group + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +type PermissionGroupError { + """The error code.""" + code: PermissionGroupErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of permissions which causes the error.""" + permissions: [PermissionEnum!] + + """List of user IDs which causes the error.""" + users: [ID!] +} + +"""An enumeration.""" +enum PermissionGroupErrorCode { + ASSIGN_NON_STAFF_MEMBER + CANNOT_REMOVE_FROM_LAST_GROUP + DUPLICATED_INPUT_ITEM + LEFT_NOT_MANAGEABLE_PERMISSION + OUT_OF_SCOPE_PERMISSION + OUT_OF_SCOPE_USER + REQUIRED + UNIQUE +} + +input PermissionGroupFilterInput { + ids: [ID!] + search: String +} + +enum PermissionGroupSortField { + """Sort permission group accounts by name.""" + NAME +} + +input PermissionGroupSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort permission group by the selected field.""" + field: PermissionGroupSortField! +} + +""" +Update permission group. Apps are not allowed to perform this mutation. + +Requires one of the following permissions: MANAGE_STAFF. +""" +type PermissionGroupUpdate { + errors: [PermissionGroupError!]! + group: Group + permissionGroupErrors: [PermissionGroupError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input PermissionGroupUpdateInput { + """List of permission code names to assign to this group.""" + addPermissions: [PermissionEnum!] + + """List of users to assign to this group.""" + addUsers: [ID!] + + """Group name.""" + name: String + + """List of permission code names to unassign from this group.""" + removePermissions: [PermissionEnum!] + + """List of users to unassign from this group.""" + removeUsers: [ID!] +} + +""" +Event sent when permission group is updated. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PermissionGroupUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The permission group the event relates to.""" + permissionGroup: Group + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""Plugin.""" +type Plugin { + """Channel-specific plugin configuration.""" + channelConfigurations: [PluginConfiguration!]! + + """Description of the plugin.""" + description: String! + + """Global configuration of the plugin (not channel-specific).""" + globalConfiguration: PluginConfiguration + + """Identifier of the plugin.""" + id: ID! + + """Name of the plugin.""" + name: String! +} + +"""Stores information about a configuration of plugin.""" +type PluginConfiguration { + """Determines if plugin is active or not.""" + active: Boolean! + + """The channel to which the plugin configuration is assigned to.""" + channel: Channel + + """Configuration of the plugin.""" + configuration: [ConfigurationItem!] +} + +enum PluginConfigurationType { + GLOBAL + PER_CHANNEL +} + +type PluginCountableConnection { + edges: [PluginCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type PluginCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: Plugin! +} + +type PluginError { + """The error code.""" + code: PluginErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum PluginErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND + PLUGIN_MISCONFIGURED + REQUIRED + UNIQUE +} + +input PluginFilterInput { + search: String + statusInChannels: PluginStatusInChannelsInput + type: PluginConfigurationType +} + +enum PluginSortField { + IS_ACTIVE + NAME +} + +input PluginSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort plugins by the selected field.""" + field: PluginSortField! +} + +input PluginStatusInChannelsInput { + active: Boolean! + channels: [ID!]! +} + +""" +Update plugin configuration. + +Requires one of the following permissions: MANAGE_PLUGINS. +""" +type PluginUpdate { + errors: [PluginError!]! + plugin: Plugin + pluginsErrors: [PluginError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input PluginUpdateInput { + """Indicates whether the plugin should be enabled.""" + active: Boolean + + """Configuration of the plugin.""" + configuration: [ConfigurationItemInput!] +} + +""" +Positive Decimal scalar implementation. + +Should be used in places where value must be positive. +""" +scalar PositiveDecimal + +"""An enumeration.""" +enum PostalCodeRuleInclusionTypeEnum { + EXCLUDE + INCLUDE +} + +"""Represents preorder settings for product variant.""" +type PreorderData { + """Preorder end date.""" + endDate: DateTime + + """ + Total number of sold product variant during preorder. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + globalSoldUnits: Int! + + """ + The global preorder threshold for product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + globalThreshold: Int +} + +input PreorderSettingsInput { + """The end date for preorder.""" + endDate: DateTime + + """The global threshold for preorder variant.""" + globalThreshold: Int +} + +"""Represents preorder variant data for channel.""" +type PreorderThreshold { + """Preorder threshold for product variant in this channel.""" + quantity: Int + + """Number of sold product variant in this channel.""" + soldUnits: Int! +} + +input PriceInput { + """Amount of money.""" + amount: PositiveDecimal! + + """Currency code.""" + currency: String! +} + +input PriceRangeInput { + """Price greater than or equal to.""" + gte: Float + + """Price less than or equal to.""" + lte: Float +} + +"""Represents an individual item for sale in the storefront.""" +type Product implements Node & ObjectWithMetadata { + """ + Get a single attribute attached to product by attribute slug. + + Added in Saleor 3.9. + """ + attribute( + """Slug of the attribute""" + slug: String! + ): SelectedAttribute + + """List of attributes assigned to this product.""" + attributes: [SelectedAttribute!]! + + """Date when product is available for purchase.""" + availableForPurchase: Date @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `availableForPurchaseAt` field to fetch the available for purchase date.") + + """Date when product is available for purchase.""" + availableForPurchaseAt: DateTime + category: Category + + """ + Channel given to retrieve this product. Also used by federation gateway to resolve this object in a federated query. + """ + channel: String + + """ + List of availability in channels for the product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + channelListings: [ProductChannelListing!] + chargeTaxes: Boolean! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `Channel.taxConfiguration` field to determine whether tax collection is enabled.") + + """ + List of collections for the product. Requires the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + collections: [Collection!] + created: DateTime! + defaultVariant: ProductVariant + + """ + Description of the product. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Description of the product. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") + + """ + External ID of this product. + + Added in Saleor 3.10. + """ + externalReference: String + id: ID! + + """Get a single product image by ID.""" + imageById( + """ID of a product image.""" + id: ID + ): ProductImage @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `mediaById` field instead.") + + """List of images for the product.""" + images: [ProductImage!] @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `media` field instead.") + + """Whether the product is in stock and visible or not.""" + isAvailable( + """ + Destination address used to find warehouses where stock availability for this product is checked. If address is empty, uses `Shop.companyAddress` or fallbacks to server's `settings.DEFAULT_COUNTRY` configuration. + """ + address: AddressInput + ): Boolean + + """Whether the product is available for purchase.""" + isAvailableForPurchase: Boolean + + """List of media for the product.""" + media( + """ + Sort media. + + Added in Saleor 3.9. + """ + sortBy: MediaSortingInput + ): [ProductMedia!] + + """Get a single product media by ID.""" + mediaById( + """ID of a product media.""" + id: ID + ): ProductMedia + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + + """ + Lists the storefront product's pricing, the current price and discounts, only meant for displaying. + """ + pricing( + """ + Destination address used to find warehouses where stock availability for this product is checked. If address is empty, uses `Shop.companyAddress` or fallbacks to server's `settings.DEFAULT_COUNTRY` configuration. + """ + address: AddressInput + ): ProductPricingInfo + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + productType: ProductType! + rating: Float + seoDescription: String + seoTitle: String + slug: String! + + """ + Tax class assigned to this product type. All products of this product type use this tax class, unless it's overridden in the `Product` type. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + """ + taxClass: TaxClass + + """A type of tax. Assigned by enabled tax gateway""" + taxType: TaxType @deprecated(reason: "This field will be removed in Saleor 4.0. Use `taxClass` field instead.") + thumbnail( + """ + The format of the image. When not provided, format of the original image will be used. Must be provided together with the size value, otherwise original image will be returned. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + format: ThumbnailFormatEnum + + """ + Size of the image. If not provided, the original image will be returned. + """ + size: Int + ): Image + + """Returns translated product fields for the given language code.""" + translation( + """A language code to return the translation for product.""" + languageCode: LanguageCodeEnum! + ): ProductTranslation + updatedAt: DateTime! + + """ + Get a single variant by SKU or ID. + + Added in Saleor 3.9. + """ + variant( + """ID of the variant.""" + id: ID + + """SKU of the variant.""" + sku: String + ): ProductVariant + + """ + List of variants for the product. Requires the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + variants: [ProductVariant!] + weight: Weight +} + +""" +Assign attributes to a given product type. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductAttributeAssign { + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """The updated product type.""" + productType: ProductType +} + +input ProductAttributeAssignInput { + """The ID of the attribute to assign.""" + id: ID! + + """The attribute type to be assigned as.""" + type: ProductAttributeType! + + """ + Whether attribute is allowed in variant selection. Allowed types are: ['dropdown', 'boolean', 'swatch', 'numeric']. + + Added in Saleor 3.1. + """ + variantSelection: Boolean +} + +""" +Update attributes assigned to product variant for given product type. + +Added in Saleor 3.1. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductAttributeAssignmentUpdate { + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """The updated product type.""" + productType: ProductType +} + +input ProductAttributeAssignmentUpdateInput { + """The ID of the attribute to assign.""" + id: ID! + + """ + Whether attribute is allowed in variant selection. Allowed types are: ['dropdown', 'boolean', 'swatch', 'numeric']. + + Added in Saleor 3.1. + """ + variantSelection: Boolean! +} + +enum ProductAttributeType { + PRODUCT + VARIANT +} + +""" +Un-assign attributes from a given product type. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductAttributeUnassign { + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """The updated product type.""" + productType: ProductType +} + +""" +Deletes products. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +"""Represents product channel listing.""" +type ProductChannelListing implements Node { + availableForPurchase: Date @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `availableForPurchaseAt` field to fetch the available for purchase date.") + + """ + The product available for purchase date time. + + Added in Saleor 3.3. + """ + availableForPurchaseAt: DateTime + channel: Channel! + + """The price of the cheapest variant (including discounts).""" + discountedPrice: Money + id: ID! + + """Whether the product is available for purchase.""" + isAvailableForPurchase: Boolean + isPublished: Boolean! + + """ + Range of margin percentage value. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + margin: Margin + + """ + Lists the storefront product's pricing, the current price and discounts, only meant for displaying. + """ + pricing( + """ + Destination address used to find warehouses where stock availability for this product is checked. If address is empty, uses `Shop.companyAddress` or fallbacks to server's `settings.DEFAULT_COUNTRY` configuration. + """ + address: AddressInput + ): ProductPricingInfo + publicationDate: Date @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `publishedAt` field to fetch the publication date.") + + """ + The product publication date time. + + Added in Saleor 3.3. + """ + publishedAt: DateTime + + """ + Purchase cost of product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + purchaseCost: MoneyRange + visibleInListings: Boolean! +} + +input ProductChannelListingAddInput { + """List of variants to which the channel should be assigned.""" + addVariants: [ID!] + + """ + A start date time from which a product will be available for purchase. When not set and `isAvailable` is set to True, the current day is assumed. + + Added in Saleor 3.3. + """ + availableForPurchaseAt: DateTime + + """ + A start date from which a product will be available for purchase. When not set and isAvailable is set to True, the current day is assumed. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `availableForPurchaseAt` field instead. + """ + availableForPurchaseDate: Date + + """ID of a channel.""" + channelId: ID! + + """Determine if product should be available for purchase.""" + isAvailableForPurchase: Boolean + + """Determines if object is visible to customers.""" + isPublished: Boolean + + """ + Publication date. ISO 8601 standard. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `publishedAt` field instead. + """ + publicationDate: Date + + """ + Publication date time. ISO 8601 standard. + + Added in Saleor 3.3. + """ + publishedAt: DateTime + + """List of variants from which the channel should be unassigned.""" + removeVariants: [ID!] + + """ + Determines if product is visible in product listings (doesn't apply to product collections). + """ + visibleInListings: Boolean +} + +type ProductChannelListingError { + """List of attributes IDs which causes the error.""" + attributes: [ID!] + + """List of channels IDs which causes the error.""" + channels: [ID!] + + """The error code.""" + code: ProductErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of attribute values IDs which causes the error.""" + values: [ID!] + + """List of variants IDs which causes the error.""" + variants: [ID!] +} + +""" +Manage product's availability in channels. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductChannelListingUpdate { + errors: [ProductChannelListingError!]! + + """An updated product instance.""" + product: Product + productChannelListingErrors: [ProductChannelListingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input ProductChannelListingUpdateInput { + """List of channels from which the product should be unassigned.""" + removeChannels: [ID!] + + """List of channels to which the product should be assigned or updated.""" + updateChannels: [ProductChannelListingAddInput!] +} + +type ProductCountableConnection { + edges: [ProductCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type ProductCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: Product! +} + +""" +Creates a new product. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductCreate { + errors: [ProductError!]! + product: Product + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input ProductCreateInput { + """List of attributes.""" + attributes: [AttributeValueInput!] + + """ID of the product's category.""" + category: ID + + """ + Determine if taxes are being charged for the product. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `Channel.taxConfiguration` to configure whether tax collection is enabled. + """ + chargeTaxes: Boolean + + """List of IDs of collections that the product belongs to.""" + collections: [ID!] + + """ + Product description. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + External ID of this product. + + Added in Saleor 3.10. + """ + externalReference: String + + """ + Fields required to update the product metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """Product name.""" + name: String + + """ + Fields required to update the product private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """ID of the type that product belongs to.""" + productType: ID! + + """Defines the product rating value.""" + rating: Float + + """Search engine optimization fields.""" + seo: SeoInput + + """Product slug.""" + slug: String + + """ + ID of a tax class to assign to this product. If not provided, product will use the tax class which is assigned to the product type. + """ + taxClass: ID + + """ + Tax rate for enabled tax gateway. + + DEPRECATED: this field will be removed in Saleor 4.0. Use tax classes to control the tax calculation for a product. + """ + taxCode: String + + """Weight of the Product.""" + weight: WeightScalar +} + +""" +Event sent when new product is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductCreated implements Event { + """The category of the product.""" + category: Category + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The product the event relates to.""" + product( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Product + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes a product. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductDelete { + errors: [ProductError!]! + product: Product + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when product is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductDeleted implements Event { + """The category of the product.""" + category: Category + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The product the event relates to.""" + product( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Product + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +type ProductError { + """List of attributes IDs which causes the error.""" + attributes: [ID!] + + """The error code.""" + code: ProductErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of attribute values IDs which causes the error.""" + values: [ID!] +} + +"""An enumeration.""" +enum ProductErrorCode { + ALREADY_EXISTS + ATTRIBUTE_ALREADY_ASSIGNED + ATTRIBUTE_CANNOT_BE_ASSIGNED + ATTRIBUTE_VARIANTS_DISABLED + CANNOT_MANAGE_PRODUCT_WITHOUT_VARIANT + DUPLICATED_INPUT_ITEM + GRAPHQL_ERROR + INVALID + MEDIA_ALREADY_ASSIGNED + NOT_FOUND + NOT_PRODUCTS_IMAGE + NOT_PRODUCTS_VARIANT + PREORDER_VARIANT_CANNOT_BE_DEACTIVATED + PRODUCT_NOT_ASSIGNED_TO_CHANNEL + PRODUCT_WITHOUT_CATEGORY + REQUIRED + UNIQUE + UNSUPPORTED_MEDIA_PROVIDER + VARIANT_NO_DIGITAL_CONTENT +} + +enum ProductFieldEnum { + CATEGORY + CHARGE_TAXES + COLLECTIONS + DESCRIPTION + NAME + PRODUCT_MEDIA + PRODUCT_TYPE + PRODUCT_WEIGHT + VARIANT_ID + VARIANT_MEDIA + VARIANT_SKU + VARIANT_WEIGHT +} + +input ProductFilterInput { + attributes: [AttributeInput!] + + """ + Filter by the date of availability for purchase. + + Added in Saleor 3.8. + """ + availableFrom: DateTime + categories: [ID!] + + """ + Specifies the channel by which the data should be filtered. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String + collections: [ID!] + + """Filter on whether product is a gift card or not.""" + giftCard: Boolean + hasCategory: Boolean + hasPreorderedVariants: Boolean + ids: [ID!] + + """ + Filter by availability for purchase. + + Added in Saleor 3.8. + """ + isAvailable: Boolean + isPublished: Boolean + + """ + Filter by visibility in product listings. + + Added in Saleor 3.8. + """ + isVisibleInListing: Boolean + metadata: [MetadataFilter!] + + """Filter by the lowest variant price after discounts.""" + minimalPrice: PriceRangeInput + price: PriceRangeInput + productTypes: [ID!] + + """ + Filter by the publication date. + + Added in Saleor 3.8. + """ + publishedFrom: DateTime + search: String + slugs: [String!] + + """Filter by variants having specific stock status.""" + stockAvailability: StockAvailability + stocks: ProductStockFilterInput + + """Filter by when was the most recent update.""" + updatedAt: DateTimeRangeInput +} + +"""Represents a product image.""" +type ProductImage { + """The alt text of the image.""" + alt: String + + """The ID of the image.""" + id: ID! + + """ + The new relative sorting position of the item (from -inf to +inf). 1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged. + """ + sortOrder: Int + url( + """ + The format of the image. When not provided, format of the original image will be used. Must be provided together with the size value, otherwise original image will be returned. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + format: ThumbnailFormatEnum + + """ + Size of the image. If not provided, the original image will be returned. + """ + size: Int + ): String! +} + +input ProductInput { + """List of attributes.""" + attributes: [AttributeValueInput!] + + """ID of the product's category.""" + category: ID + + """ + Determine if taxes are being charged for the product. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `Channel.taxConfiguration` to configure whether tax collection is enabled. + """ + chargeTaxes: Boolean + + """List of IDs of collections that the product belongs to.""" + collections: [ID!] + + """ + Product description. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + External ID of this product. + + Added in Saleor 3.10. + """ + externalReference: String + + """ + Fields required to update the product metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """Product name.""" + name: String + + """ + Fields required to update the product private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """Defines the product rating value.""" + rating: Float + + """Search engine optimization fields.""" + seo: SeoInput + + """Product slug.""" + slug: String + + """ + ID of a tax class to assign to this product. If not provided, product will use the tax class which is assigned to the product type. + """ + taxClass: ID + + """ + Tax rate for enabled tax gateway. + + DEPRECATED: this field will be removed in Saleor 4.0. Use tax classes to control the tax calculation for a product. + """ + taxCode: String + + """Weight of the Product.""" + weight: WeightScalar +} + +"""Represents a product media.""" +type ProductMedia implements Node { + alt: String! + id: ID! + oembedData: JSONString! + sortOrder: Int + type: ProductMediaType! + url( + """ + The format of the image. When not provided, format of the original image will be used. Must be provided together with the size value, otherwise original image will be returned. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + format: ThumbnailFormatEnum + + """ + Size of the image. If not provided, the original image will be returned. + """ + size: Int + ): String! +} + +""" +Deletes product media. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductMediaBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Create a media object (image or video URL) associated with product. For image, this mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductMediaCreate { + errors: [ProductError!]! + media: ProductMedia + product: Product + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input ProductMediaCreateInput { + """Alt text for a product media.""" + alt: String + + """Represents an image file in a multipart request.""" + image: Upload + + """Represents an URL to an external media.""" + mediaUrl: String + + """ID of an product.""" + product: ID! +} + +""" +Deletes a product media. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductMediaDelete { + errors: [ProductError!]! + media: ProductMedia + product: Product + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Changes ordering of the product media. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductMediaReorder { + errors: [ProductError!]! + media: [ProductMedia!] + product: Product + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +"""An enumeration.""" +enum ProductMediaType { + IMAGE + VIDEO +} + +""" +Updates a product media. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductMediaUpdate { + errors: [ProductError!]! + media: ProductMedia + product: Product + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input ProductMediaUpdateInput { + """Alt text for a product media.""" + alt: String +} + +""" +Event sent when product metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductMetadataUpdated implements Event { + """The category of the product.""" + category: Category + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The product the event relates to.""" + product( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Product + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +input ProductOrder { + """ + Sort product by the selected attribute's values. + Note: this doesn't take translations into account yet. + """ + attributeId: ID + + """ + Specifies the channel in which to sort the data. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String + + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort products by the selected field.""" + field: ProductOrderField +} + +enum ProductOrderField { + """ + Sort products by collection. Note: This option is available only for the `Collection.products` query. + + This option requires a channel filter to work as the values can vary between channels. + """ + COLLECTION + + """ + Sort products by creation date. + + Added in Saleor 3.8. + """ + CREATED_AT + + """Sort products by update date.""" + DATE + + """Sort products by update date.""" + LAST_MODIFIED + + """Sort products by update date.""" + LAST_MODIFIED_AT + + """ + Sort products by a minimal price of a product's variant. + + This option requires a channel filter to work as the values can vary between channels. + """ + MINIMAL_PRICE + + """Sort products by name.""" + NAME + + """ + Sort products by price. + + This option requires a channel filter to work as the values can vary between channels. + """ + PRICE + + """ + Sort products by publication date. + + This option requires a channel filter to work as the values can vary between channels. + """ + PUBLICATION_DATE + + """ + Sort products by publication status. + + This option requires a channel filter to work as the values can vary between channels. + """ + PUBLISHED + + """ + Sort products by publication date. + + This option requires a channel filter to work as the values can vary between channels. + """ + PUBLISHED_AT + + """ + Sort products by rank. Note: This option is available only with the `search` filter. + """ + RANK + + """Sort products by rating.""" + RATING + + """Sort products by type.""" + TYPE +} + +"""Represents availability of a product in the storefront.""" +type ProductPricingInfo { + """The discount amount if in sale (null otherwise).""" + discount: TaxedMoney + + """The discount amount in the local currency.""" + discountLocalCurrency: TaxedMoney + + """ + Determines whether this product's price displayed in a storefront should include taxes. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + displayGrossPrices: Boolean! + + """Whether it is in sale or not.""" + onSale: Boolean + + """The discounted price range of the product variants.""" + priceRange: TaxedMoneyRange + + """ + The discounted price range of the product variants in the local currency. + """ + priceRangeLocalCurrency: TaxedMoneyRange + + """The undiscounted price range of the product variants.""" + priceRangeUndiscounted: TaxedMoneyRange +} + +""" +Reorder product attribute values. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductReorderAttributeValues { + errors: [ProductError!]! + + """Product from which attribute values are reordered.""" + product: Product + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input ProductStockFilterInput { + quantity: IntRangeInput + warehouseIds: [ID!] +} + +type ProductTranslatableContent implements Node { + """List of product attribute values that can be translated.""" + attributeValues: [AttributeValueTranslatableContent!]! + + """ + Description of the product. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Description of the product. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") + id: ID! + name: String! + + """Represents an individual item for sale in the storefront.""" + product: Product @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") + seoDescription: String + seoTitle: String + + """Returns translated product fields for the given language code.""" + translation( + """A language code to return the translation for product.""" + languageCode: LanguageCodeEnum! + ): ProductTranslation +} + +""" +Creates/updates translations for a product. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type ProductTranslate { + errors: [TranslationError!]! + product: Product + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type ProductTranslation implements Node { + """ + Translated description of the product. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Translated description of the product. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String + seoDescription: String + seoTitle: String +} + +""" +Represents a type of product. It defines what attributes are available to products of this type. +""" +type ProductType implements Node & ObjectWithMetadata { + """ + Variant attributes of that product type with attached variant selection. + + Added in Saleor 3.1. + """ + assignedVariantAttributes( + """Define scope of returned attributes.""" + variantSelection: VariantAttributeScope + ): [AssignedVariantAttribute!] + + """ + List of attributes which can be assigned to this product type. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + availableAttributes( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + filter: AttributeFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): AttributeCountableConnection + hasVariants: Boolean! + id: ID! + isDigital: Boolean! + isShippingRequired: Boolean! + + """The product type kind.""" + kind: ProductTypeKindEnum! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """Product attributes of that product type.""" + productAttributes: [Attribute!] + + """List of products of this type.""" + products( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductCountableConnection @deprecated(reason: "This field will be removed in Saleor 4.0. Use the top-level `products` query with the `productTypes` filter.") + slug: String! + + """ + Tax class assigned to this product type. All products of this product type use this tax class, unless it's overridden in the `Product` type. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + """ + taxClass: TaxClass + + """A type of tax. Assigned by enabled tax gateway""" + taxType: TaxType @deprecated(reason: "This field will be removed in Saleor 4.0. Use `taxClass` field instead.") + + """Variant attributes of that product type.""" + variantAttributes( + """Define scope of returned attributes.""" + variantSelection: VariantAttributeScope + ): [Attribute!] @deprecated(reason: "This field will be removed in Saleor 4.0. Use `assignedVariantAttributes` instead.") + weight: Weight +} + +""" +Deletes product types. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductTypeBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +enum ProductTypeConfigurable { + CONFIGURABLE + SIMPLE +} + +type ProductTypeCountableConnection { + edges: [ProductTypeCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type ProductTypeCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: ProductType! +} + +""" +Creates a new product type. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductTypeCreate { + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + productType: ProductType +} + +""" +Deletes a product type. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductTypeDelete { + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + productType: ProductType +} + +enum ProductTypeEnum { + DIGITAL + SHIPPABLE +} + +input ProductTypeFilterInput { + configurable: ProductTypeConfigurable + ids: [ID!] + kind: ProductTypeKindEnum + metadata: [MetadataFilter!] + productType: ProductTypeEnum + search: String + slugs: [String!] +} + +input ProductTypeInput { + """ + Determines if product of this type has multiple variants. This option mainly simplifies product management in the dashboard. There is always at least one variant created under the hood. + """ + hasVariants: Boolean + + """Determines if products are digital.""" + isDigital: Boolean + + """Determines if shipping is required for products of this variant.""" + isShippingRequired: Boolean + + """The product type kind.""" + kind: ProductTypeKindEnum + + """Name of the product type.""" + name: String + + """List of attributes shared among all product variants.""" + productAttributes: [ID!] + + """Product type slug.""" + slug: String + + """ + ID of a tax class to assign to this product type. All products of this product type would use this tax class, unless it's overridden in the `Product` type. + """ + taxClass: ID + + """ + Tax rate for enabled tax gateway. + + DEPRECATED: this field will be removed in Saleor 4.0.. Use tax classes to control the tax calculation for a product type. + """ + taxCode: String + + """ + List of attributes used to distinguish between different variants of a product. + """ + variantAttributes: [ID!] + + """Weight of the ProductType items.""" + weight: WeightScalar +} + +"""An enumeration.""" +enum ProductTypeKindEnum { + GIFT_CARD + NORMAL +} + +""" +Reorder the attributes of a product type. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductTypeReorderAttributes { + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """Product type from which attributes are reordered.""" + productType: ProductType +} + +enum ProductTypeSortField { + """Sort products by type.""" + DIGITAL + + """Sort products by name.""" + NAME + + """Sort products by shipping.""" + SHIPPING_REQUIRED +} + +input ProductTypeSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort product types by the selected field.""" + field: ProductTypeSortField! +} + +""" +Updates an existing product type. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductTypeUpdate { + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + productType: ProductType +} + +""" +Updates an existing product. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductUpdate { + errors: [ProductError!]! + product: Product + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when product is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductUpdated implements Event { + """The category of the product.""" + category: Category + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The product the event relates to.""" + product( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Product + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +"""Represents a version of a product such as different size or color.""" +type ProductVariant implements Node & ObjectWithMetadata { + """List of attributes assigned to this variant.""" + attributes( + """Define scope of returned attributes.""" + variantSelection: VariantAttributeScope + ): [SelectedAttribute!]! + + """ + Channel given to retrieve this product variant. Also used by federation gateway to resolve this object in a federated query. + """ + channel: String + + """ + List of price information in channels for the product. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + channelListings: [ProductVariantChannelListing!] + created: DateTime! + + """ + Digital content for the product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + digitalContent: DigitalContent + + """ + External ID of this product. + + Added in Saleor 3.10. + """ + externalReference: String + id: ID! + + """List of images for the product variant.""" + images: [ProductImage!] @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `media` field instead.") + + """Gross margin percentage value.""" + margin: Int + + """List of media for the product variant.""" + media: [ProductMedia!] + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + + """ + Preorder data for product variant. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + preorder: PreorderData + + """ + Lists the storefront variant's pricing, the current price and discounts, only meant for displaying. + """ + pricing( + """ + Destination address used to find warehouses where stock availability for this product is checked. If address is empty, uses `Shop.companyAddress` or fallbacks to server's `settings.DEFAULT_COUNTRY` configuration. + """ + address: AddressInput + ): VariantPricingInfo + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + product: Product! + + """ + Quantity of a product available for sale in one checkout. Field value will be `null` when no `limitQuantityPerCheckout` in global settings has been set, and `productVariant` stocks are not tracked. + """ + quantityAvailable( + """ + Destination address used to find warehouses where stock availability for this product is checked. If address is empty, uses `Shop.companyAddress` or fallbacks to server's `settings.DEFAULT_COUNTRY` configuration. + """ + address: AddressInput + + """ + Two-letter ISO 3166-1 country code. When provided, the exact quantity from a warehouse operating in shipping zones that contain this country will be returned. Otherwise, it will return the maximum quantity from all shipping zones. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `address` argument instead. + """ + countryCode: CountryCode + ): Int + quantityLimitPerCustomer: Int + + """ + Total quantity ordered. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + quantityOrdered: Int + + """ + Total revenue generated by a variant in given period of time. Note: this field should be queried using `reportProductSales` query as it uses optimizations suitable for such calculations. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + revenue(period: ReportingPeriod): TaxedMoney + sku: String + + """ + Stocks for the product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + """ + stocks( + """ + Destination address used to find warehouses where stock availability for this product is checked. If address is empty, uses `Shop.companyAddress` or fallbacks to server's `settings.DEFAULT_COUNTRY` configuration. + """ + address: AddressInput + + """ + Two-letter ISO 3166-1 country code. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `address` argument instead. + """ + countryCode: CountryCode + ): [Stock!] + trackInventory: Boolean! + + """Returns translated product variant fields for the given language code.""" + translation( + """A language code to return the translation for product variant.""" + languageCode: LanguageCodeEnum! + ): ProductVariantTranslation + updatedAt: DateTime! + weight: Weight +} + +""" +Event sent when product variant is back in stock. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductVariantBackInStock implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The product variant the event relates to.""" + productVariant( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ProductVariant + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String + + """Look up a warehouse.""" + warehouse: Warehouse +} + +""" +Creates product variants for a given product. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantBulkCreate { + bulkProductErrors: [BulkProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """Returns how many objects were created.""" + count: Int! + errors: [BulkProductError!]! + + """List of the created variants.""" + productVariants: [ProductVariant!]! +} + +input ProductVariantBulkCreateInput { + """List of attributes specific to this variant.""" + attributes: [BulkAttributeValueInput!]! + + """List of prices assigned to channels.""" + channelListings: [ProductVariantChannelListingAddInput!] + + """ + External ID of this product variant. + + Added in Saleor 3.10. + """ + externalReference: String + + """ + Fields required to update the product variant metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """Variant name.""" + name: String + + """ + Determines if variant is in preorder. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + preorder: PreorderSettingsInput + + """ + Fields required to update the product variant private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """ + Determines maximum quantity of `ProductVariant`,that can be bought in a single checkout. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + quantityLimitPerCustomer: Int + + """Stock keeping unit.""" + sku: String + + """Stocks of a product available for sale.""" + stocks: [StockInput!] + + """ + Determines if the inventory of this variant should be tracked. If false, the quantity won't change when customers buy this item. + """ + trackInventory: Boolean + + """Weight of the Product Variant.""" + weight: WeightScalar +} + +""" +Deletes product variants. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +"""Represents product varaint channel listing.""" +type ProductVariantChannelListing implements Node { + channel: Channel! + + """Cost price of the variant.""" + costPrice: Money + id: ID! + + """ + Gross margin percentage value. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + margin: Int + + """ + Preorder variant data. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + preorderThreshold: PreorderThreshold + price: Money +} + +input ProductVariantChannelListingAddInput { + """ID of a channel.""" + channelId: ID! + + """Cost price of the variant in channel.""" + costPrice: PositiveDecimal + + """ + The threshold for preorder variant in channel. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + preorderThreshold: Int + + """Price of the particular variant in channel.""" + price: PositiveDecimal! +} + +""" +Manage product variant prices in channels. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantChannelListingUpdate { + errors: [ProductChannelListingError!]! + productChannelListingErrors: [ProductChannelListingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """An updated product variant instance.""" + variant: ProductVariant +} + +type ProductVariantCountableConnection { + edges: [ProductVariantCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type ProductVariantCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: ProductVariant! +} + +""" +Creates a new variant for a product. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantCreate { + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + productVariant: ProductVariant +} + +input ProductVariantCreateInput { + """List of attributes specific to this variant.""" + attributes: [AttributeValueInput!]! + + """ + External ID of this product variant. + + Added in Saleor 3.10. + """ + externalReference: String + + """ + Fields required to update the product variant metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """Variant name.""" + name: String + + """ + Determines if variant is in preorder. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + preorder: PreorderSettingsInput + + """ + Fields required to update the product variant private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """Product ID of which type is the variant.""" + product: ID! + + """ + Determines maximum quantity of `ProductVariant`,that can be bought in a single checkout. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + quantityLimitPerCustomer: Int + + """Stock keeping unit.""" + sku: String + + """Stocks of a product available for sale.""" + stocks: [StockInput!] + + """ + Determines if the inventory of this variant should be tracked. If false, the quantity won't change when customers buy this item. + """ + trackInventory: Boolean + + """Weight of the Product Variant.""" + weight: WeightScalar +} + +""" +Event sent when new product variant is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductVariantCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The product variant the event relates to.""" + productVariant( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ProductVariant + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes a product variant. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantDelete { + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + productVariant: ProductVariant +} + +""" +Event sent when product variant is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductVariantDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The product variant the event relates to.""" + productVariant( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ProductVariant + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +input ProductVariantFilterInput { + isPreorder: Boolean + metadata: [MetadataFilter!] + search: String + sku: [String!] + updatedAt: DateTimeRangeInput +} + +input ProductVariantInput { + """List of attributes specific to this variant.""" + attributes: [AttributeValueInput!] + + """ + External ID of this product variant. + + Added in Saleor 3.10. + """ + externalReference: String + + """ + Fields required to update the product variant metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """Variant name.""" + name: String + + """ + Determines if variant is in preorder. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + preorder: PreorderSettingsInput + + """ + Fields required to update the product variant private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """ + Determines maximum quantity of `ProductVariant`,that can be bought in a single checkout. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + quantityLimitPerCustomer: Int + + """Stock keeping unit.""" + sku: String + + """ + Determines if the inventory of this variant should be tracked. If false, the quantity won't change when customers buy this item. + """ + trackInventory: Boolean + + """Weight of the Product Variant.""" + weight: WeightScalar +} + +""" +Event sent when product variant metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductVariantMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The product variant the event relates to.""" + productVariant( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ProductVariant + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +""" +Event sent when product variant is out of stock. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductVariantOutOfStock implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The product variant the event relates to.""" + productVariant( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ProductVariant + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String + + """Look up a warehouse.""" + warehouse: Warehouse +} + +""" +Deactivates product variant preorder. It changes all preorder allocation into regular allocation. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantPreorderDeactivate { + errors: [ProductError!]! + + """Product variant with ended preorder.""" + productVariant: ProductVariant +} + +""" +Reorder the variants of a product. Mutation updates updated_at on product and triggers PRODUCT_UPDATED webhook. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantReorder { + errors: [ProductError!]! + product: Product + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Reorder product variant attribute values. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantReorderAttributeValues { + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """Product variant from which attribute values are reordered.""" + productVariant: ProductVariant +} + +""" +Set default variant for a product. Mutation triggers PRODUCT_UPDATED webhook. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantSetDefault { + errors: [ProductError!]! + product: Product + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +enum ProductVariantSortField { + """Sort products variants by last modified at.""" + LAST_MODIFIED_AT +} + +input ProductVariantSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort productVariants by the selected field.""" + field: ProductVariantSortField! +} + +""" +Creates stocks for product variant. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantStocksCreate { + bulkStockErrors: [BulkStockError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [BulkStockError!]! + + """Updated product variant.""" + productVariant: ProductVariant +} + +""" +Delete stocks from product variant. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantStocksDelete { + errors: [StockError!]! + + """Updated product variant.""" + productVariant: ProductVariant + stockErrors: [StockError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Update stocks for product variant. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantStocksUpdate { + bulkStockErrors: [BulkStockError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [BulkStockError!]! + + """Updated product variant.""" + productVariant: ProductVariant +} + +type ProductVariantTranslatableContent implements Node { + """List of product variant attribute values that can be translated.""" + attributeValues: [AttributeValueTranslatableContent!]! + id: ID! + name: String! + + """Represents a version of a product such as different size or color.""" + productVariant: ProductVariant @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") + + """Returns translated product variant fields for the given language code.""" + translation( + """A language code to return the translation for product variant.""" + languageCode: LanguageCodeEnum! + ): ProductVariantTranslation +} + +""" +Creates/updates translations for a product variant. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type ProductVariantTranslate { + errors: [TranslationError!]! + productVariant: ProductVariant + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type ProductVariantTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String! +} + +""" +Updates an existing variant for product. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantUpdate { + errors: [ProductError!]! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + productVariant: ProductVariant +} + +""" +Event sent when product variant is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductVariantUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The product variant the event relates to.""" + productVariant( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ProductVariant + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String +} + +input PublishableChannelListingInput { + """ID of a channel.""" + channelId: ID! + + """Determines if object is visible to customers.""" + isPublished: Boolean + + """ + Publication date. ISO 8601 standard. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `publishedAt` field instead. + """ + publicationDate: Date + + """ + Publication date time. ISO 8601 standard. + + Added in Saleor 3.3. + """ + publishedAt: DateTime +} + +type Query { + _entities(representations: [_Any]): [_Entity] + _service: _Service + + """Look up an address by ID.""" + address( + """ID of an address.""" + id: ID! + ): Address + + """Returns address validation rules.""" + addressValidationRules( + """City or a town name.""" + city: String + + """Sublocality like a district.""" + cityArea: String + + """Designation of a region, province or state.""" + countryArea: String + + """Two-letter ISO 3166-1 country code.""" + countryCode: CountryCode! + ): AddressValidationData + + """ + Look up an app by ID. If ID is not provided, return the currently authenticated app. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER AUTHENTICATED_APP. The authenticated app has access to its resources. Fetching different apps requires MANAGE_APPS permission. + """ + app( + """ID of the app.""" + id: ID + ): App + + """ + Look up an app extension by ID. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + appExtension( + """ID of the app extension.""" + id: ID! + ): AppExtension + + """ + List of all extensions. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + appExtensions( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for apps extensions.""" + filter: AppExtensionFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): AppExtensionCountableConnection + + """ + List of the apps. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, MANAGE_APPS. + """ + apps( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for apps.""" + filter: AppFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort apps.""" + sortBy: AppSortingInput + ): AppCountableConnection + + """ + List of all apps installations + + Requires one of the following permissions: MANAGE_APPS. + """ + appsInstallations: [AppInstallation!]! + + """Look up an attribute by ID, slug or external reference.""" + attribute( + """ + External ID of the attribute. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of the attribute.""" + id: ID + + """Slug of the attribute.""" + slug: String + ): Attribute + + """List of the shop's attributes.""" + attributes( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Filtering options for attributes.""" + filter: AttributeFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sorting options for attributes.""" + sortBy: AttributeSortingInput + ): AttributeCountableConnection + + """List of the shop's categories.""" + categories( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for categories.""" + filter: CategoryFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Filter categories by the nesting level in the category tree.""" + level: Int + + """Sort categories.""" + sortBy: CategorySortingInput + ): CategoryCountableConnection + + """Look up a category by ID or slug.""" + category( + """ID of the category.""" + id: ID + + """Slug of the category""" + slug: String + ): Category + + """Look up a channel by ID or slug.""" + channel( + """ID of the channel.""" + id: ID + + """ + Slug of the channel. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + slug: String + ): Channel + + """ + List of all channels. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + channels: [Channel!] + + """Look up a checkout by token and slug of channel.""" + checkout( + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + The checkout's token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): Checkout + + """ + List of checkout lines. + + Requires one of the following permissions: MANAGE_CHECKOUTS. + """ + checkoutLines( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CheckoutLineCountableConnection + + """ + List of checkouts. + + Requires one of the following permissions: MANAGE_CHECKOUTS. + """ + checkouts( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """ + Filtering options for checkouts. + + Added in Saleor 3.1. + """ + filter: CheckoutFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """ + Sort checkouts. + + Added in Saleor 3.1. + """ + sortBy: CheckoutSortingInput + ): CheckoutCountableConnection + + """ + Look up a collection by ID. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + collection( + """Slug of a channel for which the data should be returned.""" + channel: String + + """ID of the collection.""" + id: ID + + """Slug of the category""" + slug: String + ): Collection + + """ + List of the shop's collections. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + collections( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Filtering options for collections.""" + filter: CollectionFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort collections.""" + sortBy: CollectionSortingInput + ): CollectionCountableConnection + + """ + List of the shop's customers. + + Requires one of the following permissions: MANAGE_ORDERS, MANAGE_USERS. + """ + customers( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for customers.""" + filter: CustomerFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort customers.""" + sortBy: UserSortingInput + ): UserCountableConnection + + """ + Look up digital content by ID. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + digitalContent( + """ID of the digital content.""" + id: ID! + ): DigitalContent + + """ + List of digital content. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + digitalContents( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): DigitalContentCountableConnection + + """ + List of draft orders. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + draftOrders( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for draft orders.""" + filter: OrderDraftFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort draft orders.""" + sortBy: OrderSortingInput + ): OrderCountableConnection + + """ + Look up a export file by ID. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + exportFile( + """ID of the export file job.""" + id: ID! + ): ExportFile + + """ + List of export files. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + exportFiles( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for export files.""" + filter: ExportFileFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort export files.""" + sortBy: ExportFileSortingInput + ): ExportFileCountableConnection + + """ + Look up a gift card by ID. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCard( + """ID of the gift card.""" + id: ID! + ): GiftCard + + """ + List of gift card currencies. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardCurrencies: [String!]! + + """ + Gift card related settings from site settings. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardSettings: GiftCardSettings! + + """ + List of gift card tags. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardTags( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for gift card tags.""" + filter: GiftCardTagFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): GiftCardTagCountableConnection + + """ + List of gift cards. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCards( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """ + Filtering options for gift cards. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + filter: GiftCardFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """ + Sort gift cards. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + sortBy: GiftCardSortingInput + ): GiftCardCountableConnection + + """ + List of activity events to display on homepage (at the moment it only contains order-events). + + Requires one of the following permissions: MANAGE_ORDERS. + """ + homepageEvents( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): OrderEventCountableConnection + + """Return the currently authenticated user.""" + me: User + + """Look up a navigation menu by ID or name.""" + menu( + """Slug of a channel for which the data should be returned.""" + channel: String + + """ID of the menu.""" + id: ID + + """The menu's name.""" + name: String + + """The menu's slug.""" + slug: String + ): Menu + + """Look up a menu item by ID.""" + menuItem( + """Slug of a channel for which the data should be returned.""" + channel: String + + """ID of the menu item.""" + id: ID! + ): MenuItem + + """List of the storefronts's menu items.""" + menuItems( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Filtering options for menu items.""" + filter: MenuItemFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort menus items.""" + sortBy: MenuItemSortingInput + ): MenuItemCountableConnection + + """List of the storefront's menus.""" + menus( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """ + Filtering options for menus. + + `slug`: This field will be removed in Saleor 4.0. Use `slugs` instead. + """ + filter: MenuFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort menus.""" + sortBy: MenuSortingInput + ): MenuCountableConnection + + """Look up an order by ID or external reference.""" + order( + """ + External ID of an order. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of an order.""" + id: ID + ): Order + + """Look up an order by token.""" + orderByToken( + """The order's token.""" + token: UUID! + ): Order @deprecated(reason: "This field will be removed in Saleor 4.0.") + + """ + Order related settings from site settings. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderSettings: OrderSettings + + """ + List of orders. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orders( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Filtering options for orders.""" + filter: OrderFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort orders.""" + sortBy: OrderSortingInput + ): OrderCountableConnection + + """ + Return the total sales amount from a specific period. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + ordersTotal( + """Slug of a channel for which the data should be returned.""" + channel: String + + """A period of time.""" + period: ReportingPeriod + ): TaxedMoney + + """Look up a page by ID or slug.""" + page( + """ID of the page.""" + id: ID + + """The slug of the page.""" + slug: String + ): Page + + """Look up a page type by ID.""" + pageType( + """ID of the page type.""" + id: ID! + ): PageType + + """List of the page types.""" + pageTypes( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for page types.""" + filter: PageTypeFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort page types.""" + sortBy: PageTypeSortingInput + ): PageTypeCountableConnection + + """List of the shop's pages.""" + pages( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for pages.""" + filter: PageFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort pages.""" + sortBy: PageSortingInput + ): PageCountableConnection + + """ + Look up a payment by ID. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + payment( + """ID of the payment.""" + id: ID! + ): Payment + + """ + List of payments. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + payments( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for payments.""" + filter: PaymentFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): PaymentCountableConnection + + """ + Look up permission group by ID. + + Requires one of the following permissions: MANAGE_STAFF. + """ + permissionGroup( + """ID of the group.""" + id: ID! + ): Group + + """ + List of permission groups. + + Requires one of the following permissions: MANAGE_STAFF. + """ + permissionGroups( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for permission groups.""" + filter: PermissionGroupFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort permission groups.""" + sortBy: PermissionGroupSortingInput + ): GroupCountableConnection + + """ + Look up a plugin by ID. + + Requires one of the following permissions: MANAGE_PLUGINS. + """ + plugin( + """ID of the plugin.""" + id: ID! + ): Plugin + + """ + List of plugins. + + Requires one of the following permissions: MANAGE_PLUGINS. + """ + plugins( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for plugins.""" + filter: PluginFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort plugins.""" + sortBy: PluginSortingInput + ): PluginCountableConnection + + """ + Look up a product by ID. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + product( + """Slug of a channel for which the data should be returned.""" + channel: String + + """ + External ID of the product. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of the product.""" + id: ID + + """Slug of the product.""" + slug: String + ): Product + + """Look up a product type by ID.""" + productType( + """ID of the product type.""" + id: ID! + ): ProductType + + """List of the shop's product types.""" + productTypes( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for product types.""" + filter: ProductTypeFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort product types.""" + sortBy: ProductTypeSortingInput + ): ProductTypeCountableConnection + + """ + Look up a product variant by ID or SKU. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + productVariant( + """Slug of a channel for which the data should be returned.""" + channel: String + + """ + External ID of the product. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of the product variant.""" + id: ID + + """Sku of the product variant.""" + sku: String + ): ProductVariant + + """ + List of product variants. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + productVariants( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Filtering options for product variant.""" + filter: ProductVariantFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Filter product variants by given IDs.""" + ids: [ID!] + + """Return the last n elements from the list.""" + last: Int + + """Sort products variants.""" + sortBy: ProductVariantSortingInput + ): ProductVariantCountableConnection + + """ + List of the shop's products. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + products( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Filtering options for products.""" + filter: ProductFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort products.""" + sortBy: ProductOrder + ): ProductCountableConnection + + """ + List of top selling products. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + reportProductSales( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Slug of a channel for which the data should be returned.""" + channel: String! + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Span of time.""" + period: ReportingPeriod! + ): ProductVariantCountableConnection + + """ + Look up a sale by ID. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + sale( + """Slug of a channel for which the data should be returned.""" + channel: String + + """ID of the sale.""" + id: ID! + ): Sale + + """ + List of the shop's sales. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + sales( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Filtering options for sales.""" + filter: SaleFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """ + Search sales by name, value or type. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `filter.search` input instead. + """ + query: String + + """Sort sales.""" + sortBy: SaleSortingInput + ): SaleCountableConnection + + """ + Look up a shipping zone by ID. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingZone( + """Slug of a channel for which the data should be returned.""" + channel: String + + """ID of the shipping zone.""" + id: ID! + ): ShippingZone + + """ + List of the shop's shipping zones. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingZones( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Filtering options for shipping zones.""" + filter: ShippingZoneFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ShippingZoneCountableConnection + + """Return information about the shop.""" + shop: Shop! + + """ + List of the shop's staff users. + + Requires one of the following permissions: MANAGE_STAFF. + """ + staffUsers( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for staff users.""" + filter: StaffUserInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort staff users.""" + sortBy: UserSortingInput + ): UserCountableConnection + + """ + Look up a stock by ID + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + stock( + """ID of an warehouse""" + id: ID! + ): Stock + + """ + List of stocks. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + stocks( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + filter: StockFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): StockCountableConnection + + """ + Look up a tax class. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + taxClass( + """ID of a tax class.""" + id: ID! + ): TaxClass + + """ + List of tax classes. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + taxClasses( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for tax classes.""" + filter: TaxClassFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Sort tax classes.""" + sortBy: TaxClassSortingInput + ): TaxClassCountableConnection + + """ + Look up a tax configuration. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + taxConfiguration( + """ID of a tax configuration.""" + id: ID! + ): TaxConfiguration + + """ + List of tax configurations. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + taxConfigurations( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Filtering options for tax configurations.""" + filter: TaxConfigurationFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): TaxConfigurationCountableConnection + + """ + Tax class rates grouped by country. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + taxCountryConfiguration( + """Country for which to return tax class rates.""" + countryCode: CountryCode! + ): TaxCountryConfiguration + + """ + \n\nRequires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + taxCountryConfigurations: [TaxCountryConfiguration!] + + """List of all tax rates available from tax gateway.""" + taxTypes: [TaxType!] + + """ + Look up a transaction by ID. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: HANDLE_PAYMENTS. + """ + transaction( + """ID of a transaction.""" + id: ID! + ): TransactionItem + + """ + Lookup a translatable item by ID. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + translation( + """ID of the object to retrieve.""" + id: ID! + + """Kind of the object to retrieve.""" + kind: TranslatableKinds! + ): TranslatableItem + + """ + Returns a list of all translatable items of a given kind. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + translations( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Kind of objects to retrieve.""" + kind: TranslatableKinds! + + """Return the last n elements from the list.""" + last: Int + ): TranslatableItemConnection + + """ + Look up a user by ID or email address. + + Requires one of the following permissions: MANAGE_STAFF, MANAGE_USERS, MANAGE_ORDERS. + """ + user( + """Email address of the user.""" + email: String + + """ + External ID of the user. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of the user.""" + id: ID + ): User + + """ + Look up a voucher by ID. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucher( + """Slug of a channel for which the data should be returned.""" + channel: String + + """ID of the voucher.""" + id: ID! + ): Voucher + + """ + List of the shop's vouchers. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + vouchers( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Filtering options for vouchers.""" + filter: VoucherFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """ + Search vouchers by name or code. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `filter.search` input instead. + """ + query: String + + """Sort voucher.""" + sortBy: VoucherSortingInput + ): VoucherCountableConnection + + """ + Look up a warehouse by ID. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS, MANAGE_SHIPPING. + """ + warehouse( + """ + External ID of a warehouse. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a warehouse.""" + id: ID + ): Warehouse + + """ + List of warehouses. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS, MANAGE_SHIPPING. + """ + warehouses( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + filter: WarehouseFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + sortBy: WarehouseSortingInput + ): WarehouseCountableConnection + + """ + Look up a webhook by ID. Requires one of the following permissions: MANAGE_APPS, OWNER. + """ + webhook( + """ID of the webhook.""" + id: ID! + ): Webhook + + """ + List of all available webhook events. + + Requires one of the following permissions: MANAGE_APPS. + """ + webhookEvents: [WebhookEvent!] @deprecated(reason: "This field will be removed in Saleor 4.0. Use `WebhookEventTypeAsyncEnum` and `WebhookEventTypeSyncEnum` to get available event types.") + + """ + Retrieve a sample payload for a given webhook event based on real data. It can be useful for some integrations where sample payload is required. + """ + webhookSamplePayload( + """Name of the requested event type.""" + eventType: WebhookSampleEventTypeEnum! + ): JSONString +} + +"""Represents a reduced VAT rate for a particular type of goods.""" +type ReducedRate { + """Reduced VAT rate in percent.""" + rate: Float! + + """A type of goods.""" + rateType: String! +} + +""" +Refresh JWT token. Mutation tries to take refreshToken from the input.If it fails it will try to take refreshToken from the http-only cookie -refreshToken. csrfToken is required when refreshToken is provided as a cookie. +""" +type RefreshToken { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + + """JWT token, required to authenticate.""" + token: String + + """A user instance.""" + user: User +} + +input ReorderInput { + """The ID of the item to move.""" + id: ID! + + """ + The new relative sorting position of the item (from -inf to +inf). 1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged. + """ + sortOrder: Int +} + +enum ReportingPeriod { + THIS_MONTH + TODAY +} + +""" +Request email change of the logged in user. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type RequestEmailChange { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + + """A user instance.""" + user: User +} + +"""Sends an email with the account password modification link.""" +type RequestPasswordReset { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +""" +Sales allow creating discounts for categories, collections or products and are visible to all the customers. +""" +type Sale implements Node & ObjectWithMetadata { + """List of categories this sale applies to.""" + categories( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CategoryCountableConnection + + """ + List of channels available for the sale. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + channelListings: [SaleChannelListing!] + + """ + List of collections this sale applies to. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + collections( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CollectionCountableConnection + created: DateTime! + + """Currency code for sale.""" + currency: String + + """Sale value.""" + discountValue: Float + endDate: DateTime + id: ID! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """ + List of products this sale applies to. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + products( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductCountableConnection + startDate: DateTime! + + """Returns translated sale fields for the given language code.""" + translation( + """A language code to return the translation for sale.""" + languageCode: LanguageCodeEnum! + ): SaleTranslation + type: SaleType! + updatedAt: DateTime! + + """ + List of product variants this sale applies to. + + Added in Saleor 3.1. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + variants( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductVariantCountableConnection +} + +""" +Adds products, categories, collections to a voucher. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type SaleAddCatalogues { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + + """Sale of which catalogue IDs will be modified.""" + sale: Sale +} + +""" +Deletes sales. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type SaleBulkDelete { + """Returns how many objects were affected.""" + count: Int! + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! +} + +"""Represents sale channel listing.""" +type SaleChannelListing implements Node { + channel: Channel! + currency: String! + discountValue: Float! + id: ID! +} + +input SaleChannelListingAddInput { + """ID of a channel.""" + channelId: ID! + + """The value of the discount.""" + discountValue: PositiveDecimal! +} + +input SaleChannelListingInput { + """List of channels to which the sale should be assigned.""" + addChannels: [SaleChannelListingAddInput!] + + """List of channels from which the sale should be unassigned.""" + removeChannels: [ID!] +} + +""" +Manage sale's availability in channels. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type SaleChannelListingUpdate { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + + """An updated sale instance.""" + sale: Sale +} + +type SaleCountableConnection { + edges: [SaleCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type SaleCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: Sale! +} + +""" +Creates a new sale. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type SaleCreate { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + sale: Sale +} + +""" +Event sent when new sale is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type SaleCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The sale the event relates to.""" + sale( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Sale + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes a sale. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type SaleDelete { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + sale: Sale +} + +""" +Event sent when sale is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type SaleDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The sale the event relates to.""" + sale( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Sale + + """Saleor version that triggered the event.""" + version: String +} + +input SaleFilterInput { + metadata: [MetadataFilter!] + saleType: DiscountValueTypeEnum + search: String + started: DateTimeRangeInput + status: [DiscountStatusEnum!] + updatedAt: DateTimeRangeInput +} + +input SaleInput { + """Categories related to the discount.""" + categories: [ID!] + + """Collections related to the discount.""" + collections: [ID!] + + """End date of the voucher in ISO 8601 format.""" + endDate: DateTime + + """Voucher name.""" + name: String + + """Products related to the discount.""" + products: [ID!] + + """Start date of the voucher in ISO 8601 format.""" + startDate: DateTime + + """Fixed or percentage.""" + type: DiscountValueTypeEnum + + """Value of the voucher.""" + value: PositiveDecimal + variants: [ID!] +} + +""" +Removes products, categories, collections from a sale. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type SaleRemoveCatalogues { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + + """Sale of which catalogue IDs will be modified.""" + sale: Sale +} + +enum SaleSortField { + """Sort sales by created at.""" + CREATED_AT + + """Sort sales by end date.""" + END_DATE + + """Sort sales by last modified at.""" + LAST_MODIFIED_AT + + """Sort sales by name.""" + NAME + + """Sort sales by start date.""" + START_DATE + + """Sort sales by type.""" + TYPE + + """ + Sort sales by value. + + This option requires a channel filter to work as the values can vary between channels. + """ + VALUE +} + +input SaleSortingInput { + """ + Specifies the channel in which to sort the data. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String + + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort sales by the selected field.""" + field: SaleSortField! +} + +""" +The event informs about the start or end of the sale. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type SaleToggle implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """ + The sale the event relates to. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + sale( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Sale + + """Saleor version that triggered the event.""" + version: String +} + +type SaleTranslatableContent implements Node { + id: ID! + name: String! + + """ + Sales allow creating discounts for categories, collections or products and are visible to all the customers. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + sale: Sale @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") + + """Returns translated sale fields for the given language code.""" + translation( + """A language code to return the translation for sale.""" + languageCode: LanguageCodeEnum! + ): SaleTranslation +} + +""" +Creates/updates translations for a sale. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type SaleTranslate { + errors: [TranslationError!]! + sale: Sale + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type SaleTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String +} + +enum SaleType { + FIXED + PERCENTAGE +} + +""" +Updates a sale. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type SaleUpdate { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + sale: Sale +} + +""" +Event sent when sale is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type SaleUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The sale the event relates to.""" + sale( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Sale + + """Saleor version that triggered the event.""" + version: String +} + +"""Represents a custom attribute.""" +type SelectedAttribute { + """Name of an attribute displayed in the interface.""" + attribute: Attribute! + + """Values of an attribute.""" + values: [AttributeValue!]! +} + +input SeoInput { + """SEO description.""" + description: String + + """SEO title.""" + title: String +} + +""" +Sets the user's password from the token sent by email using the RequestPasswordReset mutation. +""" +type SetPassword { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """CSRF token required to re-generate access token.""" + csrfToken: String + errors: [AccountError!]! + + """JWT refresh token, required to re-generate access token.""" + refreshToken: String + + """JWT token, required to authenticate.""" + token: String + + """A user instance.""" + user: User +} + +type ShippingError { + """List of channels IDs which causes the error.""" + channels: [ID!] + + """The error code.""" + code: ShippingErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of warehouse IDs which causes the error.""" + warehouses: [ID!] +} + +"""An enumeration.""" +enum ShippingErrorCode { + ALREADY_EXISTS + DUPLICATED_INPUT_ITEM + GRAPHQL_ERROR + INVALID + MAX_LESS_THAN_MIN + NOT_FOUND + REQUIRED + UNIQUE +} + +""" +List shipping methods for checkout. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingListMethodsForCheckout implements Event { + """The checkout the event relates to.""" + checkout: Checkout + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """ + Shipping methods that can be used with this checkout. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + shippingMethods: [ShippingMethod!] + + """Saleor version that triggered the event.""" + version: String +} + +""" +Shipping methods that can be used as means of shipping for orders and checkouts. +""" +type ShippingMethod implements Node & ObjectWithMetadata { + """Describes if this shipping method is active and can be selected.""" + active: Boolean! + + """ + Shipping method description. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """Unique ID of ShippingMethod available for Order.""" + id: ID! + + """Maximum delivery days for this shipping method.""" + maximumDeliveryDays: Int + + """Maximum order price for this shipping method.""" + maximumOrderPrice: Money + + """Maximum order weight for this shipping method.""" + maximumOrderWeight: Weight @deprecated(reason: "This field will be removed in Saleor 4.0.") + + """Message connected to this shipping method.""" + message: String + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """Minimum delivery days for this shipping method.""" + minimumDeliveryDays: Int + + """Minimal order price for this shipping method.""" + minimumOrderPrice: Money + + """Minimum order weight for this shipping method.""" + minimumOrderWeight: Weight @deprecated(reason: "This field will be removed in Saleor 4.0.") + + """Shipping method name.""" + name: String! + + """The price of selected shipping method.""" + price: Money! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """Returns translated shipping method fields for the given language code.""" + translation( + """A language code to return the translation for shipping method.""" + languageCode: LanguageCodeEnum! + ): ShippingMethodTranslation + + """Type of the shipping method.""" + type: ShippingMethodTypeEnum @deprecated(reason: "This field will be removed in Saleor 4.0.") +} + +"""Represents shipping method channel listing.""" +type ShippingMethodChannelListing implements Node { + channel: Channel! + id: ID! + maximumOrderPrice: Money + minimumOrderPrice: Money + price: Money +} + +input ShippingMethodChannelListingAddInput { + """ID of a channel.""" + channelId: ID! + + """Maximum order price to use this shipping method.""" + maximumOrderPrice: PositiveDecimal + + """Minimum order price to use this shipping method.""" + minimumOrderPrice: PositiveDecimal + + """Shipping price of the shipping method in this channel.""" + price: PositiveDecimal +} + +input ShippingMethodChannelListingInput { + """List of channels to which the shipping method should be assigned.""" + addChannels: [ShippingMethodChannelListingAddInput!] + + """List of channels from which the shipping method should be unassigned.""" + removeChannels: [ID!] +} + +""" +Manage shipping method's availability in channels. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingMethodChannelListingUpdate { + errors: [ShippingError!]! + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """An updated shipping method instance.""" + shippingMethod: ShippingMethodType +} + +"""Represents shipping method postal code rule.""" +type ShippingMethodPostalCodeRule implements Node { + """End address range.""" + end: String + + """The ID of the object.""" + id: ID! + + """Inclusion type of the postal code rule.""" + inclusionType: PostalCodeRuleInclusionTypeEnum + + """Start address range.""" + start: String +} + +type ShippingMethodTranslatableContent implements Node { + """ + Description of the shipping method. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + id: ID! + name: String! + + """ + Shipping method are the methods you'll use to get customer's orders to them. They are directly exposed to the customers. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingMethod: ShippingMethodType @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") + + """Returns translated shipping method fields for the given language code.""" + translation( + """A language code to return the translation for shipping method.""" + languageCode: LanguageCodeEnum! + ): ShippingMethodTranslation +} + +type ShippingMethodTranslation implements Node { + """ + Translated description of the shipping method. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String +} + +""" +Shipping method are the methods you'll use to get customer's orders to them. They are directly exposed to the customers. +""" +type ShippingMethodType implements Node & ObjectWithMetadata { + """ + List of channels available for the method. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + channelListings: [ShippingMethodChannelListing!] + + """ + Shipping method description. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + List of excluded products for the shipping method. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + excludedProducts( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductCountableConnection + + """Shipping method ID.""" + id: ID! + + """Maximum number of days for delivery.""" + maximumDeliveryDays: Int + + """The price of the cheapest variant (including discounts).""" + maximumOrderPrice: Money + + """Maximum order weight to use this shipping method.""" + maximumOrderWeight: Weight + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """Minimal number of days for delivery.""" + minimumDeliveryDays: Int + + """The price of the cheapest variant (including discounts).""" + minimumOrderPrice: Money + + """Minimum order weight to use this shipping method.""" + minimumOrderWeight: Weight + + """Shipping method name.""" + name: String! + + """ + Postal code ranges rule of exclusion or inclusion of the shipping method. + """ + postalCodeRules: [ShippingMethodPostalCodeRule!] + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """ + Tax class assigned to this shipping method. + + Requires one of the following permissions: MANAGE_TAXES, MANAGE_SHIPPING. + """ + taxClass: TaxClass + + """Returns translated shipping method fields for the given language code.""" + translation( + """A language code to return the translation for shipping method.""" + languageCode: LanguageCodeEnum! + ): ShippingMethodTranslation + + """Type of the shipping method.""" + type: ShippingMethodTypeEnum +} + +"""An enumeration.""" +enum ShippingMethodTypeEnum { + PRICE + WEIGHT +} + +""" +List of shipping methods available for the country. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingMethodsPerCountry { + """The country code.""" + countryCode: CountryCode! + + """List of available shipping methods.""" + shippingMethods: [ShippingMethod!] +} + +input ShippingPostalCodeRulesCreateInputRange { + """End range of the postal code.""" + end: String + + """Start range of the postal code.""" + start: String! +} + +""" +Deletes shipping prices. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingPriceBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [ShippingError!]! + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Creates a new shipping price. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingPriceCreate { + errors: [ShippingError!]! + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + shippingMethod: ShippingMethodType + + """A shipping zone to which the shipping method belongs.""" + shippingZone: ShippingZone +} + +""" +Event sent when new shipping price is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingPriceCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The shipping method the event relates to.""" + shippingMethod( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingMethodType + + """The shipping zone the shipping method belongs to.""" + shippingZone( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingZone + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes a shipping price. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingPriceDelete { + errors: [ShippingError!]! + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """A shipping method to delete.""" + shippingMethod: ShippingMethodType + + """A shipping zone to which the shipping method belongs.""" + shippingZone: ShippingZone +} + +""" +Event sent when shipping price is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingPriceDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The shipping method the event relates to.""" + shippingMethod( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingMethodType + + """The shipping zone the shipping method belongs to.""" + shippingZone( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingZone + + """Saleor version that triggered the event.""" + version: String +} + +""" +Exclude products from shipping price. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingPriceExcludeProducts { + errors: [ShippingError!]! + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """A shipping method with new list of excluded products.""" + shippingMethod: ShippingMethodType +} + +input ShippingPriceExcludeProductsInput { + """List of products which will be excluded.""" + products: [ID!]! +} + +input ShippingPriceInput { + """Postal code rules to add.""" + addPostalCodeRules: [ShippingPostalCodeRulesCreateInputRange!] + + """Postal code rules to delete.""" + deletePostalCodeRules: [ID!] + + """Shipping method description.""" + description: JSONString + + """Inclusion type for currently assigned postal code rules.""" + inclusionType: PostalCodeRuleInclusionTypeEnum + + """Maximum number of days for delivery.""" + maximumDeliveryDays: Int + + """Maximum order weight to use this shipping method.""" + maximumOrderWeight: WeightScalar + + """Minimal number of days for delivery.""" + minimumDeliveryDays: Int + + """Minimum order weight to use this shipping method.""" + minimumOrderWeight: WeightScalar + + """Name of the shipping method.""" + name: String + + """Shipping zone this method belongs to.""" + shippingZone: ID + + """ + ID of a tax class to assign to this shipping method. If not provided, the default tax class will be used. + """ + taxClass: ID + + """Shipping type: price or weight based.""" + type: ShippingMethodTypeEnum +} + +""" +Remove product from excluded list for shipping price. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingPriceRemoveProductFromExclude { + errors: [ShippingError!]! + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """A shipping method with new list of excluded products.""" + shippingMethod: ShippingMethodType +} + +""" +Creates/updates translations for a shipping method. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type ShippingPriceTranslate { + errors: [TranslationError!]! + shippingMethod: ShippingMethodType + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input ShippingPriceTranslationInput { + """ + Translated shipping method description. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + name: String +} + +""" +Updates a new shipping price. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingPriceUpdate { + errors: [ShippingError!]! + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + shippingMethod: ShippingMethodType + + """A shipping zone to which the shipping method belongs.""" + shippingZone: ShippingZone +} + +""" +Event sent when shipping price is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingPriceUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The shipping method the event relates to.""" + shippingMethod( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingMethodType + + """The shipping zone the shipping method belongs to.""" + shippingZone( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingZone + + """Saleor version that triggered the event.""" + version: String +} + +""" +Represents a shipping zone in the shop. Zones are the concept used only for grouping shipping methods in the dashboard, and are never exposed to the customers directly. +""" +type ShippingZone implements Node & ObjectWithMetadata { + """List of channels for shipping zone.""" + channels: [Channel!]! + + """List of countries available for the method.""" + countries: [CountryDisplay!]! + default: Boolean! + + """Description of a shipping zone.""" + description: String + id: ID! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + + """Lowest and highest prices for the shipping.""" + priceRange: MoneyRange + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """ + List of shipping methods available for orders shipped to countries within this shipping zone. + """ + shippingMethods: [ShippingMethodType!] + + """List of warehouses for shipping zone.""" + warehouses: [Warehouse!]! +} + +""" +Deletes shipping zones. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingZoneBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [ShippingError!]! + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type ShippingZoneCountableConnection { + edges: [ShippingZoneCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type ShippingZoneCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: ShippingZone! +} + +""" +Creates a new shipping zone. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingZoneCreate { + errors: [ShippingError!]! + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + shippingZone: ShippingZone +} + +input ShippingZoneCreateInput { + """List of channels to assign to the shipping zone.""" + addChannels: [ID!] + + """List of warehouses to assign to a shipping zone""" + addWarehouses: [ID!] + + """List of countries in this shipping zone.""" + countries: [String!] + + """ + Default shipping zone will be used for countries not covered by other zones. + """ + default: Boolean + + """Description of the shipping zone.""" + description: String + + """Shipping zone's name. Visible only to the staff.""" + name: String +} + +""" +Event sent when new shipping zone is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingZoneCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The shipping zone the event relates to.""" + shippingZone( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingZone + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes a shipping zone. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingZoneDelete { + errors: [ShippingError!]! + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + shippingZone: ShippingZone +} + +""" +Event sent when shipping zone is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingZoneDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The shipping zone the event relates to.""" + shippingZone( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingZone + + """Saleor version that triggered the event.""" + version: String +} + +input ShippingZoneFilterInput { + channels: [ID!] + search: String +} + +""" +Event sent when shipping zone metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingZoneMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The shipping zone the event relates to.""" + shippingZone( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingZone + + """Saleor version that triggered the event.""" + version: String +} + +""" +Updates a new shipping zone. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingZoneUpdate { + errors: [ShippingError!]! + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + shippingZone: ShippingZone +} + +input ShippingZoneUpdateInput { + """List of channels to assign to the shipping zone.""" + addChannels: [ID!] + + """List of warehouses to assign to a shipping zone""" + addWarehouses: [ID!] + + """List of countries in this shipping zone.""" + countries: [String!] + + """ + Default shipping zone will be used for countries not covered by other zones. + """ + default: Boolean + + """Description of the shipping zone.""" + description: String + + """Shipping zone's name. Visible only to the staff.""" + name: String + + """List of channels to unassign from the shipping zone.""" + removeChannels: [ID!] + + """List of warehouses to unassign from a shipping zone""" + removeWarehouses: [ID!] +} + +""" +Event sent when shipping zone is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingZoneUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The shipping zone the event relates to.""" + shippingZone( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingZone + + """Saleor version that triggered the event.""" + version: String +} + +""" +Represents a shop resource containing general shop data and configuration. +""" +type Shop { + """ + Enable automatic fulfillment for all digital products. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + automaticFulfillmentDigitalProducts: Boolean + + """List of available external authentications.""" + availableExternalAuthentications: [ExternalAuthentication!]! + + """List of available payment gateways.""" + availablePaymentGateways( + """Slug of a channel for which the data should be returned.""" + channel: String + + """ + A currency for which gateways will be returned. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `channel` argument instead. + """ + currency: String + ): [PaymentGateway!]! + + """Shipping methods that are available for the shop.""" + availableShippingMethods( + """Address for which available shipping methods should be returned.""" + address: AddressInput + + """Slug of a channel for which the data should be returned.""" + channel: String! + ): [ShippingMethod!] + + """ + List of all currencies supported by shop's channels. + + Added in Saleor 3.1. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + channelCurrencies: [String!]! + + """Charge taxes on shipping.""" + chargeTaxesOnShipping: Boolean! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `ShippingMethodType.taxClass` to determine whether taxes are calculated for shipping methods; if a tax class is set, the taxes will be calculated, otherwise no tax rate will be applied.") + + """Company address.""" + companyAddress: Address + + """List of countries available in the shop.""" + countries( + """Filtering options for countries""" + filter: CountryFilterInput + + """ + A language code to return the translation for. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + languageCode: LanguageCodeEnum + ): [CountryDisplay!]! + + """URL of a view where customers can set their password.""" + customerSetPasswordUrl: String + + """Shop's default country.""" + defaultCountry: CountryDisplay + + """ + Default number of max downloads per digital content URL. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + defaultDigitalMaxDownloads: Int + + """ + Default number of days which digital content URL will be valid. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + defaultDigitalUrlValidDays: Int + + """ + Default shop's email sender's address. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + defaultMailSenderAddress: String + + """ + Default shop's email sender's name. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + defaultMailSenderName: String + + """Default weight unit.""" + defaultWeightUnit: WeightUnitsEnum + + """Shop's description.""" + description: String + + """Display prices with tax in store.""" + displayGrossPrices: Boolean! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `Channel.taxConfiguration` to determine whether to display gross or net prices.") + + """Shop's domain data.""" + domain: Domain! + + """ + Allow to approve fulfillments which are unpaid. + + Added in Saleor 3.1. + """ + fulfillmentAllowUnpaid: Boolean! + + """ + Automatically approve all new fulfillments. + + Added in Saleor 3.1. + """ + fulfillmentAutoApprove: Boolean! + + """Header text.""" + headerText: String + + """Include taxes in prices.""" + includeTaxesInPrices: Boolean! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `Channel.taxConfiguration.pricesEnteredWithTax` to determine whether prices are entered with tax.") + + """List of the shops's supported languages.""" + languages: [LanguageDisplay!]! + + """ + Default number of maximum line quantity in single checkout (per single checkout line). + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + limitQuantityPerCheckout: Int + + """ + Resource limitations and current usage if any set for a shop + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + """ + limits: LimitInfo! + + """Shop's name.""" + name: String! + + """List of available permissions.""" + permissions: [Permission!]! + + """List of possible phone prefixes.""" + phonePrefixes: [String!]! + + """ + Default number of minutes stock will be reserved for anonymous checkout or null when stock reservation is disabled. + + Added in Saleor 3.1. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + reserveStockDurationAnonymousUser: Int + + """ + Default number of minutes stock will be reserved for authenticated checkout or null when stock reservation is disabled. + + Added in Saleor 3.1. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + reserveStockDurationAuthenticatedUser: Int + + """ + Minor Saleor API version. + + Added in Saleor 3.5. + """ + schemaVersion: String! + + """ + List of staff notification recipients. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + staffNotificationRecipients: [StaffNotificationRecipient!] + + """Enable inventory tracking.""" + trackInventoryByDefault: Boolean + + """Returns translated shop fields for the given language code.""" + translation( + """A language code to return the translation for shop.""" + languageCode: LanguageCodeEnum! + ): ShopTranslation + + """ + Saleor API version. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + version: String! +} + +""" +Update the shop's address. If the `null` value is passed, the currently selected address will be deleted. + +Requires one of the following permissions: MANAGE_SETTINGS. +""" +type ShopAddressUpdate { + errors: [ShopError!]! + + """Updated shop.""" + shop: Shop + shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Updates site domain of the shop. + +Requires one of the following permissions: MANAGE_SETTINGS. +""" +type ShopDomainUpdate { + errors: [ShopError!]! + + """Updated shop.""" + shop: Shop + shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type ShopError { + """The error code.""" + code: ShopErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum ShopErrorCode { + ALREADY_EXISTS + CANNOT_FETCH_TAX_RATES + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE +} + +""" +Fetch tax rates. + +Requires one of the following permissions: MANAGE_SETTINGS. +""" +type ShopFetchTaxRates { + errors: [ShopError!]! + + """Updated shop.""" + shop: Shop + shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input ShopSettingsInput { + """Enable automatic fulfillment for all digital products.""" + automaticFulfillmentDigitalProducts: Boolean + + """ + Charge taxes on shipping. + + DEPRECATED: this field will be removed in Saleor 4.0. To enable taxes for a shipping method, assign a tax class to the shipping method with `shippingPriceCreate` or `shippingPriceUpdate` mutations. + """ + chargeTaxesOnShipping: Boolean + + """URL of a view where customers can set their password.""" + customerSetPasswordUrl: String + + """Default number of max downloads per digital content URL.""" + defaultDigitalMaxDownloads: Int + + """Default number of days which digital content URL will be valid.""" + defaultDigitalUrlValidDays: Int + + """Default email sender's address.""" + defaultMailSenderAddress: String + + """Default email sender's name.""" + defaultMailSenderName: String + + """Default weight unit.""" + defaultWeightUnit: WeightUnitsEnum + + """SEO description.""" + description: String + + """ + Display prices with tax in store. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `taxConfigurationUpdate` mutation to configure this setting per channel or country. + """ + displayGrossPrices: Boolean + + """ + Enable ability to approve fulfillments which are unpaid. + + Added in Saleor 3.1. + """ + fulfillmentAllowUnpaid: Boolean + + """ + Enable automatic approval of all new fulfillments. + + Added in Saleor 3.1. + """ + fulfillmentAutoApprove: Boolean + + """Header text.""" + headerText: String + + """ + Include taxes in prices. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `taxConfigurationUpdate` mutation to configure this setting per channel or country. + """ + includeTaxesInPrices: Boolean + + """ + Default number of maximum line quantity in single checkout. Minimum possible value is 1, default value is 50. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + limitQuantityPerCheckout: Int + + """ + Default number of minutes stock will be reserved for anonymous checkout. Enter 0 or null to disable. + + Added in Saleor 3.1. + """ + reserveStockDurationAnonymousUser: Int + + """ + Default number of minutes stock will be reserved for authenticated checkout. Enter 0 or null to disable. + + Added in Saleor 3.1. + """ + reserveStockDurationAuthenticatedUser: Int + + """Enable inventory tracking.""" + trackInventoryByDefault: Boolean +} + +""" +Creates/updates translations for shop settings. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type ShopSettingsTranslate { + errors: [TranslationError!]! + + """Updated shop settings.""" + shop: Shop + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input ShopSettingsTranslationInput { + description: String + headerText: String +} + +""" +Updates shop settings. + +Requires one of the following permissions: MANAGE_SETTINGS. +""" +type ShopSettingsUpdate { + errors: [ShopError!]! + + """Updated shop.""" + shop: Shop + shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type ShopTranslation implements Node { + description: String! + headerText: String! + id: ID! + + """Translation language.""" + language: LanguageDisplay! +} + +input SiteDomainInput { + """Domain name for shop.""" + domain: String + + """Shop site name.""" + name: String +} + +""" +Deletes staff users. Apps are not allowed to perform this mutation. + +Requires one of the following permissions: MANAGE_STAFF. +""" +type StaffBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [StaffError!]! + staffErrors: [StaffError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Creates a new staff user. Apps are not allowed to perform this mutation. + +Requires one of the following permissions: MANAGE_STAFF. +""" +type StaffCreate { + errors: [StaffError!]! + staffErrors: [StaffError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + user: User +} + +input StaffCreateInput { + """List of permission group IDs to which user should be assigned.""" + addGroups: [ID!] + + """The unique email address of the user.""" + email: String + + """Given name.""" + firstName: String + + """User account is active.""" + isActive: Boolean + + """Family name.""" + lastName: String + + """A note about the user.""" + note: String + + """ + URL of a view where users should be redirected to set the password. URL in RFC 1808 format. + """ + redirectUrl: String +} + +""" +Event sent when new staff user is created. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type StaffCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The user the event relates to.""" + user: User + + """Saleor version that triggered the event.""" + version: String +} + +""" +Deletes a staff user. Apps are not allowed to perform this mutation. + +Requires one of the following permissions: MANAGE_STAFF. +""" +type StaffDelete { + errors: [StaffError!]! + staffErrors: [StaffError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + user: User +} + +""" +Event sent when staff user is deleted. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type StaffDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The user the event relates to.""" + user: User + + """Saleor version that triggered the event.""" + version: String +} + +type StaffError { + """A type of address that causes the error.""" + addressType: AddressTypeEnum + + """The error code.""" + code: AccountErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """List of permission group IDs which cause the error.""" + groups: [ID!] + + """The error message.""" + message: String + + """List of permissions which causes the error.""" + permissions: [PermissionEnum!] + + """List of user IDs which causes the error.""" + users: [ID!] +} + +enum StaffMemberStatus { + """User account has been activated.""" + ACTIVE + + """User account has not been activated yet.""" + DEACTIVATED +} + +""" +Represents a recipient of email notifications send by Saleor, such as notifications about new orders. Notifications can be assigned to staff users or arbitrary email addresses. +""" +type StaffNotificationRecipient implements Node { + """Determines if a notification active.""" + active: Boolean + + """Returns email address of a user subscribed to email notifications.""" + email: String + id: ID! + + """Returns a user subscribed to email notifications.""" + user: User +} + +""" +Creates a new staff notification recipient. + +Requires one of the following permissions: MANAGE_SETTINGS. +""" +type StaffNotificationRecipientCreate { + errors: [ShopError!]! + shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + staffNotificationRecipient: StaffNotificationRecipient +} + +""" +Delete staff notification recipient. + +Requires one of the following permissions: MANAGE_SETTINGS. +""" +type StaffNotificationRecipientDelete { + errors: [ShopError!]! + shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + staffNotificationRecipient: StaffNotificationRecipient +} + +input StaffNotificationRecipientInput { + """Determines if a notification active.""" + active: Boolean + + """Email address of a user subscribed to email notifications.""" + email: String + + """The ID of the user subscribed to email notifications..""" + user: ID +} + +""" +Updates a staff notification recipient. + +Requires one of the following permissions: MANAGE_SETTINGS. +""" +type StaffNotificationRecipientUpdate { + errors: [ShopError!]! + shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + staffNotificationRecipient: StaffNotificationRecipient +} + +""" +Updates an existing staff user. Apps are not allowed to perform this mutation. + +Requires one of the following permissions: MANAGE_STAFF. +""" +type StaffUpdate { + errors: [StaffError!]! + staffErrors: [StaffError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + user: User +} + +input StaffUpdateInput { + """List of permission group IDs to which user should be assigned.""" + addGroups: [ID!] + + """The unique email address of the user.""" + email: String + + """Given name.""" + firstName: String + + """User account is active.""" + isActive: Boolean + + """Family name.""" + lastName: String + + """A note about the user.""" + note: String + + """List of permission group IDs from which user should be unassigned.""" + removeGroups: [ID!] +} + +""" +Event sent when staff user is updated. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type StaffUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The user the event relates to.""" + user: User + + """Saleor version that triggered the event.""" + version: String +} + +input StaffUserInput { + ids: [ID!] + search: String + status: StaffMemberStatus +} + +"""Represents stock.""" +type Stock implements Node { + id: ID! + productVariant: ProductVariant! + + """ + Quantity of a product in the warehouse's possession, including the allocated stock that is waiting for shipment. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + """ + quantity: Int! + + """ + Quantity allocated for orders. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + """ + quantityAllocated: Int! + + """ + Quantity reserved for checkouts. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + """ + quantityReserved: Int! + warehouse: Warehouse! +} + +enum StockAvailability { + IN_STOCK + OUT_OF_STOCK +} + +type StockCountableConnection { + edges: [StockCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type StockCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: Stock! +} + +type StockError { + """The error code.""" + code: StockErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum StockErrorCode { + ALREADY_EXISTS + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE +} + +input StockFilterInput { + quantity: Float + search: String +} + +input StockInput { + """Quantity of items available for sell.""" + quantity: Int! + + """Warehouse in which stock is located.""" + warehouse: ID! +} + +""" +Represents the channel stock settings. + +Added in Saleor 3.7. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type StockSettings { + """ + Allocation strategy defines the preference of warehouses for allocations and reservations. + """ + allocationStrategy: AllocationStrategyEnum! +} + +input StockSettingsInput { + """ + Allocation strategy options. Strategy defines the preference of warehouses for allocations and reservations. + """ + allocationStrategy: AllocationStrategyEnum! +} + +"""Enum representing the type of a payment storage in a gateway.""" +enum StorePaymentMethodEnum { + """Storage is disabled. The payment is not stored.""" + NONE + + """ + Off session storage type. The payment is stored to be reused even if the customer is absent. + """ + OFF_SESSION + + """ + On session storage type. The payment is stored only to be reused when the customer is present in the checkout flow. + """ + ON_SESSION +} + +type Subscription { + """ + Look up subscription event. + + Added in Saleor 3.2. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + event: Event +} + +enum TaxCalculationStrategy { + FLAT_RATES + TAX_APP +} + +""" +Tax class is a named object used to define tax rates per country. Tax class can be assigned to product types, products and shipping methods to define their tax rates. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TaxClass implements Node & ObjectWithMetadata { + """Country-specific tax rates for this tax class.""" + countries: [TaxClassCountryRate!]! + + """The ID of the object.""" + id: ID! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """Name of the tax class.""" + name: String! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata +} + +type TaxClassCountableConnection { + edges: [TaxClassCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type TaxClassCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: TaxClass! +} + +""" +Tax rate for a country. When tax class is null, it represents the default tax rate for that country; otherwise it's a country tax rate specific to the given tax class. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TaxClassCountryRate { + """Country in which this tax rate applies.""" + country: CountryDisplay! + + """Tax rate value.""" + rate: Float! + + """Related tax class.""" + taxClass: TaxClass +} + +""" +Create a tax class. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_TAXES. +""" +type TaxClassCreate { + errors: [TaxClassCreateError!]! + taxClass: TaxClass +} + +type TaxClassCreateError { + """The error code.""" + code: TaxClassCreateErrorCode! + + """List of country codes for which the configuration is invalid.""" + countryCodes: [String!]! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum TaxClassCreateErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND +} + +input TaxClassCreateInput { + """List of country-specific tax rates to create for this tax class.""" + createCountryRates: [CountryRateInput!] + + """Name of the tax class.""" + name: String! +} + +""" +Delete a tax class. After deleting the tax class any products, product types or shipping methods using it are updated to use the default tax class. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_TAXES. +""" +type TaxClassDelete { + errors: [TaxClassDeleteError!]! + taxClass: TaxClass +} + +type TaxClassDeleteError { + """The error code.""" + code: TaxClassDeleteErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum TaxClassDeleteErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND +} + +input TaxClassFilterInput { + countries: [CountryCode!] + ids: [ID!] + metadata: [MetadataFilter!] +} + +input TaxClassRateInput { + """Tax rate value.""" + rate: Float + + """ID of a tax class for which to update the tax rate""" + taxClassId: ID +} + +enum TaxClassSortField { + """Sort tax classes by name.""" + NAME +} + +input TaxClassSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort tax classes by the selected field.""" + field: TaxClassSortField! +} + +""" +Update a tax class. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_TAXES. +""" +type TaxClassUpdate { + errors: [TaxClassUpdateError!]! + taxClass: TaxClass +} + +type TaxClassUpdateError { + """The error code.""" + code: TaxClassUpdateErrorCode! + + """List of country codes for which the configuration is invalid.""" + countryCodes: [String!]! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum TaxClassUpdateErrorCode { + DUPLICATED_INPUT_ITEM + GRAPHQL_ERROR + INVALID + NOT_FOUND +} + +input TaxClassUpdateInput { + """Name of the tax class.""" + name: String + + """ + List of country codes for which to remove the tax class rates. Note: It removes all rates for given country code. + """ + removeCountryRates: [CountryCode!] + + """ + List of country-specific tax rates to create or update for this tax class. + """ + updateCountryRates: [CountryRateUpdateInput!] +} + +""" +Channel-specific tax configuration. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TaxConfiguration implements Node & ObjectWithMetadata { + """A channel to which the tax configuration applies to.""" + channel: Channel! + + """Determines whether taxes are charged in the given channel.""" + chargeTaxes: Boolean! + + """List of country-specific exceptions in tax configuration.""" + countries: [TaxConfigurationPerCountry!]! + + """ + Determines whether prices displayed in a storefront should include taxes. + """ + displayGrossPrices: Boolean! + + """The ID of the object.""" + id: ID! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """Determines whether prices are entered with the tax included.""" + pricesEnteredWithTax: Boolean! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """ + The default strategy to use for tax calculation in the given channel. Taxes can be calculated either using user-defined flat rates or with a tax app. Empty value means that no method is selected and taxes are not calculated. + """ + taxCalculationStrategy: TaxCalculationStrategy +} + +type TaxConfigurationCountableConnection { + edges: [TaxConfigurationCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type TaxConfigurationCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: TaxConfiguration! +} + +input TaxConfigurationFilterInput { + ids: [ID!] + metadata: [MetadataFilter!] +} + +""" +Country-specific exceptions of a channel's tax configuration. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TaxConfigurationPerCountry { + """Determines whether taxes are charged in this country.""" + chargeTaxes: Boolean! + + """Country in which this configuration applies.""" + country: CountryDisplay! + + """ + Determines whether prices displayed in a storefront should include taxes for this country. + """ + displayGrossPrices: Boolean! + + """ + A country-specific strategy to use for tax calculation. Taxes can be calculated either using user-defined flat rates or with a tax app. If not provided, use the value from the channel's tax configuration. + """ + taxCalculationStrategy: TaxCalculationStrategy +} + +input TaxConfigurationPerCountryInput { + """Determines whether taxes are charged in this country.""" + chargeTaxes: Boolean! + + """Country in which this configuration applies.""" + countryCode: CountryCode! + + """ + Determines whether prices displayed in a storefront should include taxes for this country. + """ + displayGrossPrices: Boolean! + + """ + A country-specific strategy to use for tax calculation. Taxes can be calculated either using user-defined flat rates or with a tax app. If not provided, use the value from the channel's tax configuration. + """ + taxCalculationStrategy: TaxCalculationStrategy +} + +""" +Update tax configuration for a channel. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_TAXES. +""" +type TaxConfigurationUpdate { + errors: [TaxConfigurationUpdateError!]! + taxConfiguration: TaxConfiguration +} + +type TaxConfigurationUpdateError { + """The error code.""" + code: TaxConfigurationUpdateErrorCode! + + """List of country codes for which the configuration is invalid.""" + countryCodes: [String!]! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum TaxConfigurationUpdateErrorCode { + DUPLICATED_INPUT_ITEM + GRAPHQL_ERROR + INVALID + NOT_FOUND +} + +input TaxConfigurationUpdateInput { + """Determines whether taxes are charged in the given channel.""" + chargeTaxes: Boolean + + """ + Determines whether prices displayed in a storefront should include taxes. + """ + displayGrossPrices: Boolean + + """Determines whether prices are entered with the tax included.""" + pricesEnteredWithTax: Boolean + + """List of country codes for which to remove the tax configuration.""" + removeCountriesConfiguration: [CountryCode!] + + """ + The default strategy to use for tax calculation in the given channel. Taxes can be calculated either using user-defined flat rates or with a tax app. Empty value means that no method is selected and taxes are not calculated. + """ + taxCalculationStrategy: TaxCalculationStrategy + + """ + List of tax country configurations to create or update (identified by a country code). + """ + updateCountriesConfiguration: [TaxConfigurationPerCountryInput!] +} + +""" +Tax class rates grouped by country. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TaxCountryConfiguration { + """A country for which tax class rates are grouped.""" + country: CountryDisplay! + + """List of tax class rates.""" + taxClassCountryRates: [TaxClassCountryRate!]! +} + +""" +Remove all tax class rates for a specific country. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_TAXES. +""" +type TaxCountryConfigurationDelete { + errors: [TaxCountryConfigurationDeleteError!]! + + """Updated tax class rates grouped by a country.""" + taxCountryConfiguration: TaxCountryConfiguration +} + +type TaxCountryConfigurationDeleteError { + """The error code.""" + code: TaxCountryConfigurationDeleteErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum TaxCountryConfigurationDeleteErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND +} + +""" +Update tax class rates for a specific country. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_TAXES. +""" +type TaxCountryConfigurationUpdate { + errors: [TaxCountryConfigurationUpdateError!]! + + """Updated tax class rates grouped by a country.""" + taxCountryConfiguration: TaxCountryConfiguration +} + +type TaxCountryConfigurationUpdateError { + """The error code.""" + code: TaxCountryConfigurationUpdateErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of tax class IDs for which the update failed.""" + taxClassIds: [String!]! +} + +"""An enumeration.""" +enum TaxCountryConfigurationUpdateErrorCode { + CANNOT_CREATE_NEGATIVE_RATE + GRAPHQL_ERROR + INVALID + NOT_FOUND + ONLY_ONE_DEFAULT_COUNTRY_RATE_ALLOWED +} + +""" +Exempt checkout or order from charging the taxes. When tax exemption is enabled, taxes won't be charged for the checkout or order. Taxes may still be calculated in cases when product prices are entered with the tax included and the net price needs to be known. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_TAXES. +""" +type TaxExemptionManage { + errors: [TaxExemptionManageError!]! + taxableObject: TaxSourceObject +} + +type TaxExemptionManageError { + """The error code.""" + code: TaxExemptionManageErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum TaxExemptionManageErrorCode { + GRAPHQL_ERROR + INVALID + NOT_EDITABLE_ORDER + NOT_FOUND +} + +union TaxSourceLine = CheckoutLine | OrderLine + +union TaxSourceObject = Checkout | Order + +"""Representation of tax types fetched from tax gateway.""" +type TaxType { + """Description of the tax type.""" + description: String + + """External tax code used to identify given tax group.""" + taxCode: String +} + +"""Taxable object.""" +type TaxableObject { + """The address data.""" + address: Address + channel: Channel! + + """The currency of the object.""" + currency: String! + + """List of discounts.""" + discounts: [TaxableObjectDiscount!]! + + """List of lines assigned to the object.""" + lines: [TaxableObjectLine!]! + + """Determines if prices contain entered tax..""" + pricesEnteredWithTax: Boolean! + + """The price of shipping method.""" + shippingPrice: Money! + + """The source object related to this tax object.""" + sourceObject: TaxSourceObject! +} + +"""Taxable object discount.""" +type TaxableObjectDiscount { + """The amount of the discount.""" + amount: Money! + + """The name of the discount.""" + name: String +} + +type TaxableObjectLine { + """Determines if taxes are being charged for the product.""" + chargeTaxes: Boolean! + + """The product name.""" + productName: String! + + """The product sku.""" + productSku: String + + """Number of items.""" + quantity: Int! + + """The source line related to this tax line.""" + sourceLine: TaxSourceLine! + + """Price of the order line.""" + totalPrice: Money! + + """Price of the single item in the order line.""" + unitPrice: Money! + + """The variant name.""" + variantName: String! +} + +""" +Represents a monetary value with taxes. In cases where taxes were not applied, net and gross values will be equal. +""" +type TaxedMoney { + """Currency code.""" + currency: String! + + """Amount of money including taxes.""" + gross: Money! + + """Amount of money without taxes.""" + net: Money! + + """Amount of taxes.""" + tax: Money! +} + +"""Represents a range of monetary values.""" +type TaxedMoneyRange { + """Lower bound of a price range.""" + start: TaxedMoney + + """Upper bound of a price range.""" + stop: TaxedMoney +} + +"""An enumeration.""" +enum ThumbnailFormatEnum { + WEBP +} + +type TimePeriod { + """The length of the period.""" + amount: Int! + + """The type of the period.""" + type: TimePeriodTypeEnum! +} + +input TimePeriodInputType { + """The length of the period.""" + amount: Int! + + """The type of the period.""" + type: TimePeriodTypeEnum! +} + +"""An enumeration.""" +enum TimePeriodTypeEnum { + DAY + MONTH + WEEK + YEAR +} + +"""An object representing a single payment.""" +type Transaction implements Node { + """Total amount of the transaction.""" + amount: Money + created: DateTime! + error: String + gatewayResponse: JSONString! + id: ID! + isSuccess: Boolean! + kind: TransactionKind! + payment: Payment! + token: String! +} + +type TransactionAction { + """Determines the action type.""" + actionType: TransactionActionEnum! + + """Transaction request amount. Null when action type is VOID.""" + amount: PositiveDecimal +} + +""" +Represents possible actions on payment transaction. + + The following actions are possible: + CHARGE - Represents the charge action. + REFUND - Represents a refund action. + VOID - Represents a void action. +""" +enum TransactionActionEnum { + CHARGE + REFUND + VOID +} + +""" +Event sent when transaction action is requested. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TransactionActionRequest implements Event { + """ + Requested action data. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + action: TransactionAction! + + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """ + Look up a transaction. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + transaction: TransactionItem + + """Saleor version that triggered the event.""" + version: String +} + +""" +Create transaction for checkout or order. Requires the following permissions: AUTHENTICATED_APP and HANDLE_PAYMENTS. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TransactionCreate { + errors: [TransactionCreateError!]! + transaction: TransactionItem +} + +type TransactionCreateError { + """The error code.""" + code: TransactionCreateErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum TransactionCreateErrorCode { + GRAPHQL_ERROR + INCORRECT_CURRENCY + INVALID + METADATA_KEY_REQUIRED + NOT_FOUND +} + +input TransactionCreateInput { + """Amount authorized by this transaction.""" + amountAuthorized: MoneyInput + + """Amount charged by this transaction.""" + amountCharged: MoneyInput + + """Amount refunded by this transaction.""" + amountRefunded: MoneyInput + + """Amount voided by this transaction.""" + amountVoided: MoneyInput + + """List of all possible actions for the transaction""" + availableActions: [TransactionActionEnum!] + + """Payment public metadata.""" + metadata: [MetadataInput!] + + """Payment private metadata.""" + privateMetadata: [MetadataInput!] + + """Reference of the transaction.""" + reference: String + + """Status of the transaction.""" + status: String! + + """Payment type used for this transaction.""" + type: String! +} + +"""Represents transaction's event.""" +type TransactionEvent implements Node { + createdAt: DateTime! + + """The ID of the object.""" + id: ID! + + """Name of the transaction's event.""" + name: String + + """Reference of transaction's event.""" + reference: String! + + """Status of transaction's event.""" + status: TransactionStatus! +} + +input TransactionEventInput { + """Name of the transaction.""" + name: String + + """Reference of the transaction.""" + reference: String + + """Current status of the payment transaction.""" + status: TransactionStatus! +} + +""" +Represents a payment transaction. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TransactionItem implements Node & ObjectWithMetadata { + """ + List of actions that can be performed in the current state of a payment. + """ + actions: [TransactionActionEnum!]! + + """Total amount authorized for this payment.""" + authorizedAmount: Money! + + """Total amount charged for this payment.""" + chargedAmount: Money! + createdAt: DateTime! + + """List of all transaction's events.""" + events: [TransactionEvent!]! + + """The ID of the object.""" + id: ID! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + modifiedAt: DateTime! + + """ + The related order. + + Added in Saleor 3.6. + """ + order: Order + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """Reference of transaction.""" + reference: String! + + """Total amount refunded for this payment.""" + refundedAmount: Money! + + """Status of transaction.""" + status: String! + + """Type of transaction.""" + type: String! + + """Total amount voided for this payment.""" + voidedAmount: Money! +} + +""" +Event sent when transaction item metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TransactionItemMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """ + Look up a transaction. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + transaction: TransactionItem + + """Saleor version that triggered the event.""" + version: String +} + +"""An enumeration.""" +enum TransactionKind { + ACTION_TO_CONFIRM + AUTH + CANCEL + CAPTURE + CONFIRM + EXTERNAL + PENDING + REFUND + REFUND_ONGOING + VOID +} + +""" +Request an action for payment transaction. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: HANDLE_PAYMENTS, MANAGE_ORDERS. +""" +type TransactionRequestAction { + errors: [TransactionRequestActionError!]! + transaction: TransactionItem +} + +type TransactionRequestActionError { + """The error code.""" + code: TransactionRequestActionErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum TransactionRequestActionErrorCode { + GRAPHQL_ERROR + INVALID + MISSING_TRANSACTION_ACTION_REQUEST_WEBHOOK + NOT_FOUND +} + +"""An enumeration.""" +enum TransactionStatus { + FAILURE + PENDING + SUCCESS +} + +""" +Create transaction for checkout or order. Requires the following permissions: AUTHENTICATED_APP and HANDLE_PAYMENTS. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TransactionUpdate { + errors: [TransactionUpdateError!]! + transaction: TransactionItem +} + +type TransactionUpdateError { + """The error code.""" + code: TransactionUpdateErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum TransactionUpdateErrorCode { + GRAPHQL_ERROR + INCORRECT_CURRENCY + INVALID + METADATA_KEY_REQUIRED + NOT_FOUND +} + +input TransactionUpdateInput { + """Amount authorized by this transaction.""" + amountAuthorized: MoneyInput + + """Amount charged by this transaction.""" + amountCharged: MoneyInput + + """Amount refunded by this transaction.""" + amountRefunded: MoneyInput + + """Amount voided by this transaction.""" + amountVoided: MoneyInput + + """List of all possible actions for the transaction""" + availableActions: [TransactionActionEnum!] + + """Payment public metadata.""" + metadata: [MetadataInput!] + + """Payment private metadata.""" + privateMetadata: [MetadataInput!] + + """Reference of the transaction.""" + reference: String + + """Status of the transaction.""" + status: String + + """Payment type used for this transaction.""" + type: String +} + +union TranslatableItem = AttributeTranslatableContent | AttributeValueTranslatableContent | CategoryTranslatableContent | CollectionTranslatableContent | MenuItemTranslatableContent | PageTranslatableContent | ProductTranslatableContent | ProductVariantTranslatableContent | SaleTranslatableContent | ShippingMethodTranslatableContent | VoucherTranslatableContent + +type TranslatableItemConnection { + edges: [TranslatableItemEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type TranslatableItemEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: TranslatableItem! +} + +enum TranslatableKinds { + ATTRIBUTE + ATTRIBUTE_VALUE + CATEGORY + COLLECTION + MENU_ITEM + PAGE + PRODUCT + SALE + SHIPPING_METHOD + VARIANT + VOUCHER +} + +""" +Event sent when new translation is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TranslationCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The translation the event relates to.""" + translation: TranslationTypes + + """Saleor version that triggered the event.""" + version: String +} + +type TranslationError { + """The error code.""" + code: TranslationErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum TranslationErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED +} + +input TranslationInput { + """ + Translated description. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + name: String + seoDescription: String + seoTitle: String +} + +union TranslationTypes = AttributeTranslation | AttributeValueTranslation | CategoryTranslation | CollectionTranslation | MenuItemTranslation | PageTranslation | ProductTranslation | ProductVariantTranslation | SaleTranslation | ShippingMethodTranslation | VoucherTranslation + +""" +Event sent when translation is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TranslationUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The translation the event relates to.""" + translation: TranslationTypes + + """Saleor version that triggered the event.""" + version: String +} + +scalar UUID + +input UpdateInvoiceInput { + """Invoice number""" + number: String + + """URL of an invoice to download.""" + url: String +} + +""" +Updates metadata of an object. To use it, you need to have access to the modified object. +""" +type UpdateMetadata { + errors: [MetadataError!]! + item: ObjectWithMetadata + metadataErrors: [MetadataError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Updates private metadata of an object. To use it, you need to be an authenticated staff user or an app and have access to the modified object. +""" +type UpdatePrivateMetadata { + errors: [MetadataError!]! + item: ObjectWithMetadata + metadataErrors: [MetadataError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Variables of this type must be set to null in mutations. They will be replaced with a filename from a following multipart part containing a binary file. See: https://github.com/jaydenseric/graphql-multipart-request-spec. +""" +scalar Upload + +type UploadError { + """The error code.""" + code: UploadErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum UploadErrorCode { + GRAPHQL_ERROR +} + +"""Represents user data.""" +type User implements Node & ObjectWithMetadata { + """List of all user's addresses.""" + addresses: [Address!]! + avatar( + """ + The format of the image. When not provided, format of the original image will be used. Must be provided together with the size value, otherwise original image will be returned. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + format: ThumbnailFormatEnum + + """ + Size of the image. If not provided, the original image will be returned. + """ + size: Int + ): Image + + """Returns the last open checkout of this user.""" + checkout: Checkout @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `checkoutTokens` field to fetch the user checkouts.") + + """Returns the checkout ID's assigned to this user.""" + checkoutIds( + """Slug of a channel for which the data should be returned.""" + channel: String + ): [ID!] + + """Returns the checkout UUID's assigned to this user.""" + checkoutTokens( + """Slug of a channel for which the data should be returned.""" + channel: String + ): [UUID!] @deprecated(reason: "This field will be removed in Saleor 4.0. Use `checkoutIds` instead.") + + """ + Returns checkouts assigned to this user. + + Added in Saleor 3.8. + """ + checkouts( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CheckoutCountableConnection + dateJoined: DateTime! + defaultBillingAddress: Address + defaultShippingAddress: Address + + """List of user's permission groups which user can manage.""" + editableGroups: [Group!] + email: String! + + """ + List of events associated with the user. + + Requires one of the following permissions: MANAGE_USERS, MANAGE_STAFF. + """ + events: [CustomerEvent!] + + """ + External ID of this user. + + Added in Saleor 3.10. + """ + externalReference: String + firstName: String! + + """List of the user gift cards.""" + giftCards( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): GiftCardCountableConnection + id: ID! + isActive: Boolean! + isStaff: Boolean! + + """User language code.""" + languageCode: LanguageCodeEnum! + lastLogin: DateTime + lastName: String! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """ + A note about the customer. + + Requires one of the following permissions: MANAGE_USERS, MANAGE_STAFF. + """ + note: String + + """ + List of user's orders. Requires one of the following permissions: MANAGE_STAFF, OWNER. + """ + orders( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): OrderCountableConnection + + """List of user's permission groups.""" + permissionGroups: [Group!] + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of stored payment sources.""" + storedPaymentSources( + """Slug of a channel for which the data should be returned.""" + channel: String + ): [PaymentSource!] + updatedAt: DateTime! + + """List of user's permissions.""" + userPermissions: [UserPermission!] +} + +""" +Deletes a user avatar. Only for staff members. + +Requires one of the following permissions: AUTHENTICATED_STAFF_USER. +""" +type UserAvatarDelete { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + + """An updated user instance.""" + user: User +} + +""" +Create a user avatar. Only for staff members. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + +Requires one of the following permissions: AUTHENTICATED_STAFF_USER. +""" +type UserAvatarUpdate { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + + """An updated user instance.""" + user: User +} + +""" +Activate or deactivate users. + +Requires one of the following permissions: MANAGE_USERS. +""" +type UserBulkSetActive { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + + """Returns how many objects were affected.""" + count: Int! + errors: [AccountError!]! +} + +type UserCountableConnection { + edges: [UserCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type UserCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: User! +} + +input UserCreateInput { + """ + Slug of a channel which will be used for notify user. Optional when only one channel exists. + """ + channel: String + + """Billing address of the customer.""" + defaultBillingAddress: AddressInput + + """Shipping address of the customer.""" + defaultShippingAddress: AddressInput + + """The unique email address of the user.""" + email: String + + """ + External ID of the customer. + + Added in Saleor 3.10. + """ + externalReference: String + + """Given name.""" + firstName: String + + """User account is active.""" + isActive: Boolean + + """User language code.""" + languageCode: LanguageCodeEnum + + """Family name.""" + lastName: String + + """A note about the user.""" + note: String + + """ + URL of a view where users should be redirected to set the password. URL in RFC 1808 format. + """ + redirectUrl: String +} + +type UserPermission { + """Internal code for permission.""" + code: PermissionEnum! + + """Describe action(s) allowed to do by permission.""" + name: String! + + """List of user permission groups which contains this permission.""" + sourcePermissionGroups( + """ID of user whose groups should be returned.""" + userId: ID! + ): [Group!] +} + +enum UserSortField { + """Sort users by created at.""" + CREATED_AT + + """Sort users by email.""" + EMAIL + + """Sort users by first name.""" + FIRST_NAME + + """Sort users by last modified at.""" + LAST_MODIFIED_AT + + """Sort users by last name.""" + LAST_NAME + + """Sort users by order count.""" + ORDER_COUNT +} + +input UserSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort users by the selected field.""" + field: UserSortField! +} + +"""Represents a VAT rate for a country.""" +type VAT { + """Country code.""" + countryCode: String! + + """Country's VAT rate exceptions for specific types of goods.""" + reducedRates: [ReducedRate!]! + + """Standard VAT rate in percent.""" + standardRate: Float +} + +enum VariantAttributeScope { + ALL + NOT_VARIANT_SELECTION + VARIANT_SELECTION +} + +""" +Assign an media to a product variant. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type VariantMediaAssign { + errors: [ProductError!]! + media: ProductMedia + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + productVariant: ProductVariant +} + +""" +Unassign an media from a product variant. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type VariantMediaUnassign { + errors: [ProductError!]! + media: ProductMedia + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + productVariant: ProductVariant +} + +"""Represents availability of a variant in the storefront.""" +type VariantPricingInfo { + """The discount amount if in sale (null otherwise).""" + discount: TaxedMoney + + """The discount amount in the local currency.""" + discountLocalCurrency: TaxedMoney + + """Whether it is in sale or not.""" + onSale: Boolean + + """The price, with any discount subtracted.""" + price: TaxedMoney + + """The discounted price in the local currency.""" + priceLocalCurrency: TaxedMoney + + """The price without any discount.""" + priceUndiscounted: TaxedMoney +} + +"""Verify JWT token.""" +type VerifyToken { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + + """Determine if token is valid or not.""" + isValid: Boolean! + + """JWT payload.""" + payload: GenericScalar + + """User assigned to token.""" + user: User +} + +"""An enumeration.""" +enum VolumeUnitsEnum { + ACRE_FT + ACRE_IN + CUBIC_CENTIMETER + CUBIC_DECIMETER + CUBIC_FOOT + CUBIC_INCH + CUBIC_METER + CUBIC_MILLIMETER + CUBIC_YARD + FL_OZ + LITER + PINT + QT +} + +""" +Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes. +""" +type Voucher implements Node & ObjectWithMetadata { + applyOncePerCustomer: Boolean! + applyOncePerOrder: Boolean! + + """List of categories this voucher applies to.""" + categories( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CategoryCountableConnection + + """ + List of availability in channels for the voucher. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + channelListings: [VoucherChannelListing!] + code: String! + + """ + List of collections this voucher applies to. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + collections( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CollectionCountableConnection + + """List of countries available for the shipping voucher.""" + countries: [CountryDisplay!] + + """Currency code for voucher.""" + currency: String + + """Voucher value.""" + discountValue: Float + + """Determines a type of discount for voucher - value or percentage""" + discountValueType: DiscountValueTypeEnum! + endDate: DateTime + id: ID! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + minCheckoutItemsQuantity: Int + + """Minimum order value to apply voucher.""" + minSpent: Money + name: String + onlyForStaff: Boolean! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """ + List of products this voucher applies to. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + products( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductCountableConnection + startDate: DateTime! + + """Returns translated voucher fields for the given language code.""" + translation( + """A language code to return the translation for voucher.""" + languageCode: LanguageCodeEnum! + ): VoucherTranslation + + """Determines a type of voucher.""" + type: VoucherTypeEnum! + usageLimit: Int + used: Int! + + """ + List of product variants this voucher applies to. + + Added in Saleor 3.1. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + variants( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductVariantCountableConnection +} + +""" +Adds products, categories, collections to a voucher. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type VoucherAddCatalogues { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + + """Voucher of which catalogue IDs will be modified.""" + voucher: Voucher +} + +""" +Deletes vouchers. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type VoucherBulkDelete { + """Returns how many objects were affected.""" + count: Int! + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! +} + +"""Represents voucher channel listing.""" +type VoucherChannelListing implements Node { + channel: Channel! + currency: String! + discountValue: Float! + id: ID! + minSpent: Money +} + +input VoucherChannelListingAddInput { + """ID of a channel.""" + channelId: ID! + + """Value of the voucher.""" + discountValue: PositiveDecimal + + """Min purchase amount required to apply the voucher.""" + minAmountSpent: PositiveDecimal +} + +input VoucherChannelListingInput { + """List of channels to which the voucher should be assigned.""" + addChannels: [VoucherChannelListingAddInput!] + + """List of channels from which the voucher should be unassigned.""" + removeChannels: [ID!] +} + +""" +Manage voucher's availability in channels. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type VoucherChannelListingUpdate { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + + """An updated voucher instance.""" + voucher: Voucher +} + +type VoucherCountableConnection { + edges: [VoucherCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type VoucherCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: Voucher! +} + +""" +Creates a new voucher. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type VoucherCreate { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + voucher: Voucher +} + +""" +Event sent when new voucher is created. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type VoucherCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String + + """The voucher the event relates to.""" + voucher( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Voucher +} + +""" +Deletes a voucher. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type VoucherDelete { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + voucher: Voucher +} + +""" +Event sent when voucher is deleted. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type VoucherDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String + + """The voucher the event relates to.""" + voucher( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Voucher +} + +enum VoucherDiscountType { + FIXED + PERCENTAGE + SHIPPING +} + +input VoucherFilterInput { + discountType: [VoucherDiscountType!] + ids: [ID!] + metadata: [MetadataFilter!] + search: String + started: DateTimeRangeInput + status: [DiscountStatusEnum!] + timesUsed: IntRangeInput +} + +input VoucherInput { + """Voucher should be applied once per customer.""" + applyOncePerCustomer: Boolean + + """Voucher should be applied to the cheapest item or entire order.""" + applyOncePerOrder: Boolean + + """Categories discounted by the voucher.""" + categories: [ID!] + + """Code to use the voucher.""" + code: String + + """Collections discounted by the voucher.""" + collections: [ID!] + + """Country codes that can be used with the shipping voucher.""" + countries: [String!] + + """Choices: fixed or percentage.""" + discountValueType: DiscountValueTypeEnum + + """End date of the voucher in ISO 8601 format.""" + endDate: DateTime + + """Minimal quantity of checkout items required to apply the voucher.""" + minCheckoutItemsQuantity: Int + + """Voucher name.""" + name: String + + """Voucher can be used only by staff user.""" + onlyForStaff: Boolean + + """Products discounted by the voucher.""" + products: [ID!] + + """Start date of the voucher in ISO 8601 format.""" + startDate: DateTime + + """Voucher type: PRODUCT, CATEGORY SHIPPING or ENTIRE_ORDER.""" + type: VoucherTypeEnum + + """Limit number of times this voucher can be used in total.""" + usageLimit: Int + + """ + Variants discounted by the voucher. + + Added in Saleor 3.1. + """ + variants: [ID!] +} + +""" +Event sent when voucher metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type VoucherMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String + + """The voucher the event relates to.""" + voucher( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Voucher +} + +""" +Removes products, categories, collections from a voucher. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type VoucherRemoveCatalogues { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + + """Voucher of which catalogue IDs will be modified.""" + voucher: Voucher +} + +enum VoucherSortField { + """Sort vouchers by code.""" + CODE + + """Sort vouchers by end date.""" + END_DATE + + """ + Sort vouchers by minimum spent amount. + + This option requires a channel filter to work as the values can vary between channels. + """ + MINIMUM_SPENT_AMOUNT + + """Sort vouchers by start date.""" + START_DATE + + """Sort vouchers by type.""" + TYPE + + """Sort vouchers by usage limit.""" + USAGE_LIMIT + + """ + Sort vouchers by value. + + This option requires a channel filter to work as the values can vary between channels. + """ + VALUE +} + +input VoucherSortingInput { + """ + Specifies the channel in which to sort the data. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String + + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort vouchers by the selected field.""" + field: VoucherSortField! +} + +type VoucherTranslatableContent implements Node { + id: ID! + name: String + + """Returns translated voucher fields for the given language code.""" + translation( + """A language code to return the translation for voucher.""" + languageCode: LanguageCodeEnum! + ): VoucherTranslation + + """ + Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucher: Voucher @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") +} + +""" +Creates/updates translations for a voucher. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type VoucherTranslate { + errors: [TranslationError!]! + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + voucher: Voucher +} + +type VoucherTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String +} + +enum VoucherTypeEnum { + ENTIRE_ORDER + SHIPPING + SPECIFIC_PRODUCT +} + +""" +Updates a voucher. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type VoucherUpdate { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + voucher: Voucher +} + +""" +Event sent when voucher is updated. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type VoucherUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String + + """The voucher the event relates to.""" + voucher( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Voucher +} + +"""Represents warehouse.""" +type Warehouse implements Node & ObjectWithMetadata { + address: Address! + + """ + Click and collect options: local, all or disabled. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + clickAndCollectOption: WarehouseClickAndCollectOptionEnum! + + """Warehouse company name.""" + companyName: String! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `Address.companyName` instead.") + email: String! + + """ + External ID of this warehouse. + + Added in Saleor 3.10. + """ + externalReference: String + id: ID! + isPrivate: Boolean! + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + shippingZones( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ShippingZoneCountableConnection! + slug: String! +} + +"""An enumeration.""" +enum WarehouseClickAndCollectOptionEnum { + ALL + DISABLED + LOCAL +} + +type WarehouseCountableConnection { + edges: [WarehouseCountableEdge!]! + + """Pagination data for this connection.""" + pageInfo: PageInfo! + + """A total count of items in the collection.""" + totalCount: Int +} + +type WarehouseCountableEdge { + """A cursor for use in pagination.""" + cursor: String! + + """The item at the end of the edge.""" + node: Warehouse! +} + +""" +Creates new warehouse. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type WarehouseCreate { + errors: [WarehouseError!]! + warehouse: Warehouse + warehouseErrors: [WarehouseError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input WarehouseCreateInput { + """Address of the warehouse.""" + address: AddressInput! + + """The email address of the warehouse.""" + email: String + + """ + External ID of the warehouse. + + Added in Saleor 3.10. + """ + externalReference: String + + """Warehouse name.""" + name: String! + + """ + Shipping zones supported by the warehouse. + + DEPRECATED: this field will be removed in Saleor 4.0. Providing the zone ids will raise a ValidationError. + """ + shippingZones: [ID!] + + """Warehouse slug.""" + slug: String +} + +""" +Event sent when new warehouse is created. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type WarehouseCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String + + """The warehouse the event relates to.""" + warehouse: Warehouse +} + +""" +Deletes selected warehouse. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type WarehouseDelete { + errors: [WarehouseError!]! + warehouse: Warehouse + warehouseErrors: [WarehouseError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Event sent when warehouse is deleted. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type WarehouseDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String + + """The warehouse the event relates to.""" + warehouse: Warehouse +} + +type WarehouseError { + """The error code.""" + code: WarehouseErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of shipping zones IDs which causes the error.""" + shippingZones: [ID!] +} + +"""An enumeration.""" +enum WarehouseErrorCode { + ALREADY_EXISTS + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE +} + +input WarehouseFilterInput { + channels: [ID!] + clickAndCollectOption: WarehouseClickAndCollectOptionEnum + ids: [ID!] + isPrivate: Boolean + search: String + slugs: [String!] +} + +""" +Event sent when warehouse metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type WarehouseMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String + + """The warehouse the event relates to.""" + warehouse: Warehouse +} + +""" +Add shipping zone to given warehouse. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type WarehouseShippingZoneAssign { + errors: [WarehouseError!]! + warehouse: Warehouse + warehouseErrors: [WarehouseError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +""" +Remove shipping zone from given warehouse. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type WarehouseShippingZoneUnassign { + errors: [WarehouseError!]! + warehouse: Warehouse + warehouseErrors: [WarehouseError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +enum WarehouseSortField { + """Sort warehouses by name.""" + NAME +} + +input WarehouseSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort warehouses by the selected field.""" + field: WarehouseSortField! +} + +""" +Updates given warehouse. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type WarehouseUpdate { + errors: [WarehouseError!]! + warehouse: Warehouse + warehouseErrors: [WarehouseError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input WarehouseUpdateInput { + """Address of the warehouse.""" + address: AddressInput + + """ + Click and collect options: local, all or disabled. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + clickAndCollectOption: WarehouseClickAndCollectOptionEnum + + """The email address of the warehouse.""" + email: String + + """ + External ID of the warehouse. + + Added in Saleor 3.10. + """ + externalReference: String + + """ + Visibility of warehouse stocks. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + isPrivate: Boolean + + """Warehouse name.""" + name: String + + """Warehouse slug.""" + slug: String +} + +""" +Event sent when warehouse is updated. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type WarehouseUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Saleor version that triggered the event.""" + version: String + + """The warehouse the event relates to.""" + warehouse: Warehouse +} + +"""Webhook.""" +type Webhook implements Node { + app: App! + + """List of asynchronous webhook events.""" + asyncEvents: [WebhookEventAsync!]! + + """Event deliveries.""" + eventDeliveries( + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Event delivery filter options.""" + filter: EventDeliveryFilterInput + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + + """Event delivery sorter.""" + sortBy: EventDeliverySortingInput + ): EventDeliveryCountableConnection + + """List of webhook events.""" + events: [WebhookEvent!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `asyncEvents` or `syncEvents` instead.") + id: ID! + + """Informs if webhook is activated.""" + isActive: Boolean! + name: String! + + """Used to create a hash signature for each payload.""" + secretKey: String @deprecated(reason: "This field will be removed in Saleor 4.0. As of Saleor 3.5, webhook payloads default to signing using a verifiable JWS.") + + """Used to define payloads for specific events.""" + subscriptionQuery: String + + """List of synchronous webhook events.""" + syncEvents: [WebhookEventSync!]! + + """Target URL for webhook.""" + targetUrl: String! +} + +""" +Creates a new webhook subscription. + +Requires one of the following permissions: MANAGE_APPS, AUTHENTICATED_APP. +""" +type WebhookCreate { + errors: [WebhookError!]! + webhook: Webhook + webhookErrors: [WebhookError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input WebhookCreateInput { + """ID of the app to which webhook belongs.""" + app: ID + + """The asynchronous events that webhook wants to subscribe.""" + asyncEvents: [WebhookEventTypeAsyncEnum!] + + """ + The events that webhook wants to subscribe. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `asyncEvents` or `syncEvents` instead. + """ + events: [WebhookEventTypeEnum!] + + """Determine if webhook will be set active or not.""" + isActive: Boolean + + """The name of the webhook.""" + name: String + + """ + Subscription query used to define a webhook payload. + + Added in Saleor 3.2. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + query: String + + """ + The secret key used to create a hash signature with each payload. + + DEPRECATED: this field will be removed in Saleor 4.0. As of Saleor 3.5, webhook payloads default to signing using a verifiable JWS. + """ + secretKey: String + + """The synchronous events that webhook wants to subscribe.""" + syncEvents: [WebhookEventTypeSyncEnum!] + + """The url to receive the payload.""" + targetUrl: String +} + +""" +Delete a webhook. Before the deletion, the webhook is deactivated to pause any deliveries that are already scheduled. The deletion might fail if delivery is in progress. In such a case, the webhook is not deleted but remains deactivated. + +Requires one of the following permissions: MANAGE_APPS, AUTHENTICATED_APP. +""" +type WebhookDelete { + errors: [WebhookError!]! + webhook: Webhook + webhookErrors: [WebhookError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +type WebhookError { + """The error code.""" + code: WebhookErrorCode! + + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String +} + +"""An enumeration.""" +enum WebhookErrorCode { + DELETE_FAILED + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE +} + +"""Webhook event.""" +type WebhookEvent { + """Internal name of the event type.""" + eventType: WebhookEventTypeEnum! + + """Display name of the event.""" + name: String! +} + +"""Asynchronous webhook event.""" +type WebhookEventAsync { + """Internal name of the event type.""" + eventType: WebhookEventTypeAsyncEnum! + + """Display name of the event.""" + name: String! +} + +"""Synchronous webhook event.""" +type WebhookEventSync { + """Internal name of the event type.""" + eventType: WebhookEventTypeSyncEnum! + + """Display name of the event.""" + name: String! +} + +"""Enum determining type of webhook.""" +enum WebhookEventTypeAsyncEnum { + """A new address created.""" + ADDRESS_CREATED + + """An address deleted.""" + ADDRESS_DELETED + + """An address updated.""" + ADDRESS_UPDATED + + """All the events.""" + ANY_EVENTS + + """An app deleted.""" + APP_DELETED + + """A new app installed.""" + APP_INSTALLED + + """An app status is changed.""" + APP_STATUS_CHANGED + + """An app updated.""" + APP_UPDATED + + """A new attribute is created.""" + ATTRIBUTE_CREATED + + """An attribute is deleted.""" + ATTRIBUTE_DELETED + + """An attribute is updated.""" + ATTRIBUTE_UPDATED + + """A new attribute value is created.""" + ATTRIBUTE_VALUE_CREATED + + """An attribute value is deleted.""" + ATTRIBUTE_VALUE_DELETED + + """An attribute value is updated.""" + ATTRIBUTE_VALUE_UPDATED + + """A new category created.""" + CATEGORY_CREATED + + """A category is deleted.""" + CATEGORY_DELETED + + """A category is updated.""" + CATEGORY_UPDATED + + """A new channel created.""" + CHANNEL_CREATED + + """A channel is deleted.""" + CHANNEL_DELETED + + """A channel status is changed.""" + CHANNEL_STATUS_CHANGED + + """A channel is updated.""" + CHANNEL_UPDATED + + """A new checkout is created.""" + CHECKOUT_CREATED + + """ + A checkout metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + CHECKOUT_METADATA_UPDATED + + """ + A checkout is updated. It also triggers all updates related to the checkout. + """ + CHECKOUT_UPDATED + + """A new collection is created.""" + COLLECTION_CREATED + + """A collection is deleted.""" + COLLECTION_DELETED + + """ + A collection metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + COLLECTION_METADATA_UPDATED + + """A collection is updated.""" + COLLECTION_UPDATED + + """A new customer account is created.""" + CUSTOMER_CREATED + + """A customer account is deleted.""" + CUSTOMER_DELETED + + """ + A customer account metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + CUSTOMER_METADATA_UPDATED + + """A customer account is updated.""" + CUSTOMER_UPDATED + + """A draft order is created.""" + DRAFT_ORDER_CREATED + + """A draft order is deleted.""" + DRAFT_ORDER_DELETED + + """A draft order is updated.""" + DRAFT_ORDER_UPDATED + + """A fulfillment is approved.""" + FULFILLMENT_APPROVED + + """A fulfillment is cancelled.""" + FULFILLMENT_CANCELED + + """A new fulfillment is created.""" + FULFILLMENT_CREATED + + """ + A fulfillment metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + FULFILLMENT_METADATA_UPDATED + + """A new gift card created.""" + GIFT_CARD_CREATED + + """A gift card is deleted.""" + GIFT_CARD_DELETED + + """ + A gift card metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + GIFT_CARD_METADATA_UPDATED + + """A gift card status is changed.""" + GIFT_CARD_STATUS_CHANGED + + """A gift card is updated.""" + GIFT_CARD_UPDATED + + """An invoice is deleted.""" + INVOICE_DELETED + + """An invoice for order requested.""" + INVOICE_REQUESTED + + """Invoice has been sent.""" + INVOICE_SENT + + """A new menu created.""" + MENU_CREATED + + """A menu is deleted.""" + MENU_DELETED + + """A new menu item created.""" + MENU_ITEM_CREATED + + """A menu item is deleted.""" + MENU_ITEM_DELETED + + """A menu item is updated.""" + MENU_ITEM_UPDATED + + """A menu is updated.""" + MENU_UPDATED + + """User notification triggered.""" + NOTIFY_USER + + """An observability event is created.""" + OBSERVABILITY + + """An order is cancelled.""" + ORDER_CANCELLED + + """ + An order is confirmed (status change unconfirmed -> unfulfilled) by a staff user using the OrderConfirm mutation. It also triggers when the user completes the checkout and the shop setting `automatically_confirm_all_new_orders` is enabled. + """ + ORDER_CONFIRMED + + """A new order is placed.""" + ORDER_CREATED + + """An order is fulfilled.""" + ORDER_FULFILLED + + """Payment is made and an order is fully paid.""" + ORDER_FULLY_PAID + + """ + An order metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + ORDER_METADATA_UPDATED + + """ + An order is updated; triggered for all changes related to an order; covers all other order webhooks, except for ORDER_CREATED. + """ + ORDER_UPDATED + + """A new page is created.""" + PAGE_CREATED + + """A page is deleted.""" + PAGE_DELETED + + """A new page type is created.""" + PAGE_TYPE_CREATED + + """A page type is deleted.""" + PAGE_TYPE_DELETED + + """A page type is updated.""" + PAGE_TYPE_UPDATED + + """A page is updated.""" + PAGE_UPDATED + + """A new permission group is created.""" + PERMISSION_GROUP_CREATED + + """A permission group is deleted.""" + PERMISSION_GROUP_DELETED + + """A permission group is updated.""" + PERMISSION_GROUP_UPDATED + + """A new product is created.""" + PRODUCT_CREATED + + """A product is deleted.""" + PRODUCT_DELETED + + """ + A product metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + PRODUCT_METADATA_UPDATED + + """A product is updated.""" + PRODUCT_UPDATED + + """A product variant is back in stock.""" + PRODUCT_VARIANT_BACK_IN_STOCK + + """A new product variant is created.""" + PRODUCT_VARIANT_CREATED + + """A product variant is deleted.""" + PRODUCT_VARIANT_DELETED + + """ + A product variant metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + PRODUCT_VARIANT_METADATA_UPDATED + + """A product variant is out of stock.""" + PRODUCT_VARIANT_OUT_OF_STOCK + + """A product variant is updated.""" + PRODUCT_VARIANT_UPDATED + + """A sale is created.""" + SALE_CREATED + + """A sale is deleted.""" + SALE_DELETED + + """A sale is activated or deactivated.""" + SALE_TOGGLE + + """A sale is updated.""" + SALE_UPDATED + + """A new shipping price is created.""" + SHIPPING_PRICE_CREATED + + """A shipping price is deleted.""" + SHIPPING_PRICE_DELETED + + """A shipping price is updated.""" + SHIPPING_PRICE_UPDATED + + """A new shipping zone is created.""" + SHIPPING_ZONE_CREATED + + """A shipping zone is deleted.""" + SHIPPING_ZONE_DELETED + + """ + A shipping zone metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + SHIPPING_ZONE_METADATA_UPDATED + + """A shipping zone is updated.""" + SHIPPING_ZONE_UPDATED + + """A new staff user is created.""" + STAFF_CREATED + + """A staff user is deleted.""" + STAFF_DELETED + + """A staff user is updated.""" + STAFF_UPDATED + + """An action requested for transaction.""" + TRANSACTION_ACTION_REQUEST + + """ + Transaction item metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + TRANSACTION_ITEM_METADATA_UPDATED + + """A new translation is created.""" + TRANSLATION_CREATED + + """A translation is updated.""" + TRANSLATION_UPDATED + + """A new voucher created.""" + VOUCHER_CREATED + + """A voucher is deleted.""" + VOUCHER_DELETED + + """ + A voucher metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + VOUCHER_METADATA_UPDATED + + """A voucher is updated.""" + VOUCHER_UPDATED + + """A new warehouse created.""" + WAREHOUSE_CREATED + + """A warehouse is deleted.""" + WAREHOUSE_DELETED + + """ + A warehouse metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + WAREHOUSE_METADATA_UPDATED + + """A warehouse is updated.""" + WAREHOUSE_UPDATED +} + +"""Enum determining type of webhook.""" +enum WebhookEventTypeEnum { + """A new address created.""" + ADDRESS_CREATED + + """An address deleted.""" + ADDRESS_DELETED + + """An address updated.""" + ADDRESS_UPDATED + + """All the events.""" + ANY_EVENTS + + """An app deleted.""" + APP_DELETED + + """A new app installed.""" + APP_INSTALLED + + """An app status is changed.""" + APP_STATUS_CHANGED + + """An app updated.""" + APP_UPDATED + + """A new attribute is created.""" + ATTRIBUTE_CREATED + + """An attribute is deleted.""" + ATTRIBUTE_DELETED + + """An attribute is updated.""" + ATTRIBUTE_UPDATED + + """A new attribute value is created.""" + ATTRIBUTE_VALUE_CREATED + + """An attribute value is deleted.""" + ATTRIBUTE_VALUE_DELETED + + """An attribute value is updated.""" + ATTRIBUTE_VALUE_UPDATED + + """A new category created.""" + CATEGORY_CREATED + + """A category is deleted.""" + CATEGORY_DELETED + + """A category is updated.""" + CATEGORY_UPDATED + + """A new channel created.""" + CHANNEL_CREATED + + """A channel is deleted.""" + CHANNEL_DELETED + + """A channel status is changed.""" + CHANNEL_STATUS_CHANGED + + """A channel is updated.""" + CHANNEL_UPDATED + + """ + Event called for checkout tax calculation. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + CHECKOUT_CALCULATE_TAXES + + """A new checkout is created.""" + CHECKOUT_CREATED + + """Filter shipping methods for checkout.""" + CHECKOUT_FILTER_SHIPPING_METHODS + + """ + A checkout metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + CHECKOUT_METADATA_UPDATED + + """ + A checkout is updated. It also triggers all updates related to the checkout. + """ + CHECKOUT_UPDATED + + """A new collection is created.""" + COLLECTION_CREATED + + """A collection is deleted.""" + COLLECTION_DELETED + + """ + A collection metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + COLLECTION_METADATA_UPDATED + + """A collection is updated.""" + COLLECTION_UPDATED + + """A new customer account is created.""" + CUSTOMER_CREATED + + """A customer account is deleted.""" + CUSTOMER_DELETED + + """ + A customer account metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + CUSTOMER_METADATA_UPDATED + + """A customer account is updated.""" + CUSTOMER_UPDATED + + """A draft order is created.""" + DRAFT_ORDER_CREATED + + """A draft order is deleted.""" + DRAFT_ORDER_DELETED + + """A draft order is updated.""" + DRAFT_ORDER_UPDATED + + """A fulfillment is approved.""" + FULFILLMENT_APPROVED + + """A fulfillment is cancelled.""" + FULFILLMENT_CANCELED + + """A new fulfillment is created.""" + FULFILLMENT_CREATED + + """ + A fulfillment metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + FULFILLMENT_METADATA_UPDATED + + """A new gift card created.""" + GIFT_CARD_CREATED + + """A gift card is deleted.""" + GIFT_CARD_DELETED + + """ + A gift card metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + GIFT_CARD_METADATA_UPDATED + + """A gift card status is changed.""" + GIFT_CARD_STATUS_CHANGED + + """A gift card is updated.""" + GIFT_CARD_UPDATED + + """An invoice is deleted.""" + INVOICE_DELETED + + """An invoice for order requested.""" + INVOICE_REQUESTED + + """Invoice has been sent.""" + INVOICE_SENT + + """A new menu created.""" + MENU_CREATED + + """A menu is deleted.""" + MENU_DELETED + + """A new menu item created.""" + MENU_ITEM_CREATED + + """A menu item is deleted.""" + MENU_ITEM_DELETED + + """A menu item is updated.""" + MENU_ITEM_UPDATED + + """A menu is updated.""" + MENU_UPDATED + + """User notification triggered.""" + NOTIFY_USER + + """An observability event is created.""" + OBSERVABILITY + + """ + Event called for order tax calculation. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + ORDER_CALCULATE_TAXES + + """An order is cancelled.""" + ORDER_CANCELLED + + """ + An order is confirmed (status change unconfirmed -> unfulfilled) by a staff user using the OrderConfirm mutation. It also triggers when the user completes the checkout and the shop setting `automatically_confirm_all_new_orders` is enabled. + """ + ORDER_CONFIRMED + + """A new order is placed.""" + ORDER_CREATED + + """Filter shipping methods for order.""" + ORDER_FILTER_SHIPPING_METHODS + + """An order is fulfilled.""" + ORDER_FULFILLED + + """Payment is made and an order is fully paid.""" + ORDER_FULLY_PAID + + """ + An order metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + ORDER_METADATA_UPDATED + + """ + An order is updated; triggered for all changes related to an order; covers all other order webhooks, except for ORDER_CREATED. + """ + ORDER_UPDATED + + """A new page is created.""" + PAGE_CREATED + + """A page is deleted.""" + PAGE_DELETED + + """A new page type is created.""" + PAGE_TYPE_CREATED + + """A page type is deleted.""" + PAGE_TYPE_DELETED + + """A page type is updated.""" + PAGE_TYPE_UPDATED + + """A page is updated.""" + PAGE_UPDATED + + """Authorize payment.""" + PAYMENT_AUTHORIZE + + """Capture payment.""" + PAYMENT_CAPTURE + + """Confirm payment.""" + PAYMENT_CONFIRM + + """Listing available payment gateways.""" + PAYMENT_LIST_GATEWAYS + + """Process payment.""" + PAYMENT_PROCESS + + """Refund payment.""" + PAYMENT_REFUND + + """Void payment.""" + PAYMENT_VOID + + """A new permission group is created.""" + PERMISSION_GROUP_CREATED + + """A permission group is deleted.""" + PERMISSION_GROUP_DELETED + + """A permission group is updated.""" + PERMISSION_GROUP_UPDATED + + """A new product is created.""" + PRODUCT_CREATED + + """A product is deleted.""" + PRODUCT_DELETED + + """ + A product metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + PRODUCT_METADATA_UPDATED + + """A product is updated.""" + PRODUCT_UPDATED + + """A product variant is back in stock.""" + PRODUCT_VARIANT_BACK_IN_STOCK + + """A new product variant is created.""" + PRODUCT_VARIANT_CREATED + + """A product variant is deleted.""" + PRODUCT_VARIANT_DELETED + + """ + A product variant metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + PRODUCT_VARIANT_METADATA_UPDATED + + """A product variant is out of stock.""" + PRODUCT_VARIANT_OUT_OF_STOCK + + """A product variant is updated.""" + PRODUCT_VARIANT_UPDATED + + """A sale is created.""" + SALE_CREATED + + """A sale is deleted.""" + SALE_DELETED + + """A sale is activated or deactivated.""" + SALE_TOGGLE + + """A sale is updated.""" + SALE_UPDATED + + """Fetch external shipping methods for checkout.""" + SHIPPING_LIST_METHODS_FOR_CHECKOUT + + """A new shipping price is created.""" + SHIPPING_PRICE_CREATED + + """A shipping price is deleted.""" + SHIPPING_PRICE_DELETED + + """A shipping price is updated.""" + SHIPPING_PRICE_UPDATED + + """A new shipping zone is created.""" + SHIPPING_ZONE_CREATED + + """A shipping zone is deleted.""" + SHIPPING_ZONE_DELETED + + """ + A shipping zone metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + SHIPPING_ZONE_METADATA_UPDATED + + """A shipping zone is updated.""" + SHIPPING_ZONE_UPDATED + + """A new staff user is created.""" + STAFF_CREATED + + """A staff user is deleted.""" + STAFF_DELETED + + """A staff user is updated.""" + STAFF_UPDATED + + """An action requested for transaction.""" + TRANSACTION_ACTION_REQUEST + + """ + Transaction item metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + TRANSACTION_ITEM_METADATA_UPDATED + + """A new translation is created.""" + TRANSLATION_CREATED + + """A translation is updated.""" + TRANSLATION_UPDATED + + """A new voucher created.""" + VOUCHER_CREATED + + """A voucher is deleted.""" + VOUCHER_DELETED + + """ + A voucher metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + VOUCHER_METADATA_UPDATED + + """A voucher is updated.""" + VOUCHER_UPDATED + + """A new warehouse created.""" + WAREHOUSE_CREATED + + """A warehouse is deleted.""" + WAREHOUSE_DELETED + + """ + A warehouse metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + WAREHOUSE_METADATA_UPDATED + + """A warehouse is updated.""" + WAREHOUSE_UPDATED +} + +"""Enum determining type of webhook.""" +enum WebhookEventTypeSyncEnum { + """ + Event called for checkout tax calculation. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + CHECKOUT_CALCULATE_TAXES + + """Filter shipping methods for checkout.""" + CHECKOUT_FILTER_SHIPPING_METHODS + + """ + Event called for order tax calculation. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + ORDER_CALCULATE_TAXES + + """Filter shipping methods for order.""" + ORDER_FILTER_SHIPPING_METHODS + + """Authorize payment.""" + PAYMENT_AUTHORIZE + + """Capture payment.""" + PAYMENT_CAPTURE + + """Confirm payment.""" + PAYMENT_CONFIRM + + """Listing available payment gateways.""" + PAYMENT_LIST_GATEWAYS + + """Process payment.""" + PAYMENT_PROCESS + + """Refund payment.""" + PAYMENT_REFUND + + """Void payment.""" + PAYMENT_VOID + + """Fetch external shipping methods for checkout.""" + SHIPPING_LIST_METHODS_FOR_CHECKOUT +} + +"""An enumeration.""" +enum WebhookSampleEventTypeEnum { + ADDRESS_CREATED + ADDRESS_DELETED + ADDRESS_UPDATED + APP_DELETED + APP_INSTALLED + APP_STATUS_CHANGED + APP_UPDATED + ATTRIBUTE_CREATED + ATTRIBUTE_DELETED + ATTRIBUTE_UPDATED + ATTRIBUTE_VALUE_CREATED + ATTRIBUTE_VALUE_DELETED + ATTRIBUTE_VALUE_UPDATED + CATEGORY_CREATED + CATEGORY_DELETED + CATEGORY_UPDATED + CHANNEL_CREATED + CHANNEL_DELETED + CHANNEL_STATUS_CHANGED + CHANNEL_UPDATED + CHECKOUT_CREATED + CHECKOUT_METADATA_UPDATED + CHECKOUT_UPDATED + COLLECTION_CREATED + COLLECTION_DELETED + COLLECTION_METADATA_UPDATED + COLLECTION_UPDATED + CUSTOMER_CREATED + CUSTOMER_DELETED + CUSTOMER_METADATA_UPDATED + CUSTOMER_UPDATED + DRAFT_ORDER_CREATED + DRAFT_ORDER_DELETED + DRAFT_ORDER_UPDATED + FULFILLMENT_APPROVED + FULFILLMENT_CANCELED + FULFILLMENT_CREATED + FULFILLMENT_METADATA_UPDATED + GIFT_CARD_CREATED + GIFT_CARD_DELETED + GIFT_CARD_METADATA_UPDATED + GIFT_CARD_STATUS_CHANGED + GIFT_CARD_UPDATED + INVOICE_DELETED + INVOICE_REQUESTED + INVOICE_SENT + MENU_CREATED + MENU_DELETED + MENU_ITEM_CREATED + MENU_ITEM_DELETED + MENU_ITEM_UPDATED + MENU_UPDATED + NOTIFY_USER + OBSERVABILITY + ORDER_CANCELLED + ORDER_CONFIRMED + ORDER_CREATED + ORDER_FULFILLED + ORDER_FULLY_PAID + ORDER_METADATA_UPDATED + ORDER_UPDATED + PAGE_CREATED + PAGE_DELETED + PAGE_TYPE_CREATED + PAGE_TYPE_DELETED + PAGE_TYPE_UPDATED + PAGE_UPDATED + PERMISSION_GROUP_CREATED + PERMISSION_GROUP_DELETED + PERMISSION_GROUP_UPDATED + PRODUCT_CREATED + PRODUCT_DELETED + PRODUCT_METADATA_UPDATED + PRODUCT_UPDATED + PRODUCT_VARIANT_BACK_IN_STOCK + PRODUCT_VARIANT_CREATED + PRODUCT_VARIANT_DELETED + PRODUCT_VARIANT_METADATA_UPDATED + PRODUCT_VARIANT_OUT_OF_STOCK + PRODUCT_VARIANT_UPDATED + SALE_CREATED + SALE_DELETED + SALE_TOGGLE + SALE_UPDATED + SHIPPING_PRICE_CREATED + SHIPPING_PRICE_DELETED + SHIPPING_PRICE_UPDATED + SHIPPING_ZONE_CREATED + SHIPPING_ZONE_DELETED + SHIPPING_ZONE_METADATA_UPDATED + SHIPPING_ZONE_UPDATED + STAFF_CREATED + STAFF_DELETED + STAFF_UPDATED + TRANSACTION_ACTION_REQUEST + TRANSACTION_ITEM_METADATA_UPDATED + TRANSLATION_CREATED + TRANSLATION_UPDATED + VOUCHER_CREATED + VOUCHER_DELETED + VOUCHER_METADATA_UPDATED + VOUCHER_UPDATED + WAREHOUSE_CREATED + WAREHOUSE_DELETED + WAREHOUSE_METADATA_UPDATED + WAREHOUSE_UPDATED +} + +""" +Updates a webhook subscription. + +Requires one of the following permissions: MANAGE_APPS. +""" +type WebhookUpdate { + errors: [WebhookError!]! + webhook: Webhook + webhookErrors: [WebhookError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") +} + +input WebhookUpdateInput { + """ID of the app to which webhook belongs.""" + app: ID + + """The asynchronous events that webhook wants to subscribe.""" + asyncEvents: [WebhookEventTypeAsyncEnum!] + + """ + The events that webhook wants to subscribe. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `asyncEvents` or `syncEvents` instead. + """ + events: [WebhookEventTypeEnum!] + + """Determine if webhook will be set active or not.""" + isActive: Boolean + + """The new name of the webhook.""" + name: String + + """ + Subscription query used to define a webhook payload. + + Added in Saleor 3.2. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + query: String + + """ + Use to create a hash signature with each payload. + + DEPRECATED: this field will be removed in Saleor 4.0. As of Saleor 3.5, webhook payloads default to signing using a verifiable JWS. + """ + secretKey: String + + """The synchronous events that webhook wants to subscribe.""" + syncEvents: [WebhookEventTypeSyncEnum!] + + """The url to receive the payload.""" + targetUrl: String +} + +"""Represents weight value in a specific weight unit.""" +type Weight { + """Weight unit.""" + unit: WeightUnitsEnum! + + """Weight value.""" + value: Float! +} + +scalar WeightScalar + +"""An enumeration.""" +enum WeightUnitsEnum { + G + KG + LB + OZ + TONNE +} + +"""_Any value scalar as defined by Federation spec.""" +scalar _Any + +"""_Entity union as defined by Federation spec.""" +union _Entity = Address | App | Category | Collection | Group | PageType | Product | ProductMedia | ProductType | ProductVariant | User + +"""_Service manifest as defined by Federation spec.""" +type _Service { + sdl: String +} \ No newline at end of file diff --git a/apps/klaviyo/graphql/fragments/AddressFragment.graphql b/apps/klaviyo/graphql/fragments/AddressFragment.graphql new file mode 100644 index 0000000..0099cda --- /dev/null +++ b/apps/klaviyo/graphql/fragments/AddressFragment.graphql @@ -0,0 +1,17 @@ +fragment AddressFragment on Address { + __typename + id + firstName + lastName + companyName + streetAddress1 + streetAddress2 + city + cityArea + postalCode + country { + code + } + countryArea + phone +} diff --git a/apps/klaviyo/graphql/fragments/MetadataFragment.graphql b/apps/klaviyo/graphql/fragments/MetadataFragment.graphql new file mode 100644 index 0000000..76f0ded --- /dev/null +++ b/apps/klaviyo/graphql/fragments/MetadataFragment.graphql @@ -0,0 +1,4 @@ +fragment MetadataFragment on MetadataItem { + key + value +} diff --git a/apps/klaviyo/graphql/fragments/MoneyFragment.graphql b/apps/klaviyo/graphql/fragments/MoneyFragment.graphql new file mode 100644 index 0000000..a8abca5 --- /dev/null +++ b/apps/klaviyo/graphql/fragments/MoneyFragment.graphql @@ -0,0 +1,4 @@ +fragment MoneyFragment on Money { + amount + currency +} diff --git a/apps/klaviyo/graphql/fragments/OrderFragment.graphql b/apps/klaviyo/graphql/fragments/OrderFragment.graphql new file mode 100644 index 0000000..538dfd5 --- /dev/null +++ b/apps/klaviyo/graphql/fragments/OrderFragment.graphql @@ -0,0 +1,89 @@ +fragment OrderFragment on Order { + __typename + id + channel { + __typename + id + slug + currencyCode + } + shippingMethod { + type + id + name + } + shippingAddress { + ...AddressFragment + } + billingAddress { + ...AddressFragment + } + discounts { + id + } + token + userEmail + created + original + lines { + __typename + id + productVariantId + totalPrice { + ...TaxedMoneyFragment + } + allocations { + quantity + warehouse { + id + } + } + productName + variantName + translatedProductName + translatedVariantName + productSku + quantity + unitDiscountValue + unitDiscountType + unitDiscountReason + unitPrice { + ...TaxedMoneyFragment + } + undiscountedUnitPrice { + ...TaxedMoneyFragment + } + taxRate + } + fulfillments { + id + } + payments { + ...PaymentFragment + } + privateMetadata { + ...MetadataFragment + } + metadata { + ...MetadataFragment + } + status + languageCodeEnum + origin + shippingMethodName + collectionPointName + shippingPrice { + ...TaxedMoneyFragment + } + shippingTaxRate + total { + ...TaxedMoneyFragment + } + undiscountedTotal { + ...TaxedMoneyFragment + } + weight { + value + unit + } +} diff --git a/apps/klaviyo/graphql/fragments/PaymentFragment.graphql b/apps/klaviyo/graphql/fragments/PaymentFragment.graphql new file mode 100644 index 0000000..1228702 --- /dev/null +++ b/apps/klaviyo/graphql/fragments/PaymentFragment.graphql @@ -0,0 +1,19 @@ +fragment PaymentFragment on Payment { + __typename + id + created + modified + gateway + isActive + chargeStatus + total { + amount + } + capturedAmount { + ...MoneyFragment + } + creditCard { + brand + } + paymentMethodType +} diff --git a/apps/klaviyo/graphql/fragments/TaxedMoneyFragment.graphql b/apps/klaviyo/graphql/fragments/TaxedMoneyFragment.graphql new file mode 100644 index 0000000..5dbd077 --- /dev/null +++ b/apps/klaviyo/graphql/fragments/TaxedMoneyFragment.graphql @@ -0,0 +1,9 @@ +fragment TaxedMoneyFragment on TaxedMoney { + currency + net { + ...MoneyFragment + } + gross { + ...MoneyFragment + } +} diff --git a/apps/klaviyo/graphql/mutations/UpdateAppMetadata.graphql b/apps/klaviyo/graphql/mutations/UpdateAppMetadata.graphql new file mode 100644 index 0000000..718ec63 --- /dev/null +++ b/apps/klaviyo/graphql/mutations/UpdateAppMetadata.graphql @@ -0,0 +1,10 @@ +mutation UpdateAppMetadata($id: ID!, $input: [MetadataInput!]!) { + updatePrivateMetadata(id: $id, input: $input) { + item { + privateMetadata { + key + value + } + } + } +} diff --git a/apps/klaviyo/graphql/queries/FetchAppDetails.graphql b/apps/klaviyo/graphql/queries/FetchAppDetails.graphql new file mode 100644 index 0000000..b4bad82 --- /dev/null +++ b/apps/klaviyo/graphql/queries/FetchAppDetails.graphql @@ -0,0 +1,9 @@ +query FetchAppDetails { + app { + id + privateMetadata { + key + value + } + } +} diff --git a/apps/klaviyo/graphql/schema.graphql b/apps/klaviyo/graphql/schema.graphql new file mode 100644 index 0000000..bd0b177 --- /dev/null +++ b/apps/klaviyo/graphql/schema.graphql @@ -0,0 +1,26596 @@ +schema { + query: Query + mutation: Mutation + subscription: Subscription +} + +type Query { + """ + Look up a webhook by ID. Requires one of the following permissions: MANAGE_APPS, OWNER. + """ + webhook( + """ID of the webhook.""" + id: ID! + ): Webhook + + """ + List of all available webhook events. + + Requires one of the following permissions: MANAGE_APPS. + """ + webhookEvents: [WebhookEvent!] @deprecated(reason: "This field will be removed in Saleor 4.0. Use `WebhookEventTypeAsyncEnum` and `WebhookEventTypeSyncEnum` to get available event types.") + + """ + Retrieve a sample payload for a given webhook event based on real data. It can be useful for some integrations where sample payload is required. + """ + webhookSamplePayload( + """Name of the requested event type.""" + eventType: WebhookSampleEventTypeEnum! + ): JSONString + + """ + Look up a warehouse by ID. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS, MANAGE_SHIPPING. + """ + warehouse( + """ID of a warehouse.""" + id: ID + + """ + External ID of a warehouse. + + Added in Saleor 3.10. + """ + externalReference: String + ): Warehouse + + """ + List of warehouses. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS, MANAGE_SHIPPING. + """ + warehouses( + filter: WarehouseFilterInput + sortBy: WarehouseSortingInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): WarehouseCountableConnection + + """ + Returns a list of all translatable items of a given kind. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + translations( + """Kind of objects to retrieve.""" + kind: TranslatableKinds! + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): TranslatableItemConnection + + """ + Lookup a translatable item by ID. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + translation( + """ID of the object to retrieve.""" + id: ID! + + """Kind of the object to retrieve.""" + kind: TranslatableKinds! + ): TranslatableItem + + """ + Look up a tax configuration. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + taxConfiguration( + """ID of a tax configuration.""" + id: ID! + ): TaxConfiguration + + """ + List of tax configurations. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + taxConfigurations( + """Filtering options for tax configurations.""" + filter: TaxConfigurationFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): TaxConfigurationCountableConnection + + """ + Look up a tax class. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + taxClass( + """ID of a tax class.""" + id: ID! + ): TaxClass + + """ + List of tax classes. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + taxClasses( + """Sort tax classes.""" + sortBy: TaxClassSortingInput + + """Filtering options for tax classes.""" + filter: TaxClassFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): TaxClassCountableConnection + + """ + Tax class rates grouped by country. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + taxCountryConfiguration( + """Country for which to return tax class rates.""" + countryCode: CountryCode! + ): TaxCountryConfiguration + + "\\n\\nRequires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP." + taxCountryConfigurations: [TaxCountryConfiguration!] + + """ + Look up a stock by ID + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + stock( + """ID of an warehouse""" + id: ID! + ): Stock + + """ + List of stocks. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + stocks( + filter: StockFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): StockCountableConnection + + """Return information about the shop.""" + shop: Shop! + + """ + Order related settings from site settings. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderSettings: OrderSettings + + """ + Gift card related settings from site settings. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardSettings: GiftCardSettings! + + """ + Look up a shipping zone by ID. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingZone( + """ID of the shipping zone.""" + id: ID! + + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingZone + + """ + List of the shop's shipping zones. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingZones( + """Filtering options for shipping zones.""" + filter: ShippingZoneFilterInput + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ShippingZoneCountableConnection + + """ + Look up digital content by ID. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + digitalContent( + """ID of the digital content.""" + id: ID! + ): DigitalContent + + """ + List of digital content. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + digitalContents( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): DigitalContentCountableConnection + + """List of the shop's categories.""" + categories( + """Filtering options for categories.""" + filter: CategoryFilterInput + + """Sort categories.""" + sortBy: CategorySortingInput + + """Filter categories by the nesting level in the category tree.""" + level: Int + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CategoryCountableConnection + + """Look up a category by ID or slug.""" + category( + """ID of the category.""" + id: ID + + """Slug of the category""" + slug: String + ): Category + + """ + Look up a collection by ID. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + collection( + """ID of the collection.""" + id: ID + + """Slug of the category""" + slug: String + + """Slug of a channel for which the data should be returned.""" + channel: String + ): Collection + + """ + List of the shop's collections. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + collections( + """Filtering options for collections.""" + filter: CollectionFilterInput + + """Sort collections.""" + sortBy: CollectionSortingInput + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CollectionCountableConnection + + """ + Look up a product by ID. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + product( + """ID of the product.""" + id: ID + + """Slug of the product.""" + slug: String + + """ + External ID of the product. + + Added in Saleor 3.10. + """ + externalReference: String + + """Slug of a channel for which the data should be returned.""" + channel: String + ): Product + + """ + List of the shop's products. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + products( + """Filtering options for products.""" + filter: ProductFilterInput + + """Sort products.""" + sortBy: ProductOrder + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductCountableConnection + + """Look up a product type by ID.""" + productType( + """ID of the product type.""" + id: ID! + ): ProductType + + """List of the shop's product types.""" + productTypes( + """Filtering options for product types.""" + filter: ProductTypeFilterInput + + """Sort product types.""" + sortBy: ProductTypeSortingInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductTypeCountableConnection + + """ + Look up a product variant by ID or SKU. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + productVariant( + """ID of the product variant.""" + id: ID + + """Sku of the product variant.""" + sku: String + + """ + External ID of the product. + + Added in Saleor 3.10. + """ + externalReference: String + + """Slug of a channel for which the data should be returned.""" + channel: String + ): ProductVariant + + """ + List of product variants. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + productVariants( + """Filter product variants by given IDs.""" + ids: [ID!] + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Filtering options for product variant.""" + filter: ProductVariantFilterInput + + """Sort products variants.""" + sortBy: ProductVariantSortingInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductVariantCountableConnection + + """ + List of top selling products. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + reportProductSales( + """Span of time.""" + period: ReportingPeriod! + + """Slug of a channel for which the data should be returned.""" + channel: String! + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductVariantCountableConnection + + """ + Look up a payment by ID. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + payment( + """ID of the payment.""" + id: ID! + ): Payment + + """ + List of payments. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + payments( + """Filtering options for payments.""" + filter: PaymentFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): PaymentCountableConnection + + """ + Look up a transaction by ID. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: HANDLE_PAYMENTS. + """ + transaction( + """ID of a transaction.""" + id: ID! + ): TransactionItem + + """Look up a page by ID or slug.""" + page( + """ID of the page.""" + id: ID + + """The slug of the page.""" + slug: String + ): Page + + """List of the shop's pages.""" + pages( + """Sort pages.""" + sortBy: PageSortingInput + + """Filtering options for pages.""" + filter: PageFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): PageCountableConnection + + """Look up a page type by ID.""" + pageType( + """ID of the page type.""" + id: ID! + ): PageType + + """List of the page types.""" + pageTypes( + """Sort page types.""" + sortBy: PageTypeSortingInput + + """Filtering options for page types.""" + filter: PageTypeFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): PageTypeCountableConnection + + """ + List of activity events to display on homepage (at the moment it only contains order-events). + + Requires one of the following permissions: MANAGE_ORDERS. + """ + homepageEvents( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): OrderEventCountableConnection + + """Look up an order by ID or external reference.""" + order( + """ID of an order.""" + id: ID + + """ + External ID of an order. + + Added in Saleor 3.10. + """ + externalReference: String + ): Order + + """ + List of orders. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orders( + """Sort orders.""" + sortBy: OrderSortingInput + + """Filtering options for orders.""" + filter: OrderFilterInput + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): OrderCountableConnection + + """ + List of draft orders. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + draftOrders( + """Sort draft orders.""" + sortBy: OrderSortingInput + + """Filtering options for draft orders.""" + filter: OrderDraftFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): OrderCountableConnection + + """ + Return the total sales amount from a specific period. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + ordersTotal( + """A period of time.""" + period: ReportingPeriod + + """Slug of a channel for which the data should be returned.""" + channel: String + ): TaxedMoney + + """Look up an order by token.""" + orderByToken( + """The order's token.""" + token: UUID! + ): Order @deprecated(reason: "This field will be removed in Saleor 4.0.") + + """Look up a navigation menu by ID or name.""" + menu( + """Slug of a channel for which the data should be returned.""" + channel: String + + """ID of the menu.""" + id: ID + + """The menu's name.""" + name: String + + """The menu's slug.""" + slug: String + ): Menu + + """List of the storefront's menus.""" + menus( + """Slug of a channel for which the data should be returned.""" + channel: String + + """Sort menus.""" + sortBy: MenuSortingInput + + """ + Filtering options for menus. + + `slug`: This field will be removed in Saleor 4.0. Use `slugs` instead. + """ + filter: MenuFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): MenuCountableConnection + + """Look up a menu item by ID.""" + menuItem( + """ID of the menu item.""" + id: ID! + + """Slug of a channel for which the data should be returned.""" + channel: String + ): MenuItem + + """List of the storefronts's menu items.""" + menuItems( + """Slug of a channel for which the data should be returned.""" + channel: String + + """Sort menus items.""" + sortBy: MenuItemSortingInput + + """Filtering options for menu items.""" + filter: MenuItemFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): MenuItemCountableConnection + + """ + Look up a gift card by ID. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCard( + """ID of the gift card.""" + id: ID! + ): GiftCard + + """ + List of gift cards. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCards( + """ + Sort gift cards. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + sortBy: GiftCardSortingInput + + """ + Filtering options for gift cards. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + filter: GiftCardFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): GiftCardCountableConnection + + """ + List of gift card currencies. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardCurrencies: [String!]! + + """ + List of gift card tags. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardTags( + """Filtering options for gift card tags.""" + filter: GiftCardTagFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): GiftCardTagCountableConnection + + """ + Look up a plugin by ID. + + Requires one of the following permissions: MANAGE_PLUGINS. + """ + plugin( + """ID of the plugin.""" + id: ID! + ): Plugin + + """ + List of plugins. + + Requires one of the following permissions: MANAGE_PLUGINS. + """ + plugins( + """Filtering options for plugins.""" + filter: PluginFilterInput + + """Sort plugins.""" + sortBy: PluginSortingInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): PluginCountableConnection + + """ + Look up a sale by ID. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + sale( + """ID of the sale.""" + id: ID! + + """Slug of a channel for which the data should be returned.""" + channel: String + ): Sale + + """ + List of the shop's sales. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + sales( + """Filtering options for sales.""" + filter: SaleFilterInput + + """Sort sales.""" + sortBy: SaleSortingInput + + """ + Search sales by name, value or type. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `filter.search` input instead. + """ + query: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): SaleCountableConnection + + """ + Look up a voucher by ID. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucher( + """ID of the voucher.""" + id: ID! + + """Slug of a channel for which the data should be returned.""" + channel: String + ): Voucher + + """ + List of the shop's vouchers. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + vouchers( + """Filtering options for vouchers.""" + filter: VoucherFilterInput + + """Sort voucher.""" + sortBy: VoucherSortingInput + + """ + Search vouchers by name or code. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `filter.search` input instead. + """ + query: String + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): VoucherCountableConnection + + """ + Look up a export file by ID. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + exportFile( + """ID of the export file job.""" + id: ID! + ): ExportFile + + """ + List of export files. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + exportFiles( + """Filtering options for export files.""" + filter: ExportFileFilterInput + + """Sort export files.""" + sortBy: ExportFileSortingInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ExportFileCountableConnection + + """List of all tax rates available from tax gateway.""" + taxTypes: [TaxType!] + + """Look up a checkout by token and slug of channel.""" + checkout( + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + The checkout's token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): Checkout + + """ + List of checkouts. + + Requires one of the following permissions: MANAGE_CHECKOUTS. + """ + checkouts( + """ + Sort checkouts. + + Added in Saleor 3.1. + """ + sortBy: CheckoutSortingInput + + """ + Filtering options for checkouts. + + Added in Saleor 3.1. + """ + filter: CheckoutFilterInput + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CheckoutCountableConnection + + """ + List of checkout lines. + + Requires one of the following permissions: MANAGE_CHECKOUTS. + """ + checkoutLines( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CheckoutLineCountableConnection + + """Look up a channel by ID or slug.""" + channel( + """ID of the channel.""" + id: ID + + """ + Slug of the channel. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + slug: String + ): Channel + + """ + List of all channels. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + channels: [Channel!] + + """List of the shop's attributes.""" + attributes( + """Filtering options for attributes.""" + filter: AttributeFilterInput + + """Sorting options for attributes.""" + sortBy: AttributeSortingInput + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): AttributeCountableConnection + + """Look up an attribute by ID, slug or external reference.""" + attribute( + """ID of the attribute.""" + id: ID + + """Slug of the attribute.""" + slug: String + + """ + External ID of the attribute. + + Added in Saleor 3.10. + """ + externalReference: String + ): Attribute + + """ + List of all apps installations + + Requires one of the following permissions: MANAGE_APPS. + """ + appsInstallations: [AppInstallation!]! + + """ + List of the apps. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, MANAGE_APPS. + """ + apps( + """Filtering options for apps.""" + filter: AppFilterInput + + """Sort apps.""" + sortBy: AppSortingInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): AppCountableConnection + + """ + Look up an app by ID. If ID is not provided, return the currently authenticated app. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER AUTHENTICATED_APP. The authenticated app has access to its resources. Fetching different apps requires MANAGE_APPS permission. + """ + app( + """ID of the app.""" + id: ID + ): App + + """ + List of all extensions. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + appExtensions( + """Filtering options for apps extensions.""" + filter: AppExtensionFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): AppExtensionCountableConnection + + """ + Look up an app extension by ID. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + appExtension( + """ID of the app extension.""" + id: ID! + ): AppExtension + + """Returns address validation rules.""" + addressValidationRules( + """Two-letter ISO 3166-1 country code.""" + countryCode: CountryCode! + + """Designation of a region, province or state.""" + countryArea: String + + """City or a town name.""" + city: String + + """Sublocality like a district.""" + cityArea: String + ): AddressValidationData + + """Look up an address by ID.""" + address( + """ID of an address.""" + id: ID! + ): Address + + """ + List of the shop's customers. + + Requires one of the following permissions: MANAGE_ORDERS, MANAGE_USERS. + """ + customers( + """Filtering options for customers.""" + filter: CustomerFilterInput + + """Sort customers.""" + sortBy: UserSortingInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): UserCountableConnection + + """ + List of permission groups. + + Requires one of the following permissions: MANAGE_STAFF. + """ + permissionGroups( + """Filtering options for permission groups.""" + filter: PermissionGroupFilterInput + + """Sort permission groups.""" + sortBy: PermissionGroupSortingInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): GroupCountableConnection + + """ + Look up permission group by ID. + + Requires one of the following permissions: MANAGE_STAFF. + """ + permissionGroup( + """ID of the group.""" + id: ID! + ): Group + + """Return the currently authenticated user.""" + me: User + + """ + List of the shop's staff users. + + Requires one of the following permissions: MANAGE_STAFF. + """ + staffUsers( + """Filtering options for staff users.""" + filter: StaffUserInput + + """Sort staff users.""" + sortBy: UserSortingInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): UserCountableConnection + + """ + Look up a user by ID or email address. + + Requires one of the following permissions: MANAGE_STAFF, MANAGE_USERS, MANAGE_ORDERS. + """ + user( + """ID of the user.""" + id: ID + + """Email address of the user.""" + email: String + + """ + External ID of the user. + + Added in Saleor 3.10. + """ + externalReference: String + ): User + _entities(representations: [_Any]): [_Entity] + _service: _Service +} + +"""Webhook.""" +type Webhook implements Node { + id: ID! + name: String! + + """List of webhook events.""" + events: [WebhookEvent!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `asyncEvents` or `syncEvents` instead.") + + """List of synchronous webhook events.""" + syncEvents: [WebhookEventSync!]! + + """List of asynchronous webhook events.""" + asyncEvents: [WebhookEventAsync!]! + app: App! + + """Event deliveries.""" + eventDeliveries( + """Event delivery sorter.""" + sortBy: EventDeliverySortingInput + + """Event delivery filter options.""" + filter: EventDeliveryFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): EventDeliveryCountableConnection + + """Target URL for webhook.""" + targetUrl: String! + + """Informs if webhook is activated.""" + isActive: Boolean! + + """Used to create a hash signature for each payload.""" + secretKey: String @deprecated(reason: "This field will be removed in Saleor 4.0. As of Saleor 3.5, webhook payloads default to signing using a verifiable JWS.") + + """Used to define payloads for specific events.""" + subscriptionQuery: String +} + +"""An object with an ID""" +interface Node { + """The ID of the object.""" + id: ID! +} + +"""Webhook event.""" +type WebhookEvent { + """Display name of the event.""" + name: String! + + """Internal name of the event type.""" + eventType: WebhookEventTypeEnum! +} + +"""Enum determining type of webhook.""" +enum WebhookEventTypeEnum { + """All the events.""" + ANY_EVENTS + + """A new address created.""" + ADDRESS_CREATED + + """An address updated.""" + ADDRESS_UPDATED + + """An address deleted.""" + ADDRESS_DELETED + + """A new app installed.""" + APP_INSTALLED + + """An app updated.""" + APP_UPDATED + + """An app deleted.""" + APP_DELETED + + """An app status is changed.""" + APP_STATUS_CHANGED + + """A new attribute is created.""" + ATTRIBUTE_CREATED + + """An attribute is updated.""" + ATTRIBUTE_UPDATED + + """An attribute is deleted.""" + ATTRIBUTE_DELETED + + """A new attribute value is created.""" + ATTRIBUTE_VALUE_CREATED + + """An attribute value is updated.""" + ATTRIBUTE_VALUE_UPDATED + + """An attribute value is deleted.""" + ATTRIBUTE_VALUE_DELETED + + """A new category created.""" + CATEGORY_CREATED + + """A category is updated.""" + CATEGORY_UPDATED + + """A category is deleted.""" + CATEGORY_DELETED + + """A new channel created.""" + CHANNEL_CREATED + + """A channel is updated.""" + CHANNEL_UPDATED + + """A channel is deleted.""" + CHANNEL_DELETED + + """A channel status is changed.""" + CHANNEL_STATUS_CHANGED + + """A new gift card created.""" + GIFT_CARD_CREATED + + """A gift card is updated.""" + GIFT_CARD_UPDATED + + """A gift card is deleted.""" + GIFT_CARD_DELETED + + """A gift card status is changed.""" + GIFT_CARD_STATUS_CHANGED + + """ + A gift card metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + GIFT_CARD_METADATA_UPDATED + + """A new menu created.""" + MENU_CREATED + + """A menu is updated.""" + MENU_UPDATED + + """A menu is deleted.""" + MENU_DELETED + + """A new menu item created.""" + MENU_ITEM_CREATED + + """A menu item is updated.""" + MENU_ITEM_UPDATED + + """A menu item is deleted.""" + MENU_ITEM_DELETED + + """A new order is placed.""" + ORDER_CREATED + + """ + An order is confirmed (status change unconfirmed -> unfulfilled) by a staff user using the OrderConfirm mutation. It also triggers when the user completes the checkout and the shop setting `automatically_confirm_all_new_orders` is enabled. + """ + ORDER_CONFIRMED + + """Payment is made and an order is fully paid.""" + ORDER_FULLY_PAID + + """ + An order is updated; triggered for all changes related to an order; covers all other order webhooks, except for ORDER_CREATED. + """ + ORDER_UPDATED + + """An order is cancelled.""" + ORDER_CANCELLED + + """An order is fulfilled.""" + ORDER_FULFILLED + + """ + An order metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + ORDER_METADATA_UPDATED + + """A draft order is created.""" + DRAFT_ORDER_CREATED + + """A draft order is updated.""" + DRAFT_ORDER_UPDATED + + """A draft order is deleted.""" + DRAFT_ORDER_DELETED + + """A sale is created.""" + SALE_CREATED + + """A sale is updated.""" + SALE_UPDATED + + """A sale is deleted.""" + SALE_DELETED + + """A sale is activated or deactivated.""" + SALE_TOGGLE + + """An invoice for order requested.""" + INVOICE_REQUESTED + + """An invoice is deleted.""" + INVOICE_DELETED + + """Invoice has been sent.""" + INVOICE_SENT + + """A new customer account is created.""" + CUSTOMER_CREATED + + """A customer account is updated.""" + CUSTOMER_UPDATED + + """A customer account is deleted.""" + CUSTOMER_DELETED + + """ + A customer account metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + CUSTOMER_METADATA_UPDATED + + """A new collection is created.""" + COLLECTION_CREATED + + """A collection is updated.""" + COLLECTION_UPDATED + + """A collection is deleted.""" + COLLECTION_DELETED + + """ + A collection metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + COLLECTION_METADATA_UPDATED + + """A new product is created.""" + PRODUCT_CREATED + + """A product is updated.""" + PRODUCT_UPDATED + + """A product is deleted.""" + PRODUCT_DELETED + + """ + A product metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + PRODUCT_METADATA_UPDATED + + """A new product variant is created.""" + PRODUCT_VARIANT_CREATED + + """A product variant is updated.""" + PRODUCT_VARIANT_UPDATED + + """A product variant is deleted.""" + PRODUCT_VARIANT_DELETED + + """A product variant is out of stock.""" + PRODUCT_VARIANT_OUT_OF_STOCK + + """A product variant is back in stock.""" + PRODUCT_VARIANT_BACK_IN_STOCK + + """ + A product variant metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + PRODUCT_VARIANT_METADATA_UPDATED + + """A new checkout is created.""" + CHECKOUT_CREATED + + """ + A checkout is updated. It also triggers all updates related to the checkout. + """ + CHECKOUT_UPDATED + + """ + A checkout metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + CHECKOUT_METADATA_UPDATED + + """A new fulfillment is created.""" + FULFILLMENT_CREATED + + """A fulfillment is cancelled.""" + FULFILLMENT_CANCELED + + """A fulfillment is approved.""" + FULFILLMENT_APPROVED + + """ + A fulfillment metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + FULFILLMENT_METADATA_UPDATED + + """User notification triggered.""" + NOTIFY_USER + + """A new page is created.""" + PAGE_CREATED + + """A page is updated.""" + PAGE_UPDATED + + """A page is deleted.""" + PAGE_DELETED + + """A new page type is created.""" + PAGE_TYPE_CREATED + + """A page type is updated.""" + PAGE_TYPE_UPDATED + + """A page type is deleted.""" + PAGE_TYPE_DELETED + + """A new permission group is created.""" + PERMISSION_GROUP_CREATED + + """A permission group is updated.""" + PERMISSION_GROUP_UPDATED + + """A permission group is deleted.""" + PERMISSION_GROUP_DELETED + + """A new shipping price is created.""" + SHIPPING_PRICE_CREATED + + """A shipping price is updated.""" + SHIPPING_PRICE_UPDATED + + """A shipping price is deleted.""" + SHIPPING_PRICE_DELETED + + """A new shipping zone is created.""" + SHIPPING_ZONE_CREATED + + """A shipping zone is updated.""" + SHIPPING_ZONE_UPDATED + + """A shipping zone is deleted.""" + SHIPPING_ZONE_DELETED + + """ + A shipping zone metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + SHIPPING_ZONE_METADATA_UPDATED + + """A new staff user is created.""" + STAFF_CREATED + + """A staff user is updated.""" + STAFF_UPDATED + + """A staff user is deleted.""" + STAFF_DELETED + + """An action requested for transaction.""" + TRANSACTION_ACTION_REQUEST + + """ + Transaction item metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + TRANSACTION_ITEM_METADATA_UPDATED + + """A new translation is created.""" + TRANSLATION_CREATED + + """A translation is updated.""" + TRANSLATION_UPDATED + + """A new warehouse created.""" + WAREHOUSE_CREATED + + """A warehouse is updated.""" + WAREHOUSE_UPDATED + + """A warehouse is deleted.""" + WAREHOUSE_DELETED + + """ + A warehouse metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + WAREHOUSE_METADATA_UPDATED + + """A new voucher created.""" + VOUCHER_CREATED + + """A voucher is updated.""" + VOUCHER_UPDATED + + """A voucher is deleted.""" + VOUCHER_DELETED + + """ + A voucher metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + VOUCHER_METADATA_UPDATED + + """An observability event is created.""" + OBSERVABILITY + + """Authorize payment.""" + PAYMENT_AUTHORIZE + + """Capture payment.""" + PAYMENT_CAPTURE + + """Confirm payment.""" + PAYMENT_CONFIRM + + """Listing available payment gateways.""" + PAYMENT_LIST_GATEWAYS + + """Process payment.""" + PAYMENT_PROCESS + + """Refund payment.""" + PAYMENT_REFUND + + """Void payment.""" + PAYMENT_VOID + + """ + Event called for checkout tax calculation. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + CHECKOUT_CALCULATE_TAXES + + """ + Event called for order tax calculation. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + ORDER_CALCULATE_TAXES + + """Fetch external shipping methods for checkout.""" + SHIPPING_LIST_METHODS_FOR_CHECKOUT + + """Filter shipping methods for order.""" + ORDER_FILTER_SHIPPING_METHODS + + """Filter shipping methods for checkout.""" + CHECKOUT_FILTER_SHIPPING_METHODS +} + +"""Synchronous webhook event.""" +type WebhookEventSync { + """Display name of the event.""" + name: String! + + """Internal name of the event type.""" + eventType: WebhookEventTypeSyncEnum! +} + +"""Enum determining type of webhook.""" +enum WebhookEventTypeSyncEnum { + """Authorize payment.""" + PAYMENT_AUTHORIZE + + """Capture payment.""" + PAYMENT_CAPTURE + + """Confirm payment.""" + PAYMENT_CONFIRM + + """Listing available payment gateways.""" + PAYMENT_LIST_GATEWAYS + + """Process payment.""" + PAYMENT_PROCESS + + """Refund payment.""" + PAYMENT_REFUND + + """Void payment.""" + PAYMENT_VOID + + """ + Event called for checkout tax calculation. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + CHECKOUT_CALCULATE_TAXES + + """ + Event called for order tax calculation. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + ORDER_CALCULATE_TAXES + + """Fetch external shipping methods for checkout.""" + SHIPPING_LIST_METHODS_FOR_CHECKOUT + + """Filter shipping methods for order.""" + ORDER_FILTER_SHIPPING_METHODS + + """Filter shipping methods for checkout.""" + CHECKOUT_FILTER_SHIPPING_METHODS +} + +"""Asynchronous webhook event.""" +type WebhookEventAsync { + """Display name of the event.""" + name: String! + + """Internal name of the event type.""" + eventType: WebhookEventTypeAsyncEnum! +} + +"""Enum determining type of webhook.""" +enum WebhookEventTypeAsyncEnum { + """All the events.""" + ANY_EVENTS + + """A new address created.""" + ADDRESS_CREATED + + """An address updated.""" + ADDRESS_UPDATED + + """An address deleted.""" + ADDRESS_DELETED + + """A new app installed.""" + APP_INSTALLED + + """An app updated.""" + APP_UPDATED + + """An app deleted.""" + APP_DELETED + + """An app status is changed.""" + APP_STATUS_CHANGED + + """A new attribute is created.""" + ATTRIBUTE_CREATED + + """An attribute is updated.""" + ATTRIBUTE_UPDATED + + """An attribute is deleted.""" + ATTRIBUTE_DELETED + + """A new attribute value is created.""" + ATTRIBUTE_VALUE_CREATED + + """An attribute value is updated.""" + ATTRIBUTE_VALUE_UPDATED + + """An attribute value is deleted.""" + ATTRIBUTE_VALUE_DELETED + + """A new category created.""" + CATEGORY_CREATED + + """A category is updated.""" + CATEGORY_UPDATED + + """A category is deleted.""" + CATEGORY_DELETED + + """A new channel created.""" + CHANNEL_CREATED + + """A channel is updated.""" + CHANNEL_UPDATED + + """A channel is deleted.""" + CHANNEL_DELETED + + """A channel status is changed.""" + CHANNEL_STATUS_CHANGED + + """A new gift card created.""" + GIFT_CARD_CREATED + + """A gift card is updated.""" + GIFT_CARD_UPDATED + + """A gift card is deleted.""" + GIFT_CARD_DELETED + + """A gift card status is changed.""" + GIFT_CARD_STATUS_CHANGED + + """ + A gift card metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + GIFT_CARD_METADATA_UPDATED + + """A new menu created.""" + MENU_CREATED + + """A menu is updated.""" + MENU_UPDATED + + """A menu is deleted.""" + MENU_DELETED + + """A new menu item created.""" + MENU_ITEM_CREATED + + """A menu item is updated.""" + MENU_ITEM_UPDATED + + """A menu item is deleted.""" + MENU_ITEM_DELETED + + """A new order is placed.""" + ORDER_CREATED + + """ + An order is confirmed (status change unconfirmed -> unfulfilled) by a staff user using the OrderConfirm mutation. It also triggers when the user completes the checkout and the shop setting `automatically_confirm_all_new_orders` is enabled. + """ + ORDER_CONFIRMED + + """Payment is made and an order is fully paid.""" + ORDER_FULLY_PAID + + """ + An order is updated; triggered for all changes related to an order; covers all other order webhooks, except for ORDER_CREATED. + """ + ORDER_UPDATED + + """An order is cancelled.""" + ORDER_CANCELLED + + """An order is fulfilled.""" + ORDER_FULFILLED + + """ + An order metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + ORDER_METADATA_UPDATED + + """A draft order is created.""" + DRAFT_ORDER_CREATED + + """A draft order is updated.""" + DRAFT_ORDER_UPDATED + + """A draft order is deleted.""" + DRAFT_ORDER_DELETED + + """A sale is created.""" + SALE_CREATED + + """A sale is updated.""" + SALE_UPDATED + + """A sale is deleted.""" + SALE_DELETED + + """A sale is activated or deactivated.""" + SALE_TOGGLE + + """An invoice for order requested.""" + INVOICE_REQUESTED + + """An invoice is deleted.""" + INVOICE_DELETED + + """Invoice has been sent.""" + INVOICE_SENT + + """A new customer account is created.""" + CUSTOMER_CREATED + + """A customer account is updated.""" + CUSTOMER_UPDATED + + """A customer account is deleted.""" + CUSTOMER_DELETED + + """ + A customer account metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + CUSTOMER_METADATA_UPDATED + + """A new collection is created.""" + COLLECTION_CREATED + + """A collection is updated.""" + COLLECTION_UPDATED + + """A collection is deleted.""" + COLLECTION_DELETED + + """ + A collection metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + COLLECTION_METADATA_UPDATED + + """A new product is created.""" + PRODUCT_CREATED + + """A product is updated.""" + PRODUCT_UPDATED + + """A product is deleted.""" + PRODUCT_DELETED + + """ + A product metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + PRODUCT_METADATA_UPDATED + + """A new product variant is created.""" + PRODUCT_VARIANT_CREATED + + """A product variant is updated.""" + PRODUCT_VARIANT_UPDATED + + """A product variant is deleted.""" + PRODUCT_VARIANT_DELETED + + """A product variant is out of stock.""" + PRODUCT_VARIANT_OUT_OF_STOCK + + """A product variant is back in stock.""" + PRODUCT_VARIANT_BACK_IN_STOCK + + """ + A product variant metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + PRODUCT_VARIANT_METADATA_UPDATED + + """A new checkout is created.""" + CHECKOUT_CREATED + + """ + A checkout is updated. It also triggers all updates related to the checkout. + """ + CHECKOUT_UPDATED + + """ + A checkout metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + CHECKOUT_METADATA_UPDATED + + """A new fulfillment is created.""" + FULFILLMENT_CREATED + + """A fulfillment is cancelled.""" + FULFILLMENT_CANCELED + + """A fulfillment is approved.""" + FULFILLMENT_APPROVED + + """ + A fulfillment metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + FULFILLMENT_METADATA_UPDATED + + """User notification triggered.""" + NOTIFY_USER + + """A new page is created.""" + PAGE_CREATED + + """A page is updated.""" + PAGE_UPDATED + + """A page is deleted.""" + PAGE_DELETED + + """A new page type is created.""" + PAGE_TYPE_CREATED + + """A page type is updated.""" + PAGE_TYPE_UPDATED + + """A page type is deleted.""" + PAGE_TYPE_DELETED + + """A new permission group is created.""" + PERMISSION_GROUP_CREATED + + """A permission group is updated.""" + PERMISSION_GROUP_UPDATED + + """A permission group is deleted.""" + PERMISSION_GROUP_DELETED + + """A new shipping price is created.""" + SHIPPING_PRICE_CREATED + + """A shipping price is updated.""" + SHIPPING_PRICE_UPDATED + + """A shipping price is deleted.""" + SHIPPING_PRICE_DELETED + + """A new shipping zone is created.""" + SHIPPING_ZONE_CREATED + + """A shipping zone is updated.""" + SHIPPING_ZONE_UPDATED + + """A shipping zone is deleted.""" + SHIPPING_ZONE_DELETED + + """ + A shipping zone metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + SHIPPING_ZONE_METADATA_UPDATED + + """A new staff user is created.""" + STAFF_CREATED + + """A staff user is updated.""" + STAFF_UPDATED + + """A staff user is deleted.""" + STAFF_DELETED + + """An action requested for transaction.""" + TRANSACTION_ACTION_REQUEST + + """ + Transaction item metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + TRANSACTION_ITEM_METADATA_UPDATED + + """A new translation is created.""" + TRANSLATION_CREATED + + """A translation is updated.""" + TRANSLATION_UPDATED + + """A new warehouse created.""" + WAREHOUSE_CREATED + + """A warehouse is updated.""" + WAREHOUSE_UPDATED + + """A warehouse is deleted.""" + WAREHOUSE_DELETED + + """ + A warehouse metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + WAREHOUSE_METADATA_UPDATED + + """A new voucher created.""" + VOUCHER_CREATED + + """A voucher is updated.""" + VOUCHER_UPDATED + + """A voucher is deleted.""" + VOUCHER_DELETED + + """ + A voucher metadata is updated. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + VOUCHER_METADATA_UPDATED + + """An observability event is created.""" + OBSERVABILITY +} + +"""Represents app data.""" +type App implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """List of the app's permissions.""" + permissions: [Permission!] + + """The date and time when the app was created.""" + created: DateTime + + """Determine if app will be set active or not.""" + isActive: Boolean + + """Name of the app.""" + name: String + + """Type of the app.""" + type: AppTypeEnum + + """ + Last 4 characters of the tokens. + + Requires one of the following permissions: MANAGE_APPS, OWNER. + """ + tokens: [AppToken!] + + """ + List of webhooks assigned to this app. + + Requires one of the following permissions: MANAGE_APPS, OWNER. + """ + webhooks: [Webhook!] + + """Description of this app.""" + aboutApp: String + + """Description of the data privacy defined for this app.""" + dataPrivacy: String @deprecated(reason: "This field will be removed in Saleor 4.0. Use `dataPrivacyUrl` instead.") + + """URL to details about the privacy policy on the app owner page.""" + dataPrivacyUrl: String + + """Homepage of the app.""" + homepageUrl: String + + """Support page for the app.""" + supportUrl: String + + """URL to iframe with the configuration for the app.""" + configurationUrl: String @deprecated(reason: "This field will be removed in Saleor 4.0. Use `appUrl` instead.") + + """URL to iframe with the app.""" + appUrl: String + + """ + URL to manifest used during app's installation. + + Added in Saleor 3.5. + """ + manifestUrl: String + + """Version number of the app.""" + version: String + + """JWT token used to authenticate by thridparty app.""" + accessToken: String + + """ + App's dashboard extensions. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + extensions: [AppExtension!]! +} + +interface ObjectWithMetadata { + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata +} + +type MetadataItem { + """Key of a metadata item.""" + key: String! + + """Value of a metadata item.""" + value: String! +} + +""" +Metadata is a map of key-value pairs, both keys and values are `String`. + +Example: +``` +{ + "key1": "value1", + "key2": "value2" +} +``` +""" +scalar Metadata + +"""Represents a permission object in a friendly form.""" +type Permission { + """Internal code for permission.""" + code: PermissionEnum! + + """Describe action(s) allowed to do by permission.""" + name: String! +} + +"""An enumeration.""" +enum PermissionEnum { + MANAGE_USERS + MANAGE_STAFF + IMPERSONATE_USER + MANAGE_APPS + MANAGE_OBSERVABILITY + MANAGE_CHECKOUTS + HANDLE_CHECKOUTS + HANDLE_TAXES + MANAGE_TAXES + MANAGE_CHANNELS + MANAGE_DISCOUNTS + MANAGE_GIFT_CARD + MANAGE_MENUS + MANAGE_ORDERS + MANAGE_PAGES + MANAGE_PAGE_TYPES_AND_ATTRIBUTES + HANDLE_PAYMENTS + MANAGE_PLUGINS + MANAGE_PRODUCTS + MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES + MANAGE_SHIPPING + MANAGE_SETTINGS + MANAGE_TRANSLATIONS +} + +""" +The `DateTime` scalar type represents a DateTime +value as specified by +[iso8601](https://en.wikipedia.org/wiki/ISO_8601). +""" +scalar DateTime + +"""Enum determining type of your App.""" +enum AppTypeEnum { + """ + Local Saleor App. The app is fully manageable from dashboard. You can change assigned permissions, add webhooks, or authentication token + """ + LOCAL + + """ + Third party external App. Installation is fully automated. Saleor uses a defined App manifest to gather all required information. + """ + THIRDPARTY +} + +"""Represents token data.""" +type AppToken implements Node { + id: ID! + + """Name of the authenticated token.""" + name: String + + """Last 4 characters of the token.""" + authToken: String +} + +"""Represents app data.""" +type AppExtension implements Node { + id: ID! + + """List of the app extension's permissions.""" + permissions: [Permission!]! + + """Label of the extension to show in the dashboard.""" + label: String! + + """URL of a view where extension's iframe is placed.""" + url: String! + + """Place where given extension will be mounted.""" + mount: AppExtensionMountEnum! + + """Type of way how app extension will be opened.""" + target: AppExtensionTargetEnum! + app: App! + + """JWT token used to authenticate by thridparty app extension.""" + accessToken: String +} + +"""All places where app extension can be mounted.""" +enum AppExtensionMountEnum { + CUSTOMER_OVERVIEW_CREATE + CUSTOMER_OVERVIEW_MORE_ACTIONS + CUSTOMER_DETAILS_MORE_ACTIONS + PRODUCT_OVERVIEW_CREATE + PRODUCT_OVERVIEW_MORE_ACTIONS + PRODUCT_DETAILS_MORE_ACTIONS + NAVIGATION_CATALOG + NAVIGATION_ORDERS + NAVIGATION_CUSTOMERS + NAVIGATION_DISCOUNTS + NAVIGATION_TRANSLATIONS + NAVIGATION_PAGES + ORDER_DETAILS_MORE_ACTIONS + ORDER_OVERVIEW_CREATE + ORDER_OVERVIEW_MORE_ACTIONS +} + +""" +All available ways of opening an app extension. + + POPUP - app's extension will be mounted as a popup window + APP_PAGE - redirect to app's page +""" +enum AppExtensionTargetEnum { + POPUP + APP_PAGE +} + +type EventDeliveryCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [EventDeliveryCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +""" +The Relay compliant `PageInfo` type, containing data necessary to paginate this connection. +""" +type PageInfo { + """When paginating forwards, are there more items?""" + hasNextPage: Boolean! + + """When paginating backwards, are there more items?""" + hasPreviousPage: Boolean! + + """When paginating backwards, the cursor to continue.""" + startCursor: String + + """When paginating forwards, the cursor to continue.""" + endCursor: String +} + +type EventDeliveryCountableEdge { + """The item at the end of the edge.""" + node: EventDelivery! + + """A cursor for use in pagination.""" + cursor: String! +} + +"""Event delivery.""" +type EventDelivery implements Node { + id: ID! + createdAt: DateTime! + + """Event delivery status.""" + status: EventDeliveryStatusEnum! + + """Webhook event type.""" + eventType: WebhookEventTypeEnum! + + """Event delivery attempts.""" + attempts( + """Event delivery sorter""" + sortBy: EventDeliveryAttemptSortingInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): EventDeliveryAttemptCountableConnection + + """Event payload.""" + payload: String +} + +enum EventDeliveryStatusEnum { + PENDING + SUCCESS + FAILED +} + +type EventDeliveryAttemptCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [EventDeliveryAttemptCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type EventDeliveryAttemptCountableEdge { + """The item at the end of the edge.""" + node: EventDeliveryAttempt! + + """A cursor for use in pagination.""" + cursor: String! +} + +"""Event delivery attempts.""" +type EventDeliveryAttempt implements Node { + id: ID! + + """Event delivery creation date and time.""" + createdAt: DateTime! + + """Task id for delivery attempt.""" + taskId: String + + """Delivery attempt duration.""" + duration: Float + + """Delivery attempt response content.""" + response: String + + """Response headers for delivery attempt.""" + responseHeaders: String + + """Delivery attempt response status code.""" + responseStatusCode: Int + + """Request headers for delivery attempt.""" + requestHeaders: String + + """Event delivery status.""" + status: EventDeliveryStatusEnum! +} + +input EventDeliveryAttemptSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort attempts by the selected field.""" + field: EventDeliveryAttemptSortField! +} + +enum OrderDirection { + """Specifies an ascending sort order.""" + ASC + + """Specifies a descending sort order.""" + DESC +} + +enum EventDeliveryAttemptSortField { + """Sort event delivery attempts by created at.""" + CREATED_AT +} + +input EventDeliverySortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort deliveries by the selected field.""" + field: EventDeliverySortField! +} + +enum EventDeliverySortField { + """Sort event deliveries by created at.""" + CREATED_AT +} + +input EventDeliveryFilterInput { + status: EventDeliveryStatusEnum + eventType: WebhookEventTypeEnum +} + +scalar JSONString + +"""An enumeration.""" +enum WebhookSampleEventTypeEnum { + ADDRESS_CREATED + ADDRESS_UPDATED + ADDRESS_DELETED + APP_INSTALLED + APP_UPDATED + APP_DELETED + APP_STATUS_CHANGED + ATTRIBUTE_CREATED + ATTRIBUTE_UPDATED + ATTRIBUTE_DELETED + ATTRIBUTE_VALUE_CREATED + ATTRIBUTE_VALUE_UPDATED + ATTRIBUTE_VALUE_DELETED + CATEGORY_CREATED + CATEGORY_UPDATED + CATEGORY_DELETED + CHANNEL_CREATED + CHANNEL_UPDATED + CHANNEL_DELETED + CHANNEL_STATUS_CHANGED + GIFT_CARD_CREATED + GIFT_CARD_UPDATED + GIFT_CARD_DELETED + GIFT_CARD_STATUS_CHANGED + GIFT_CARD_METADATA_UPDATED + MENU_CREATED + MENU_UPDATED + MENU_DELETED + MENU_ITEM_CREATED + MENU_ITEM_UPDATED + MENU_ITEM_DELETED + ORDER_CREATED + ORDER_CONFIRMED + ORDER_FULLY_PAID + ORDER_UPDATED + ORDER_CANCELLED + ORDER_FULFILLED + ORDER_METADATA_UPDATED + DRAFT_ORDER_CREATED + DRAFT_ORDER_UPDATED + DRAFT_ORDER_DELETED + SALE_CREATED + SALE_UPDATED + SALE_DELETED + SALE_TOGGLE + INVOICE_REQUESTED + INVOICE_DELETED + INVOICE_SENT + CUSTOMER_CREATED + CUSTOMER_UPDATED + CUSTOMER_DELETED + CUSTOMER_METADATA_UPDATED + COLLECTION_CREATED + COLLECTION_UPDATED + COLLECTION_DELETED + COLLECTION_METADATA_UPDATED + PRODUCT_CREATED + PRODUCT_UPDATED + PRODUCT_DELETED + PRODUCT_METADATA_UPDATED + PRODUCT_VARIANT_CREATED + PRODUCT_VARIANT_UPDATED + PRODUCT_VARIANT_DELETED + PRODUCT_VARIANT_OUT_OF_STOCK + PRODUCT_VARIANT_BACK_IN_STOCK + PRODUCT_VARIANT_METADATA_UPDATED + CHECKOUT_CREATED + CHECKOUT_UPDATED + CHECKOUT_METADATA_UPDATED + FULFILLMENT_CREATED + FULFILLMENT_CANCELED + FULFILLMENT_APPROVED + FULFILLMENT_METADATA_UPDATED + NOTIFY_USER + PAGE_CREATED + PAGE_UPDATED + PAGE_DELETED + PAGE_TYPE_CREATED + PAGE_TYPE_UPDATED + PAGE_TYPE_DELETED + PERMISSION_GROUP_CREATED + PERMISSION_GROUP_UPDATED + PERMISSION_GROUP_DELETED + SHIPPING_PRICE_CREATED + SHIPPING_PRICE_UPDATED + SHIPPING_PRICE_DELETED + SHIPPING_ZONE_CREATED + SHIPPING_ZONE_UPDATED + SHIPPING_ZONE_DELETED + SHIPPING_ZONE_METADATA_UPDATED + STAFF_CREATED + STAFF_UPDATED + STAFF_DELETED + TRANSACTION_ACTION_REQUEST + TRANSACTION_ITEM_METADATA_UPDATED + TRANSLATION_CREATED + TRANSLATION_UPDATED + WAREHOUSE_CREATED + WAREHOUSE_UPDATED + WAREHOUSE_DELETED + WAREHOUSE_METADATA_UPDATED + VOUCHER_CREATED + VOUCHER_UPDATED + VOUCHER_DELETED + VOUCHER_METADATA_UPDATED + OBSERVABILITY +} + +"""Represents warehouse.""" +type Warehouse implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + slug: String! + email: String! + isPrivate: Boolean! + address: Address! + + """Warehouse company name.""" + companyName: String! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `Address.companyName` instead.") + + """ + Click and collect options: local, all or disabled. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + clickAndCollectOption: WarehouseClickAndCollectOptionEnum! + shippingZones( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ShippingZoneCountableConnection! + + """ + External ID of this warehouse. + + Added in Saleor 3.10. + """ + externalReference: String +} + +"""Represents user address data.""" +type Address implements Node & ObjectWithMetadata { + id: ID! + + """ + List of private metadata items. Requires staff permissions to access. + + Added in Saleor 3.10. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.10. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.10. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """ + List of public metadata items. Can be accessed without permissions. + + Added in Saleor 3.10. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.10. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.10. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + firstName: String! + lastName: String! + companyName: String! + streetAddress1: String! + streetAddress2: String! + city: String! + cityArea: String! + postalCode: String! + + """Shop's default country.""" + country: CountryDisplay! + countryArea: String! + phone: String + + """Address is user's default shipping address.""" + isDefaultShippingAddress: Boolean + + """Address is user's default billing address.""" + isDefaultBillingAddress: Boolean +} + +type CountryDisplay { + """Country code.""" + code: String! + + """Country name.""" + country: String! + + """Country tax.""" + vat: VAT @deprecated(reason: "This field will be removed in Saleor 4.0. Use `TaxClassCountryRate` type to manage tax rates per country.") +} + +"""Represents a VAT rate for a country.""" +type VAT { + """Country code.""" + countryCode: String! + + """Standard VAT rate in percent.""" + standardRate: Float + + """Country's VAT rate exceptions for specific types of goods.""" + reducedRates: [ReducedRate!]! +} + +"""Represents a reduced VAT rate for a particular type of goods.""" +type ReducedRate { + """Reduced VAT rate in percent.""" + rate: Float! + + """A type of goods.""" + rateType: String! +} + +"""An enumeration.""" +enum WarehouseClickAndCollectOptionEnum { + DISABLED + LOCAL + ALL +} + +type ShippingZoneCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [ShippingZoneCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type ShippingZoneCountableEdge { + """The item at the end of the edge.""" + node: ShippingZone! + + """A cursor for use in pagination.""" + cursor: String! +} + +""" +Represents a shipping zone in the shop. Zones are the concept used only for grouping shipping methods in the dashboard, and are never exposed to the customers directly. +""" +type ShippingZone implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + default: Boolean! + + """Lowest and highest prices for the shipping.""" + priceRange: MoneyRange + + """List of countries available for the method.""" + countries: [CountryDisplay!]! + + """ + List of shipping methods available for orders shipped to countries within this shipping zone. + """ + shippingMethods: [ShippingMethodType!] + + """List of warehouses for shipping zone.""" + warehouses: [Warehouse!]! + + """List of channels for shipping zone.""" + channels: [Channel!]! + + """Description of a shipping zone.""" + description: String +} + +"""Represents a range of amounts of money.""" +type MoneyRange { + """Lower bound of a price range.""" + start: Money + + """Upper bound of a price range.""" + stop: Money +} + +"""Represents amount of money in specific currency.""" +type Money { + """Currency code.""" + currency: String! + + """Amount of money.""" + amount: Float! +} + +""" +Shipping method are the methods you'll use to get customer's orders to them. They are directly exposed to the customers. +""" +type ShippingMethodType implements Node & ObjectWithMetadata { + """Shipping method ID.""" + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """Shipping method name.""" + name: String! + + """ + Shipping method description. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """Type of the shipping method.""" + type: ShippingMethodTypeEnum + + """Returns translated shipping method fields for the given language code.""" + translation( + """A language code to return the translation for shipping method.""" + languageCode: LanguageCodeEnum! + ): ShippingMethodTranslation + + """ + List of channels available for the method. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + channelListings: [ShippingMethodChannelListing!] + + """The price of the cheapest variant (including discounts).""" + maximumOrderPrice: Money + + """The price of the cheapest variant (including discounts).""" + minimumOrderPrice: Money + + """ + Postal code ranges rule of exclusion or inclusion of the shipping method. + """ + postalCodeRules: [ShippingMethodPostalCodeRule!] + + """ + List of excluded products for the shipping method. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + excludedProducts( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductCountableConnection + + """Minimum order weight to use this shipping method.""" + minimumOrderWeight: Weight + + """Maximum order weight to use this shipping method.""" + maximumOrderWeight: Weight + + """Maximum number of days for delivery.""" + maximumDeliveryDays: Int + + """Minimal number of days for delivery.""" + minimumDeliveryDays: Int + + """ + Tax class assigned to this shipping method. + + Requires one of the following permissions: MANAGE_TAXES, MANAGE_SHIPPING. + """ + taxClass: TaxClass +} + +"""An enumeration.""" +enum ShippingMethodTypeEnum { + PRICE + WEIGHT +} + +type ShippingMethodTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String + + """ + Translated description of the shipping method. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString +} + +type LanguageDisplay { + """ISO 639 representation of the language name.""" + code: LanguageCodeEnum! + + """Full name of the language.""" + language: String! +} + +"""An enumeration.""" +enum LanguageCodeEnum { + AF + AF_NA + AF_ZA + AGQ + AGQ_CM + AK + AK_GH + AM + AM_ET + AR + AR_AE + AR_BH + AR_DJ + AR_DZ + AR_EG + AR_EH + AR_ER + AR_IL + AR_IQ + AR_JO + AR_KM + AR_KW + AR_LB + AR_LY + AR_MA + AR_MR + AR_OM + AR_PS + AR_QA + AR_SA + AR_SD + AR_SO + AR_SS + AR_SY + AR_TD + AR_TN + AR_YE + AS + AS_IN + ASA + ASA_TZ + AST + AST_ES + AZ + AZ_CYRL + AZ_CYRL_AZ + AZ_LATN + AZ_LATN_AZ + BAS + BAS_CM + BE + BE_BY + BEM + BEM_ZM + BEZ + BEZ_TZ + BG + BG_BG + BM + BM_ML + BN + BN_BD + BN_IN + BO + BO_CN + BO_IN + BR + BR_FR + BRX + BRX_IN + BS + BS_CYRL + BS_CYRL_BA + BS_LATN + BS_LATN_BA + CA + CA_AD + CA_ES + CA_ES_VALENCIA + CA_FR + CA_IT + CCP + CCP_BD + CCP_IN + CE + CE_RU + CEB + CEB_PH + CGG + CGG_UG + CHR + CHR_US + CKB + CKB_IQ + CKB_IR + CS + CS_CZ + CU + CU_RU + CY + CY_GB + DA + DA_DK + DA_GL + DAV + DAV_KE + DE + DE_AT + DE_BE + DE_CH + DE_DE + DE_IT + DE_LI + DE_LU + DJE + DJE_NE + DSB + DSB_DE + DUA + DUA_CM + DYO + DYO_SN + DZ + DZ_BT + EBU + EBU_KE + EE + EE_GH + EE_TG + EL + EL_CY + EL_GR + EN + EN_AE + EN_AG + EN_AI + EN_AS + EN_AT + EN_AU + EN_BB + EN_BE + EN_BI + EN_BM + EN_BS + EN_BW + EN_BZ + EN_CA + EN_CC + EN_CH + EN_CK + EN_CM + EN_CX + EN_CY + EN_DE + EN_DG + EN_DK + EN_DM + EN_ER + EN_FI + EN_FJ + EN_FK + EN_FM + EN_GB + EN_GD + EN_GG + EN_GH + EN_GI + EN_GM + EN_GU + EN_GY + EN_HK + EN_IE + EN_IL + EN_IM + EN_IN + EN_IO + EN_JE + EN_JM + EN_KE + EN_KI + EN_KN + EN_KY + EN_LC + EN_LR + EN_LS + EN_MG + EN_MH + EN_MO + EN_MP + EN_MS + EN_MT + EN_MU + EN_MW + EN_MY + EN_NA + EN_NF + EN_NG + EN_NL + EN_NR + EN_NU + EN_NZ + EN_PG + EN_PH + EN_PK + EN_PN + EN_PR + EN_PW + EN_RW + EN_SB + EN_SC + EN_SD + EN_SE + EN_SG + EN_SH + EN_SI + EN_SL + EN_SS + EN_SX + EN_SZ + EN_TC + EN_TK + EN_TO + EN_TT + EN_TV + EN_TZ + EN_UG + EN_UM + EN_US + EN_VC + EN_VG + EN_VI + EN_VU + EN_WS + EN_ZA + EN_ZM + EN_ZW + EO + ES + ES_AR + ES_BO + ES_BR + ES_BZ + ES_CL + ES_CO + ES_CR + ES_CU + ES_DO + ES_EA + ES_EC + ES_ES + ES_GQ + ES_GT + ES_HN + ES_IC + ES_MX + ES_NI + ES_PA + ES_PE + ES_PH + ES_PR + ES_PY + ES_SV + ES_US + ES_UY + ES_VE + ET + ET_EE + EU + EU_ES + EWO + EWO_CM + FA + FA_AF + FA_IR + FF + FF_ADLM + FF_ADLM_BF + FF_ADLM_CM + FF_ADLM_GH + FF_ADLM_GM + FF_ADLM_GN + FF_ADLM_GW + FF_ADLM_LR + FF_ADLM_MR + FF_ADLM_NE + FF_ADLM_NG + FF_ADLM_SL + FF_ADLM_SN + FF_LATN + FF_LATN_BF + FF_LATN_CM + FF_LATN_GH + FF_LATN_GM + FF_LATN_GN + FF_LATN_GW + FF_LATN_LR + FF_LATN_MR + FF_LATN_NE + FF_LATN_NG + FF_LATN_SL + FF_LATN_SN + FI + FI_FI + FIL + FIL_PH + FO + FO_DK + FO_FO + FR + FR_BE + FR_BF + FR_BI + FR_BJ + FR_BL + FR_CA + FR_CD + FR_CF + FR_CG + FR_CH + FR_CI + FR_CM + FR_DJ + FR_DZ + FR_FR + FR_GA + FR_GF + FR_GN + FR_GP + FR_GQ + FR_HT + FR_KM + FR_LU + FR_MA + FR_MC + FR_MF + FR_MG + FR_ML + FR_MQ + FR_MR + FR_MU + FR_NC + FR_NE + FR_PF + FR_PM + FR_RE + FR_RW + FR_SC + FR_SN + FR_SY + FR_TD + FR_TG + FR_TN + FR_VU + FR_WF + FR_YT + FUR + FUR_IT + FY + FY_NL + GA + GA_GB + GA_IE + GD + GD_GB + GL + GL_ES + GSW + GSW_CH + GSW_FR + GSW_LI + GU + GU_IN + GUZ + GUZ_KE + GV + GV_IM + HA + HA_GH + HA_NE + HA_NG + HAW + HAW_US + HE + HE_IL + HI + HI_IN + HR + HR_BA + HR_HR + HSB + HSB_DE + HU + HU_HU + HY + HY_AM + IA + ID + ID_ID + IG + IG_NG + II + II_CN + IS + IS_IS + IT + IT_CH + IT_IT + IT_SM + IT_VA + JA + JA_JP + JGO + JGO_CM + JMC + JMC_TZ + JV + JV_ID + KA + KA_GE + KAB + KAB_DZ + KAM + KAM_KE + KDE + KDE_TZ + KEA + KEA_CV + KHQ + KHQ_ML + KI + KI_KE + KK + KK_KZ + KKJ + KKJ_CM + KL + KL_GL + KLN + KLN_KE + KM + KM_KH + KN + KN_IN + KO + KO_KP + KO_KR + KOK + KOK_IN + KS + KS_ARAB + KS_ARAB_IN + KSB + KSB_TZ + KSF + KSF_CM + KSH + KSH_DE + KU + KU_TR + KW + KW_GB + KY + KY_KG + LAG + LAG_TZ + LB + LB_LU + LG + LG_UG + LKT + LKT_US + LN + LN_AO + LN_CD + LN_CF + LN_CG + LO + LO_LA + LRC + LRC_IQ + LRC_IR + LT + LT_LT + LU + LU_CD + LUO + LUO_KE + LUY + LUY_KE + LV + LV_LV + MAI + MAI_IN + MAS + MAS_KE + MAS_TZ + MER + MER_KE + MFE + MFE_MU + MG + MG_MG + MGH + MGH_MZ + MGO + MGO_CM + MI + MI_NZ + MK + MK_MK + ML + ML_IN + MN + MN_MN + MNI + MNI_BENG + MNI_BENG_IN + MR + MR_IN + MS + MS_BN + MS_ID + MS_MY + MS_SG + MT + MT_MT + MUA + MUA_CM + MY + MY_MM + MZN + MZN_IR + NAQ + NAQ_NA + NB + NB_NO + NB_SJ + ND + ND_ZW + NDS + NDS_DE + NDS_NL + NE + NE_IN + NE_NP + NL + NL_AW + NL_BE + NL_BQ + NL_CW + NL_NL + NL_SR + NL_SX + NMG + NMG_CM + NN + NN_NO + NNH + NNH_CM + NUS + NUS_SS + NYN + NYN_UG + OM + OM_ET + OM_KE + OR + OR_IN + OS + OS_GE + OS_RU + PA + PA_ARAB + PA_ARAB_PK + PA_GURU + PA_GURU_IN + PCM + PCM_NG + PL + PL_PL + PRG + PS + PS_AF + PS_PK + PT + PT_AO + PT_BR + PT_CH + PT_CV + PT_GQ + PT_GW + PT_LU + PT_MO + PT_MZ + PT_PT + PT_ST + PT_TL + QU + QU_BO + QU_EC + QU_PE + RM + RM_CH + RN + RN_BI + RO + RO_MD + RO_RO + ROF + ROF_TZ + RU + RU_BY + RU_KG + RU_KZ + RU_MD + RU_RU + RU_UA + RW + RW_RW + RWK + RWK_TZ + SAH + SAH_RU + SAQ + SAQ_KE + SAT + SAT_OLCK + SAT_OLCK_IN + SBP + SBP_TZ + SD + SD_ARAB + SD_ARAB_PK + SD_DEVA + SD_DEVA_IN + SE + SE_FI + SE_NO + SE_SE + SEH + SEH_MZ + SES + SES_ML + SG + SG_CF + SHI + SHI_LATN + SHI_LATN_MA + SHI_TFNG + SHI_TFNG_MA + SI + SI_LK + SK + SK_SK + SL + SL_SI + SMN + SMN_FI + SN + SN_ZW + SO + SO_DJ + SO_ET + SO_KE + SO_SO + SQ + SQ_AL + SQ_MK + SQ_XK + SR + SR_CYRL + SR_CYRL_BA + SR_CYRL_ME + SR_CYRL_RS + SR_CYRL_XK + SR_LATN + SR_LATN_BA + SR_LATN_ME + SR_LATN_RS + SR_LATN_XK + SU + SU_LATN + SU_LATN_ID + SV + SV_AX + SV_FI + SV_SE + SW + SW_CD + SW_KE + SW_TZ + SW_UG + TA + TA_IN + TA_LK + TA_MY + TA_SG + TE + TE_IN + TEO + TEO_KE + TEO_UG + TG + TG_TJ + TH + TH_TH + TI + TI_ER + TI_ET + TK + TK_TM + TO + TO_TO + TR + TR_CY + TR_TR + TT + TT_RU + TWQ + TWQ_NE + TZM + TZM_MA + UG + UG_CN + UK + UK_UA + UR + UR_IN + UR_PK + UZ + UZ_ARAB + UZ_ARAB_AF + UZ_CYRL + UZ_CYRL_UZ + UZ_LATN + UZ_LATN_UZ + VAI + VAI_LATN + VAI_LATN_LR + VAI_VAII + VAI_VAII_LR + VI + VI_VN + VO + VUN + VUN_TZ + WAE + WAE_CH + WO + WO_SN + XH + XH_ZA + XOG + XOG_UG + YAV + YAV_CM + YI + YO + YO_BJ + YO_NG + YUE + YUE_HANS + YUE_HANS_CN + YUE_HANT + YUE_HANT_HK + ZGH + ZGH_MA + ZH + ZH_HANS + ZH_HANS_CN + ZH_HANS_HK + ZH_HANS_MO + ZH_HANS_SG + ZH_HANT + ZH_HANT_HK + ZH_HANT_MO + ZH_HANT_TW + ZU + ZU_ZA +} + +"""Represents shipping method channel listing.""" +type ShippingMethodChannelListing implements Node { + id: ID! + channel: Channel! + maximumOrderPrice: Money + minimumOrderPrice: Money + price: Money +} + +"""Represents channel.""" +type Channel implements Node { + id: ID! + + """Slug of the channel.""" + slug: String! + + """ + Name of the channel. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + name: String! + + """ + Whether the channel is active. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + isActive: Boolean! + + """ + A currency that is assigned to the channel. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + currencyCode: String! + + """ + Whether a channel has associated orders. + + Requires one of the following permissions: MANAGE_CHANNELS. + """ + hasOrders: Boolean! + + """ + Default country for the channel. Default country can be used in checkout to determine the stock quantities or calculate taxes when the country was not explicitly provided. + + Added in Saleor 3.1. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + defaultCountry: CountryDisplay! + + """ + List of warehouses assigned to this channel. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + warehouses: [Warehouse!]! + + """ + List of shippable countries for the channel. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + countries: [CountryDisplay!] + + """ + Shipping methods that are available for the channel. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + availableShippingMethodsPerCountry(countries: [CountryCode!]): [ShippingMethodsPerCountry!] + + """ + Define the stock setting for this channel. + + Added in Saleor 3.7. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + stockSettings: StockSettings! +} + +""" +List of shipping methods available for the country. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingMethodsPerCountry { + """The country code.""" + countryCode: CountryCode! + + """List of available shipping methods.""" + shippingMethods: [ShippingMethod!] +} + +"""An enumeration.""" +enum CountryCode { + AF + AX + AL + DZ + AS + AD + AO + AI + AQ + AG + AR + AM + AW + AU + AT + AZ + BS + BH + BD + BB + BY + BE + BZ + BJ + BM + BT + BO + BQ + BA + BW + BV + BR + IO + BN + BG + BF + BI + CV + KH + CM + CA + KY + CF + TD + CL + CN + CX + CC + CO + KM + CG + CD + CK + CR + CI + HR + CU + CW + CY + CZ + DK + DJ + DM + DO + EC + EG + SV + GQ + ER + EE + SZ + ET + EU + FK + FO + FJ + FI + FR + GF + PF + TF + GA + GM + GE + DE + GH + GI + GR + GL + GD + GP + GU + GT + GG + GN + GW + GY + HT + HM + VA + HN + HK + HU + IS + IN + ID + IR + IQ + IE + IM + IL + IT + JM + JP + JE + JO + KZ + KE + KI + KW + KG + LA + LV + LB + LS + LR + LY + LI + LT + LU + MO + MG + MW + MY + MV + ML + MT + MH + MQ + MR + MU + YT + MX + FM + MD + MC + MN + ME + MS + MA + MZ + MM + NA + NR + NP + NL + NC + NZ + NI + NE + NG + NU + NF + KP + MK + MP + NO + OM + PK + PW + PS + PA + PG + PY + PE + PH + PN + PL + PT + PR + QA + RE + RO + RU + RW + BL + SH + KN + LC + MF + PM + VC + WS + SM + ST + SA + SN + RS + SC + SL + SG + SX + SK + SI + SB + SO + ZA + GS + KR + SS + ES + LK + SD + SR + SJ + SE + CH + SY + TW + TJ + TZ + TH + TL + TG + TK + TO + TT + TN + TR + TM + TC + TV + UG + UA + AE + GB + UM + US + UY + UZ + VU + VE + VN + VG + VI + WF + EH + YE + ZM + ZW +} + +""" +Shipping methods that can be used as means of shipping for orders and checkouts. +""" +type ShippingMethod implements Node & ObjectWithMetadata { + """Unique ID of ShippingMethod available for Order.""" + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """Type of the shipping method.""" + type: ShippingMethodTypeEnum @deprecated(reason: "This field will be removed in Saleor 4.0.") + + """Shipping method name.""" + name: String! + + """ + Shipping method description. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """Maximum delivery days for this shipping method.""" + maximumDeliveryDays: Int + + """Minimum delivery days for this shipping method.""" + minimumDeliveryDays: Int + + """Maximum order weight for this shipping method.""" + maximumOrderWeight: Weight @deprecated(reason: "This field will be removed in Saleor 4.0.") + + """Minimum order weight for this shipping method.""" + minimumOrderWeight: Weight @deprecated(reason: "This field will be removed in Saleor 4.0.") + + """Returns translated shipping method fields for the given language code.""" + translation( + """A language code to return the translation for shipping method.""" + languageCode: LanguageCodeEnum! + ): ShippingMethodTranslation + + """The price of selected shipping method.""" + price: Money! + + """Maximum order price for this shipping method.""" + maximumOrderPrice: Money + + """Minimal order price for this shipping method.""" + minimumOrderPrice: Money + + """Describes if this shipping method is active and can be selected.""" + active: Boolean! + + """Message connected to this shipping method.""" + message: String +} + +"""Represents weight value in a specific weight unit.""" +type Weight { + """Weight unit.""" + unit: WeightUnitsEnum! + + """Weight value.""" + value: Float! +} + +"""An enumeration.""" +enum WeightUnitsEnum { + G + LB + OZ + KG + TONNE +} + +""" +Represents the channel stock settings. + +Added in Saleor 3.7. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type StockSettings { + """ + Allocation strategy defines the preference of warehouses for allocations and reservations. + """ + allocationStrategy: AllocationStrategyEnum! +} + +""" +Determine the allocation strategy for the channel. + + PRIORITIZE_SORTING_ORDER - allocate stocks according to the warehouses' order + within the channel + + PRIORITIZE_HIGH_STOCK - allocate stock in a warehouse with the most stock +""" +enum AllocationStrategyEnum { + PRIORITIZE_SORTING_ORDER + PRIORITIZE_HIGH_STOCK +} + +"""Represents shipping method postal code rule.""" +type ShippingMethodPostalCodeRule implements Node { + """The ID of the object.""" + id: ID! + + """Start address range.""" + start: String + + """End address range.""" + end: String + + """Inclusion type of the postal code rule.""" + inclusionType: PostalCodeRuleInclusionTypeEnum +} + +"""An enumeration.""" +enum PostalCodeRuleInclusionTypeEnum { + INCLUDE + EXCLUDE +} + +type ProductCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [ProductCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type ProductCountableEdge { + """The item at the end of the edge.""" + node: Product! + + """A cursor for use in pagination.""" + cursor: String! +} + +"""Represents an individual item for sale in the storefront.""" +type Product implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + seoTitle: String + seoDescription: String + name: String! + + """ + Description of the product. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + productType: ProductType! + slug: String! + category: Category + created: DateTime! + updatedAt: DateTime! + chargeTaxes: Boolean! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `Channel.taxConfiguration` field to determine whether tax collection is enabled.") + weight: Weight + defaultVariant: ProductVariant + rating: Float + + """ + Channel given to retrieve this product. Also used by federation gateway to resolve this object in a federated query. + """ + channel: String + + """ + Description of the product. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") + thumbnail( + """ + Size of the image. If not provided, the original image will be returned. + """ + size: Int + + """ + The format of the image. When not provided, format of the original image will be used. Must be provided together with the size value, otherwise original image will be returned. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + format: ThumbnailFormatEnum + ): Image + + """ + Lists the storefront product's pricing, the current price and discounts, only meant for displaying. + """ + pricing( + """ + Destination address used to find warehouses where stock availability for this product is checked. If address is empty, uses `Shop.companyAddress` or fallbacks to server's `settings.DEFAULT_COUNTRY` configuration. + """ + address: AddressInput + ): ProductPricingInfo + + """Whether the product is in stock and visible or not.""" + isAvailable( + """ + Destination address used to find warehouses where stock availability for this product is checked. If address is empty, uses `Shop.companyAddress` or fallbacks to server's `settings.DEFAULT_COUNTRY` configuration. + """ + address: AddressInput + ): Boolean + + """A type of tax. Assigned by enabled tax gateway""" + taxType: TaxType @deprecated(reason: "This field will be removed in Saleor 4.0. Use `taxClass` field instead.") + + """ + Get a single attribute attached to product by attribute slug. + + Added in Saleor 3.9. + """ + attribute( + """Slug of the attribute""" + slug: String! + ): SelectedAttribute + + """List of attributes assigned to this product.""" + attributes: [SelectedAttribute!]! + + """ + List of availability in channels for the product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + channelListings: [ProductChannelListing!] + + """Get a single product media by ID.""" + mediaById( + """ID of a product media.""" + id: ID + ): ProductMedia + + """Get a single product image by ID.""" + imageById( + """ID of a product image.""" + id: ID + ): ProductImage @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `mediaById` field instead.") + + """ + Get a single variant by SKU or ID. + + Added in Saleor 3.9. + """ + variant( + """ID of the variant.""" + id: ID + + """SKU of the variant.""" + sku: String + ): ProductVariant + + """ + List of variants for the product. Requires the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + variants: [ProductVariant!] + + """List of media for the product.""" + media( + """ + Sort media. + + Added in Saleor 3.9. + """ + sortBy: MediaSortingInput + ): [ProductMedia!] + + """List of images for the product.""" + images: [ProductImage!] @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `media` field instead.") + + """ + List of collections for the product. Requires the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + collections: [Collection!] + + """Returns translated product fields for the given language code.""" + translation( + """A language code to return the translation for product.""" + languageCode: LanguageCodeEnum! + ): ProductTranslation + + """Date when product is available for purchase.""" + availableForPurchase: Date @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `availableForPurchaseAt` field to fetch the available for purchase date.") + + """Date when product is available for purchase.""" + availableForPurchaseAt: DateTime + + """Whether the product is available for purchase.""" + isAvailableForPurchase: Boolean + + """ + Tax class assigned to this product type. All products of this product type use this tax class, unless it's overridden in the `Product` type. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + """ + taxClass: TaxClass + + """ + External ID of this product. + + Added in Saleor 3.10. + """ + externalReference: String +} + +""" +Represents a type of product. It defines what attributes are available to products of this type. +""" +type ProductType implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + slug: String! + hasVariants: Boolean! + isShippingRequired: Boolean! + isDigital: Boolean! + weight: Weight + + """The product type kind.""" + kind: ProductTypeKindEnum! + + """List of products of this type.""" + products( + """Slug of a channel for which the data should be returned.""" + channel: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductCountableConnection @deprecated(reason: "This field will be removed in Saleor 4.0. Use the top-level `products` query with the `productTypes` filter.") + + """A type of tax. Assigned by enabled tax gateway""" + taxType: TaxType @deprecated(reason: "This field will be removed in Saleor 4.0. Use `taxClass` field instead.") + + """ + Tax class assigned to this product type. All products of this product type use this tax class, unless it's overridden in the `Product` type. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + """ + taxClass: TaxClass + + """Variant attributes of that product type.""" + variantAttributes( + """Define scope of returned attributes.""" + variantSelection: VariantAttributeScope + ): [Attribute!] @deprecated(reason: "This field will be removed in Saleor 4.0. Use `assignedVariantAttributes` instead.") + + """ + Variant attributes of that product type with attached variant selection. + + Added in Saleor 3.1. + """ + assignedVariantAttributes( + """Define scope of returned attributes.""" + variantSelection: VariantAttributeScope + ): [AssignedVariantAttribute!] + + """Product attributes of that product type.""" + productAttributes: [Attribute!] + + """ + List of attributes which can be assigned to this product type. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + availableAttributes( + filter: AttributeFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): AttributeCountableConnection +} + +"""An enumeration.""" +enum ProductTypeKindEnum { + NORMAL + GIFT_CARD +} + +"""Representation of tax types fetched from tax gateway.""" +type TaxType { + """Description of the tax type.""" + description: String + + """External tax code used to identify given tax group.""" + taxCode: String +} + +""" +Tax class is a named object used to define tax rates per country. Tax class can be assigned to product types, products and shipping methods to define their tax rates. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TaxClass implements Node & ObjectWithMetadata { + """The ID of the object.""" + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """Name of the tax class.""" + name: String! + + """Country-specific tax rates for this tax class.""" + countries: [TaxClassCountryRate!]! +} + +""" +Tax rate for a country. When tax class is null, it represents the default tax rate for that country; otherwise it's a country tax rate specific to the given tax class. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TaxClassCountryRate { + """Country in which this tax rate applies.""" + country: CountryDisplay! + + """Tax rate value.""" + rate: Float! + + """Related tax class.""" + taxClass: TaxClass +} + +""" +Custom attribute of a product. Attributes can be assigned to products and variants at the product type level. +""" +type Attribute implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """The input type to use for entering attribute values in the dashboard.""" + inputType: AttributeInputTypeEnum + + """The entity type which can be used as a reference.""" + entityType: AttributeEntityTypeEnum + + """Name of an attribute displayed in the interface.""" + name: String + + """Internal representation of an attribute name.""" + slug: String + + """The attribute type.""" + type: AttributeTypeEnum + + """The unit of attribute values.""" + unit: MeasurementUnitsEnum + + """List of attribute's values.""" + choices( + """Sort attribute choices.""" + sortBy: AttributeChoicesSortingInput + + """Filtering options for attribute choices.""" + filter: AttributeValueFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): AttributeValueCountableConnection + + """ + Whether the attribute requires values to be passed or not. Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + valueRequired: Boolean! + + """ + Whether the attribute should be visible or not in storefront. Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + visibleInStorefront: Boolean! + + """ + Whether the attribute can be filtered in storefront. Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + filterableInStorefront: Boolean! + + """ + Whether the attribute can be filtered in dashboard. Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + filterableInDashboard: Boolean! + + """ + Whether the attribute can be displayed in the admin product list. Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + availableInGrid: Boolean! + + """ + The position of the attribute in the storefront navigation (0 by default). Requires one of the following permissions: MANAGE_PAGES, MANAGE_PAGE_TYPES_AND_ATTRIBUTES, MANAGE_PRODUCTS, MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + storefrontSearchPosition: Int! + + """Returns translated attribute fields for the given language code.""" + translation( + """A language code to return the translation for attribute.""" + languageCode: LanguageCodeEnum! + ): AttributeTranslation + + """Flag indicating that attribute has predefined choices.""" + withChoices: Boolean! + productTypes( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductTypeCountableConnection! + productVariantTypes( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductTypeCountableConnection! + + """ + External ID of this attribute. + + Added in Saleor 3.10. + """ + externalReference: String +} + +"""An enumeration.""" +enum AttributeInputTypeEnum { + DROPDOWN + MULTISELECT + FILE + REFERENCE + NUMERIC + RICH_TEXT + PLAIN_TEXT + SWATCH + BOOLEAN + DATE + DATE_TIME +} + +"""An enumeration.""" +enum AttributeEntityTypeEnum { + PAGE + PRODUCT + PRODUCT_VARIANT +} + +"""An enumeration.""" +enum AttributeTypeEnum { + PRODUCT_TYPE + PAGE_TYPE +} + +"""An enumeration.""" +enum MeasurementUnitsEnum { + CM + M + KM + FT + YD + INCH + SQ_CM + SQ_M + SQ_KM + SQ_FT + SQ_YD + SQ_INCH + CUBIC_MILLIMETER + CUBIC_CENTIMETER + CUBIC_DECIMETER + CUBIC_METER + LITER + CUBIC_FOOT + CUBIC_INCH + CUBIC_YARD + QT + PINT + FL_OZ + ACRE_IN + ACRE_FT + G + LB + OZ + KG + TONNE +} + +type AttributeValueCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [AttributeValueCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type AttributeValueCountableEdge { + """The item at the end of the edge.""" + node: AttributeValue! + + """A cursor for use in pagination.""" + cursor: String! +} + +"""Represents a value of an attribute.""" +type AttributeValue implements Node { + id: ID! + + """Name of a value displayed in the interface.""" + name: String + + """Internal representation of a value (unique per attribute).""" + slug: String + + """ + Represent value of the attribute value (e.g. color values for swatch attributes). + """ + value: String + + """Returns translated attribute value fields for the given language code.""" + translation( + """A language code to return the translation for attribute value.""" + languageCode: LanguageCodeEnum! + ): AttributeValueTranslation + + """The input type to use for entering attribute values in the dashboard.""" + inputType: AttributeInputTypeEnum + + """The ID of the attribute reference.""" + reference: ID + + """Represents file URL and content type (if attribute value is a file).""" + file: File + + """ + Represents the text of the attribute value, includes formatting. + + Rich text format. For reference see https://editorjs.io/ + """ + richText: JSONString + + """ + Represents the text of the attribute value, plain text without formating. + """ + plainText: String + + """Represents the boolean value of the attribute value.""" + boolean: Boolean + + """Represents the date value of the attribute value.""" + date: Date + + """Represents the date/time value of the attribute value.""" + dateTime: DateTime + + """ + External ID of this attribute value. + + Added in Saleor 3.10. + """ + externalReference: String +} + +type AttributeValueTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String! + + """ + Attribute value. + + Rich text format. For reference see https://editorjs.io/ + """ + richText: JSONString + + """Attribute plain text value.""" + plainText: String +} + +type File { + """The URL of the file.""" + url: String! + + """Content type of the file.""" + contentType: String +} + +""" +The `Date` scalar type represents a Date +value as specified by +[iso8601](https://en.wikipedia.org/wiki/ISO_8601). +""" +scalar Date + +input AttributeChoicesSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort attribute choices by the selected field.""" + field: AttributeChoicesSortField! +} + +enum AttributeChoicesSortField { + """Sort attribute choice by name.""" + NAME + + """Sort attribute choice by slug.""" + SLUG +} + +input AttributeValueFilterInput { + search: String + ids: [ID!] +} + +type AttributeTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String! +} + +type ProductTypeCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [ProductTypeCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type ProductTypeCountableEdge { + """The item at the end of the edge.""" + node: ProductType! + + """A cursor for use in pagination.""" + cursor: String! +} + +enum VariantAttributeScope { + ALL + VARIANT_SELECTION + NOT_VARIANT_SELECTION +} + +""" +Represents assigned attribute to variant with variant selection attached. + +Added in Saleor 3.1. +""" +type AssignedVariantAttribute { + """Attribute assigned to variant.""" + attribute: Attribute! + + """ + Determines, whether assigned attribute is allowed for variant selection. Supported variant types for variant selection are: ['dropdown', 'boolean', 'swatch', 'numeric'] + """ + variantSelection: Boolean! +} + +type AttributeCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [AttributeCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type AttributeCountableEdge { + """The item at the end of the edge.""" + node: Attribute! + + """A cursor for use in pagination.""" + cursor: String! +} + +input AttributeFilterInput { + valueRequired: Boolean + isVariantOnly: Boolean + visibleInStorefront: Boolean + filterableInStorefront: Boolean + filterableInDashboard: Boolean + availableInGrid: Boolean + metadata: [MetadataFilter!] + search: String + ids: [ID!] + type: AttributeTypeEnum + inCollection: ID + inCategory: ID + slugs: [String!] + + """ + Specifies the channel by which the data should be filtered. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String +} + +input MetadataFilter { + """Key of a metadata item.""" + key: String! + + """Value of a metadata item.""" + value: String +} + +""" +Represents a single category of products. Categories allow to organize products in a tree-hierarchies which can be used for navigation in the storefront. +""" +type Category implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + seoTitle: String + seoDescription: String + name: String! + + """ + Description of the category. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + slug: String! + parent: Category + level: Int! + + """ + Description of the category. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") + + """List of ancestors of the category.""" + ancestors( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CategoryCountableConnection + + """ + List of products in the category. Requires the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + products( + """ + Filtering options for products. + + Added in Saleor 3.10. + """ + filter: ProductFilterInput + + """ + Sort products. + + Added in Saleor 3.10. + """ + sortBy: ProductOrder + + """Slug of a channel for which the data should be returned.""" + channel: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductCountableConnection + + """List of children of the category.""" + children( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CategoryCountableConnection + backgroundImage( + """ + Size of the image. If not provided, the original image will be returned. + """ + size: Int + + """ + The format of the image. When not provided, format of the original image will be used. Must be provided together with the size value, otherwise original image will be returned. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + format: ThumbnailFormatEnum + ): Image + + """Returns translated category fields for the given language code.""" + translation( + """A language code to return the translation for category.""" + languageCode: LanguageCodeEnum! + ): CategoryTranslation +} + +type CategoryCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [CategoryCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type CategoryCountableEdge { + """The item at the end of the edge.""" + node: Category! + + """A cursor for use in pagination.""" + cursor: String! +} + +input ProductFilterInput { + isPublished: Boolean + collections: [ID!] + categories: [ID!] + hasCategory: Boolean + attributes: [AttributeInput!] + + """Filter by variants having specific stock status.""" + stockAvailability: StockAvailability + stocks: ProductStockFilterInput + search: String + metadata: [MetadataFilter!] + + """ + Filter by the publication date. + + Added in Saleor 3.8. + """ + publishedFrom: DateTime + + """ + Filter by availability for purchase. + + Added in Saleor 3.8. + """ + isAvailable: Boolean + + """ + Filter by the date of availability for purchase. + + Added in Saleor 3.8. + """ + availableFrom: DateTime + + """ + Filter by visibility in product listings. + + Added in Saleor 3.8. + """ + isVisibleInListing: Boolean + price: PriceRangeInput + + """Filter by the lowest variant price after discounts.""" + minimalPrice: PriceRangeInput + + """Filter by when was the most recent update.""" + updatedAt: DateTimeRangeInput + productTypes: [ID!] + + """Filter on whether product is a gift card or not.""" + giftCard: Boolean + ids: [ID!] + hasPreorderedVariants: Boolean + slugs: [String!] + + """ + Specifies the channel by which the data should be filtered. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String +} + +input AttributeInput { + """Internal representation of an attribute name.""" + slug: String! + + """Internal representation of a value (unique per attribute).""" + values: [String!] + + """The range that the returned values should be in.""" + valuesRange: IntRangeInput + + """The date/time range that the returned values should be in.""" + dateTime: DateTimeRangeInput + + """ + The date range that the returned values should be in. In case of date/time attributes, the UTC midnight of the given date is used. + """ + date: DateRangeInput + + """The boolean value of the attribute.""" + boolean: Boolean +} + +input IntRangeInput { + """Value greater than or equal to.""" + gte: Int + + """Value less than or equal to.""" + lte: Int +} + +input DateTimeRangeInput { + """Start date.""" + gte: DateTime + + """End date.""" + lte: DateTime +} + +input DateRangeInput { + """Start date.""" + gte: Date + + """End date.""" + lte: Date +} + +enum StockAvailability { + IN_STOCK + OUT_OF_STOCK +} + +input ProductStockFilterInput { + warehouseIds: [ID!] + quantity: IntRangeInput +} + +input PriceRangeInput { + """Price greater than or equal to.""" + gte: Float + + """Price less than or equal to.""" + lte: Float +} + +input ProductOrder { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """ + Specifies the channel in which to sort the data. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String + + """ + Sort product by the selected attribute's values. + Note: this doesn't take translations into account yet. + """ + attributeId: ID + + """Sort products by the selected field.""" + field: ProductOrderField +} + +enum ProductOrderField { + """Sort products by name.""" + NAME + + """ + Sort products by rank. Note: This option is available only with the `search` filter. + """ + RANK + + """ + Sort products by price. + + This option requires a channel filter to work as the values can vary between channels. + """ + PRICE + + """ + Sort products by a minimal price of a product's variant. + + This option requires a channel filter to work as the values can vary between channels. + """ + MINIMAL_PRICE + + """Sort products by update date.""" + LAST_MODIFIED + + """Sort products by update date.""" + DATE + + """Sort products by type.""" + TYPE + + """ + Sort products by publication status. + + This option requires a channel filter to work as the values can vary between channels. + """ + PUBLISHED + + """ + Sort products by publication date. + + This option requires a channel filter to work as the values can vary between channels. + """ + PUBLICATION_DATE + + """ + Sort products by publication date. + + This option requires a channel filter to work as the values can vary between channels. + """ + PUBLISHED_AT + + """Sort products by update date.""" + LAST_MODIFIED_AT + + """ + Sort products by collection. Note: This option is available only for the `Collection.products` query. + + This option requires a channel filter to work as the values can vary between channels. + """ + COLLECTION + + """Sort products by rating.""" + RATING + + """ + Sort products by creation date. + + Added in Saleor 3.8. + """ + CREATED_AT +} + +"""Represents an image.""" +type Image { + """The URL of the image.""" + url: String! + + """Alt text for an image.""" + alt: String +} + +"""An enumeration.""" +enum ThumbnailFormatEnum { + WEBP +} + +type CategoryTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + seoTitle: String + seoDescription: String + name: String + + """ + Translated description of the category. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Translated description of the category. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") +} + +"""Represents a version of a product such as different size or color.""" +type ProductVariant implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + sku: String + product: Product! + trackInventory: Boolean! + quantityLimitPerCustomer: Int + weight: Weight + + """ + Channel given to retrieve this product variant. Also used by federation gateway to resolve this object in a federated query. + """ + channel: String + + """ + List of price information in channels for the product. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + channelListings: [ProductVariantChannelListing!] + + """ + Lists the storefront variant's pricing, the current price and discounts, only meant for displaying. + """ + pricing( + """ + Destination address used to find warehouses where stock availability for this product is checked. If address is empty, uses `Shop.companyAddress` or fallbacks to server's `settings.DEFAULT_COUNTRY` configuration. + """ + address: AddressInput + ): VariantPricingInfo + + """List of attributes assigned to this variant.""" + attributes( + """Define scope of returned attributes.""" + variantSelection: VariantAttributeScope + ): [SelectedAttribute!]! + + """Gross margin percentage value.""" + margin: Int + + """ + Total quantity ordered. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + quantityOrdered: Int + + """ + Total revenue generated by a variant in given period of time. Note: this field should be queried using `reportProductSales` query as it uses optimizations suitable for such calculations. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + revenue(period: ReportingPeriod): TaxedMoney + + """List of images for the product variant.""" + images: [ProductImage!] @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `media` field instead.") + + """List of media for the product variant.""" + media: [ProductMedia!] + + """Returns translated product variant fields for the given language code.""" + translation( + """A language code to return the translation for product variant.""" + languageCode: LanguageCodeEnum! + ): ProductVariantTranslation + + """ + Digital content for the product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + digitalContent: DigitalContent + + """ + Stocks for the product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + """ + stocks( + """ + Destination address used to find warehouses where stock availability for this product is checked. If address is empty, uses `Shop.companyAddress` or fallbacks to server's `settings.DEFAULT_COUNTRY` configuration. + """ + address: AddressInput + + """ + Two-letter ISO 3166-1 country code. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `address` argument instead. + """ + countryCode: CountryCode + ): [Stock!] + + """ + Quantity of a product available for sale in one checkout. Field value will be `null` when no `limitQuantityPerCheckout` in global settings has been set, and `productVariant` stocks are not tracked. + """ + quantityAvailable( + """ + Destination address used to find warehouses where stock availability for this product is checked. If address is empty, uses `Shop.companyAddress` or fallbacks to server's `settings.DEFAULT_COUNTRY` configuration. + """ + address: AddressInput + + """ + Two-letter ISO 3166-1 country code. When provided, the exact quantity from a warehouse operating in shipping zones that contain this country will be returned. Otherwise, it will return the maximum quantity from all shipping zones. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `address` argument instead. + """ + countryCode: CountryCode + ): Int + + """ + Preorder data for product variant. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + preorder: PreorderData + created: DateTime! + updatedAt: DateTime! + + """ + External ID of this product. + + Added in Saleor 3.10. + """ + externalReference: String +} + +"""Represents product varaint channel listing.""" +type ProductVariantChannelListing implements Node { + id: ID! + channel: Channel! + price: Money + + """Cost price of the variant.""" + costPrice: Money + + """ + Gross margin percentage value. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + margin: Int + + """ + Preorder variant data. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + preorderThreshold: PreorderThreshold +} + +"""Represents preorder variant data for channel.""" +type PreorderThreshold { + """Preorder threshold for product variant in this channel.""" + quantity: Int + + """Number of sold product variant in this channel.""" + soldUnits: Int! +} + +"""Represents availability of a variant in the storefront.""" +type VariantPricingInfo { + """Whether it is in sale or not.""" + onSale: Boolean + + """The discount amount if in sale (null otherwise).""" + discount: TaxedMoney + + """The discount amount in the local currency.""" + discountLocalCurrency: TaxedMoney + + """The price, with any discount subtracted.""" + price: TaxedMoney + + """The price without any discount.""" + priceUndiscounted: TaxedMoney + + """The discounted price in the local currency.""" + priceLocalCurrency: TaxedMoney +} + +""" +Represents a monetary value with taxes. In cases where taxes were not applied, net and gross values will be equal. +""" +type TaxedMoney { + """Currency code.""" + currency: String! + + """Amount of money including taxes.""" + gross: Money! + + """Amount of money without taxes.""" + net: Money! + + """Amount of taxes.""" + tax: Money! +} + +input AddressInput { + """Given name.""" + firstName: String + + """Family name.""" + lastName: String + + """Company or organization.""" + companyName: String + + """Address.""" + streetAddress1: String + + """Address.""" + streetAddress2: String + + """City.""" + city: String + + """District.""" + cityArea: String + + """Postal code.""" + postalCode: String + + """Country.""" + country: CountryCode + + """State or province.""" + countryArea: String + + """Phone number.""" + phone: String +} + +"""Represents a custom attribute.""" +type SelectedAttribute { + """Name of an attribute displayed in the interface.""" + attribute: Attribute! + + """Values of an attribute.""" + values: [AttributeValue!]! +} + +enum ReportingPeriod { + TODAY + THIS_MONTH +} + +"""Represents a product image.""" +type ProductImage { + """The ID of the image.""" + id: ID! + + """The alt text of the image.""" + alt: String + + """ + The new relative sorting position of the item (from -inf to +inf). 1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged. + """ + sortOrder: Int + url( + """ + Size of the image. If not provided, the original image will be returned. + """ + size: Int + + """ + The format of the image. When not provided, format of the original image will be used. Must be provided together with the size value, otherwise original image will be returned. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + format: ThumbnailFormatEnum + ): String! +} + +"""Represents a product media.""" +type ProductMedia implements Node { + id: ID! + sortOrder: Int + alt: String! + type: ProductMediaType! + oembedData: JSONString! + url( + """ + Size of the image. If not provided, the original image will be returned. + """ + size: Int + + """ + The format of the image. When not provided, format of the original image will be used. Must be provided together with the size value, otherwise original image will be returned. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + format: ThumbnailFormatEnum + ): String! +} + +"""An enumeration.""" +enum ProductMediaType { + IMAGE + VIDEO +} + +type ProductVariantTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String! +} + +type DigitalContent implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + useDefaultSettings: Boolean! + automaticFulfillment: Boolean! + contentFile: String! + maxDownloads: Int + urlValidDays: Int + + """List of URLs for the digital variant.""" + urls: [DigitalContentUrl!] + + """Product variant assigned to digital content.""" + productVariant: ProductVariant! +} + +type DigitalContentUrl implements Node { + id: ID! + content: DigitalContent! + created: DateTime! + downloadNum: Int! + + """URL for digital content.""" + url: String + + """UUID of digital content.""" + token: UUID! +} + +scalar UUID + +"""Represents stock.""" +type Stock implements Node { + id: ID! + warehouse: Warehouse! + productVariant: ProductVariant! + + """ + Quantity of a product in the warehouse's possession, including the allocated stock that is waiting for shipment. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + """ + quantity: Int! + + """ + Quantity allocated for orders. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + """ + quantityAllocated: Int! + + """ + Quantity reserved for checkouts. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + """ + quantityReserved: Int! +} + +"""Represents preorder settings for product variant.""" +type PreorderData { + """ + The global preorder threshold for product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + globalThreshold: Int + + """ + Total number of sold product variant during preorder. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + globalSoldUnits: Int! + + """Preorder end date.""" + endDate: DateTime +} + +"""Represents availability of a product in the storefront.""" +type ProductPricingInfo { + """Whether it is in sale or not.""" + onSale: Boolean + + """The discount amount if in sale (null otherwise).""" + discount: TaxedMoney + + """The discount amount in the local currency.""" + discountLocalCurrency: TaxedMoney + + """The discounted price range of the product variants.""" + priceRange: TaxedMoneyRange + + """The undiscounted price range of the product variants.""" + priceRangeUndiscounted: TaxedMoneyRange + + """ + The discounted price range of the product variants in the local currency. + """ + priceRangeLocalCurrency: TaxedMoneyRange + + """ + Determines whether this product's price displayed in a storefront should include taxes. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + displayGrossPrices: Boolean! +} + +"""Represents a range of monetary values.""" +type TaxedMoneyRange { + """Lower bound of a price range.""" + start: TaxedMoney + + """Upper bound of a price range.""" + stop: TaxedMoney +} + +"""Represents product channel listing.""" +type ProductChannelListing implements Node { + id: ID! + publicationDate: Date @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `publishedAt` field to fetch the publication date.") + + """ + The product publication date time. + + Added in Saleor 3.3. + """ + publishedAt: DateTime + isPublished: Boolean! + channel: Channel! + visibleInListings: Boolean! + availableForPurchase: Date @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `availableForPurchaseAt` field to fetch the available for purchase date.") + + """ + The product available for purchase date time. + + Added in Saleor 3.3. + """ + availableForPurchaseAt: DateTime + + """The price of the cheapest variant (including discounts).""" + discountedPrice: Money + + """ + Purchase cost of product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + purchaseCost: MoneyRange + + """ + Range of margin percentage value. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + margin: Margin + + """Whether the product is available for purchase.""" + isAvailableForPurchase: Boolean + + """ + Lists the storefront product's pricing, the current price and discounts, only meant for displaying. + """ + pricing( + """ + Destination address used to find warehouses where stock availability for this product is checked. If address is empty, uses `Shop.companyAddress` or fallbacks to server's `settings.DEFAULT_COUNTRY` configuration. + """ + address: AddressInput + ): ProductPricingInfo +} + +type Margin { + start: Int + stop: Int +} + +input MediaSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort media by the selected field.""" + field: MediaChoicesSortField! +} + +enum MediaChoicesSortField { + """Sort media by ID.""" + ID +} + +"""Represents a collection of products.""" +type Collection implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + seoTitle: String + seoDescription: String + name: String! + + """ + Description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + slug: String! + + """ + Channel given to retrieve this collection. Also used by federation gateway to resolve this object in a federated query. + """ + channel: String + + """ + Description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") + + """List of products in this collection.""" + products( + """Filtering options for products.""" + filter: ProductFilterInput + + """Sort products.""" + sortBy: ProductOrder + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductCountableConnection + backgroundImage( + """ + Size of the image. If not provided, the original image will be returned. + """ + size: Int + + """ + The format of the image. When not provided, format of the original image will be used. Must be provided together with the size value, otherwise original image will be returned. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + format: ThumbnailFormatEnum + ): Image + + """Returns translated collection fields for the given language code.""" + translation( + """A language code to return the translation for collection.""" + languageCode: LanguageCodeEnum! + ): CollectionTranslation + + """ + List of channels in which the collection is available. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + channelListings: [CollectionChannelListing!] +} + +type CollectionTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + seoTitle: String + seoDescription: String + name: String + + """ + Translated description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Translated description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") +} + +"""Represents collection channel listing.""" +type CollectionChannelListing implements Node { + id: ID! + publicationDate: Date @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `publishedAt` field to fetch the publication date.") + + """ + The collection publication date. + + Added in Saleor 3.3. + """ + publishedAt: DateTime + isPublished: Boolean! + channel: Channel! +} + +type ProductTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + seoTitle: String + seoDescription: String + name: String + + """ + Translated description of the product. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Translated description of the product. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") +} + +type WarehouseCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [WarehouseCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type WarehouseCountableEdge { + """The item at the end of the edge.""" + node: Warehouse! + + """A cursor for use in pagination.""" + cursor: String! +} + +input WarehouseFilterInput { + clickAndCollectOption: WarehouseClickAndCollectOptionEnum + search: String + ids: [ID!] + isPrivate: Boolean + channels: [ID!] + slugs: [String!] +} + +input WarehouseSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort warehouses by the selected field.""" + field: WarehouseSortField! +} + +enum WarehouseSortField { + """Sort warehouses by name.""" + NAME +} + +type TranslatableItemConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [TranslatableItemEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type TranslatableItemEdge { + """The item at the end of the edge.""" + node: TranslatableItem! + + """A cursor for use in pagination.""" + cursor: String! +} + +union TranslatableItem = ProductTranslatableContent | CollectionTranslatableContent | CategoryTranslatableContent | AttributeTranslatableContent | AttributeValueTranslatableContent | ProductVariantTranslatableContent | PageTranslatableContent | ShippingMethodTranslatableContent | SaleTranslatableContent | VoucherTranslatableContent | MenuItemTranslatableContent + +type ProductTranslatableContent implements Node { + id: ID! + seoTitle: String + seoDescription: String + name: String! + + """ + Description of the product. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Description of the product. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") + + """Returns translated product fields for the given language code.""" + translation( + """A language code to return the translation for product.""" + languageCode: LanguageCodeEnum! + ): ProductTranslation + + """Represents an individual item for sale in the storefront.""" + product: Product @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") + + """List of product attribute values that can be translated.""" + attributeValues: [AttributeValueTranslatableContent!]! +} + +type AttributeValueTranslatableContent implements Node { + id: ID! + name: String! + + """ + Attribute value. + + Rich text format. For reference see https://editorjs.io/ + """ + richText: JSONString + + """Attribute plain text value.""" + plainText: String + + """Returns translated attribute value fields for the given language code.""" + translation( + """A language code to return the translation for attribute value.""" + languageCode: LanguageCodeEnum! + ): AttributeValueTranslation + + """Represents a value of an attribute.""" + attributeValue: AttributeValue @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") + + """ + Associated attribute that can be translated. + + Added in Saleor 3.9. + """ + attribute: AttributeTranslatableContent +} + +type AttributeTranslatableContent implements Node { + id: ID! + name: String! + + """Returns translated attribute fields for the given language code.""" + translation( + """A language code to return the translation for attribute.""" + languageCode: LanguageCodeEnum! + ): AttributeTranslation + + """Custom attribute of a product.""" + attribute: Attribute @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") +} + +type CollectionTranslatableContent implements Node { + id: ID! + seoTitle: String + seoDescription: String + name: String! + + """ + Description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") + + """Returns translated collection fields for the given language code.""" + translation( + """A language code to return the translation for collection.""" + languageCode: LanguageCodeEnum! + ): CollectionTranslation + + """Represents a collection of products.""" + collection: Collection @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") +} + +type CategoryTranslatableContent implements Node { + id: ID! + seoTitle: String + seoDescription: String + name: String! + + """ + Description of the category. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """ + Description of the category. + + Rich text format. For reference see https://editorjs.io/ + """ + descriptionJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `description` field instead.") + + """Returns translated category fields for the given language code.""" + translation( + """A language code to return the translation for category.""" + languageCode: LanguageCodeEnum! + ): CategoryTranslation + + """Represents a single category of products.""" + category: Category @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") +} + +type ProductVariantTranslatableContent implements Node { + id: ID! + name: String! + + """Returns translated product variant fields for the given language code.""" + translation( + """A language code to return the translation for product variant.""" + languageCode: LanguageCodeEnum! + ): ProductVariantTranslation + + """Represents a version of a product such as different size or color.""" + productVariant: ProductVariant @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") + + """List of product variant attribute values that can be translated.""" + attributeValues: [AttributeValueTranslatableContent!]! +} + +type PageTranslatableContent implements Node { + id: ID! + seoTitle: String + seoDescription: String + title: String! + + """ + Content of the page. + + Rich text format. For reference see https://editorjs.io/ + """ + content: JSONString + + """ + Content of the page. + + Rich text format. For reference see https://editorjs.io/ + """ + contentJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `content` field instead.") + + """Returns translated page fields for the given language code.""" + translation( + """A language code to return the translation for page.""" + languageCode: LanguageCodeEnum! + ): PageTranslation + + """ + A static page that can be manually added by a shop operator through the dashboard. + """ + page: Page @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") + + """List of page content attribute values that can be translated.""" + attributeValues: [AttributeValueTranslatableContent!]! +} + +type PageTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + seoTitle: String + seoDescription: String + title: String + + """ + Translated content of the page. + + Rich text format. For reference see https://editorjs.io/ + """ + content: JSONString + + """ + Translated description of the page. + + Rich text format. For reference see https://editorjs.io/ + """ + contentJson: JSONString @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `content` field instead.") +} + +""" +A static page that can be manually added by a shop operator through the dashboard. +""" +type Page implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + seoTitle: String + seoDescription: String + title: String! + + """ + Content of the page. + + Rich text format. For reference see https://editorjs.io/ + """ + content: JSONString + publicationDate: Date @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `publishedAt` field to fetch the publication date.") + + """ + The page publication date. + + Added in Saleor 3.3. + """ + publishedAt: DateTime + isPublished: Boolean! + slug: String! + pageType: PageType! + created: DateTime! + + """ + Content of the page. + + Rich text format. For reference see https://editorjs.io/ + """ + contentJson: JSONString! @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `content` field instead.") + + """Returns translated page fields for the given language code.""" + translation( + """A language code to return the translation for page.""" + languageCode: LanguageCodeEnum! + ): PageTranslation + + """List of attributes assigned to this product.""" + attributes: [SelectedAttribute!]! +} + +""" +Represents a type of page. It defines what attributes are available to pages of this type. +""" +type PageType implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + slug: String! + + """Page attributes of that page type.""" + attributes: [Attribute!] + + """ + Attributes that can be assigned to the page type. + + Requires one of the following permissions: MANAGE_PAGES. + """ + availableAttributes( + filter: AttributeFilterInput + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): AttributeCountableConnection + + """ + Whether page type has pages assigned. + + Requires one of the following permissions: MANAGE_PAGES. + """ + hasPages: Boolean +} + +type ShippingMethodTranslatableContent implements Node { + id: ID! + name: String! + + """ + Description of the shipping method. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """Returns translated shipping method fields for the given language code.""" + translation( + """A language code to return the translation for shipping method.""" + languageCode: LanguageCodeEnum! + ): ShippingMethodTranslation + + """ + Shipping method are the methods you'll use to get customer's orders to them. They are directly exposed to the customers. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingMethod: ShippingMethodType @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") +} + +type SaleTranslatableContent implements Node { + id: ID! + name: String! + + """Returns translated sale fields for the given language code.""" + translation( + """A language code to return the translation for sale.""" + languageCode: LanguageCodeEnum! + ): SaleTranslation + + """ + Sales allow creating discounts for categories, collections or products and are visible to all the customers. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + sale: Sale @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") +} + +type SaleTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String +} + +""" +Sales allow creating discounts for categories, collections or products and are visible to all the customers. +""" +type Sale implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + type: SaleType! + startDate: DateTime! + endDate: DateTime + created: DateTime! + updatedAt: DateTime! + + """List of categories this sale applies to.""" + categories( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CategoryCountableConnection + + """ + List of collections this sale applies to. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + collections( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CollectionCountableConnection + + """ + List of products this sale applies to. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + products( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductCountableConnection + + """ + List of product variants this sale applies to. + + Added in Saleor 3.1. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + variants( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductVariantCountableConnection + + """Returns translated sale fields for the given language code.""" + translation( + """A language code to return the translation for sale.""" + languageCode: LanguageCodeEnum! + ): SaleTranslation + + """ + List of channels available for the sale. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + channelListings: [SaleChannelListing!] + + """Sale value.""" + discountValue: Float + + """Currency code for sale.""" + currency: String +} + +enum SaleType { + FIXED + PERCENTAGE +} + +type CollectionCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [CollectionCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type CollectionCountableEdge { + """The item at the end of the edge.""" + node: Collection! + + """A cursor for use in pagination.""" + cursor: String! +} + +type ProductVariantCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [ProductVariantCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type ProductVariantCountableEdge { + """The item at the end of the edge.""" + node: ProductVariant! + + """A cursor for use in pagination.""" + cursor: String! +} + +"""Represents sale channel listing.""" +type SaleChannelListing implements Node { + id: ID! + channel: Channel! + discountValue: Float! + currency: String! +} + +type VoucherTranslatableContent implements Node { + id: ID! + name: String + + """Returns translated voucher fields for the given language code.""" + translation( + """A language code to return the translation for voucher.""" + languageCode: LanguageCodeEnum! + ): VoucherTranslation + + """ + Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucher: Voucher @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") +} + +type VoucherTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String +} + +""" +Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes. +""" +type Voucher implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String + code: String! + usageLimit: Int + used: Int! + startDate: DateTime! + endDate: DateTime + applyOncePerOrder: Boolean! + applyOncePerCustomer: Boolean! + onlyForStaff: Boolean! + minCheckoutItemsQuantity: Int + + """List of categories this voucher applies to.""" + categories( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CategoryCountableConnection + + """ + List of collections this voucher applies to. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + collections( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CollectionCountableConnection + + """ + List of products this voucher applies to. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + products( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductCountableConnection + + """ + List of product variants this voucher applies to. + + Added in Saleor 3.1. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + variants( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): ProductVariantCountableConnection + + """List of countries available for the shipping voucher.""" + countries: [CountryDisplay!] + + """Returns translated voucher fields for the given language code.""" + translation( + """A language code to return the translation for voucher.""" + languageCode: LanguageCodeEnum! + ): VoucherTranslation + + """Determines a type of discount for voucher - value or percentage""" + discountValueType: DiscountValueTypeEnum! + + """Voucher value.""" + discountValue: Float + + """Currency code for voucher.""" + currency: String + + """Minimum order value to apply voucher.""" + minSpent: Money + + """Determines a type of voucher.""" + type: VoucherTypeEnum! + + """ + List of availability in channels for the voucher. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + channelListings: [VoucherChannelListing!] +} + +enum DiscountValueTypeEnum { + FIXED + PERCENTAGE +} + +enum VoucherTypeEnum { + SHIPPING + ENTIRE_ORDER + SPECIFIC_PRODUCT +} + +"""Represents voucher channel listing.""" +type VoucherChannelListing implements Node { + id: ID! + channel: Channel! + discountValue: Float! + currency: String! + minSpent: Money +} + +type MenuItemTranslatableContent implements Node { + id: ID! + name: String! + + """Returns translated menu item fields for the given language code.""" + translation( + """A language code to return the translation for menu item.""" + languageCode: LanguageCodeEnum! + ): MenuItemTranslation + + """ + Represents a single item of the related menu. Can store categories, collection or pages. + """ + menuItem: MenuItem @deprecated(reason: "This field will be removed in Saleor 4.0. Get model fields from the root level queries.") +} + +type MenuItemTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + name: String! +} + +""" +Represents a single item of the related menu. Can store categories, collection or pages. +""" +type MenuItem implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + menu: Menu! + parent: MenuItem + category: Category + + """ + A collection associated with this menu item. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + collection: Collection + + """ + A page associated with this menu item. Requires one of the following permissions to include unpublished items: MANAGE_PAGES. + """ + page: Page + level: Int! + children: [MenuItem!] + + """URL to the menu item.""" + url: String + + """Returns translated menu item fields for the given language code.""" + translation( + """A language code to return the translation for menu item.""" + languageCode: LanguageCodeEnum! + ): MenuItemTranslation +} + +""" +Represents a single menu - an object that is used to help navigate through the store. +""" +type Menu implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + name: String! + slug: String! + items: [MenuItem!] +} + +enum TranslatableKinds { + ATTRIBUTE + ATTRIBUTE_VALUE + CATEGORY + COLLECTION + MENU_ITEM + PAGE + PRODUCT + SALE + SHIPPING_METHOD + VARIANT + VOUCHER +} + +""" +Channel-specific tax configuration. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TaxConfiguration implements Node & ObjectWithMetadata { + """The ID of the object.""" + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """A channel to which the tax configuration applies to.""" + channel: Channel! + + """Determines whether taxes are charged in the given channel.""" + chargeTaxes: Boolean! + + """ + The default strategy to use for tax calculation in the given channel. Taxes can be calculated either using user-defined flat rates or with a tax app. Empty value means that no method is selected and taxes are not calculated. + """ + taxCalculationStrategy: TaxCalculationStrategy + + """ + Determines whether prices displayed in a storefront should include taxes. + """ + displayGrossPrices: Boolean! + + """Determines whether prices are entered with the tax included.""" + pricesEnteredWithTax: Boolean! + + """List of country-specific exceptions in tax configuration.""" + countries: [TaxConfigurationPerCountry!]! +} + +enum TaxCalculationStrategy { + FLAT_RATES + TAX_APP +} + +""" +Country-specific exceptions of a channel's tax configuration. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TaxConfigurationPerCountry { + """Country in which this configuration applies.""" + country: CountryDisplay! + + """Determines whether taxes are charged in this country.""" + chargeTaxes: Boolean! + + """ + A country-specific strategy to use for tax calculation. Taxes can be calculated either using user-defined flat rates or with a tax app. If not provided, use the value from the channel's tax configuration. + """ + taxCalculationStrategy: TaxCalculationStrategy + + """ + Determines whether prices displayed in a storefront should include taxes for this country. + """ + displayGrossPrices: Boolean! +} + +type TaxConfigurationCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [TaxConfigurationCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type TaxConfigurationCountableEdge { + """The item at the end of the edge.""" + node: TaxConfiguration! + + """A cursor for use in pagination.""" + cursor: String! +} + +input TaxConfigurationFilterInput { + metadata: [MetadataFilter!] + ids: [ID!] +} + +type TaxClassCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [TaxClassCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type TaxClassCountableEdge { + """The item at the end of the edge.""" + node: TaxClass! + + """A cursor for use in pagination.""" + cursor: String! +} + +input TaxClassSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort tax classes by the selected field.""" + field: TaxClassSortField! +} + +enum TaxClassSortField { + """Sort tax classes by name.""" + NAME +} + +input TaxClassFilterInput { + metadata: [MetadataFilter!] + ids: [ID!] + countries: [CountryCode!] +} + +""" +Tax class rates grouped by country. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TaxCountryConfiguration { + """A country for which tax class rates are grouped.""" + country: CountryDisplay! + + """List of tax class rates.""" + taxClassCountryRates: [TaxClassCountryRate!]! +} + +type StockCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [StockCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type StockCountableEdge { + """The item at the end of the edge.""" + node: Stock! + + """A cursor for use in pagination.""" + cursor: String! +} + +input StockFilterInput { + quantity: Float + search: String +} + +""" +Represents a shop resource containing general shop data and configuration. +""" +type Shop { + """List of available payment gateways.""" + availablePaymentGateways( + """ + A currency for which gateways will be returned. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `channel` argument instead. + """ + currency: String + + """Slug of a channel for which the data should be returned.""" + channel: String + ): [PaymentGateway!]! + + """List of available external authentications.""" + availableExternalAuthentications: [ExternalAuthentication!]! + + """Shipping methods that are available for the shop.""" + availableShippingMethods( + """Slug of a channel for which the data should be returned.""" + channel: String! + + """Address for which available shipping methods should be returned.""" + address: AddressInput + ): [ShippingMethod!] + + """ + List of all currencies supported by shop's channels. + + Added in Saleor 3.1. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + channelCurrencies: [String!]! + + """List of countries available in the shop.""" + countries( + """ + A language code to return the translation for. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + languageCode: LanguageCodeEnum + + """Filtering options for countries""" + filter: CountryFilterInput + ): [CountryDisplay!]! + + """Shop's default country.""" + defaultCountry: CountryDisplay + + """ + Default shop's email sender's name. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + defaultMailSenderName: String + + """ + Default shop's email sender's address. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + defaultMailSenderAddress: String + + """Shop's description.""" + description: String + + """Shop's domain data.""" + domain: Domain! + + """List of the shops's supported languages.""" + languages: [LanguageDisplay!]! + + """Shop's name.""" + name: String! + + """List of available permissions.""" + permissions: [Permission!]! + + """List of possible phone prefixes.""" + phonePrefixes: [String!]! + + """Header text.""" + headerText: String + + """ + Automatically approve all new fulfillments. + + Added in Saleor 3.1. + """ + fulfillmentAutoApprove: Boolean! + + """ + Allow to approve fulfillments which are unpaid. + + Added in Saleor 3.1. + """ + fulfillmentAllowUnpaid: Boolean! + + """Enable inventory tracking.""" + trackInventoryByDefault: Boolean + + """Default weight unit.""" + defaultWeightUnit: WeightUnitsEnum + + """Returns translated shop fields for the given language code.""" + translation( + """A language code to return the translation for shop.""" + languageCode: LanguageCodeEnum! + ): ShopTranslation + + """ + Enable automatic fulfillment for all digital products. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + automaticFulfillmentDigitalProducts: Boolean + + """ + Default number of minutes stock will be reserved for anonymous checkout or null when stock reservation is disabled. + + Added in Saleor 3.1. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + reserveStockDurationAnonymousUser: Int + + """ + Default number of minutes stock will be reserved for authenticated checkout or null when stock reservation is disabled. + + Added in Saleor 3.1. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + reserveStockDurationAuthenticatedUser: Int + + """ + Default number of maximum line quantity in single checkout (per single checkout line). + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + limitQuantityPerCheckout: Int + + """ + Default number of max downloads per digital content URL. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + defaultDigitalMaxDownloads: Int + + """ + Default number of days which digital content URL will be valid. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + defaultDigitalUrlValidDays: Int + + """Company address.""" + companyAddress: Address + + """URL of a view where customers can set their password.""" + customerSetPasswordUrl: String + + """ + List of staff notification recipients. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + staffNotificationRecipients: [StaffNotificationRecipient!] + + """ + Resource limitations and current usage if any set for a shop + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + """ + limits: LimitInfo! + + """ + Saleor API version. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP. + """ + version: String! + + """ + Minor Saleor API version. + + Added in Saleor 3.5. + """ + schemaVersion: String! + + """Include taxes in prices.""" + includeTaxesInPrices: Boolean! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `Channel.taxConfiguration.pricesEnteredWithTax` to determine whether prices are entered with tax.") + + """Display prices with tax in store.""" + displayGrossPrices: Boolean! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `Channel.taxConfiguration` to determine whether to display gross or net prices.") + + """Charge taxes on shipping.""" + chargeTaxesOnShipping: Boolean! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `ShippingMethodType.taxClass` to determine whether taxes are calculated for shipping methods; if a tax class is set, the taxes will be calculated, otherwise no tax rate will be applied.") +} + +""" +Available payment gateway backend with configuration necessary to setup client. +""" +type PaymentGateway { + """Payment gateway name.""" + name: String! + + """Payment gateway ID.""" + id: ID! + + """Payment gateway client configuration.""" + config: [GatewayConfigLine!]! + + """Payment gateway supported currencies.""" + currencies: [String!]! +} + +"""Payment gateway client configuration key and value pair.""" +type GatewayConfigLine { + """Gateway config key.""" + field: String! + + """Gateway config value for key.""" + value: String +} + +type ExternalAuthentication { + """ID of external authentication plugin.""" + id: String! + + """Name of external authentication plugin.""" + name: String +} + +input CountryFilterInput { + """ + Boolean for filtering countries by having shipping zone assigned.If 'true', return countries with shipping zone assigned.If 'false', return countries without any shipping zone assigned.If the argument is not provided (null), return all countries. + """ + attachedToShippingZones: Boolean +} + +"""Represents shop's domain.""" +type Domain { + """The host name of the domain.""" + host: String! + + """Inform if SSL is enabled.""" + sslEnabled: Boolean! + + """Shop's absolute URL.""" + url: String! +} + +type ShopTranslation implements Node { + id: ID! + + """Translation language.""" + language: LanguageDisplay! + headerText: String! + description: String! +} + +""" +Represents a recipient of email notifications send by Saleor, such as notifications about new orders. Notifications can be assigned to staff users or arbitrary email addresses. +""" +type StaffNotificationRecipient implements Node { + id: ID! + + """Returns a user subscribed to email notifications.""" + user: User + + """Returns email address of a user subscribed to email notifications.""" + email: String + + """Determines if a notification active.""" + active: Boolean +} + +"""Represents user data.""" +type User implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + email: String! + firstName: String! + lastName: String! + isStaff: Boolean! + isActive: Boolean! + + """List of all user's addresses.""" + addresses: [Address!]! + + """Returns the last open checkout of this user.""" + checkout: Checkout @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `checkoutTokens` field to fetch the user checkouts.") + + """Returns the checkout UUID's assigned to this user.""" + checkoutTokens( + """Slug of a channel for which the data should be returned.""" + channel: String + ): [UUID!] @deprecated(reason: "This field will be removed in Saleor 4.0. Use `checkoutIds` instead.") + + """Returns the checkout ID's assigned to this user.""" + checkoutIds( + """Slug of a channel for which the data should be returned.""" + channel: String + ): [ID!] + + """ + Returns checkouts assigned to this user. + + Added in Saleor 3.8. + """ + checkouts( + """Slug of a channel for which the data should be returned.""" + channel: String + + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): CheckoutCountableConnection + + """List of the user gift cards.""" + giftCards( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): GiftCardCountableConnection + + """ + A note about the customer. + + Requires one of the following permissions: MANAGE_USERS, MANAGE_STAFF. + """ + note: String + + """ + List of user's orders. Requires one of the following permissions: MANAGE_STAFF, OWNER. + """ + orders( + """Return the elements in the list that come before the specified cursor.""" + before: String + + """Return the elements in the list that come after the specified cursor.""" + after: String + + """Return the first n elements from the list.""" + first: Int + + """Return the last n elements from the list.""" + last: Int + ): OrderCountableConnection + + """List of user's permissions.""" + userPermissions: [UserPermission!] + + """List of user's permission groups.""" + permissionGroups: [Group!] + + """List of user's permission groups which user can manage.""" + editableGroups: [Group!] + avatar( + """ + Size of the image. If not provided, the original image will be returned. + """ + size: Int + + """ + The format of the image. When not provided, format of the original image will be used. Must be provided together with the size value, otherwise original image will be returned. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + format: ThumbnailFormatEnum + ): Image + + """ + List of events associated with the user. + + Requires one of the following permissions: MANAGE_USERS, MANAGE_STAFF. + """ + events: [CustomerEvent!] + + """List of stored payment sources.""" + storedPaymentSources( + """Slug of a channel for which the data should be returned.""" + channel: String + ): [PaymentSource!] + + """User language code.""" + languageCode: LanguageCodeEnum! + defaultShippingAddress: Address + defaultBillingAddress: Address + + """ + External ID of this user. + + Added in Saleor 3.10. + """ + externalReference: String + lastLogin: DateTime + dateJoined: DateTime! + updatedAt: DateTime! +} + +"""Checkout object.""" +type Checkout implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + created: DateTime! + lastChange: DateTime! + user: User + channel: Channel! + billingAddress: Address + shippingAddress: Address + note: String! + discount: Money + discountName: String + translatedDiscountName: String + voucherCode: String + + """Shipping methods that can be used with this checkout.""" + availableShippingMethods: [ShippingMethod!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `shippingMethods` instead.") + + """Shipping methods that can be used with this checkout.""" + shippingMethods: [ShippingMethod!]! + + """ + Collection points that can be used for this order. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + availableCollectionPoints: [Warehouse!]! + + """List of available payment gateways.""" + availablePaymentGateways: [PaymentGateway!]! + + """Email of a customer.""" + email: String + + """List of gift cards associated with this checkout.""" + giftCards: [GiftCard!]! + + """Returns True, if checkout requires shipping.""" + isShippingRequired: Boolean! + + """The number of items purchased.""" + quantity: Int! + + """ + Date when oldest stock reservation for this checkout expires or null if no stock is reserved. + + Added in Saleor 3.1. + """ + stockReservationExpires: DateTime + + """ + A list of checkout lines, each containing information about an item in the checkout. + """ + lines: [CheckoutLine!]! + + """The price of the shipping, with all the taxes included.""" + shippingPrice: TaxedMoney! + + """The shipping method related with checkout.""" + shippingMethod: ShippingMethod @deprecated(reason: "This field will be removed in Saleor 4.0. Use `deliveryMethod` instead.") + + """ + The delivery method selected for this checkout. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + deliveryMethod: DeliveryMethod + + """The price of the checkout before shipping, with taxes included.""" + subtotalPrice: TaxedMoney! + + """ + Returns True if checkout has to be exempt from taxes. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + taxExemption: Boolean! + + """The checkout's token.""" + token: UUID! + + """ + The sum of the the checkout line prices, with all the taxes,shipping costs, and discounts included. + """ + totalPrice: TaxedMoney! + + """Checkout language code.""" + languageCode: LanguageCodeEnum! + + """ + List of transactions for the checkout. Requires one of the following permissions: MANAGE_CHECKOUTS, HANDLE_PAYMENTS. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + transactions: [TransactionItem!] + + """ + Determines whether checkout prices should include taxes when displayed in a storefront. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + displayGrossPrices: Boolean! +} + +""" +A gift card is a prepaid electronic payment card accepted in stores. They can be used during checkout by providing a valid gift card codes. +""" +type GiftCard implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """Code in format which allows displaying in a user interface.""" + displayCode: String! + + """Last 4 characters of gift card code.""" + last4CodeChars: String! + + """ + Gift card code. Can be fetched by a staff member with MANAGE_GIFT_CARD when gift card wasn't yet used and by the gift card owner. + """ + code: String! + created: DateTime! + + """ + The user who bought or issued a gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + createdBy: User + + """ + The customer who used a gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + usedBy: User + + """ + Email address of the user who bought or issued gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_USERS, OWNER. + """ + createdByEmail: String + + """ + Email address of the customer who used a gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + usedByEmail: String + lastUsedOn: DateTime + expiryDate: Date + + """ + App which created the gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_APPS, OWNER. + """ + app: App + + """ + Related gift card product. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + product: Product + + """ + List of events associated with the gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + events( + """Filtering options for gift card events.""" + filter: GiftCardEventFilterInput + ): [GiftCardEvent!]! + + """ + The gift card tag. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + tags: [GiftCardTag!]! + + """ + Slug of the channel where the gift card was bought. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + boughtInChannel: String + isActive: Boolean! + initialBalance: Money! + currentBalance: Money! + + """The customer who bought a gift card.""" + user: User @deprecated(reason: "This field will be removed in Saleor 4.0. Use `createdBy` field instead.") + + """End date of gift card.""" + endDate: DateTime @deprecated(reason: "This field will be removed in Saleor 4.0. Use `expiryDate` field instead.") + + """Start date of gift card.""" + startDate: DateTime @deprecated(reason: "This field will be removed in Saleor 4.0.") +} + +""" +History log of the gift card. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type GiftCardEvent implements Node { + id: ID! + + """Date when event happened at in ISO 8601 format.""" + date: DateTime + + """Gift card event type.""" + type: GiftCardEventsEnum + + """ + User who performed the action. Requires one of the following permissions: MANAGE_USERS, MANAGE_STAFF, OWNER. + """ + user: User + + """ + App that performed the action. Requires one of the following permissions: MANAGE_APPS, OWNER. + """ + app: App + + """Content of the event.""" + message: String + + """Email of the customer.""" + email: String + + """The order ID where gift card was used or bought.""" + orderId: ID + + """User-friendly number of an order where gift card was used or bought.""" + orderNumber: String + + """The list of gift card tags.""" + tags: [String!] + + """The list of old gift card tags.""" + oldTags: [String!] + + """The gift card balance.""" + balance: GiftCardEventBalance + + """The gift card expiry date.""" + expiryDate: Date + + """Previous gift card expiry date.""" + oldExpiryDate: Date +} + +"""An enumeration.""" +enum GiftCardEventsEnum { + ISSUED + BOUGHT + UPDATED + ACTIVATED + DEACTIVATED + BALANCE_RESET + EXPIRY_DATE_UPDATED + TAGS_UPDATED + SENT_TO_CUSTOMER + RESENT + NOTE_ADDED + USED_IN_ORDER +} + +type GiftCardEventBalance { + """Initial balance of the gift card.""" + initialBalance: Money + + """Current balance of the gift card.""" + currentBalance: Money! + + """Previous initial balance of the gift card.""" + oldInitialBalance: Money + + """Previous current balance of the gift card.""" + oldCurrentBalance: Money +} + +input GiftCardEventFilterInput { + type: GiftCardEventsEnum + orders: [ID!] +} + +""" +The gift card tag. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type GiftCardTag implements Node { + id: ID! + name: String! +} + +"""Represents an item in the checkout.""" +type CheckoutLine implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + variant: ProductVariant! + quantity: Int! + + """The unit price of the checkout line, with taxes and discounts.""" + unitPrice: TaxedMoney! + + """The unit price of the checkout line, without discounts.""" + undiscountedUnitPrice: Money! + + """The sum of the checkout line price, taxes and discounts.""" + totalPrice: TaxedMoney! + + """The sum of the checkout line price, without discounts.""" + undiscountedTotalPrice: Money! + + """Indicates whether the item need to be delivered.""" + requiresShipping: Boolean! +} + +""" +Represents a delivery method chosen for the checkout. `Warehouse` type is used when checkout is marked as "click and collect" and `ShippingMethod` otherwise. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +union DeliveryMethod = Warehouse | ShippingMethod + +""" +Represents a payment transaction. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TransactionItem implements Node & ObjectWithMetadata { + """The ID of the object.""" + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + createdAt: DateTime! + modifiedAt: DateTime! + + """ + List of actions that can be performed in the current state of a payment. + """ + actions: [TransactionActionEnum!]! + + """Total amount authorized for this payment.""" + authorizedAmount: Money! + + """Total amount refunded for this payment.""" + refundedAmount: Money! + + """Total amount voided for this payment.""" + voidedAmount: Money! + + """Total amount charged for this payment.""" + chargedAmount: Money! + + """Status of transaction.""" + status: String! + + """Type of transaction.""" + type: String! + + """Reference of transaction.""" + reference: String! + + """ + The related order. + + Added in Saleor 3.6. + """ + order: Order + + """List of all transaction's events.""" + events: [TransactionEvent!]! +} + +""" +Represents possible actions on payment transaction. + + The following actions are possible: + CHARGE - Represents the charge action. + REFUND - Represents a refund action. + VOID - Represents a void action. +""" +enum TransactionActionEnum { + CHARGE + REFUND + VOID +} + +"""Represents an order in the shop.""" +type Order implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + created: DateTime! + updatedAt: DateTime! + status: OrderStatus! + + """ + User who placed the order. This field is set only for orders placed by authenticated users. Can be fetched for orders created in Saleor 3.2 and later, for other orders requires one of the following permissions: MANAGE_USERS, MANAGE_ORDERS, OWNER. + """ + user: User + trackingClientId: String! + + """ + Billing address. The full data can be access for orders created in Saleor 3.2 and later, for other orders requires one of the following permissions: MANAGE_ORDERS, OWNER. + """ + billingAddress: Address + + """ + Shipping address. The full data can be access for orders created in Saleor 3.2 and later, for other orders requires one of the following permissions: MANAGE_ORDERS, OWNER. + """ + shippingAddress: Address + shippingMethodName: String + collectionPointName: String + channel: Channel! + + """List of shipments for the order.""" + fulfillments: [Fulfillment!]! + + """List of order lines.""" + lines: [OrderLine!]! + + """ + List of actions that can be performed in the current state of an order. + """ + actions: [OrderAction!]! + + """Shipping methods that can be used with this order.""" + availableShippingMethods: [ShippingMethod!] @deprecated(reason: "Use `shippingMethods`, this field will be removed in 4.0") + + """Shipping methods related to this order.""" + shippingMethods: [ShippingMethod!]! + + """ + Collection points that can be used for this order. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + availableCollectionPoints: [Warehouse!]! + + """ + List of order invoices. Can be fetched for orders created in Saleor 3.2 and later, for other orders requires one of the following permissions: MANAGE_ORDERS, OWNER. + """ + invoices: [Invoice!]! + + """User-friendly number of an order.""" + number: String! + + """The ID of the order that was the base for this order.""" + original: ID + + """The order origin.""" + origin: OrderOriginEnum! + + """Informs if an order is fully paid.""" + isPaid: Boolean! + + """Internal payment status.""" + paymentStatus: PaymentChargeStatusEnum! + + """User-friendly payment status.""" + paymentStatusDisplay: String! + + """ + The authorize status of the order. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + authorizeStatus: OrderAuthorizeStatusEnum! + + """ + The charge status of the order. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + chargeStatus: OrderChargeStatusEnum! + + """ + Returns True if order has to be exempt from taxes. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + taxExemption: Boolean! + + """ + List of transactions for the order. Requires one of the following permissions: MANAGE_ORDERS, HANDLE_PAYMENTS. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + transactions: [TransactionItem!]! + + """List of payments for the order.""" + payments: [Payment!]! + + """Total amount of the order.""" + total: TaxedMoney! + + """Undiscounted total amount of the order.""" + undiscountedTotal: TaxedMoney! + + """Shipping method for this order.""" + shippingMethod: ShippingMethod @deprecated(reason: "This field will be removed in Saleor 4.0. Use `deliveryMethod` instead.") + + """Total price of shipping.""" + shippingPrice: TaxedMoney! + + """The shipping tax rate value.""" + shippingTaxRate: Float! + + """ + Denormalized tax class assigned to the shipping method. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + """ + shippingTaxClass: TaxClass + + """ + Denormalized name of the tax class assigned to the shipping method. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + shippingTaxClassName: String + + """ + Denormalized public metadata of the shipping method's tax class. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + shippingTaxClassMetadata: [MetadataItem!]! + + """ + Denormalized private metadata of the shipping method's tax class. Requires staff permissions to access. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + shippingTaxClassPrivateMetadata: [MetadataItem!]! + token: String! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `id` instead.") + voucher: Voucher + + """List of user gift cards.""" + giftCards: [GiftCard!]! + customerNote: String! + weight: Weight! + redirectUrl: String + + """The sum of line prices not including shipping.""" + subtotal: TaxedMoney! + + """User-friendly order status.""" + statusDisplay: String! + + """ + Informs whether a draft order can be finalized(turned into a regular order). + """ + canFinalize: Boolean! + + """Amount authorized for the order.""" + totalAuthorized: Money! + + """Amount captured by payment.""" + totalCaptured: Money! + + """ + List of events associated with the order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + events: [OrderEvent!]! + + """The difference between the paid and the order total amount.""" + totalBalance: Money! + + """ + Email address of the customer. The full data can be access for orders created in Saleor 3.2 and later, for other orders requires one of the following permissions: MANAGE_ORDERS, OWNER. + """ + userEmail: String + + """Returns True, if order requires shipping.""" + isShippingRequired: Boolean! + + """ + The delivery method selected for this order. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + deliveryMethod: DeliveryMethod + languageCode: String! @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `languageCodeEnum` field to fetch the language code. ") + + """Order language code.""" + languageCodeEnum: LanguageCodeEnum! + + """Returns applied discount.""" + discount: Money @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `discounts` field instead.") + + """Discount name.""" + discountName: String @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `discounts` field instead.") + + """Translated discount name.""" + translatedDiscountName: String @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `discounts` field instead. ") + + """List of all discounts assigned to the order.""" + discounts: [OrderDiscount!]! + + """List of errors that occurred during order validation.""" + errors: [OrderError!]! + + """ + Determines whether checkout prices should include taxes when displayed in a storefront. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + displayGrossPrices: Boolean! + + """ + External ID of this order. + + Added in Saleor 3.10. + """ + externalReference: String +} + +"""An enumeration.""" +enum OrderStatus { + DRAFT + UNCONFIRMED + UNFULFILLED + PARTIALLY_FULFILLED + PARTIALLY_RETURNED + RETURNED + FULFILLED + CANCELED +} + +"""Represents order fulfillment.""" +type Fulfillment implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + fulfillmentOrder: Int! + status: FulfillmentStatus! + trackingNumber: String! + created: DateTime! + + """List of lines for the fulfillment.""" + lines: [FulfillmentLine!] + + """User-friendly fulfillment status.""" + statusDisplay: String + + """Warehouse from fulfillment was fulfilled.""" + warehouse: Warehouse +} + +"""An enumeration.""" +enum FulfillmentStatus { + FULFILLED + REFUNDED + RETURNED + REPLACED + REFUNDED_AND_RETURNED + CANCELED + WAITING_FOR_APPROVAL +} + +"""Represents line of the fulfillment.""" +type FulfillmentLine implements Node { + id: ID! + quantity: Int! + orderLine: OrderLine +} + +"""Represents order line of particular order.""" +type OrderLine implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + productName: String! + variantName: String! + productSku: String + productVariantId: String + isShippingRequired: Boolean! + quantity: Int! + quantityFulfilled: Int! + unitDiscountReason: String + taxRate: Float! + digitalContentUrl: DigitalContentUrl + thumbnail( + """ + Size of the image. If not provided, the original image will be returned. + """ + size: Int + + """ + The format of the image. When not provided, format of the original image will be used. Must be provided together with the size value, otherwise original image will be returned. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + format: ThumbnailFormatEnum + ): Image + + """Price of the single item in the order line.""" + unitPrice: TaxedMoney! + + """ + Price of the single item in the order line without applied an order line discount. + """ + undiscountedUnitPrice: TaxedMoney! + + """The discount applied to the single order line.""" + unitDiscount: Money! + + """Value of the discount. Can store fixed value or percent value""" + unitDiscountValue: PositiveDecimal! + + """Price of the order line.""" + totalPrice: TaxedMoney! + + """ + A purchased product variant. Note: this field may be null if the variant has been removed from stock at all. Requires one of the following permissions to include the unpublished items: MANAGE_ORDERS, MANAGE_DISCOUNTS, MANAGE_PRODUCTS. + """ + variant: ProductVariant + + """Product name in the customer's language""" + translatedProductName: String! + + """Variant name in the customer's language""" + translatedVariantName: String! + + """ + List of allocations across warehouses. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + """ + allocations: [Allocation!] + + """ + A quantity of items remaining to be fulfilled. + + Added in Saleor 3.1. + """ + quantityToFulfill: Int! + + """Type of the discount: fixed or percent""" + unitDiscountType: DiscountValueTypeEnum + + """ + Denormalized tax class of the product in this order line. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + """ + taxClass: TaxClass + + """ + Denormalized name of the tax class. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + taxClassName: String + + """ + Denormalized public metadata of the tax class. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + taxClassMetadata: [MetadataItem!]! + + """ + Denormalized private metadata of the tax class. Requires staff permissions to access. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + taxClassPrivateMetadata: [MetadataItem!]! +} + +""" +Positive Decimal scalar implementation. + +Should be used in places where value must be positive. +""" +scalar PositiveDecimal + +"""Represents allocation.""" +type Allocation implements Node { + id: ID! + + """ + Quantity allocated for orders. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + """ + quantity: Int! + + """ + The warehouse were items were allocated. + + Requires one of the following permissions: MANAGE_PRODUCTS, MANAGE_ORDERS. + """ + warehouse: Warehouse! +} + +enum OrderAction { + """Represents the capture action.""" + CAPTURE + + """Represents a mark-as-paid action.""" + MARK_AS_PAID + + """Represents a refund action.""" + REFUND + + """Represents a void action.""" + VOID +} + +"""Represents an Invoice.""" +type Invoice implements ObjectWithMetadata & Job & Node { + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + + """Job status.""" + status: JobStatusEnum! + createdAt: DateTime! + updatedAt: DateTime! + message: String + + """The ID of the object.""" + id: ID! + number: String + externalUrl: String + + """URL to download an invoice.""" + url: String + + """ + Order related to the invoice. + + Added in Saleor 3.10. + """ + order: Order +} + +interface Job { + """Job status.""" + status: JobStatusEnum! + + """Created date time of job in ISO 8601 format.""" + createdAt: DateTime! + + """Date time of job last update in ISO 8601 format.""" + updatedAt: DateTime! + + """Job message.""" + message: String +} + +"""An enumeration.""" +enum JobStatusEnum { + PENDING + SUCCESS + FAILED + DELETED +} + +"""An enumeration.""" +enum OrderOriginEnum { + CHECKOUT + DRAFT + REISSUE +} + +"""An enumeration.""" +enum PaymentChargeStatusEnum { + NOT_CHARGED + PENDING + PARTIALLY_CHARGED + FULLY_CHARGED + PARTIALLY_REFUNDED + FULLY_REFUNDED + REFUSED + CANCELLED +} + +""" +Determine a current authorize status for order. + + We treat the order as fully authorized when the sum of authorized and charged funds + cover the order.total. + We treat the order as partially authorized when the sum of authorized and charged + funds covers only part of the order.total + We treat the order as not authorized when the sum of authorized and charged funds is + 0. + + NONE - the funds are not authorized + PARTIAL - the funds that are authorized or charged don't cover fully the order's + total + FULL - the funds that are authorized or charged fully cover the order's total +""" +enum OrderAuthorizeStatusEnum { + NONE + PARTIAL + FULL +} + +""" +Determine the current charge status for the order. + + We treat the order as overcharged when the charged amount is bigger that order.total + We treat the order as fully charged when the charged amount is equal to order.total. + We treat the order as partially charged when the charged amount covers only part of + the order.total + + NONE - the funds are not charged. + PARTIAL - the funds that are charged don't cover the order's total + FULL - the funds that are charged fully cover the order's total + OVERCHARGED - the charged funds are bigger than order's total +""" +enum OrderChargeStatusEnum { + NONE + PARTIAL + FULL + OVERCHARGED +} + +"""Represents a payment of a given type.""" +type Payment implements Node & ObjectWithMetadata { + id: ID! + + """List of private metadata items. Requires staff permissions to access.""" + privateMetadata: [MetadataItem!]! + + """ + A single key from private metadata. Requires staff permissions to access. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafield(key: String!): String + + """ + Private metadata. Requires staff permissions to access. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + privateMetafields(keys: [String!]): Metadata + + """List of public metadata items. Can be accessed without permissions.""" + metadata: [MetadataItem!]! + + """ + A single key from public metadata. + + Tip: Use GraphQL aliases to fetch multiple keys. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafield(key: String!): String + + """ + Public metadata. Use `keys` to control which fields you want to include. The default is to include everything. + + Added in Saleor 3.3. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + metafields(keys: [String!]): Metadata + gateway: String! + isActive: Boolean! + created: DateTime! + modified: DateTime! + token: String! + checkout: Checkout + order: Order + paymentMethodType: String! + + """ + IP address of the user who created the payment. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + customerIpAddress: String + + """Internal payment status.""" + chargeStatus: PaymentChargeStatusEnum! + + """ + List of actions that can be performed in the current state of a payment. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + actions: [OrderAction!]! + + """Total amount of the payment.""" + total: Money + + """Total amount captured for this payment.""" + capturedAmount: Money + + """ + List of all transactions within this payment. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + transactions: [Transaction!] + + """ + Maximum amount of money that can be captured. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + availableCaptureAmount: Money + + """ + Maximum amount of money that can be refunded. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + availableRefundAmount: Money + + """The details of the card used for this payment.""" + creditCard: CreditCard +} + +"""An object representing a single payment.""" +type Transaction implements Node { + id: ID! + created: DateTime! + payment: Payment! + token: String! + kind: TransactionKind! + isSuccess: Boolean! + error: String + gatewayResponse: JSONString! + + """Total amount of the transaction.""" + amount: Money +} + +"""An enumeration.""" +enum TransactionKind { + EXTERNAL + AUTH + PENDING + ACTION_TO_CONFIRM + REFUND + REFUND_ONGOING + CAPTURE + VOID + CONFIRM + CANCEL +} + +type CreditCard { + """Card brand.""" + brand: String! + + """First 4 digits of the card number.""" + firstDigits: String + + """Last 4 digits of the card number.""" + lastDigits: String! + + """Two-digit number representing the card’s expiration month.""" + expMonth: Int + + """Four-digit number representing the card’s expiration year.""" + expYear: Int +} + +"""History log of the order.""" +type OrderEvent implements Node { + id: ID! + + """Date when event happened at in ISO 8601 format.""" + date: DateTime + + """Order event type.""" + type: OrderEventsEnum + + """User who performed the action.""" + user: User + + """ + App that performed the action. Requires of of the following permissions: MANAGE_APPS, MANAGE_ORDERS, OWNER. + """ + app: App + + """Content of the event.""" + message: String + + """Email of the customer.""" + email: String + + """Type of an email sent to the customer.""" + emailType: OrderEventsEmailsEnum + + """Amount of money.""" + amount: Float + + """The payment reference from the payment provider.""" + paymentId: String + + """The payment gateway of the payment.""" + paymentGateway: String + + """Number of items.""" + quantity: Int + + """Composed ID of the Fulfillment.""" + composedId: String + + """User-friendly number of an order.""" + orderNumber: String + + """Number of an invoice related to the order.""" + invoiceNumber: String + + """List of oversold lines names.""" + oversoldItems: [String!] + + """The concerned lines.""" + lines: [OrderEventOrderLineObject!] + + """The lines fulfilled.""" + fulfilledItems: [FulfillmentLine!] + + """The warehouse were items were restocked.""" + warehouse: Warehouse + + """The transaction reference of captured payment.""" + transactionReference: String + + """Define if shipping costs were included to the refund.""" + shippingCostsIncluded: Boolean + + """The order which is related to this order.""" + relatedOrder: Order + + """The discount applied to the order.""" + discount: OrderEventDiscountObject + + """The status of payment's transaction.""" + status: TransactionStatus + + """The reference of payment's transaction.""" + reference: String +} + +"""An enumeration.""" +enum OrderEventsEnum { + DRAFT_CREATED + DRAFT_CREATED_FROM_REPLACE + ADDED_PRODUCTS + REMOVED_PRODUCTS + PLACED + PLACED_FROM_DRAFT + OVERSOLD_ITEMS + CANCELED + ORDER_MARKED_AS_PAID + ORDER_FULLY_PAID + ORDER_REPLACEMENT_CREATED + ORDER_DISCOUNT_ADDED + ORDER_DISCOUNT_AUTOMATICALLY_UPDATED + ORDER_DISCOUNT_UPDATED + ORDER_DISCOUNT_DELETED + ORDER_LINE_DISCOUNT_UPDATED + ORDER_LINE_DISCOUNT_REMOVED + ORDER_LINE_PRODUCT_DELETED + ORDER_LINE_VARIANT_DELETED + UPDATED_ADDRESS + EMAIL_SENT + CONFIRMED + PAYMENT_AUTHORIZED + PAYMENT_CAPTURED + EXTERNAL_SERVICE_NOTIFICATION + PAYMENT_REFUNDED + PAYMENT_VOIDED + PAYMENT_FAILED + TRANSACTION_EVENT + TRANSACTION_CAPTURE_REQUESTED + TRANSACTION_REFUND_REQUESTED + TRANSACTION_VOID_REQUESTED + INVOICE_REQUESTED + INVOICE_GENERATED + INVOICE_UPDATED + INVOICE_SENT + FULFILLMENT_CANCELED + FULFILLMENT_RESTOCKED_ITEMS + FULFILLMENT_FULFILLED_ITEMS + FULFILLMENT_REFUNDED + FULFILLMENT_RETURNED + FULFILLMENT_REPLACED + FULFILLMENT_AWAITS_APPROVAL + TRACKING_UPDATED + NOTE_ADDED + OTHER +} + +"""An enumeration.""" +enum OrderEventsEmailsEnum { + PAYMENT_CONFIRMATION + CONFIRMED + SHIPPING_CONFIRMATION + TRACKING_UPDATED + ORDER_CONFIRMATION + ORDER_CANCEL + ORDER_REFUND + FULFILLMENT_CONFIRMATION + DIGITAL_LINKS +} + +type OrderEventOrderLineObject { + """The variant quantity.""" + quantity: Int + + """The order line.""" + orderLine: OrderLine + + """The variant name.""" + itemName: String + + """The discount applied to the order line.""" + discount: OrderEventDiscountObject +} + +type OrderEventDiscountObject { + """Type of the discount: fixed or percent.""" + valueType: DiscountValueTypeEnum! + + """Value of the discount. Can store fixed value or percent value.""" + value: PositiveDecimal! + + """Explanation for the applied discount.""" + reason: String + + """Returns amount of discount.""" + amount: Money + + """Type of the discount: fixed or percent.""" + oldValueType: DiscountValueTypeEnum + + """Value of the discount. Can store fixed value or percent value.""" + oldValue: PositiveDecimal + + """Returns amount of discount.""" + oldAmount: Money +} + +"""An enumeration.""" +enum TransactionStatus { + PENDING + SUCCESS + FAILURE +} + +"""Contains all details related to the applied discount to the order.""" +type OrderDiscount implements Node { + id: ID! + type: OrderDiscountType! + name: String + translatedName: String + + """Type of the discount: fixed or percent""" + valueType: DiscountValueTypeEnum! + + """Value of the discount. Can store fixed value or percent value""" + value: PositiveDecimal! + + """ + Explanation for the applied discount. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + reason: String + + """Returns amount of discount.""" + amount: Money! +} + +"""An enumeration.""" +enum OrderDiscountType { + VOUCHER + MANUAL +} + +type OrderError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: OrderErrorCode! + + """Warehouse ID which causes the error.""" + warehouse: ID + + """List of order line IDs that cause the error.""" + orderLines: [ID!] + + """List of product variants that are associated with the error""" + variants: [ID!] + + """A type of address that causes the error.""" + addressType: AddressTypeEnum +} + +"""An enumeration.""" +enum OrderErrorCode { + BILLING_ADDRESS_NOT_SET + CANNOT_CANCEL_FULFILLMENT + CANNOT_CANCEL_ORDER + CANNOT_DELETE + CANNOT_DISCOUNT + CANNOT_REFUND + CANNOT_FULFILL_UNPAID_ORDER + CAPTURE_INACTIVE_PAYMENT + GIFT_CARD_LINE + NOT_EDITABLE + FULFILL_ORDER_LINE + GRAPHQL_ERROR + INVALID + PRODUCT_NOT_PUBLISHED + PRODUCT_UNAVAILABLE_FOR_PURCHASE + NOT_FOUND + ORDER_NO_SHIPPING_ADDRESS + PAYMENT_ERROR + PAYMENT_MISSING + REQUIRED + SHIPPING_METHOD_NOT_APPLICABLE + SHIPPING_METHOD_REQUIRED + TAX_ERROR + UNIQUE + VOID_INACTIVE_PAYMENT + ZERO_QUANTITY + INVALID_QUANTITY + INSUFFICIENT_STOCK + DUPLICATED_INPUT_ITEM + NOT_AVAILABLE_IN_CHANNEL + CHANNEL_INACTIVE + MISSING_TRANSACTION_ACTION_REQUEST_WEBHOOK +} + +"""An enumeration.""" +enum AddressTypeEnum { + BILLING + SHIPPING +} + +"""Represents transaction's event.""" +type TransactionEvent implements Node { + """The ID of the object.""" + id: ID! + createdAt: DateTime! + + """Status of transaction's event.""" + status: TransactionStatus! + + """Reference of transaction's event.""" + reference: String! + + """Name of the transaction's event.""" + name: String +} + +type CheckoutCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [CheckoutCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type CheckoutCountableEdge { + """The item at the end of the edge.""" + node: Checkout! + + """A cursor for use in pagination.""" + cursor: String! +} + +type GiftCardCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [GiftCardCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type GiftCardCountableEdge { + """The item at the end of the edge.""" + node: GiftCard! + + """A cursor for use in pagination.""" + cursor: String! +} + +type OrderCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [OrderCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type OrderCountableEdge { + """The item at the end of the edge.""" + node: Order! + + """A cursor for use in pagination.""" + cursor: String! +} + +type UserPermission { + """Internal code for permission.""" + code: PermissionEnum! + + """Describe action(s) allowed to do by permission.""" + name: String! + + """List of user permission groups which contains this permission.""" + sourcePermissionGroups( + """ID of user whose groups should be returned.""" + userId: ID! + ): [Group!] +} + +"""Represents permission group data.""" +type Group implements Node { + id: ID! + name: String! + + """ + List of group users + + Requires one of the following permissions: MANAGE_STAFF. + """ + users: [User!] + + """List of group permissions""" + permissions: [Permission!] + + """ + True, if the currently authenticated user has rights to manage a group. + """ + userCanManage: Boolean! +} + +"""History log of the customer.""" +type CustomerEvent implements Node { + id: ID! + + """Date when event happened at in ISO 8601 format.""" + date: DateTime + + """Customer event type.""" + type: CustomerEventsEnum + + """User who performed the action.""" + user: User + + """App that performed the action.""" + app: App + + """Content of the event.""" + message: String + + """Number of objects concerned by the event.""" + count: Int + + """The concerned order.""" + order: Order + + """The concerned order line.""" + orderLine: OrderLine +} + +"""An enumeration.""" +enum CustomerEventsEnum { + ACCOUNT_CREATED + ACCOUNT_ACTIVATED + ACCOUNT_DEACTIVATED + PASSWORD_RESET_LINK_SENT + PASSWORD_RESET + EMAIL_CHANGED_REQUEST + PASSWORD_CHANGED + EMAIL_CHANGED + PLACED_ORDER + NOTE_ADDED_TO_ORDER + DIGITAL_LINK_DOWNLOADED + CUSTOMER_DELETED + NAME_ASSIGNED + EMAIL_ASSIGNED + NOTE_ADDED +} + +""" +Represents a payment source stored for user in payment gateway, such as credit card. +""" +type PaymentSource { + """Payment gateway name.""" + gateway: String! + + """ID of stored payment method.""" + paymentMethodId: String + + """Stored credit card details if available.""" + creditCardInfo: CreditCard + + """ + List of public metadata items. + + Added in Saleor 3.1. + + Can be accessed without permissions. + """ + metadata: [MetadataItem!]! +} + +type LimitInfo { + """Defines the current resource usage.""" + currentUsage: Limits! + + """Defines the allowed maximum resource usage, null means unlimited.""" + allowedUsage: Limits! +} + +type Limits { + channels: Int + orders: Int + productVariants: Int + staffUsers: Int + warehouses: Int +} + +"""Order related settings from site settings.""" +type OrderSettings { + automaticallyConfirmAllNewOrders: Boolean! + automaticallyFulfillNonShippableGiftCard: Boolean! +} + +"""Gift card related settings from site settings.""" +type GiftCardSettings { + """The gift card expiry type settings.""" + expiryType: GiftCardSettingsExpiryTypeEnum! + + """The gift card expiry period settings.""" + expiryPeriod: TimePeriod +} + +"""An enumeration.""" +enum GiftCardSettingsExpiryTypeEnum { + NEVER_EXPIRE + EXPIRY_PERIOD +} + +type TimePeriod { + """The length of the period.""" + amount: Int! + + """The type of the period.""" + type: TimePeriodTypeEnum! +} + +"""An enumeration.""" +enum TimePeriodTypeEnum { + DAY + WEEK + MONTH + YEAR +} + +input ShippingZoneFilterInput { + search: String + channels: [ID!] +} + +type DigitalContentCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [DigitalContentCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type DigitalContentCountableEdge { + """The item at the end of the edge.""" + node: DigitalContent! + + """A cursor for use in pagination.""" + cursor: String! +} + +input CategoryFilterInput { + search: String + metadata: [MetadataFilter!] + ids: [ID!] + slugs: [String!] +} + +input CategorySortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """ + Specifies the channel in which to sort the data. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String + + """Sort categories by the selected field.""" + field: CategorySortField! +} + +enum CategorySortField { + """Sort categories by name.""" + NAME + + """Sort categories by product count.""" + PRODUCT_COUNT + + """Sort categories by subcategory count.""" + SUBCATEGORY_COUNT +} + +input CollectionFilterInput { + published: CollectionPublished + search: String + metadata: [MetadataFilter!] + ids: [ID!] + slugs: [String!] + + """ + Specifies the channel by which the data should be filtered. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String +} + +enum CollectionPublished { + PUBLISHED + HIDDEN +} + +input CollectionSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """ + Specifies the channel in which to sort the data. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String + + """Sort collections by the selected field.""" + field: CollectionSortField! +} + +enum CollectionSortField { + """Sort collections by name.""" + NAME + + """ + Sort collections by availability. + + This option requires a channel filter to work as the values can vary between channels. + """ + AVAILABILITY + + """Sort collections by product count.""" + PRODUCT_COUNT + + """ + Sort collections by publication date. + + This option requires a channel filter to work as the values can vary between channels. + """ + PUBLICATION_DATE + + """ + Sort collections by publication date. + + This option requires a channel filter to work as the values can vary between channels. + """ + PUBLISHED_AT +} + +input ProductTypeFilterInput { + search: String + configurable: ProductTypeConfigurable + productType: ProductTypeEnum + metadata: [MetadataFilter!] + kind: ProductTypeKindEnum + ids: [ID!] + slugs: [String!] +} + +enum ProductTypeConfigurable { + CONFIGURABLE + SIMPLE +} + +enum ProductTypeEnum { + DIGITAL + SHIPPABLE +} + +input ProductTypeSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort product types by the selected field.""" + field: ProductTypeSortField! +} + +enum ProductTypeSortField { + """Sort products by name.""" + NAME + + """Sort products by type.""" + DIGITAL + + """Sort products by shipping.""" + SHIPPING_REQUIRED +} + +input ProductVariantFilterInput { + search: String + sku: [String!] + metadata: [MetadataFilter!] + isPreorder: Boolean + updatedAt: DateTimeRangeInput +} + +input ProductVariantSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort productVariants by the selected field.""" + field: ProductVariantSortField! +} + +enum ProductVariantSortField { + """Sort products variants by last modified at.""" + LAST_MODIFIED_AT +} + +type PaymentCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [PaymentCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type PaymentCountableEdge { + """The item at the end of the edge.""" + node: Payment! + + """A cursor for use in pagination.""" + cursor: String! +} + +input PaymentFilterInput { + """ + Filter by ids. + + Added in Saleor 3.8. + """ + ids: [ID!] + checkouts: [ID!] +} + +type PageCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [PageCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type PageCountableEdge { + """The item at the end of the edge.""" + node: Page! + + """A cursor for use in pagination.""" + cursor: String! +} + +input PageSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort pages by the selected field.""" + field: PageSortField! +} + +enum PageSortField { + """Sort pages by title.""" + TITLE + + """Sort pages by slug.""" + SLUG + + """Sort pages by visibility.""" + VISIBILITY + + """ + Sort pages by creation date. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + CREATION_DATE + + """ + Sort pages by publication date. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + PUBLICATION_DATE + + """ + Sort pages by publication date. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + PUBLISHED_AT + + """ + Sort pages by creation date. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + CREATED_AT +} + +input PageFilterInput { + search: String + metadata: [MetadataFilter!] + pageTypes: [ID!] + ids: [ID!] + slugs: [String!] +} + +type PageTypeCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [PageTypeCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type PageTypeCountableEdge { + """The item at the end of the edge.""" + node: PageType! + + """A cursor for use in pagination.""" + cursor: String! +} + +input PageTypeSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort page types by the selected field.""" + field: PageTypeSortField! +} + +enum PageTypeSortField { + """Sort page types by name.""" + NAME + + """Sort page types by slug.""" + SLUG +} + +input PageTypeFilterInput { + search: String + slugs: [String!] +} + +type OrderEventCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [OrderEventCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type OrderEventCountableEdge { + """The item at the end of the edge.""" + node: OrderEvent! + + """A cursor for use in pagination.""" + cursor: String! +} + +input OrderSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort orders by the selected field.""" + field: OrderSortField! +} + +enum OrderSortField { + """Sort orders by number.""" + NUMBER + + """ + Sort orders by rank. Note: This option is available only with the `search` filter. + """ + RANK + + """ + Sort orders by creation date. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + CREATION_DATE + + """ + Sort orders by creation date. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + CREATED_AT + + """Sort orders by last modified at.""" + LAST_MODIFIED_AT + + """Sort orders by customer.""" + CUSTOMER + + """Sort orders by payment.""" + PAYMENT + + """Sort orders by fulfillment status.""" + FULFILLMENT_STATUS +} + +input OrderFilterInput { + paymentStatus: [PaymentChargeStatusEnum!] + status: [OrderStatusFilter!] + customer: String + created: DateRangeInput + search: String + metadata: [MetadataFilter!] + channels: [ID!] + authorizeStatus: [OrderAuthorizeStatusEnum!] + chargeStatus: [OrderChargeStatusEnum!] + updatedAt: DateTimeRangeInput + isClickAndCollect: Boolean + isPreorder: Boolean + ids: [ID!] + giftCardUsed: Boolean + giftCardBought: Boolean + numbers: [String!] +} + +enum OrderStatusFilter { + READY_TO_FULFILL + READY_TO_CAPTURE + UNFULFILLED + UNCONFIRMED + PARTIALLY_FULFILLED + FULFILLED + CANCELED +} + +input OrderDraftFilterInput { + customer: String + created: DateRangeInput + search: String + metadata: [MetadataFilter!] + channels: [ID!] +} + +type MenuCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [MenuCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type MenuCountableEdge { + """The item at the end of the edge.""" + node: Menu! + + """A cursor for use in pagination.""" + cursor: String! +} + +input MenuSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort menus by the selected field.""" + field: MenuSortField! +} + +enum MenuSortField { + """Sort menus by name.""" + NAME + + """Sort menus by items count.""" + ITEMS_COUNT +} + +input MenuFilterInput { + search: String + slug: [String!] + metadata: [MetadataFilter!] + slugs: [String!] +} + +type MenuItemCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [MenuItemCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type MenuItemCountableEdge { + """The item at the end of the edge.""" + node: MenuItem! + + """A cursor for use in pagination.""" + cursor: String! +} + +input MenuItemSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort menu items by the selected field.""" + field: MenuItemsSortField! +} + +enum MenuItemsSortField { + """Sort menu items by name.""" + NAME +} + +input MenuItemFilterInput { + search: String + metadata: [MetadataFilter!] +} + +input GiftCardSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort gift cards by the selected field.""" + field: GiftCardSortField! +} + +enum GiftCardSortField { + """Sort gift cards by product.""" + PRODUCT + + """Sort gift cards by used by.""" + USED_BY + + """Sort gift cards by current balance.""" + CURRENT_BALANCE + + """ + Sort gift cards by created at. + + Added in Saleor 3.8. + """ + CREATED_AT +} + +input GiftCardFilterInput { + isActive: Boolean + metadata: [MetadataFilter!] + tags: [String!] + products: [ID!] + usedBy: [ID!] + used: Boolean + currency: String + currentBalance: PriceRangeInput + initialBalance: PriceRangeInput + code: String +} + +type GiftCardTagCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [GiftCardTagCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type GiftCardTagCountableEdge { + """The item at the end of the edge.""" + node: GiftCardTag! + + """A cursor for use in pagination.""" + cursor: String! +} + +input GiftCardTagFilterInput { + search: String +} + +"""Plugin.""" +type Plugin { + """Identifier of the plugin.""" + id: ID! + + """Name of the plugin.""" + name: String! + + """Description of the plugin.""" + description: String! + + """Global configuration of the plugin (not channel-specific).""" + globalConfiguration: PluginConfiguration + + """Channel-specific plugin configuration.""" + channelConfigurations: [PluginConfiguration!]! +} + +"""Stores information about a configuration of plugin.""" +type PluginConfiguration { + """Determines if plugin is active or not.""" + active: Boolean! + + """The channel to which the plugin configuration is assigned to.""" + channel: Channel + + """Configuration of the plugin.""" + configuration: [ConfigurationItem!] +} + +"""Stores information about a single configuration field.""" +type ConfigurationItem { + """Name of the field.""" + name: String! + + """Current value of the field.""" + value: String + + """Type of the field.""" + type: ConfigurationTypeFieldEnum + + """Help text for the field.""" + helpText: String + + """Label for the field.""" + label: String +} + +"""An enumeration.""" +enum ConfigurationTypeFieldEnum { + STRING + MULTILINE + BOOLEAN + SECRET + PASSWORD + SECRETMULTILINE + OUTPUT +} + +type PluginCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [PluginCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type PluginCountableEdge { + """The item at the end of the edge.""" + node: Plugin! + + """A cursor for use in pagination.""" + cursor: String! +} + +input PluginFilterInput { + statusInChannels: PluginStatusInChannelsInput + search: String + type: PluginConfigurationType +} + +input PluginStatusInChannelsInput { + active: Boolean! + channels: [ID!]! +} + +enum PluginConfigurationType { + PER_CHANNEL + GLOBAL +} + +input PluginSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort plugins by the selected field.""" + field: PluginSortField! +} + +enum PluginSortField { + NAME + IS_ACTIVE +} + +type SaleCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [SaleCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type SaleCountableEdge { + """The item at the end of the edge.""" + node: Sale! + + """A cursor for use in pagination.""" + cursor: String! +} + +input SaleFilterInput { + status: [DiscountStatusEnum!] + saleType: DiscountValueTypeEnum + started: DateTimeRangeInput + search: String + metadata: [MetadataFilter!] + updatedAt: DateTimeRangeInput +} + +enum DiscountStatusEnum { + ACTIVE + EXPIRED + SCHEDULED +} + +input SaleSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """ + Specifies the channel in which to sort the data. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String + + """Sort sales by the selected field.""" + field: SaleSortField! +} + +enum SaleSortField { + """Sort sales by name.""" + NAME + + """Sort sales by start date.""" + START_DATE + + """Sort sales by end date.""" + END_DATE + + """ + Sort sales by value. + + This option requires a channel filter to work as the values can vary between channels. + """ + VALUE + + """Sort sales by type.""" + TYPE + + """Sort sales by created at.""" + CREATED_AT + + """Sort sales by last modified at.""" + LAST_MODIFIED_AT +} + +type VoucherCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [VoucherCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type VoucherCountableEdge { + """The item at the end of the edge.""" + node: Voucher! + + """A cursor for use in pagination.""" + cursor: String! +} + +input VoucherFilterInput { + status: [DiscountStatusEnum!] + timesUsed: IntRangeInput + discountType: [VoucherDiscountType!] + started: DateTimeRangeInput + search: String + metadata: [MetadataFilter!] + ids: [ID!] +} + +enum VoucherDiscountType { + FIXED + PERCENTAGE + SHIPPING +} + +input VoucherSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """ + Specifies the channel in which to sort the data. + + DEPRECATED: this field will be removed in Saleor 4.0. Use root-level channel argument instead. + """ + channel: String + + """Sort vouchers by the selected field.""" + field: VoucherSortField! +} + +enum VoucherSortField { + """Sort vouchers by code.""" + CODE + + """Sort vouchers by start date.""" + START_DATE + + """Sort vouchers by end date.""" + END_DATE + + """ + Sort vouchers by value. + + This option requires a channel filter to work as the values can vary between channels. + """ + VALUE + + """Sort vouchers by type.""" + TYPE + + """Sort vouchers by usage limit.""" + USAGE_LIMIT + + """ + Sort vouchers by minimum spent amount. + + This option requires a channel filter to work as the values can vary between channels. + """ + MINIMUM_SPENT_AMOUNT +} + +"""Represents a job data of exported file.""" +type ExportFile implements Node & Job { + id: ID! + + """Job status.""" + status: JobStatusEnum! + + """Created date time of job in ISO 8601 format.""" + createdAt: DateTime! + + """Date time of job last update in ISO 8601 format.""" + updatedAt: DateTime! + + """Job message.""" + message: String + + """The URL of field to download.""" + url: String + + """List of events associated with the export.""" + events: [ExportEvent!] + user: User + app: App +} + +"""History log of export file.""" +type ExportEvent implements Node { + """The ID of the object.""" + id: ID! + + """Date when event happened at in ISO 8601 format.""" + date: DateTime! + + """Export event type.""" + type: ExportEventsEnum! + + """ + User who performed the action. Requires one of the following permissions: OWNER, MANAGE_STAFF. + """ + user: User + + """ + App which performed the action. Requires one of the following permissions: OWNER, MANAGE_APPS. + """ + app: App + + """Content of the event.""" + message: String! +} + +"""An enumeration.""" +enum ExportEventsEnum { + EXPORT_PENDING + EXPORT_SUCCESS + EXPORT_FAILED + EXPORT_DELETED + EXPORTED_FILE_SENT + EXPORT_FAILED_INFO_SENT +} + +type ExportFileCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [ExportFileCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type ExportFileCountableEdge { + """The item at the end of the edge.""" + node: ExportFile! + + """A cursor for use in pagination.""" + cursor: String! +} + +input ExportFileFilterInput { + createdAt: DateTimeRangeInput + updatedAt: DateTimeRangeInput + status: JobStatusEnum + user: String + app: String +} + +input ExportFileSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort export file by the selected field.""" + field: ExportFileSortField! +} + +enum ExportFileSortField { + STATUS + CREATED_AT + UPDATED_AT + LAST_MODIFIED_AT +} + +input CheckoutSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort checkouts by the selected field.""" + field: CheckoutSortField! +} + +enum CheckoutSortField { + """Sort checkouts by creation date.""" + CREATION_DATE + + """Sort checkouts by customer.""" + CUSTOMER + + """Sort checkouts by payment.""" + PAYMENT +} + +input CheckoutFilterInput { + customer: String + created: DateRangeInput + search: String + metadata: [MetadataFilter!] + channels: [ID!] +} + +type CheckoutLineCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [CheckoutLineCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type CheckoutLineCountableEdge { + """The item at the end of the edge.""" + node: CheckoutLine! + + """A cursor for use in pagination.""" + cursor: String! +} + +input AttributeSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort attributes by the selected field.""" + field: AttributeSortField! +} + +enum AttributeSortField { + """Sort attributes by name""" + NAME + + """Sort attributes by slug""" + SLUG + + """Sort attributes by the value required flag""" + VALUE_REQUIRED + + """Sort attributes by the variant only flag""" + IS_VARIANT_ONLY + + """Sort attributes by visibility in the storefront""" + VISIBLE_IN_STOREFRONT + + """Sort attributes by the filterable in storefront flag""" + FILTERABLE_IN_STOREFRONT + + """Sort attributes by the filterable in dashboard flag""" + FILTERABLE_IN_DASHBOARD + + """Sort attributes by their position in storefront""" + STOREFRONT_SEARCH_POSITION + + """ + Sort attributes based on whether they can be displayed or not in a product grid. + """ + AVAILABLE_IN_GRID +} + +"""Represents ongoing installation of app.""" +type AppInstallation implements Node & Job { + id: ID! + + """Job status.""" + status: JobStatusEnum! + + """Created date time of job in ISO 8601 format.""" + createdAt: DateTime! + + """Date time of job last update in ISO 8601 format.""" + updatedAt: DateTime! + + """Job message.""" + message: String + appName: String! + manifestUrl: String! +} + +type AppCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [AppCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type AppCountableEdge { + """The item at the end of the edge.""" + node: App! + + """A cursor for use in pagination.""" + cursor: String! +} + +input AppFilterInput { + search: String + isActive: Boolean + type: AppTypeEnum +} + +input AppSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort apps by the selected field.""" + field: AppSortField! +} + +enum AppSortField { + """Sort apps by name.""" + NAME + + """Sort apps by creation date.""" + CREATION_DATE +} + +type AppExtensionCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [AppExtensionCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type AppExtensionCountableEdge { + """The item at the end of the edge.""" + node: AppExtension! + + """A cursor for use in pagination.""" + cursor: String! +} + +input AppExtensionFilterInput { + mount: [AppExtensionMountEnum!] + target: AppExtensionTargetEnum +} + +type AddressValidationData { + countryCode: String! + countryName: String! + addressFormat: String! + addressLatinFormat: String! + allowedFields: [String!]! + requiredFields: [String!]! + upperFields: [String!]! + countryAreaType: String! + countryAreaChoices: [ChoiceValue!]! + cityType: String! + cityChoices: [ChoiceValue!]! + cityAreaType: String! + cityAreaChoices: [ChoiceValue!]! + postalCodeType: String! + postalCodeMatchers: [String!]! + postalCodeExamples: [String!]! + postalCodePrefix: String! +} + +type ChoiceValue { + raw: String + verbose: String +} + +type UserCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [UserCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type UserCountableEdge { + """The item at the end of the edge.""" + node: User! + + """A cursor for use in pagination.""" + cursor: String! +} + +input CustomerFilterInput { + dateJoined: DateRangeInput + numberOfOrders: IntRangeInput + placedOrders: DateRangeInput + search: String + metadata: [MetadataFilter!] + + """ + Filter by ids. + + Added in Saleor 3.8. + """ + ids: [ID!] + updatedAt: DateTimeRangeInput +} + +input UserSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort users by the selected field.""" + field: UserSortField! +} + +enum UserSortField { + """Sort users by first name.""" + FIRST_NAME + + """Sort users by last name.""" + LAST_NAME + + """Sort users by email.""" + EMAIL + + """Sort users by order count.""" + ORDER_COUNT + + """Sort users by created at.""" + CREATED_AT + + """Sort users by last modified at.""" + LAST_MODIFIED_AT +} + +type GroupCountableConnection { + """Pagination data for this connection.""" + pageInfo: PageInfo! + edges: [GroupCountableEdge!]! + + """A total count of items in the collection.""" + totalCount: Int +} + +type GroupCountableEdge { + """The item at the end of the edge.""" + node: Group! + + """A cursor for use in pagination.""" + cursor: String! +} + +input PermissionGroupFilterInput { + search: String + ids: [ID!] +} + +input PermissionGroupSortingInput { + """Specifies the direction in which to sort products.""" + direction: OrderDirection! + + """Sort permission group by the selected field.""" + field: PermissionGroupSortField! +} + +enum PermissionGroupSortField { + """Sort permission group accounts by name.""" + NAME +} + +input StaffUserInput { + status: StaffMemberStatus + search: String + ids: [ID!] +} + +enum StaffMemberStatus { + """User account has been activated.""" + ACTIVE + + """User account has not been activated yet.""" + DEACTIVATED +} + +type Mutation { + """ + Creates a new webhook subscription. + + Requires one of the following permissions: MANAGE_APPS, AUTHENTICATED_APP. + """ + webhookCreate( + """Fields required to create a webhook.""" + input: WebhookCreateInput! + ): WebhookCreate + + """ + Delete a webhook. Before the deletion, the webhook is deactivated to pause any deliveries that are already scheduled. The deletion might fail if delivery is in progress. In such a case, the webhook is not deleted but remains deactivated. + + Requires one of the following permissions: MANAGE_APPS, AUTHENTICATED_APP. + """ + webhookDelete( + """ID of a webhook to delete.""" + id: ID! + ): WebhookDelete + + """ + Updates a webhook subscription. + + Requires one of the following permissions: MANAGE_APPS. + """ + webhookUpdate( + """ID of a webhook to update.""" + id: ID! + + """Fields required to update a webhook.""" + input: WebhookUpdateInput! + ): WebhookUpdate + + """ + Retries event delivery. + + Requires one of the following permissions: MANAGE_APPS. + """ + eventDeliveryRetry( + """ID of the event delivery to retry.""" + id: ID! + ): EventDeliveryRetry + + """ + Creates new warehouse. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + createWarehouse( + """Fields required to create warehouse.""" + input: WarehouseCreateInput! + ): WarehouseCreate + + """ + Updates given warehouse. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + updateWarehouse( + """ID of a warehouse to update.""" + id: ID! + + """Fields required to update warehouse.""" + input: WarehouseUpdateInput! + ): WarehouseUpdate + + """ + Deletes selected warehouse. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + deleteWarehouse( + """ID of a warehouse to delete.""" + id: ID! + ): WarehouseDelete + + """ + Add shipping zone to given warehouse. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + assignWarehouseShippingZone( + """ID of a warehouse to update.""" + id: ID! + + """List of shipping zone IDs.""" + shippingZoneIds: [ID!]! + ): WarehouseShippingZoneAssign + + """ + Remove shipping zone from given warehouse. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + unassignWarehouseShippingZone( + """ID of a warehouse to update.""" + id: ID! + + """List of shipping zone IDs.""" + shippingZoneIds: [ID!]! + ): WarehouseShippingZoneUnassign + + """ + Create a tax class. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_TAXES. + """ + taxClassCreate( + """Fields required to create a tax class.""" + input: TaxClassCreateInput! + ): TaxClassCreate + + """ + Delete a tax class. After deleting the tax class any products, product types or shipping methods using it are updated to use the default tax class. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_TAXES. + """ + taxClassDelete( + """ID of a tax class to delete.""" + id: ID! + ): TaxClassDelete + + """ + Update a tax class. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_TAXES. + """ + taxClassUpdate( + """ID of the tax class.""" + id: ID! + + """Fields required to update a tax class.""" + input: TaxClassUpdateInput! + ): TaxClassUpdate + + """ + Update tax configuration for a channel. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_TAXES. + """ + taxConfigurationUpdate( + """ID of the tax configuration.""" + id: ID! + + """Fields required to update the tax configuration.""" + input: TaxConfigurationUpdateInput! + ): TaxConfigurationUpdate + + """ + Update tax class rates for a specific country. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_TAXES. + """ + taxCountryConfigurationUpdate( + """Country in which to update the tax class rates.""" + countryCode: CountryCode! + + """ + List of tax rates per tax class to update. When `{taxClass: id, rate: null`} is passed, it deletes the rate object for given taxClass ID. When `{rate: Int}` is passed without a tax class, it updates the default tax class for this country. + """ + updateTaxClassRates: [TaxClassRateInput!]! + ): TaxCountryConfigurationUpdate + + """ + Remove all tax class rates for a specific country. + + Added in Saleor 3.9. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_TAXES. + """ + taxCountryConfigurationDelete( + """Country in which to update the tax class rates.""" + countryCode: CountryCode! + ): TaxCountryConfigurationDelete + + """ + Exempt checkout or order from charging the taxes. When tax exemption is enabled, taxes won't be charged for the checkout or order. Taxes may still be calculated in cases when product prices are entered with the tax included and the net price needs to be known. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_TAXES. + """ + taxExemptionManage( + """ID of the Checkout or Order object.""" + id: ID! + + """Determines if a taxes should be exempt.""" + taxExemption: Boolean! + ): TaxExemptionManage + + """ + Creates a new staff notification recipient. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + staffNotificationRecipientCreate( + """Fields required to create a staff notification recipient.""" + input: StaffNotificationRecipientInput! + ): StaffNotificationRecipientCreate + + """ + Updates a staff notification recipient. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + staffNotificationRecipientUpdate( + """ID of a staff notification recipient to update.""" + id: ID! + + """Fields required to update a staff notification recipient.""" + input: StaffNotificationRecipientInput! + ): StaffNotificationRecipientUpdate + + """ + Delete staff notification recipient. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + staffNotificationRecipientDelete( + """ID of a staff notification recipient to delete.""" + id: ID! + ): StaffNotificationRecipientDelete + + """ + Updates site domain of the shop. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + shopDomainUpdate( + """Fields required to update site.""" + input: SiteDomainInput + ): ShopDomainUpdate + + """ + Updates shop settings. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + shopSettingsUpdate( + """Fields required to update shop settings.""" + input: ShopSettingsInput! + ): ShopSettingsUpdate + + """ + Fetch tax rates. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + shopFetchTaxRates: ShopFetchTaxRates @deprecated(reason: "\\n\\nDEPRECATED: this mutation will be removed in Saleor 4.0.") + + """ + Creates/updates translations for shop settings. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + shopSettingsTranslate( + """Fields required to update shop settings translations.""" + input: ShopSettingsTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): ShopSettingsTranslate + + """ + Update the shop's address. If the `null` value is passed, the currently selected address will be deleted. + + Requires one of the following permissions: MANAGE_SETTINGS. + """ + shopAddressUpdate( + """Fields required to update shop address.""" + input: AddressInput + ): ShopAddressUpdate + + """ + Update shop order settings. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderSettingsUpdate( + """Fields required to update shop order settings.""" + input: OrderSettingsUpdateInput! + ): OrderSettingsUpdate + + """ + Update gift card settings. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardSettingsUpdate( + """Fields required to update gift card settings.""" + input: GiftCardSettingsUpdateInput! + ): GiftCardSettingsUpdate + + """ + Manage shipping method's availability in channels. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingMethodChannelListingUpdate( + """ID of a shipping method to update.""" + id: ID! + + """Fields required to update shipping method channel listings.""" + input: ShippingMethodChannelListingInput! + ): ShippingMethodChannelListingUpdate + + """ + Creates a new shipping price. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingPriceCreate( + """Fields required to create a shipping price.""" + input: ShippingPriceInput! + ): ShippingPriceCreate + + """ + Deletes a shipping price. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingPriceDelete( + """ID of a shipping price to delete.""" + id: ID! + ): ShippingPriceDelete + + """ + Deletes shipping prices. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingPriceBulkDelete( + """List of shipping price IDs to delete.""" + ids: [ID!]! + ): ShippingPriceBulkDelete + + """ + Updates a new shipping price. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingPriceUpdate( + """ID of a shipping price to update.""" + id: ID! + + """Fields required to update a shipping price.""" + input: ShippingPriceInput! + ): ShippingPriceUpdate + + """ + Creates/updates translations for a shipping method. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + shippingPriceTranslate( + """ShippingMethodType ID or ShippingMethodTranslatableContent ID.""" + id: ID! + input: ShippingPriceTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): ShippingPriceTranslate + + """ + Exclude products from shipping price. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingPriceExcludeProducts( + """ID of a shipping price.""" + id: ID! + + """Exclude products input.""" + input: ShippingPriceExcludeProductsInput! + ): ShippingPriceExcludeProducts + + """ + Remove product from excluded list for shipping price. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingPriceRemoveProductFromExclude( + """ID of a shipping price.""" + id: ID! + + """List of products which will be removed from excluded list.""" + products: [ID!]! + ): ShippingPriceRemoveProductFromExclude + + """ + Creates a new shipping zone. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingZoneCreate( + """Fields required to create a shipping zone.""" + input: ShippingZoneCreateInput! + ): ShippingZoneCreate + + """ + Deletes a shipping zone. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingZoneDelete( + """ID of a shipping zone to delete.""" + id: ID! + ): ShippingZoneDelete + + """ + Deletes shipping zones. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingZoneBulkDelete( + """List of shipping zone IDs to delete.""" + ids: [ID!]! + ): ShippingZoneBulkDelete + + """ + Updates a new shipping zone. + + Requires one of the following permissions: MANAGE_SHIPPING. + """ + shippingZoneUpdate( + """ID of a shipping zone to update.""" + id: ID! + + """Fields required to update a shipping zone.""" + input: ShippingZoneUpdateInput! + ): ShippingZoneUpdate + + """ + Assign attributes to a given product type. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productAttributeAssign( + """The operations to perform.""" + operations: [ProductAttributeAssignInput!]! + + """ID of the product type to assign the attributes into.""" + productTypeId: ID! + ): ProductAttributeAssign + + """ + Update attributes assigned to product variant for given product type. + + Added in Saleor 3.1. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productAttributeAssignmentUpdate( + """The operations to perform.""" + operations: [ProductAttributeAssignmentUpdateInput!]! + + """ID of the product type to assign the attributes into.""" + productTypeId: ID! + ): ProductAttributeAssignmentUpdate + + """ + Un-assign attributes from a given product type. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productAttributeUnassign( + """The IDs of the attributes to unassign.""" + attributeIds: [ID!]! + + """ID of the product type from which the attributes should be unassigned.""" + productTypeId: ID! + ): ProductAttributeUnassign + + """ + Creates a new category. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + categoryCreate( + """Fields required to create a category.""" + input: CategoryInput! + + """ + ID of the parent category. If empty, category will be top level category. + """ + parent: ID + ): CategoryCreate + + """ + Deletes a category. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + categoryDelete( + """ID of a category to delete.""" + id: ID! + ): CategoryDelete + + """ + Deletes categories. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + categoryBulkDelete( + """List of category IDs to delete.""" + ids: [ID!]! + ): CategoryBulkDelete + + """ + Updates a category. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + categoryUpdate( + """ID of a category to update.""" + id: ID! + + """Fields required to update a category.""" + input: CategoryInput! + ): CategoryUpdate + + """ + Creates/updates translations for a category. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + categoryTranslate( + """Category ID or CategoryTranslatableContent ID.""" + id: ID! + input: TranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): CategoryTranslate + + """ + Adds products to a collection. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionAddProducts( + """ID of a collection.""" + collectionId: ID! + + """List of product IDs.""" + products: [ID!]! + ): CollectionAddProducts + + """ + Creates a new collection. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionCreate( + """Fields required to create a collection.""" + input: CollectionCreateInput! + ): CollectionCreate + + """ + Deletes a collection. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionDelete( + """ID of a collection to delete.""" + id: ID! + ): CollectionDelete + + """ + Reorder the products of a collection. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionReorderProducts( + """ID of a collection.""" + collectionId: ID! + + """The collection products position operations.""" + moves: [MoveProductInput!]! + ): CollectionReorderProducts + + """ + Deletes collections. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionBulkDelete( + """List of collection IDs to delete.""" + ids: [ID!]! + ): CollectionBulkDelete + + """ + Remove products from a collection. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionRemoveProducts( + """ID of a collection.""" + collectionId: ID! + + """List of product IDs.""" + products: [ID!]! + ): CollectionRemoveProducts + + """ + Updates a collection. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionUpdate( + """ID of a collection to update.""" + id: ID! + + """Fields required to update a collection.""" + input: CollectionInput! + ): CollectionUpdate + + """ + Creates/updates translations for a collection. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + collectionTranslate( + """Collection ID or CollectionTranslatableContent ID.""" + id: ID! + input: TranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): CollectionTranslate + + """ + Manage collection's availability in channels. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + collectionChannelListingUpdate( + """ID of a collection to update.""" + id: ID! + + """Fields required to create or update collection channel listings.""" + input: CollectionChannelListingUpdateInput! + ): CollectionChannelListingUpdate + + """ + Creates a new product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productCreate( + """Fields required to create a product.""" + input: ProductCreateInput! + ): ProductCreate + + """ + Deletes a product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productDelete( + """ + External ID of a product to delete. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a product to delete.""" + id: ID + ): ProductDelete + + """ + Deletes products. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productBulkDelete( + """List of product IDs to delete.""" + ids: [ID!]! + ): ProductBulkDelete + + """ + Updates an existing product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productUpdate( + """ + External ID of a product to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a product to update.""" + id: ID + + """Fields required to update a product.""" + input: ProductInput! + ): ProductUpdate + + """ + Creates/updates translations for a product. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + productTranslate( + """Product ID or ProductTranslatableContent ID.""" + id: ID! + input: TranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): ProductTranslate + + """ + Manage product's availability in channels. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productChannelListingUpdate( + """ID of a product to update.""" + id: ID! + + """Fields required to create or update product channel listings.""" + input: ProductChannelListingUpdateInput! + ): ProductChannelListingUpdate + + """ + Create a media object (image or video URL) associated with product. For image, this mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productMediaCreate( + """Fields required to create a product media.""" + input: ProductMediaCreateInput! + ): ProductMediaCreate + + """ + Reorder the variants of a product. Mutation updates updated_at on product and triggers PRODUCT_UPDATED webhook. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantReorder( + """The list of variant reordering operations.""" + moves: [ReorderInput!]! + + """Id of product that variants order will be altered.""" + productId: ID! + ): ProductVariantReorder + + """ + Deletes a product media. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productMediaDelete( + """ID of a product media to delete.""" + id: ID! + ): ProductMediaDelete + + """ + Deletes product media. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productMediaBulkDelete( + """List of product media IDs to delete.""" + ids: [ID!]! + ): ProductMediaBulkDelete + + """ + Changes ordering of the product media. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productMediaReorder( + """IDs of a product media in the desired order.""" + mediaIds: [ID!]! + + """ID of product that media order will be altered.""" + productId: ID! + ): ProductMediaReorder + + """ + Updates a product media. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productMediaUpdate( + """ID of a product media to update.""" + id: ID! + + """Fields required to update a product media.""" + input: ProductMediaUpdateInput! + ): ProductMediaUpdate + + """ + Creates a new product type. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productTypeCreate( + """Fields required to create a product type.""" + input: ProductTypeInput! + ): ProductTypeCreate + + """ + Deletes a product type. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productTypeDelete( + """ID of a product type to delete.""" + id: ID! + ): ProductTypeDelete + + """ + Deletes product types. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productTypeBulkDelete( + """List of product type IDs to delete.""" + ids: [ID!]! + ): ProductTypeBulkDelete + + """ + Updates an existing product type. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productTypeUpdate( + """ID of a product type to update.""" + id: ID! + + """Fields required to update a product type.""" + input: ProductTypeInput! + ): ProductTypeUpdate + + """ + Reorder the attributes of a product type. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + productTypeReorderAttributes( + """The list of attribute reordering operations.""" + moves: [ReorderInput!]! + + """ID of a product type.""" + productTypeId: ID! + + """The attribute type to reorder.""" + type: ProductAttributeType! + ): ProductTypeReorderAttributes + + """ + Reorder product attribute values. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productReorderAttributeValues( + """ID of an attribute.""" + attributeId: ID! + + """The list of reordering operations for given attribute values.""" + moves: [ReorderInput!]! + + """ID of a product.""" + productId: ID! + ): ProductReorderAttributeValues + + """ + Create new digital content. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + digitalContentCreate( + """Fields required to create a digital content.""" + input: DigitalContentUploadInput! + + """ID of a product variant to upload digital content.""" + variantId: ID! + ): DigitalContentCreate + + """ + Remove digital content assigned to given variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + digitalContentDelete( + """ID of a product variant with digital content to remove.""" + variantId: ID! + ): DigitalContentDelete + + """ + Update digital content. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + digitalContentUpdate( + """Fields required to update a digital content.""" + input: DigitalContentInput! + + """ID of a product variant with digital content to update.""" + variantId: ID! + ): DigitalContentUpdate + + """ + Generate new URL to digital content. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + digitalContentUrlCreate( + """Fields required to create a new url.""" + input: DigitalContentUrlCreateInput! + ): DigitalContentUrlCreate + + """ + Creates a new variant for a product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantCreate( + """Fields required to create a product variant.""" + input: ProductVariantCreateInput! + ): ProductVariantCreate + + """ + Deletes a product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantDelete( + """ + External ID of a product variant to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a product variant to delete.""" + id: ID + + """ + SKU of a product variant to delete. + + Added in Saleor 3.8. + """ + sku: String + ): ProductVariantDelete + + """ + Creates product variants for a given product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantBulkCreate( + """ID of the product to create the variants for.""" + product: ID! + + """Input list of product variants to create.""" + variants: [ProductVariantBulkCreateInput!]! + ): ProductVariantBulkCreate + + """ + Deletes product variants. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantBulkDelete( + """List of product variant IDs to delete.""" + ids: [ID!] + + """ + List of product variant SKUs to delete. + + Added in Saleor 3.8. + """ + skus: [String!] + ): ProductVariantBulkDelete + + """ + Creates stocks for product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantStocksCreate( + """Input list of stocks to create.""" + stocks: [StockInput!]! + + """ID of a product variant for which stocks will be created.""" + variantId: ID! + ): ProductVariantStocksCreate + + """ + Delete stocks from product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantStocksDelete( + """SKU of product variant for which stocks will be deleted.""" + sku: String + + """ID of product variant for which stocks will be deleted.""" + variantId: ID + + """Input list of warehouse IDs.""" + warehouseIds: [ID!] + ): ProductVariantStocksDelete + + """ + Update stocks for product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantStocksUpdate( + """SKU of product variant for which stocks will be updated.""" + sku: String + + """Input list of stocks to create or update.""" + stocks: [StockInput!]! + + """ID of a product variant for which stocks will be updated.""" + variantId: ID + ): ProductVariantStocksUpdate + + """ + Updates an existing variant for product. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantUpdate( + """ + External ID of a product variant to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a product to update.""" + id: ID + + """Fields required to update a product variant.""" + input: ProductVariantInput! + + """ + SKU of a product variant to update. + + Added in Saleor 3.8. + """ + sku: String + ): ProductVariantUpdate + + """ + Set default variant for a product. Mutation triggers PRODUCT_UPDATED webhook. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantSetDefault( + """Id of a product that will have the default variant set.""" + productId: ID! + + """Id of a variant that will be set as default.""" + variantId: ID! + ): ProductVariantSetDefault + + """ + Creates/updates translations for a product variant. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + productVariantTranslate( + """ProductVariant ID or ProductVariantTranslatableContent ID.""" + id: ID! + input: NameTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): ProductVariantTranslate + + """ + Manage product variant prices in channels. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantChannelListingUpdate( + """ID of a product variant to update.""" + id: ID + + """ + List of fields required to create or upgrade product variant channel listings. + """ + input: [ProductVariantChannelListingAddInput!]! + + """ + SKU of a product variant to update. + + Added in Saleor 3.8. + """ + sku: String + ): ProductVariantChannelListingUpdate + + """ + Reorder product variant attribute values. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantReorderAttributeValues( + """ID of an attribute.""" + attributeId: ID! + + """The list of reordering operations for given attribute values.""" + moves: [ReorderInput!]! + + """ID of a product variant.""" + variantId: ID! + ): ProductVariantReorderAttributeValues + + """ + Deactivates product variant preorder. It changes all preorder allocation into regular allocation. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + productVariantPreorderDeactivate( + """ID of a variant which preorder should be deactivated.""" + id: ID! + ): ProductVariantPreorderDeactivate + + """ + Assign an media to a product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + variantMediaAssign( + """ID of a product media to assign to a variant.""" + mediaId: ID! + + """ID of a product variant.""" + variantId: ID! + ): VariantMediaAssign + + """ + Unassign an media from a product variant. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + variantMediaUnassign( + """ID of a product media to unassign from a variant.""" + mediaId: ID! + + """ID of a product variant.""" + variantId: ID! + ): VariantMediaUnassign + + """ + Captures the authorized payment amount. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + paymentCapture( + """Transaction amount.""" + amount: PositiveDecimal + + """Payment ID.""" + paymentId: ID! + ): PaymentCapture + + """ + Refunds the captured payment amount. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + paymentRefund( + """Transaction amount.""" + amount: PositiveDecimal + + """Payment ID.""" + paymentId: ID! + ): PaymentRefund + + """ + Voids the authorized payment. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + paymentVoid( + """Payment ID.""" + paymentId: ID! + ): PaymentVoid + + """Initializes payment process when it is required by gateway.""" + paymentInitialize( + """Slug of a channel for which the data should be returned.""" + channel: String + + """A gateway name used to initialize the payment.""" + gateway: String! + + """Client-side generated data required to initialize the payment.""" + paymentData: JSONString + ): PaymentInitialize + + """Check payment balance.""" + paymentCheckBalance( + """Fields required to check payment balance.""" + input: PaymentCheckBalanceInput! + ): PaymentCheckBalance + + """ + Create transaction for checkout or order. Requires the following permissions: AUTHENTICATED_APP and HANDLE_PAYMENTS. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + transactionCreate( + """The ID of the checkout or order.""" + id: ID! + + """Input data required to create a new transaction object.""" + transaction: TransactionCreateInput! + + """Data that defines a transaction event.""" + transactionEvent: TransactionEventInput + ): TransactionCreate + + """ + Create transaction for checkout or order. Requires the following permissions: AUTHENTICATED_APP and HANDLE_PAYMENTS. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + transactionUpdate( + """The ID of the transaction.""" + id: ID! + + """Input data required to create a new transaction object.""" + transaction: TransactionUpdateInput + + """Data that defines a transaction transaction.""" + transactionEvent: TransactionEventInput + ): TransactionUpdate + + """ + Request an action for payment transaction. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: HANDLE_PAYMENTS, MANAGE_ORDERS. + """ + transactionRequestAction( + """Determines the action type.""" + actionType: TransactionActionEnum! + + """ + Transaction request amount. If empty for refund or capture, maximal possible amount will be used. + """ + amount: PositiveDecimal + + """The ID of the transaction.""" + id: ID! + ): TransactionRequestAction + + """ + Creates a new page. + + Requires one of the following permissions: MANAGE_PAGES. + """ + pageCreate( + """Fields required to create a page.""" + input: PageCreateInput! + ): PageCreate + + """ + Deletes a page. + + Requires one of the following permissions: MANAGE_PAGES. + """ + pageDelete( + """ID of a page to delete.""" + id: ID! + ): PageDelete + + """ + Deletes pages. + + Requires one of the following permissions: MANAGE_PAGES. + """ + pageBulkDelete( + """List of page IDs to delete.""" + ids: [ID!]! + ): PageBulkDelete + + """ + Publish pages. + + Requires one of the following permissions: MANAGE_PAGES. + """ + pageBulkPublish( + """List of page IDs to (un)publish.""" + ids: [ID!]! + + """Determine if pages will be published or not.""" + isPublished: Boolean! + ): PageBulkPublish + + """ + Updates an existing page. + + Requires one of the following permissions: MANAGE_PAGES. + """ + pageUpdate( + """ID of a page to update.""" + id: ID! + + """Fields required to update a page.""" + input: PageInput! + ): PageUpdate + + """ + Creates/updates translations for a page. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + pageTranslate( + """Page ID or PageTranslatableContent ID.""" + id: ID! + input: PageTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): PageTranslate + + """ + Create a new page type. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + pageTypeCreate( + """Fields required to create page type.""" + input: PageTypeCreateInput! + ): PageTypeCreate + + """ + Update page type. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + pageTypeUpdate( + """ID of the page type to update.""" + id: ID + + """Fields required to update page type.""" + input: PageTypeUpdateInput! + ): PageTypeUpdate + + """ + Delete a page type. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + pageTypeDelete( + """ID of the page type to delete.""" + id: ID! + ): PageTypeDelete + + """ + Delete page types. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + pageTypeBulkDelete( + """List of page type IDs to delete""" + ids: [ID!]! + ): PageTypeBulkDelete + + """ + Assign attributes to a given page type. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + pageAttributeAssign( + """The IDs of the attributes to assign.""" + attributeIds: [ID!]! + + """ID of the page type to assign the attributes into.""" + pageTypeId: ID! + ): PageAttributeAssign + + """ + Unassign attributes from a given page type. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + pageAttributeUnassign( + """The IDs of the attributes to unassign.""" + attributeIds: [ID!]! + + """ID of the page type from which the attributes should be unassign.""" + pageTypeId: ID! + ): PageAttributeUnassign + + """ + Reorder the attributes of a page type. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + pageTypeReorderAttributes( + """The list of attribute reordering operations.""" + moves: [ReorderInput!]! + + """ID of a page type.""" + pageTypeId: ID! + ): PageTypeReorderAttributes + + """ + Reorder page attribute values. + + Requires one of the following permissions: MANAGE_PAGES. + """ + pageReorderAttributeValues( + """ID of an attribute.""" + attributeId: ID! + + """The list of reordering operations for given attribute values.""" + moves: [ReorderInput!]! + + """ID of a page.""" + pageId: ID! + ): PageReorderAttributeValues + + """ + Completes creating an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + draftOrderComplete( + """ID of the order that will be completed.""" + id: ID! + ): DraftOrderComplete + + """ + Creates a new draft order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + draftOrderCreate( + """Fields required to create an order.""" + input: DraftOrderCreateInput! + ): DraftOrderCreate + + """ + Deletes a draft order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + draftOrderDelete( + """ + External ID of a product to delete. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a product to delete.""" + id: ID + ): DraftOrderDelete + + """ + Deletes draft orders. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + draftOrderBulkDelete( + """List of draft order IDs to delete.""" + ids: [ID!]! + ): DraftOrderBulkDelete + + """ + Deletes order lines. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + draftOrderLinesBulkDelete( + """List of order lines IDs to delete.""" + ids: [ID!]! + ): DraftOrderLinesBulkDelete @deprecated(reason: "This field will be removed in Saleor 4.0.") + + """ + Updates a draft order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + draftOrderUpdate( + """ + External ID of a draft order to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a draft order to update.""" + id: ID + + """Fields required to update an order.""" + input: DraftOrderInput! + ): DraftOrderUpdate + + """ + Adds note to the order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderAddNote( + """ID of the order to add a note for.""" + order: ID! + + """Fields required to create a note for the order.""" + input: OrderAddNoteInput! + ): OrderAddNote + + """ + Cancel an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderCancel( + """ID of the order to cancel.""" + id: ID! + ): OrderCancel + + """ + Capture an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderCapture( + """Amount of money to capture.""" + amount: PositiveDecimal! + + """ID of the order to capture.""" + id: ID! + ): OrderCapture + + """ + Confirms an unconfirmed order by changing status to unfulfilled. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderConfirm( + """ID of an order to confirm.""" + id: ID! + ): OrderConfirm + + """ + Creates new fulfillments for an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderFulfill( + """Fields required to create a fulfillment.""" + input: OrderFulfillInput! + + """ID of the order to be fulfilled.""" + order: ID + ): OrderFulfill + + """ + Cancels existing fulfillment and optionally restocks items. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderFulfillmentCancel( + """ID of a fulfillment to cancel.""" + id: ID! + + """Fields required to cancel a fulfillment.""" + input: FulfillmentCancelInput + ): FulfillmentCancel + + """ + Approve existing fulfillment. + + Added in Saleor 3.1. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderFulfillmentApprove( + """True if stock could be exceeded.""" + allowStockToBeExceeded: Boolean = false + + """ID of a fulfillment to approve.""" + id: ID! + + """True if confirmation email should be send.""" + notifyCustomer: Boolean! + ): FulfillmentApprove + + """ + Updates a fulfillment for an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderFulfillmentUpdateTracking( + """ID of a fulfillment to update.""" + id: ID! + + """Fields required to update a fulfillment.""" + input: FulfillmentUpdateTrackingInput! + ): FulfillmentUpdateTracking + + """ + Refund products. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderFulfillmentRefundProducts( + """Fields required to create an refund fulfillment.""" + input: OrderRefundProductsInput! + + """ID of the order to be refunded.""" + order: ID! + ): FulfillmentRefundProducts + + """ + Return products. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderFulfillmentReturnProducts( + """Fields required to return products.""" + input: OrderReturnProductsInput! + + """ID of the order to be returned.""" + order: ID! + ): FulfillmentReturnProducts + + """ + Create order lines for an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderLinesCreate( + """ID of the order to add the lines to.""" + id: ID! + + """Fields required to add order lines.""" + input: [OrderLineCreateInput!]! + ): OrderLinesCreate + + """ + Deletes an order line from an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderLineDelete( + """ID of the order line to delete.""" + id: ID! + ): OrderLineDelete + + """ + Updates an order line of an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderLineUpdate( + """ID of the order line to update.""" + id: ID! + + """Fields required to update an order line.""" + input: OrderLineInput! + ): OrderLineUpdate + + """ + Adds discount to the order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderDiscountAdd( + """Fields required to create a discount for the order.""" + input: OrderDiscountCommonInput! + + """ID of an order to discount.""" + orderId: ID! + ): OrderDiscountAdd + + """ + Update discount for the order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderDiscountUpdate( + """ID of a discount to update.""" + discountId: ID! + + """Fields required to update a discount for the order.""" + input: OrderDiscountCommonInput! + ): OrderDiscountUpdate + + """ + Remove discount from the order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderDiscountDelete( + """ID of a discount to remove.""" + discountId: ID! + ): OrderDiscountDelete + + """ + Update discount for the order line. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderLineDiscountUpdate( + """Fields required to update price for the order line.""" + input: OrderDiscountCommonInput! + + """ID of a order line to update price""" + orderLineId: ID! + ): OrderLineDiscountUpdate + + """ + Remove discount applied to the order line. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderLineDiscountRemove( + """ID of a order line to remove its discount""" + orderLineId: ID! + ): OrderLineDiscountRemove + + """ + Mark order as manually paid. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderMarkAsPaid( + """ID of the order to mark paid.""" + id: ID! + + """The external transaction reference.""" + transactionReference: String + ): OrderMarkAsPaid + + """ + Refund an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderRefund( + """Amount of money to refund.""" + amount: PositiveDecimal! + + """ID of the order to refund.""" + id: ID! + ): OrderRefund + + """ + Updates an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderUpdate( + """ + External ID of an order to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of an order to update.""" + id: ID + + """Fields required to update an order.""" + input: OrderUpdateInput! + ): OrderUpdate + + """ + Updates a shipping method of the order. Requires shipping method ID to update, when null is passed then currently assigned shipping method is removed. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderUpdateShipping( + """ID of the order to update a shipping method.""" + order: ID! + + """Fields required to change shipping method of the order.""" + input: OrderUpdateShippingInput! + ): OrderUpdateShipping + + """ + Void an order. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderVoid( + """ID of the order to void.""" + id: ID! + ): OrderVoid + + """ + Cancels orders. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + orderBulkCancel( + """List of orders IDs to cancel.""" + ids: [ID!]! + ): OrderBulkCancel + + """ + Delete metadata of an object. To use it, you need to have access to the modified object. + """ + deleteMetadata( + """ID or token (for Order and Checkout) of an object to update.""" + id: ID! + + """Metadata keys to delete.""" + keys: [String!]! + ): DeleteMetadata + + """ + Delete object's private metadata. To use it, you need to be an authenticated staff user or an app and have access to the modified object. + """ + deletePrivateMetadata( + """ID or token (for Order and Checkout) of an object to update.""" + id: ID! + + """Metadata keys to delete.""" + keys: [String!]! + ): DeletePrivateMetadata + + """ + Updates metadata of an object. To use it, you need to have access to the modified object. + """ + updateMetadata( + """ID or token (for Order and Checkout) of an object to update.""" + id: ID! + + """Fields required to update the object's metadata.""" + input: [MetadataInput!]! + ): UpdateMetadata + + """ + Updates private metadata of an object. To use it, you need to be an authenticated staff user or an app and have access to the modified object. + """ + updatePrivateMetadata( + """ID or token (for Order and Checkout) of an object to update.""" + id: ID! + + """Fields required to update the object's metadata.""" + input: [MetadataInput!]! + ): UpdatePrivateMetadata + + """ + Assigns storefront's navigation menus. + + Requires one of the following permissions: MANAGE_MENUS, MANAGE_SETTINGS. + """ + assignNavigation( + """ID of the menu.""" + menu: ID + + """Type of the navigation bar to assign the menu to.""" + navigationType: NavigationType! + ): AssignNavigation + + """ + Creates a new Menu. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuCreate( + """Fields required to create a menu.""" + input: MenuCreateInput! + ): MenuCreate + + """ + Deletes a menu. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuDelete( + """ID of a menu to delete.""" + id: ID! + ): MenuDelete + + """ + Deletes menus. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuBulkDelete( + """List of menu IDs to delete.""" + ids: [ID!]! + ): MenuBulkDelete + + """ + Updates a menu. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuUpdate( + """ID of a menu to update.""" + id: ID! + + """Fields required to update a menu.""" + input: MenuInput! + ): MenuUpdate + + """ + Creates a new menu item. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuItemCreate( + """ + Fields required to update a menu item. Only one of `url`, `category`, `page`, `collection` is allowed per item. + """ + input: MenuItemCreateInput! + ): MenuItemCreate + + """ + Deletes a menu item. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuItemDelete( + """ID of a menu item to delete.""" + id: ID! + ): MenuItemDelete + + """ + Deletes menu items. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuItemBulkDelete( + """List of menu item IDs to delete.""" + ids: [ID!]! + ): MenuItemBulkDelete + + """ + Updates a menu item. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuItemUpdate( + """ID of a menu item to update.""" + id: ID! + + """ + Fields required to update a menu item. Only one of `url`, `category`, `page`, `collection` is allowed per item. + """ + input: MenuItemInput! + ): MenuItemUpdate + + """ + Creates/updates translations for a menu item. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + menuItemTranslate( + """MenuItem ID or MenuItemTranslatableContent ID.""" + id: ID! + input: NameTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): MenuItemTranslate + + """ + Moves items of menus. + + Requires one of the following permissions: MANAGE_MENUS. + """ + menuItemMove( + """ID of the menu.""" + menu: ID! + + """The menu position data.""" + moves: [MenuItemMoveInput!]! + ): MenuItemMove + + """ + Request an invoice for the order using plugin. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + invoiceRequest( + """Invoice number, if not provided it will be generated.""" + number: String + + """ID of the order related to invoice.""" + orderId: ID! + ): InvoiceRequest + + """ + Requests deletion of an invoice. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + invoiceRequestDelete( + """ID of an invoice to request the deletion.""" + id: ID! + ): InvoiceRequestDelete + + """ + Creates a ready to send invoice. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + invoiceCreate( + """Fields required when creating an invoice.""" + input: InvoiceCreateInput! + + """ID of the order related to invoice.""" + orderId: ID! + ): InvoiceCreate + + """ + Deletes an invoice. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + invoiceDelete( + """ID of an invoice to delete.""" + id: ID! + ): InvoiceDelete + + """ + Updates an invoice. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + invoiceUpdate( + """ID of an invoice to update.""" + id: ID! + + """Fields to use when updating an invoice.""" + input: UpdateInvoiceInput! + ): InvoiceUpdate + + """ + Send an invoice notification to the customer. + + Requires one of the following permissions: MANAGE_ORDERS. + """ + invoiceSendNotification( + """ID of an invoice to be sent.""" + id: ID! + ): InvoiceSendNotification + + """ + Activate a gift card. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardActivate( + """ID of a gift card to activate.""" + id: ID! + ): GiftCardActivate + + """ + Creates a new gift card. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardCreate( + """Fields required to create a gift card.""" + input: GiftCardCreateInput! + ): GiftCardCreate + + """ + Delete gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardDelete( + """ID of the gift card to delete.""" + id: ID! + ): GiftCardDelete + + """ + Deactivate a gift card. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardDeactivate( + """ID of a gift card to deactivate.""" + id: ID! + ): GiftCardDeactivate + + """ + Update a gift card. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardUpdate( + """ID of a gift card to update.""" + id: ID! + + """Fields required to update a gift card.""" + input: GiftCardUpdateInput! + ): GiftCardUpdate + + """ + Resend a gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardResend( + """Fields required to resend a gift card.""" + input: GiftCardResendInput! + ): GiftCardResend + + """ + Adds note to the gift card. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardAddNote( + """ID of the gift card to add a note for.""" + id: ID! + + """Fields required to create a note for the gift card.""" + input: GiftCardAddNoteInput! + ): GiftCardAddNote + + """ + Create gift cards. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardBulkCreate( + """Fields required to create gift cards.""" + input: GiftCardBulkCreateInput! + ): GiftCardBulkCreate + + """ + Delete gift cards. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardBulkDelete( + """List of gift card IDs to delete.""" + ids: [ID!]! + ): GiftCardBulkDelete + + """ + Activate gift cards. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardBulkActivate( + """List of gift card IDs to activate.""" + ids: [ID!]! + ): GiftCardBulkActivate + + """ + Deactivate gift cards. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + giftCardBulkDeactivate( + """List of gift card IDs to deactivate.""" + ids: [ID!]! + ): GiftCardBulkDeactivate + + """ + Update plugin configuration. + + Requires one of the following permissions: MANAGE_PLUGINS. + """ + pluginUpdate( + """ID of a channel for which the data should be modified.""" + channelId: ID + + """ID of plugin to update.""" + id: ID! + + """Fields required to update a plugin configuration.""" + input: PluginUpdateInput! + ): PluginUpdate + + """ + Trigger sending a notification with the notify plugin method. Serializes nodes provided as ids parameter and includes this data in the notification payload. + + Added in Saleor 3.1. + """ + externalNotificationTrigger( + """ + Channel slug. Saleor will send a notification within a provided channel. Please, make sure that necessary plugins are active. + """ + channel: String! + + """Input for External Notification Trigger.""" + input: ExternalNotificationTriggerInput! + + """The ID of notification plugin.""" + pluginId: String + ): ExternalNotificationTrigger + + """ + Creates a new sale. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + saleCreate( + """Fields required to create a sale.""" + input: SaleInput! + ): SaleCreate + + """ + Deletes a sale. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + saleDelete( + """ID of a sale to delete.""" + id: ID! + ): SaleDelete + + """ + Deletes sales. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + saleBulkDelete( + """List of sale IDs to delete.""" + ids: [ID!]! + ): SaleBulkDelete + + """ + Updates a sale. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + saleUpdate( + """ID of a sale to update.""" + id: ID! + + """Fields required to update a sale.""" + input: SaleInput! + ): SaleUpdate + + """ + Adds products, categories, collections to a voucher. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + saleCataloguesAdd( + """ID of a sale.""" + id: ID! + + """Fields required to modify catalogue IDs of sale.""" + input: CatalogueInput! + ): SaleAddCatalogues + + """ + Removes products, categories, collections from a sale. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + saleCataloguesRemove( + """ID of a sale.""" + id: ID! + + """Fields required to modify catalogue IDs of sale.""" + input: CatalogueInput! + ): SaleRemoveCatalogues + + """ + Creates/updates translations for a sale. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + saleTranslate( + """Sale ID or SaleTranslatableContent ID.""" + id: ID! + input: NameTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): SaleTranslate + + """ + Manage sale's availability in channels. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + saleChannelListingUpdate( + """ID of a sale to update.""" + id: ID! + + """Fields required to update sale channel listings.""" + input: SaleChannelListingInput! + ): SaleChannelListingUpdate + + """ + Creates a new voucher. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucherCreate( + """Fields required to create a voucher.""" + input: VoucherInput! + ): VoucherCreate + + """ + Deletes a voucher. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucherDelete( + """ID of a voucher to delete.""" + id: ID! + ): VoucherDelete + + """ + Deletes vouchers. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucherBulkDelete( + """List of voucher IDs to delete.""" + ids: [ID!]! + ): VoucherBulkDelete + + """ + Updates a voucher. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucherUpdate( + """ID of a voucher to update.""" + id: ID! + + """Fields required to update a voucher.""" + input: VoucherInput! + ): VoucherUpdate + + """ + Adds products, categories, collections to a voucher. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucherCataloguesAdd( + """ID of a voucher.""" + id: ID! + + """Fields required to modify catalogue IDs of voucher.""" + input: CatalogueInput! + ): VoucherAddCatalogues + + """ + Removes products, categories, collections from a voucher. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucherCataloguesRemove( + """ID of a voucher.""" + id: ID! + + """Fields required to modify catalogue IDs of voucher.""" + input: CatalogueInput! + ): VoucherRemoveCatalogues + + """ + Creates/updates translations for a voucher. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + voucherTranslate( + """Voucher ID or VoucherTranslatableContent ID.""" + id: ID! + input: NameTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): VoucherTranslate + + """ + Manage voucher's availability in channels. + + Requires one of the following permissions: MANAGE_DISCOUNTS. + """ + voucherChannelListingUpdate( + """ID of a voucher to update.""" + id: ID! + + """Fields required to update voucher channel listings.""" + input: VoucherChannelListingInput! + ): VoucherChannelListingUpdate + + """ + Export products to csv file. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + exportProducts( + """Fields required to export product data.""" + input: ExportProductsInput! + ): ExportProducts + + """ + Export gift cards to csv file. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_GIFT_CARD. + """ + exportGiftCards( + """Fields required to export gift cards data.""" + input: ExportGiftCardsInput! + ): ExportGiftCards + + """ + Upload a file. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. + """ + fileUpload( + """Represents a file in a multipart request.""" + file: Upload! + ): FileUpload + + """Adds a gift card or a voucher to a checkout.""" + checkoutAddPromoCode( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """Gift card code or voucher code.""" + promoCode: String! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutAddPromoCode + + """Update billing address in the existing checkout.""" + checkoutBillingAddressUpdate( + """The billing address of the checkout.""" + billingAddress: AddressInput! + + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + + """ + The rules for changing validation for received billing address data. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + validationRules: CheckoutAddressValidationRules + ): CheckoutBillingAddressUpdate + + """ + Completes the checkout. As a result a new order is created and a payment charge is made. This action requires a successful payment before it can be performed. In case additional confirmation step as 3D secure is required confirmationNeeded flag will be set to True and no order created until payment is confirmed with second call of this mutation. + """ + checkoutComplete( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + Fields required to update the checkout metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """Client-side generated data required to finalize the payment.""" + paymentData: JSONString + + """ + URL of a view where users should be redirected to see the order details. URL in RFC 1808 format. + """ + redirectUrl: String + + """ + Determines whether to store the payment source for future usage. + + DEPRECATED: this field will be removed in Saleor 4.0. Use checkoutPaymentCreate for this action. + """ + storeSource: Boolean = false + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutComplete + + """Create a new checkout.""" + checkoutCreate( + """Fields required to create checkout.""" + input: CheckoutCreateInput! + ): CheckoutCreate + + """ + Sets the customer as the owner of the checkout. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_USER. + """ + checkoutCustomerAttach( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + ID of customer to attach to checkout. Requires IMPERSONATE_USER permission when customerId is different than the logged-in user. + """ + customerId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutCustomerAttach + + """ + Removes the user assigned as the owner of the checkout. + + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_USER. + """ + checkoutCustomerDetach( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutCustomerDetach + + """Updates email address in the existing checkout object.""" + checkoutEmailUpdate( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """email.""" + email: String! + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutEmailUpdate + + """Deletes a CheckoutLine.""" + checkoutLineDelete( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ID of the checkout line to delete.""" + lineId: ID + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutLineDelete @deprecated(reason: "This field will be removed in Saleor 4.0. Use `checkoutLinesDelete` instead.") + + """Deletes checkout lines.""" + checkoutLinesDelete( + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """A list of checkout lines.""" + linesIds: [ID!]! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutLinesDelete + + """ + Adds a checkout line to the existing checkout.If line was already in checkout, its quantity will be increased. + """ + checkoutLinesAdd( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + A list of checkout lines, each containing information about an item in the checkout. + """ + lines: [CheckoutLineInput!]! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutLinesAdd + + """Updates checkout line in the existing checkout.""" + checkoutLinesUpdate( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + A list of checkout lines, each containing information about an item in the checkout. + """ + lines: [CheckoutLineUpdateInput!]! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutLinesUpdate + + """Remove a gift card or a voucher from a checkout.""" + checkoutRemovePromoCode( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """Gift card code or voucher code.""" + promoCode: String + + """Gift card or voucher ID.""" + promoCodeId: ID + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutRemovePromoCode + + """Create a new payment for given checkout.""" + checkoutPaymentCreate( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """Data required to create a new payment.""" + input: PaymentInput! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutPaymentCreate + + """Update shipping address in the existing checkout.""" + checkoutShippingAddressUpdate( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """The mailing address to where the checkout will be shipped.""" + shippingAddress: AddressInput! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + + """ + The rules for changing validation for received shipping address data. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + validationRules: CheckoutAddressValidationRules + ): CheckoutShippingAddressUpdate + + """Updates the shipping method of the checkout.""" + checkoutShippingMethodUpdate( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """Shipping method.""" + shippingMethodId: ID! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutShippingMethodUpdate @deprecated(reason: "This field will be removed in Saleor 4.0. Use `checkoutDeliveryMethodUpdate` instead.") + + """ + Updates the delivery method (shipping method or pick up point) of the checkout. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + checkoutDeliveryMethodUpdate( + """Delivery Method ID (`Warehouse` ID or `ShippingMethod` ID).""" + deliveryMethodId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutDeliveryMethodUpdate + + """Update language code in the existing checkout.""" + checkoutLanguageCodeUpdate( + """ + The ID of the checkout. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + checkoutId: ID + + """ + The checkout's ID. + + Added in Saleor 3.4. + """ + id: ID + + """New language code.""" + languageCode: LanguageCodeEnum! + + """ + Checkout token. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. + """ + token: UUID + ): CheckoutLanguageCodeUpdate + + """ + Create new order from existing checkout. Requires the following permissions: AUTHENTICATED_APP and HANDLE_CHECKOUTS. + + Added in Saleor 3.2. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + orderCreateFromCheckout( + """ID of a checkout that will be converted to an order.""" + id: ID! + + """ + Fields required to update the checkout metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """ + Fields required to update the checkout private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """ + Determines if checkout should be removed after creating an order. Default true. + """ + removeCheckout: Boolean = true + ): OrderCreateFromCheckout + + """ + Creates new channel. + + Requires one of the following permissions: MANAGE_CHANNELS. + """ + channelCreate( + """Fields required to create channel.""" + input: ChannelCreateInput! + ): ChannelCreate + + """ + Update a channel. + + Requires one of the following permissions: MANAGE_CHANNELS. + """ + channelUpdate( + """ID of a channel to update.""" + id: ID! + + """Fields required to update a channel.""" + input: ChannelUpdateInput! + ): ChannelUpdate + + """ + Delete a channel. Orders associated with the deleted channel will be moved to the target channel. Checkouts, product availability, and pricing will be removed. + + Requires one of the following permissions: MANAGE_CHANNELS. + """ + channelDelete( + """ID of a channel to delete.""" + id: ID! + + """Fields required to delete a channel.""" + input: ChannelDeleteInput + ): ChannelDelete + + """ + Activate a channel. + + Requires one of the following permissions: MANAGE_CHANNELS. + """ + channelActivate( + """ID of the channel to activate.""" + id: ID! + ): ChannelActivate + + """ + Deactivate a channel. + + Requires one of the following permissions: MANAGE_CHANNELS. + """ + channelDeactivate( + """ID of the channel to deactivate.""" + id: ID! + ): ChannelDeactivate + + """ + Reorder the warehouses of a channel. + + Added in Saleor 3.7. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + + Requires one of the following permissions: MANAGE_CHANNELS. + """ + channelReorderWarehouses( + """ID of a channel.""" + channelId: ID! + + """The list of reordering operations for the given channel warehouses.""" + moves: [ReorderInput!]! + ): ChannelReorderWarehouses + + """Creates an attribute.""" + attributeCreate( + """Fields required to create an attribute.""" + input: AttributeCreateInput! + ): AttributeCreate + + """ + Deletes an attribute. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + attributeDelete( + """ + External ID of an attribute to delete. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of an attribute to delete.""" + id: ID + ): AttributeDelete + + """ + Updates attribute. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + attributeUpdate( + """ + External ID of an attribute to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of an attribute to update.""" + id: ID + + """Fields required to update an attribute.""" + input: AttributeUpdateInput! + ): AttributeUpdate + + """ + Creates/updates translations for an attribute. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + attributeTranslate( + """Attribute ID or AttributeTranslatableContent ID.""" + id: ID! + input: NameTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): AttributeTranslate + + """ + Deletes attributes. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + attributeBulkDelete( + """List of attribute IDs to delete.""" + ids: [ID!]! + ): AttributeBulkDelete + + """ + Deletes values of attributes. + + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. + """ + attributeValueBulkDelete( + """List of attribute value IDs to delete.""" + ids: [ID!]! + ): AttributeValueBulkDelete + + """ + Creates a value for an attribute. + + Requires one of the following permissions: MANAGE_PRODUCTS. + """ + attributeValueCreate( + """Attribute to which value will be assigned.""" + attribute: ID! + + """Fields required to create an AttributeValue.""" + input: AttributeValueCreateInput! + ): AttributeValueCreate + + """ + Deletes a value of an attribute. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + attributeValueDelete( + """ + External ID of a value to delete. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a value to delete.""" + id: ID + ): AttributeValueDelete + + """ + Updates value of an attribute. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + attributeValueUpdate( + """ + External ID of an AttributeValue to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of an AttributeValue to update.""" + id: ID + + """Fields required to update an AttributeValue.""" + input: AttributeValueUpdateInput! + ): AttributeValueUpdate + + """ + Creates/updates translations for an attribute value. + + Requires one of the following permissions: MANAGE_TRANSLATIONS. + """ + attributeValueTranslate( + """AttributeValue ID or AttributeValueTranslatableContent ID.""" + id: ID! + input: AttributeValueTranslationInput! + + """Translation language code.""" + languageCode: LanguageCodeEnum! + ): AttributeValueTranslate + + """ + Reorder the values of an attribute. + + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. + """ + attributeReorderValues( + """ID of an attribute.""" + attributeId: ID! + + """The list of reordering operations for given attribute values.""" + moves: [ReorderInput!]! + ): AttributeReorderValues + + """ + Creates a new app. Requires the following permissions: AUTHENTICATED_STAFF_USER and MANAGE_APPS. + """ + appCreate( + """Fields required to create a new app.""" + input: AppInput! + ): AppCreate + + """ + Updates an existing app. + + Requires one of the following permissions: MANAGE_APPS. + """ + appUpdate( + """ID of an app to update.""" + id: ID! + + """Fields required to update an existing app.""" + input: AppInput! + ): AppUpdate + + """ + Deletes an app. + + Requires one of the following permissions: MANAGE_APPS. + """ + appDelete( + """ID of an app to delete.""" + id: ID! + ): AppDelete + + """ + Creates a new token. + + Requires one of the following permissions: MANAGE_APPS. + """ + appTokenCreate( + """Fields required to create a new auth token.""" + input: AppTokenInput! + ): AppTokenCreate + + """ + Deletes an authentication token assigned to app. + + Requires one of the following permissions: MANAGE_APPS. + """ + appTokenDelete( + """ID of an auth token to delete.""" + id: ID! + ): AppTokenDelete + + """Verify provided app token.""" + appTokenVerify( + """App token to verify.""" + token: String! + ): AppTokenVerify + + """ + Install new app by using app manifest. Requires the following permissions: AUTHENTICATED_STAFF_USER and MANAGE_APPS. + """ + appInstall( + """Fields required to install a new app.""" + input: AppInstallInput! + ): AppInstall + + """ + Retry failed installation of new app. + + Requires one of the following permissions: MANAGE_APPS. + """ + appRetryInstall( + """Determine if app will be set active or not.""" + activateAfterInstallation: Boolean = true + + """ID of failed installation.""" + id: ID! + ): AppRetryInstall + + """ + Delete failed installation. + + Requires one of the following permissions: MANAGE_APPS. + """ + appDeleteFailedInstallation( + """ID of failed installation to delete.""" + id: ID! + ): AppDeleteFailedInstallation + + """ + Fetch and validate manifest. + + Requires one of the following permissions: MANAGE_APPS. + """ + appFetchManifest(manifestUrl: String!): AppFetchManifest + + """ + Activate the app. + + Requires one of the following permissions: MANAGE_APPS. + """ + appActivate( + """ID of app to activate.""" + id: ID! + ): AppActivate + + """ + Deactivate the app. + + Requires one of the following permissions: MANAGE_APPS. + """ + appDeactivate( + """ID of app to deactivate.""" + id: ID! + ): AppDeactivate + + """Create JWT token.""" + tokenCreate( + """ + The audience that will be included to JWT tokens with prefix `custom:`. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + audience: String + + """Email of a user.""" + email: String! + + """Password of a user.""" + password: String! + ): CreateToken + + """ + Refresh JWT token. Mutation tries to take refreshToken from the input.If it fails it will try to take refreshToken from the http-only cookie -refreshToken. csrfToken is required when refreshToken is provided as a cookie. + """ + tokenRefresh( + """ + CSRF token required to refresh token. This argument is required when refreshToken is provided as a cookie. + """ + csrfToken: String + + """Refresh token.""" + refreshToken: String + ): RefreshToken + + """Verify JWT token.""" + tokenVerify( + """JWT token to validate.""" + token: String! + ): VerifyToken + + """ + Deactivate all JWT tokens of the currently authenticated user. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + tokensDeactivateAll: DeactivateAllUserTokens + + """Prepare external authentication url for user by custom plugin.""" + externalAuthenticationUrl( + """The data required by plugin to create external authentication url.""" + input: JSONString! + + """The ID of the authentication plugin.""" + pluginId: String! + ): ExternalAuthenticationUrl + + """Obtain external access tokens for user by custom plugin.""" + externalObtainAccessTokens( + """The data required by plugin to create authentication data.""" + input: JSONString! + + """The ID of the authentication plugin.""" + pluginId: String! + ): ExternalObtainAccessTokens + + """Refresh user's access by custom plugin.""" + externalRefresh( + """The data required by plugin to proceed the refresh process.""" + input: JSONString! + + """The ID of the authentication plugin.""" + pluginId: String! + ): ExternalRefresh + + """Logout user by custom plugin.""" + externalLogout( + """The data required by plugin to proceed the logout process.""" + input: JSONString! + + """The ID of the authentication plugin.""" + pluginId: String! + ): ExternalLogout + + """Verify external authentication data by plugin.""" + externalVerify( + """The data required by plugin to proceed the verification.""" + input: JSONString! + + """The ID of the authentication plugin.""" + pluginId: String! + ): ExternalVerify + + """Sends an email with the account password modification link.""" + requestPasswordReset( + """ + Slug of a channel which will be used for notify user. Optional when only one channel exists. + """ + channel: String + + """Email of the user that will be used for password recovery.""" + email: String! + + """ + URL of a view where users should be redirected to reset the password. URL in RFC 1808 format. + """ + redirectUrl: String! + ): RequestPasswordReset + + """Confirm user account with token sent by email during registration.""" + confirmAccount( + """E-mail of the user performing account confirmation.""" + email: String! + + """A one-time token required to confirm the account.""" + token: String! + ): ConfirmAccount + + """ + Sets the user's password from the token sent by email using the RequestPasswordReset mutation. + """ + setPassword( + """Email of a user.""" + email: String! + + """Password of a user.""" + password: String! + + """A one-time token required to set the password.""" + token: String! + ): SetPassword + + """ + Change the password of the logged in user. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + passwordChange( + """New user password.""" + newPassword: String! + + """Current user password.""" + oldPassword: String! + ): PasswordChange + + """ + Request email change of the logged in user. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + requestEmailChange( + """ + Slug of a channel which will be used to notify users. Optional when only one channel exists. + """ + channel: String + + """New user email.""" + newEmail: String! + + """User password.""" + password: String! + + """ + URL of a view where users should be redirected to update the email address. URL in RFC 1808 format. + """ + redirectUrl: String! + ): RequestEmailChange + + """ + Confirm the email change of the logged-in user. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + confirmEmailChange( + """ + Slug of a channel which will be used to notify users. Optional when only one channel exists. + """ + channel: String + + """A one-time token required to change the email.""" + token: String! + ): ConfirmEmailChange + + """ + Create a new address for the customer. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + accountAddressCreate( + """Fields required to create address.""" + input: AddressInput! + + """ + A type of address. If provided, the new address will be automatically assigned as the customer's default address of that type. + """ + type: AddressTypeEnum + ): AccountAddressCreate + + """ + Updates an address of the logged-in user. Requires one of the following permissions: MANAGE_USERS, IS_OWNER. + """ + accountAddressUpdate( + """ID of the address to update.""" + id: ID! + + """Fields required to update the address.""" + input: AddressInput! + ): AccountAddressUpdate + + """ + Delete an address of the logged-in user. Requires one of the following permissions: MANAGE_USERS, IS_OWNER. + """ + accountAddressDelete( + """ID of the address to delete.""" + id: ID! + ): AccountAddressDelete + + """ + Sets a default address for the authenticated user. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + accountSetDefaultAddress( + """ID of the address to set as default.""" + id: ID! + + """The type of address.""" + type: AddressTypeEnum! + ): AccountSetDefaultAddress + + """Register a new user.""" + accountRegister( + """Fields required to create a user.""" + input: AccountRegisterInput! + ): AccountRegister + + """ + Updates the account of the logged-in user. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + accountUpdate( + """Fields required to update the account of the logged-in user.""" + input: AccountInput! + ): AccountUpdate + + """ + Sends an email with the account removal link for the logged-in user. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + accountRequestDeletion( + """ + Slug of a channel which will be used to notify users. Optional when only one channel exists. + """ + channel: String + + """ + URL of a view where users should be redirected to delete their account. URL in RFC 1808 format. + """ + redirectUrl: String! + ): AccountRequestDeletion + + """ + Remove user account. + + Requires one of the following permissions: AUTHENTICATED_USER. + """ + accountDelete( + """ + A one-time token required to remove account. Sent by email using AccountRequestDeletion mutation. + """ + token: String! + ): AccountDelete + + """ + Creates user address. + + Requires one of the following permissions: MANAGE_USERS. + """ + addressCreate( + """Fields required to create address.""" + input: AddressInput! + + """ID of a user to create address for.""" + userId: ID! + ): AddressCreate + + """ + Updates an address. + + Requires one of the following permissions: MANAGE_USERS. + """ + addressUpdate( + """ID of the address to update.""" + id: ID! + + """Fields required to update the address.""" + input: AddressInput! + ): AddressUpdate + + """ + Deletes an address. + + Requires one of the following permissions: MANAGE_USERS. + """ + addressDelete( + """ID of the address to delete.""" + id: ID! + ): AddressDelete + + """ + Sets a default address for the given user. + + Requires one of the following permissions: MANAGE_USERS. + """ + addressSetDefault( + """ID of the address.""" + addressId: ID! + + """The type of address.""" + type: AddressTypeEnum! + + """ID of the user to change the address for.""" + userId: ID! + ): AddressSetDefault + + """ + Creates a new customer. + + Requires one of the following permissions: MANAGE_USERS. + """ + customerCreate( + """Fields required to create a customer.""" + input: UserCreateInput! + ): CustomerCreate + + """ + Updates an existing customer. + + Requires one of the following permissions: MANAGE_USERS. + """ + customerUpdate( + """ + External ID of a customer to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a customer to update.""" + id: ID + + """Fields required to update a customer.""" + input: CustomerInput! + ): CustomerUpdate + + """ + Deletes a customer. + + Requires one of the following permissions: MANAGE_USERS. + """ + customerDelete( + """ + External ID of a customer to update. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of a customer to delete.""" + id: ID + ): CustomerDelete + + """ + Deletes customers. + + Requires one of the following permissions: MANAGE_USERS. + """ + customerBulkDelete( + """List of user IDs to delete.""" + ids: [ID!]! + ): CustomerBulkDelete + + """ + Creates a new staff user. Apps are not allowed to perform this mutation. + + Requires one of the following permissions: MANAGE_STAFF. + """ + staffCreate( + """Fields required to create a staff user.""" + input: StaffCreateInput! + ): StaffCreate + + """ + Updates an existing staff user. Apps are not allowed to perform this mutation. + + Requires one of the following permissions: MANAGE_STAFF. + """ + staffUpdate( + """ID of a staff user to update.""" + id: ID! + + """Fields required to update a staff user.""" + input: StaffUpdateInput! + ): StaffUpdate + + """ + Deletes a staff user. Apps are not allowed to perform this mutation. + + Requires one of the following permissions: MANAGE_STAFF. + """ + staffDelete( + """ID of a staff user to delete.""" + id: ID! + ): StaffDelete + + """ + Deletes staff users. Apps are not allowed to perform this mutation. + + Requires one of the following permissions: MANAGE_STAFF. + """ + staffBulkDelete( + """List of user IDs to delete.""" + ids: [ID!]! + ): StaffBulkDelete + + """ + Create a user avatar. Only for staff members. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + """ + userAvatarUpdate( + """Represents an image file in a multipart request.""" + image: Upload! + ): UserAvatarUpdate + + """ + Deletes a user avatar. Only for staff members. + + Requires one of the following permissions: AUTHENTICATED_STAFF_USER. + """ + userAvatarDelete: UserAvatarDelete + + """ + Activate or deactivate users. + + Requires one of the following permissions: MANAGE_USERS. + """ + userBulkSetActive( + """List of user IDs to (de)activate).""" + ids: [ID!]! + + """Determine if users will be set active or not.""" + isActive: Boolean! + ): UserBulkSetActive + + """ + Create new permission group. Apps are not allowed to perform this mutation. + + Requires one of the following permissions: MANAGE_STAFF. + """ + permissionGroupCreate( + """Input fields to create permission group.""" + input: PermissionGroupCreateInput! + ): PermissionGroupCreate + + """ + Update permission group. Apps are not allowed to perform this mutation. + + Requires one of the following permissions: MANAGE_STAFF. + """ + permissionGroupUpdate( + """ID of the group to update.""" + id: ID! + + """Input fields to create permission group.""" + input: PermissionGroupUpdateInput! + ): PermissionGroupUpdate + + """ + Delete permission group. Apps are not allowed to perform this mutation. + + Requires one of the following permissions: MANAGE_STAFF. + """ + permissionGroupDelete( + """ID of the group to delete.""" + id: ID! + ): PermissionGroupDelete +} + +""" +Creates a new webhook subscription. + +Requires one of the following permissions: MANAGE_APPS, AUTHENTICATED_APP. +""" +type WebhookCreate { + webhookErrors: [WebhookError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [WebhookError!]! + webhook: Webhook +} + +type WebhookError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: WebhookErrorCode! +} + +"""An enumeration.""" +enum WebhookErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE + DELETE_FAILED +} + +input WebhookCreateInput { + """The name of the webhook.""" + name: String + + """The url to receive the payload.""" + targetUrl: String + + """ + The events that webhook wants to subscribe. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `asyncEvents` or `syncEvents` instead. + """ + events: [WebhookEventTypeEnum!] + + """The asynchronous events that webhook wants to subscribe.""" + asyncEvents: [WebhookEventTypeAsyncEnum!] + + """The synchronous events that webhook wants to subscribe.""" + syncEvents: [WebhookEventTypeSyncEnum!] + + """ID of the app to which webhook belongs.""" + app: ID + + """Determine if webhook will be set active or not.""" + isActive: Boolean + + """ + The secret key used to create a hash signature with each payload. + + DEPRECATED: this field will be removed in Saleor 4.0. As of Saleor 3.5, webhook payloads default to signing using a verifiable JWS. + """ + secretKey: String + + """ + Subscription query used to define a webhook payload. + + Added in Saleor 3.2. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + query: String +} + +""" +Delete a webhook. Before the deletion, the webhook is deactivated to pause any deliveries that are already scheduled. The deletion might fail if delivery is in progress. In such a case, the webhook is not deleted but remains deactivated. + +Requires one of the following permissions: MANAGE_APPS, AUTHENTICATED_APP. +""" +type WebhookDelete { + webhookErrors: [WebhookError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [WebhookError!]! + webhook: Webhook +} + +""" +Updates a webhook subscription. + +Requires one of the following permissions: MANAGE_APPS. +""" +type WebhookUpdate { + webhookErrors: [WebhookError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [WebhookError!]! + webhook: Webhook +} + +input WebhookUpdateInput { + """The new name of the webhook.""" + name: String + + """The url to receive the payload.""" + targetUrl: String + + """ + The events that webhook wants to subscribe. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `asyncEvents` or `syncEvents` instead. + """ + events: [WebhookEventTypeEnum!] + + """The asynchronous events that webhook wants to subscribe.""" + asyncEvents: [WebhookEventTypeAsyncEnum!] + + """The synchronous events that webhook wants to subscribe.""" + syncEvents: [WebhookEventTypeSyncEnum!] + + """ID of the app to which webhook belongs.""" + app: ID + + """Determine if webhook will be set active or not.""" + isActive: Boolean + + """ + Use to create a hash signature with each payload. + + DEPRECATED: this field will be removed in Saleor 4.0. As of Saleor 3.5, webhook payloads default to signing using a verifiable JWS. + """ + secretKey: String + + """ + Subscription query used to define a webhook payload. + + Added in Saleor 3.2. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + query: String +} + +""" +Retries event delivery. + +Requires one of the following permissions: MANAGE_APPS. +""" +type EventDeliveryRetry { + """Event delivery.""" + delivery: EventDelivery + errors: [WebhookError!]! +} + +""" +Creates new warehouse. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type WarehouseCreate { + warehouseErrors: [WarehouseError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [WarehouseError!]! + warehouse: Warehouse +} + +type WarehouseError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: WarehouseErrorCode! + + """List of shipping zones IDs which causes the error.""" + shippingZones: [ID!] +} + +"""An enumeration.""" +enum WarehouseErrorCode { + ALREADY_EXISTS + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE +} + +input WarehouseCreateInput { + """Warehouse slug.""" + slug: String + + """The email address of the warehouse.""" + email: String + + """ + External ID of the warehouse. + + Added in Saleor 3.10. + """ + externalReference: String + + """Warehouse name.""" + name: String! + + """Address of the warehouse.""" + address: AddressInput! + + """ + Shipping zones supported by the warehouse. + + DEPRECATED: this field will be removed in Saleor 4.0. Providing the zone ids will raise a ValidationError. + """ + shippingZones: [ID!] +} + +""" +Updates given warehouse. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type WarehouseUpdate { + warehouseErrors: [WarehouseError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [WarehouseError!]! + warehouse: Warehouse +} + +input WarehouseUpdateInput { + """Warehouse slug.""" + slug: String + + """The email address of the warehouse.""" + email: String + + """ + External ID of the warehouse. + + Added in Saleor 3.10. + """ + externalReference: String + + """Warehouse name.""" + name: String + + """Address of the warehouse.""" + address: AddressInput + + """ + Click and collect options: local, all or disabled. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + clickAndCollectOption: WarehouseClickAndCollectOptionEnum + + """ + Visibility of warehouse stocks. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + isPrivate: Boolean +} + +""" +Deletes selected warehouse. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type WarehouseDelete { + warehouseErrors: [WarehouseError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [WarehouseError!]! + warehouse: Warehouse +} + +""" +Add shipping zone to given warehouse. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type WarehouseShippingZoneAssign { + warehouseErrors: [WarehouseError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [WarehouseError!]! + warehouse: Warehouse +} + +""" +Remove shipping zone from given warehouse. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type WarehouseShippingZoneUnassign { + warehouseErrors: [WarehouseError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [WarehouseError!]! + warehouse: Warehouse +} + +""" +Create a tax class. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_TAXES. +""" +type TaxClassCreate { + errors: [TaxClassCreateError!]! + taxClass: TaxClass +} + +type TaxClassCreateError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: TaxClassCreateErrorCode! + + """List of country codes for which the configuration is invalid.""" + countryCodes: [String!]! +} + +"""An enumeration.""" +enum TaxClassCreateErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND +} + +input TaxClassCreateInput { + """Name of the tax class.""" + name: String! + + """List of country-specific tax rates to create for this tax class.""" + createCountryRates: [CountryRateInput!] +} + +input CountryRateInput { + """Country in which this rate applies.""" + countryCode: CountryCode! + + """ + Tax rate value provided as percentage. Example: provide `23` to represent `23%` tax rate. + """ + rate: Float! +} + +""" +Delete a tax class. After deleting the tax class any products, product types or shipping methods using it are updated to use the default tax class. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_TAXES. +""" +type TaxClassDelete { + errors: [TaxClassDeleteError!]! + taxClass: TaxClass +} + +type TaxClassDeleteError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: TaxClassDeleteErrorCode! +} + +"""An enumeration.""" +enum TaxClassDeleteErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND +} + +""" +Update a tax class. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_TAXES. +""" +type TaxClassUpdate { + errors: [TaxClassUpdateError!]! + taxClass: TaxClass +} + +type TaxClassUpdateError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: TaxClassUpdateErrorCode! + + """List of country codes for which the configuration is invalid.""" + countryCodes: [String!]! +} + +"""An enumeration.""" +enum TaxClassUpdateErrorCode { + DUPLICATED_INPUT_ITEM + GRAPHQL_ERROR + INVALID + NOT_FOUND +} + +input TaxClassUpdateInput { + """Name of the tax class.""" + name: String + + """ + List of country-specific tax rates to create or update for this tax class. + """ + updateCountryRates: [CountryRateUpdateInput!] + + """ + List of country codes for which to remove the tax class rates. Note: It removes all rates for given country code. + """ + removeCountryRates: [CountryCode!] +} + +input CountryRateUpdateInput { + """Country in which this rate applies.""" + countryCode: CountryCode! + + """ + Tax rate value provided as percentage. Example: provide `23` to represent `23%` tax rate. Provide `null` to remove the particular rate. + """ + rate: Float +} + +""" +Update tax configuration for a channel. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_TAXES. +""" +type TaxConfigurationUpdate { + errors: [TaxConfigurationUpdateError!]! + taxConfiguration: TaxConfiguration +} + +type TaxConfigurationUpdateError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: TaxConfigurationUpdateErrorCode! + + """List of country codes for which the configuration is invalid.""" + countryCodes: [String!]! +} + +"""An enumeration.""" +enum TaxConfigurationUpdateErrorCode { + DUPLICATED_INPUT_ITEM + GRAPHQL_ERROR + INVALID + NOT_FOUND +} + +input TaxConfigurationUpdateInput { + """Determines whether taxes are charged in the given channel.""" + chargeTaxes: Boolean + + """ + The default strategy to use for tax calculation in the given channel. Taxes can be calculated either using user-defined flat rates or with a tax app. Empty value means that no method is selected and taxes are not calculated. + """ + taxCalculationStrategy: TaxCalculationStrategy + + """ + Determines whether prices displayed in a storefront should include taxes. + """ + displayGrossPrices: Boolean + + """Determines whether prices are entered with the tax included.""" + pricesEnteredWithTax: Boolean + + """ + List of tax country configurations to create or update (identified by a country code). + """ + updateCountriesConfiguration: [TaxConfigurationPerCountryInput!] + + """List of country codes for which to remove the tax configuration.""" + removeCountriesConfiguration: [CountryCode!] +} + +input TaxConfigurationPerCountryInput { + """Country in which this configuration applies.""" + countryCode: CountryCode! + + """Determines whether taxes are charged in this country.""" + chargeTaxes: Boolean! + + """ + A country-specific strategy to use for tax calculation. Taxes can be calculated either using user-defined flat rates or with a tax app. If not provided, use the value from the channel's tax configuration. + """ + taxCalculationStrategy: TaxCalculationStrategy + + """ + Determines whether prices displayed in a storefront should include taxes for this country. + """ + displayGrossPrices: Boolean! +} + +""" +Update tax class rates for a specific country. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_TAXES. +""" +type TaxCountryConfigurationUpdate { + """Updated tax class rates grouped by a country.""" + taxCountryConfiguration: TaxCountryConfiguration + errors: [TaxCountryConfigurationUpdateError!]! +} + +type TaxCountryConfigurationUpdateError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: TaxCountryConfigurationUpdateErrorCode! + + """List of tax class IDs for which the update failed.""" + taxClassIds: [String!]! +} + +"""An enumeration.""" +enum TaxCountryConfigurationUpdateErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND + ONLY_ONE_DEFAULT_COUNTRY_RATE_ALLOWED + CANNOT_CREATE_NEGATIVE_RATE +} + +input TaxClassRateInput { + """ID of a tax class for which to update the tax rate""" + taxClassId: ID + + """Tax rate value.""" + rate: Float +} + +""" +Remove all tax class rates for a specific country. + +Added in Saleor 3.9. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_TAXES. +""" +type TaxCountryConfigurationDelete { + """Updated tax class rates grouped by a country.""" + taxCountryConfiguration: TaxCountryConfiguration + errors: [TaxCountryConfigurationDeleteError!]! +} + +type TaxCountryConfigurationDeleteError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: TaxCountryConfigurationDeleteErrorCode! +} + +"""An enumeration.""" +enum TaxCountryConfigurationDeleteErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND +} + +""" +Exempt checkout or order from charging the taxes. When tax exemption is enabled, taxes won't be charged for the checkout or order. Taxes may still be calculated in cases when product prices are entered with the tax included and the net price needs to be known. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_TAXES. +""" +type TaxExemptionManage { + taxableObject: TaxSourceObject + errors: [TaxExemptionManageError!]! +} + +union TaxSourceObject = Checkout | Order + +type TaxExemptionManageError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: TaxExemptionManageErrorCode! +} + +"""An enumeration.""" +enum TaxExemptionManageErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND + NOT_EDITABLE_ORDER +} + +""" +Creates a new staff notification recipient. + +Requires one of the following permissions: MANAGE_SETTINGS. +""" +type StaffNotificationRecipientCreate { + shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShopError!]! + staffNotificationRecipient: StaffNotificationRecipient +} + +type ShopError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: ShopErrorCode! +} + +"""An enumeration.""" +enum ShopErrorCode { + ALREADY_EXISTS + CANNOT_FETCH_TAX_RATES + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE +} + +input StaffNotificationRecipientInput { + """The ID of the user subscribed to email notifications..""" + user: ID + + """Email address of a user subscribed to email notifications.""" + email: String + + """Determines if a notification active.""" + active: Boolean +} + +""" +Updates a staff notification recipient. + +Requires one of the following permissions: MANAGE_SETTINGS. +""" +type StaffNotificationRecipientUpdate { + shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShopError!]! + staffNotificationRecipient: StaffNotificationRecipient +} + +""" +Delete staff notification recipient. + +Requires one of the following permissions: MANAGE_SETTINGS. +""" +type StaffNotificationRecipientDelete { + shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShopError!]! + staffNotificationRecipient: StaffNotificationRecipient +} + +""" +Updates site domain of the shop. + +Requires one of the following permissions: MANAGE_SETTINGS. +""" +type ShopDomainUpdate { + """Updated shop.""" + shop: Shop + shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShopError!]! +} + +input SiteDomainInput { + """Domain name for shop.""" + domain: String + + """Shop site name.""" + name: String +} + +""" +Updates shop settings. + +Requires one of the following permissions: MANAGE_SETTINGS. +""" +type ShopSettingsUpdate { + """Updated shop.""" + shop: Shop + shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShopError!]! +} + +input ShopSettingsInput { + """Header text.""" + headerText: String + + """SEO description.""" + description: String + + """Enable inventory tracking.""" + trackInventoryByDefault: Boolean + + """Default weight unit.""" + defaultWeightUnit: WeightUnitsEnum + + """Enable automatic fulfillment for all digital products.""" + automaticFulfillmentDigitalProducts: Boolean + + """ + Enable automatic approval of all new fulfillments. + + Added in Saleor 3.1. + """ + fulfillmentAutoApprove: Boolean + + """ + Enable ability to approve fulfillments which are unpaid. + + Added in Saleor 3.1. + """ + fulfillmentAllowUnpaid: Boolean + + """Default number of max downloads per digital content URL.""" + defaultDigitalMaxDownloads: Int + + """Default number of days which digital content URL will be valid.""" + defaultDigitalUrlValidDays: Int + + """Default email sender's name.""" + defaultMailSenderName: String + + """Default email sender's address.""" + defaultMailSenderAddress: String + + """URL of a view where customers can set their password.""" + customerSetPasswordUrl: String + + """ + Default number of minutes stock will be reserved for anonymous checkout. Enter 0 or null to disable. + + Added in Saleor 3.1. + """ + reserveStockDurationAnonymousUser: Int + + """ + Default number of minutes stock will be reserved for authenticated checkout. Enter 0 or null to disable. + + Added in Saleor 3.1. + """ + reserveStockDurationAuthenticatedUser: Int + + """ + Default number of maximum line quantity in single checkout. Minimum possible value is 1, default value is 50. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + limitQuantityPerCheckout: Int + + """ + Include taxes in prices. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `taxConfigurationUpdate` mutation to configure this setting per channel or country. + """ + includeTaxesInPrices: Boolean + + """ + Display prices with tax in store. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `taxConfigurationUpdate` mutation to configure this setting per channel or country. + """ + displayGrossPrices: Boolean + + """ + Charge taxes on shipping. + + DEPRECATED: this field will be removed in Saleor 4.0. To enable taxes for a shipping method, assign a tax class to the shipping method with `shippingPriceCreate` or `shippingPriceUpdate` mutations. + """ + chargeTaxesOnShipping: Boolean +} + +""" +Fetch tax rates. + +Requires one of the following permissions: MANAGE_SETTINGS. +""" +type ShopFetchTaxRates { + """Updated shop.""" + shop: Shop + shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShopError!]! +} + +""" +Creates/updates translations for shop settings. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type ShopSettingsTranslate { + """Updated shop settings.""" + shop: Shop + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [TranslationError!]! +} + +type TranslationError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: TranslationErrorCode! +} + +"""An enumeration.""" +enum TranslationErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED +} + +input ShopSettingsTranslationInput { + headerText: String + description: String +} + +""" +Update the shop's address. If the `null` value is passed, the currently selected address will be deleted. + +Requires one of the following permissions: MANAGE_SETTINGS. +""" +type ShopAddressUpdate { + """Updated shop.""" + shop: Shop + shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShopError!]! +} + +""" +Update shop order settings. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderSettingsUpdate { + """Order settings.""" + orderSettings: OrderSettings + orderSettingsErrors: [OrderSettingsError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderSettingsError!]! +} + +type OrderSettingsError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: OrderSettingsErrorCode! +} + +"""An enumeration.""" +enum OrderSettingsErrorCode { + INVALID +} + +input OrderSettingsUpdateInput { + """ + When disabled, all new orders from checkout will be marked as unconfirmed. When enabled orders from checkout will become unfulfilled immediately. + """ + automaticallyConfirmAllNewOrders: Boolean + + """ + When enabled, all non-shippable gift card orders will be fulfilled automatically. + """ + automaticallyFulfillNonShippableGiftCard: Boolean +} + +""" +Update gift card settings. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardSettingsUpdate { + """Gift card settings.""" + giftCardSettings: GiftCardSettings + errors: [GiftCardSettingsError!]! +} + +type GiftCardSettingsError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: GiftCardSettingsErrorCode! +} + +"""An enumeration.""" +enum GiftCardSettingsErrorCode { + INVALID + REQUIRED + GRAPHQL_ERROR +} + +input GiftCardSettingsUpdateInput { + """Defines gift card default expiry settings.""" + expiryType: GiftCardSettingsExpiryTypeEnum + + """Defines gift card expiry period.""" + expiryPeriod: TimePeriodInputType +} + +input TimePeriodInputType { + """The length of the period.""" + amount: Int! + + """The type of the period.""" + type: TimePeriodTypeEnum! +} + +""" +Manage shipping method's availability in channels. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingMethodChannelListingUpdate { + """An updated shipping method instance.""" + shippingMethod: ShippingMethodType + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShippingError!]! +} + +type ShippingError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: ShippingErrorCode! + + """List of warehouse IDs which causes the error.""" + warehouses: [ID!] + + """List of channels IDs which causes the error.""" + channels: [ID!] +} + +"""An enumeration.""" +enum ShippingErrorCode { + ALREADY_EXISTS + GRAPHQL_ERROR + INVALID + MAX_LESS_THAN_MIN + NOT_FOUND + REQUIRED + UNIQUE + DUPLICATED_INPUT_ITEM +} + +input ShippingMethodChannelListingInput { + """List of channels to which the shipping method should be assigned.""" + addChannels: [ShippingMethodChannelListingAddInput!] + + """List of channels from which the shipping method should be unassigned.""" + removeChannels: [ID!] +} + +input ShippingMethodChannelListingAddInput { + """ID of a channel.""" + channelId: ID! + + """Shipping price of the shipping method in this channel.""" + price: PositiveDecimal + + """Minimum order price to use this shipping method.""" + minimumOrderPrice: PositiveDecimal + + """Maximum order price to use this shipping method.""" + maximumOrderPrice: PositiveDecimal +} + +""" +Creates a new shipping price. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingPriceCreate { + """A shipping zone to which the shipping method belongs.""" + shippingZone: ShippingZone + shippingMethod: ShippingMethodType + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShippingError!]! +} + +input ShippingPriceInput { + """Name of the shipping method.""" + name: String + + """Shipping method description.""" + description: JSONString + + """Minimum order weight to use this shipping method.""" + minimumOrderWeight: WeightScalar + + """Maximum order weight to use this shipping method.""" + maximumOrderWeight: WeightScalar + + """Maximum number of days for delivery.""" + maximumDeliveryDays: Int + + """Minimal number of days for delivery.""" + minimumDeliveryDays: Int + + """Shipping type: price or weight based.""" + type: ShippingMethodTypeEnum + + """Shipping zone this method belongs to.""" + shippingZone: ID + + """Postal code rules to add.""" + addPostalCodeRules: [ShippingPostalCodeRulesCreateInputRange!] + + """Postal code rules to delete.""" + deletePostalCodeRules: [ID!] + + """Inclusion type for currently assigned postal code rules.""" + inclusionType: PostalCodeRuleInclusionTypeEnum + + """ + ID of a tax class to assign to this shipping method. If not provided, the default tax class will be used. + """ + taxClass: ID +} + +scalar WeightScalar + +input ShippingPostalCodeRulesCreateInputRange { + """Start range of the postal code.""" + start: String! + + """End range of the postal code.""" + end: String +} + +""" +Deletes a shipping price. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingPriceDelete { + """A shipping method to delete.""" + shippingMethod: ShippingMethodType + + """A shipping zone to which the shipping method belongs.""" + shippingZone: ShippingZone + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShippingError!]! +} + +""" +Deletes shipping prices. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingPriceBulkDelete { + """Returns how many objects were affected.""" + count: Int! + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShippingError!]! +} + +""" +Updates a new shipping price. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingPriceUpdate { + """A shipping zone to which the shipping method belongs.""" + shippingZone: ShippingZone + shippingMethod: ShippingMethodType + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShippingError!]! +} + +""" +Creates/updates translations for a shipping method. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type ShippingPriceTranslate { + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [TranslationError!]! + shippingMethod: ShippingMethodType +} + +input ShippingPriceTranslationInput { + name: String + + """ + Translated shipping method description. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString +} + +""" +Exclude products from shipping price. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingPriceExcludeProducts { + """A shipping method with new list of excluded products.""" + shippingMethod: ShippingMethodType + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShippingError!]! +} + +input ShippingPriceExcludeProductsInput { + """List of products which will be excluded.""" + products: [ID!]! +} + +""" +Remove product from excluded list for shipping price. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingPriceRemoveProductFromExclude { + """A shipping method with new list of excluded products.""" + shippingMethod: ShippingMethodType + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShippingError!]! +} + +""" +Creates a new shipping zone. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingZoneCreate { + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShippingError!]! + shippingZone: ShippingZone +} + +input ShippingZoneCreateInput { + """Shipping zone's name. Visible only to the staff.""" + name: String + + """Description of the shipping zone.""" + description: String + + """List of countries in this shipping zone.""" + countries: [String!] + + """ + Default shipping zone will be used for countries not covered by other zones. + """ + default: Boolean + + """List of warehouses to assign to a shipping zone""" + addWarehouses: [ID!] + + """List of channels to assign to the shipping zone.""" + addChannels: [ID!] +} + +""" +Deletes a shipping zone. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingZoneDelete { + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShippingError!]! + shippingZone: ShippingZone +} + +""" +Deletes shipping zones. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingZoneBulkDelete { + """Returns how many objects were affected.""" + count: Int! + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShippingError!]! +} + +""" +Updates a new shipping zone. + +Requires one of the following permissions: MANAGE_SHIPPING. +""" +type ShippingZoneUpdate { + shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ShippingError!]! + shippingZone: ShippingZone +} + +input ShippingZoneUpdateInput { + """Shipping zone's name. Visible only to the staff.""" + name: String + + """Description of the shipping zone.""" + description: String + + """List of countries in this shipping zone.""" + countries: [String!] + + """ + Default shipping zone will be used for countries not covered by other zones. + """ + default: Boolean + + """List of warehouses to assign to a shipping zone""" + addWarehouses: [ID!] + + """List of channels to assign to the shipping zone.""" + addChannels: [ID!] + + """List of warehouses to unassign from a shipping zone""" + removeWarehouses: [ID!] + + """List of channels to unassign from the shipping zone.""" + removeChannels: [ID!] +} + +""" +Assign attributes to a given product type. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductAttributeAssign { + """The updated product type.""" + productType: ProductType + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +type ProductError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: ProductErrorCode! + + """List of attributes IDs which causes the error.""" + attributes: [ID!] + + """List of attribute values IDs which causes the error.""" + values: [ID!] +} + +"""An enumeration.""" +enum ProductErrorCode { + ALREADY_EXISTS + ATTRIBUTE_ALREADY_ASSIGNED + ATTRIBUTE_CANNOT_BE_ASSIGNED + ATTRIBUTE_VARIANTS_DISABLED + MEDIA_ALREADY_ASSIGNED + DUPLICATED_INPUT_ITEM + GRAPHQL_ERROR + INVALID + PRODUCT_WITHOUT_CATEGORY + NOT_PRODUCTS_IMAGE + NOT_PRODUCTS_VARIANT + NOT_FOUND + REQUIRED + UNIQUE + VARIANT_NO_DIGITAL_CONTENT + CANNOT_MANAGE_PRODUCT_WITHOUT_VARIANT + PRODUCT_NOT_ASSIGNED_TO_CHANNEL + UNSUPPORTED_MEDIA_PROVIDER + PREORDER_VARIANT_CANNOT_BE_DEACTIVATED +} + +input ProductAttributeAssignInput { + """The ID of the attribute to assign.""" + id: ID! + + """The attribute type to be assigned as.""" + type: ProductAttributeType! + + """ + Whether attribute is allowed in variant selection. Allowed types are: ['dropdown', 'boolean', 'swatch', 'numeric']. + + Added in Saleor 3.1. + """ + variantSelection: Boolean +} + +enum ProductAttributeType { + PRODUCT + VARIANT +} + +""" +Update attributes assigned to product variant for given product type. + +Added in Saleor 3.1. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductAttributeAssignmentUpdate { + """The updated product type.""" + productType: ProductType + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +input ProductAttributeAssignmentUpdateInput { + """The ID of the attribute to assign.""" + id: ID! + + """ + Whether attribute is allowed in variant selection. Allowed types are: ['dropdown', 'boolean', 'swatch', 'numeric']. + + Added in Saleor 3.1. + """ + variantSelection: Boolean! +} + +""" +Un-assign attributes from a given product type. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductAttributeUnassign { + """The updated product type.""" + productType: ProductType + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +""" +Creates a new category. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CategoryCreate { + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! + category: Category +} + +input CategoryInput { + """ + Category description. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """Category name.""" + name: String + + """Category slug.""" + slug: String + + """Search engine optimization fields.""" + seo: SeoInput + + """Background image file.""" + backgroundImage: Upload + + """Alt text for a product media.""" + backgroundImageAlt: String + + """ + Fields required to update the category metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """ + Fields required to update the category private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] +} + +input SeoInput { + """SEO title.""" + title: String + + """SEO description.""" + description: String +} + +""" +Variables of this type must be set to null in mutations. They will be replaced with a filename from a following multipart part containing a binary file. See: https://github.com/jaydenseric/graphql-multipart-request-spec. +""" +scalar Upload + +input MetadataInput { + """Key of a metadata item.""" + key: String! + + """Value of a metadata item.""" + value: String! +} + +""" +Deletes a category. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CategoryDelete { + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! + category: Category +} + +""" +Deletes categories. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CategoryBulkDelete { + """Returns how many objects were affected.""" + count: Int! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +""" +Updates a category. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CategoryUpdate { + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! + category: Category +} + +""" +Creates/updates translations for a category. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type CategoryTranslate { + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [TranslationError!]! + category: Category +} + +input TranslationInput { + seoTitle: String + seoDescription: String + name: String + + """ + Translated description. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString +} + +""" +Adds products to a collection. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionAddProducts { + """Collection to which products will be added.""" + collection: Collection + collectionErrors: [CollectionError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CollectionError!]! +} + +type CollectionError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of products IDs which causes the error.""" + products: [ID!] + + """The error code.""" + code: CollectionErrorCode! +} + +"""An enumeration.""" +enum CollectionErrorCode { + DUPLICATED_INPUT_ITEM + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE + CANNOT_MANAGE_PRODUCT_WITHOUT_VARIANT +} + +""" +Creates a new collection. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionCreate { + collectionErrors: [CollectionError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CollectionError!]! + collection: Collection +} + +input CollectionCreateInput { + """Informs whether a collection is published.""" + isPublished: Boolean + + """Name of the collection.""" + name: String + + """Slug of the collection.""" + slug: String + + """ + Description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """Background image file.""" + backgroundImage: Upload + + """Alt text for an image.""" + backgroundImageAlt: String + + """Search engine optimization fields.""" + seo: SeoInput + + """ + Publication date. ISO 8601 standard. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + publicationDate: Date + + """ + Fields required to update the collection metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """ + Fields required to update the collection private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """List of products to be added to the collection.""" + products: [ID!] +} + +""" +Deletes a collection. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionDelete { + collectionErrors: [CollectionError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CollectionError!]! + collection: Collection +} + +""" +Reorder the products of a collection. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionReorderProducts { + """Collection from which products are reordered.""" + collection: Collection + collectionErrors: [CollectionError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CollectionError!]! +} + +input MoveProductInput { + """The ID of the product to move.""" + productId: ID! + + """ + The relative sorting position of the product (from -inf to +inf) starting from the first given product's actual position.1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged. + """ + sortOrder: Int +} + +""" +Deletes collections. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionBulkDelete { + """Returns how many objects were affected.""" + count: Int! + collectionErrors: [CollectionError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CollectionError!]! +} + +""" +Remove products from a collection. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionRemoveProducts { + """Collection from which products will be removed.""" + collection: Collection + collectionErrors: [CollectionError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CollectionError!]! +} + +""" +Updates a collection. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionUpdate { + collectionErrors: [CollectionError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CollectionError!]! + collection: Collection +} + +input CollectionInput { + """Informs whether a collection is published.""" + isPublished: Boolean + + """Name of the collection.""" + name: String + + """Slug of the collection.""" + slug: String + + """ + Description of the collection. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """Background image file.""" + backgroundImage: Upload + + """Alt text for an image.""" + backgroundImageAlt: String + + """Search engine optimization fields.""" + seo: SeoInput + + """ + Publication date. ISO 8601 standard. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + publicationDate: Date + + """ + Fields required to update the collection metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """ + Fields required to update the collection private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] +} + +""" +Creates/updates translations for a collection. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type CollectionTranslate { + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [TranslationError!]! + collection: Collection +} + +""" +Manage collection's availability in channels. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type CollectionChannelListingUpdate { + """An updated collection instance.""" + collection: Collection + collectionChannelListingErrors: [CollectionChannelListingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CollectionChannelListingError!]! +} + +type CollectionChannelListingError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: ProductErrorCode! + + """List of attributes IDs which causes the error.""" + attributes: [ID!] + + """List of attribute values IDs which causes the error.""" + values: [ID!] + + """List of channels IDs which causes the error.""" + channels: [ID!] +} + +input CollectionChannelListingUpdateInput { + """List of channels to which the collection should be assigned.""" + addChannels: [PublishableChannelListingInput!] + + """List of channels from which the collection should be unassigned.""" + removeChannels: [ID!] +} + +input PublishableChannelListingInput { + """ID of a channel.""" + channelId: ID! + + """Determines if object is visible to customers.""" + isPublished: Boolean + + """ + Publication date. ISO 8601 standard. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `publishedAt` field instead. + """ + publicationDate: Date + + """ + Publication date time. ISO 8601 standard. + + Added in Saleor 3.3. + """ + publishedAt: DateTime +} + +""" +Creates a new product. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductCreate { + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! + product: Product +} + +input ProductCreateInput { + """List of attributes.""" + attributes: [AttributeValueInput!] + + """ID of the product's category.""" + category: ID + + """ + Determine if taxes are being charged for the product. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `Channel.taxConfiguration` to configure whether tax collection is enabled. + """ + chargeTaxes: Boolean + + """List of IDs of collections that the product belongs to.""" + collections: [ID!] + + """ + Product description. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """Product name.""" + name: String + + """Product slug.""" + slug: String + + """ + ID of a tax class to assign to this product. If not provided, product will use the tax class which is assigned to the product type. + """ + taxClass: ID + + """ + Tax rate for enabled tax gateway. + + DEPRECATED: this field will be removed in Saleor 4.0. Use tax classes to control the tax calculation for a product. + """ + taxCode: String + + """Search engine optimization fields.""" + seo: SeoInput + + """Weight of the Product.""" + weight: WeightScalar + + """Defines the product rating value.""" + rating: Float + + """ + Fields required to update the product metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """ + Fields required to update the product private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """ + External ID of this product. + + Added in Saleor 3.10. + """ + externalReference: String + + """ID of the type that product belongs to.""" + productType: ID! +} + +input AttributeValueInput { + """ID of the selected attribute.""" + id: ID + + """ + The value or slug of an attribute to resolve. If the passed value is non-existent, it will be created. This field will be removed in Saleor 4.0. + """ + values: [String!] + + """ + Attribute value ID. + + Added in Saleor 3.9. + """ + dropdown: AttributeValueSelectableTypeInput + + """ + Attribute value ID. + + Added in Saleor 3.9. + """ + swatch: AttributeValueSelectableTypeInput + + """ + List of attribute value IDs. + + Added in Saleor 3.9. + """ + multiselect: [AttributeValueSelectableTypeInput!] + + """ + Numeric value of an attribute. + + Added in Saleor 3.9. + """ + numeric: String + + """URL of the file attribute. Every time, a new value is created.""" + file: String + + """File content type.""" + contentType: String + + """List of entity IDs that will be used as references.""" + references: [ID!] + + """Text content in JSON format.""" + richText: JSONString + + """Plain text content.""" + plainText: String + + """Represents the boolean value of the attribute value.""" + boolean: Boolean + + """Represents the date value of the attribute value.""" + date: Date + + """Represents the date/time value of the attribute value.""" + dateTime: DateTime +} + +""" +Represents attribute value. If no ID provided, value will be resolved. + +Added in Saleor 3.9. +""" +input AttributeValueSelectableTypeInput { + """ID of an attribute value.""" + id: ID + + """ + The value or slug of an attribute to resolve. If the passed value is non-existent, it will be created. + """ + value: String +} + +""" +Deletes a product. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductDelete { + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! + product: Product +} + +""" +Deletes products. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductBulkDelete { + """Returns how many objects were affected.""" + count: Int! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +""" +Updates an existing product. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductUpdate { + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! + product: Product +} + +input ProductInput { + """List of attributes.""" + attributes: [AttributeValueInput!] + + """ID of the product's category.""" + category: ID + + """ + Determine if taxes are being charged for the product. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `Channel.taxConfiguration` to configure whether tax collection is enabled. + """ + chargeTaxes: Boolean + + """List of IDs of collections that the product belongs to.""" + collections: [ID!] + + """ + Product description. + + Rich text format. For reference see https://editorjs.io/ + """ + description: JSONString + + """Product name.""" + name: String + + """Product slug.""" + slug: String + + """ + ID of a tax class to assign to this product. If not provided, product will use the tax class which is assigned to the product type. + """ + taxClass: ID + + """ + Tax rate for enabled tax gateway. + + DEPRECATED: this field will be removed in Saleor 4.0. Use tax classes to control the tax calculation for a product. + """ + taxCode: String + + """Search engine optimization fields.""" + seo: SeoInput + + """Weight of the Product.""" + weight: WeightScalar + + """Defines the product rating value.""" + rating: Float + + """ + Fields required to update the product metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """ + Fields required to update the product private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """ + External ID of this product. + + Added in Saleor 3.10. + """ + externalReference: String +} + +""" +Creates/updates translations for a product. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type ProductTranslate { + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [TranslationError!]! + product: Product +} + +""" +Manage product's availability in channels. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductChannelListingUpdate { + """An updated product instance.""" + product: Product + productChannelListingErrors: [ProductChannelListingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductChannelListingError!]! +} + +type ProductChannelListingError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: ProductErrorCode! + + """List of attributes IDs which causes the error.""" + attributes: [ID!] + + """List of attribute values IDs which causes the error.""" + values: [ID!] + + """List of channels IDs which causes the error.""" + channels: [ID!] + + """List of variants IDs which causes the error.""" + variants: [ID!] +} + +input ProductChannelListingUpdateInput { + """List of channels to which the product should be assigned or updated.""" + updateChannels: [ProductChannelListingAddInput!] + + """List of channels from which the product should be unassigned.""" + removeChannels: [ID!] +} + +input ProductChannelListingAddInput { + """ID of a channel.""" + channelId: ID! + + """Determines if object is visible to customers.""" + isPublished: Boolean + + """ + Publication date. ISO 8601 standard. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `publishedAt` field instead. + """ + publicationDate: Date + + """ + Publication date time. ISO 8601 standard. + + Added in Saleor 3.3. + """ + publishedAt: DateTime + + """ + Determines if product is visible in product listings (doesn't apply to product collections). + """ + visibleInListings: Boolean + + """Determine if product should be available for purchase.""" + isAvailableForPurchase: Boolean + + """ + A start date from which a product will be available for purchase. When not set and isAvailable is set to True, the current day is assumed. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `availableForPurchaseAt` field instead. + """ + availableForPurchaseDate: Date + + """ + A start date time from which a product will be available for purchase. When not set and `isAvailable` is set to True, the current day is assumed. + + Added in Saleor 3.3. + """ + availableForPurchaseAt: DateTime + + """List of variants to which the channel should be assigned.""" + addVariants: [ID!] + + """List of variants from which the channel should be unassigned.""" + removeVariants: [ID!] +} + +""" +Create a media object (image or video URL) associated with product. For image, this mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductMediaCreate { + product: Product + media: ProductMedia + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +input ProductMediaCreateInput { + """Alt text for a product media.""" + alt: String + + """Represents an image file in a multipart request.""" + image: Upload + + """ID of an product.""" + product: ID! + + """Represents an URL to an external media.""" + mediaUrl: String +} + +""" +Reorder the variants of a product. Mutation updates updated_at on product and triggers PRODUCT_UPDATED webhook. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantReorder { + product: Product + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +input ReorderInput { + """The ID of the item to move.""" + id: ID! + + """ + The new relative sorting position of the item (from -inf to +inf). 1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged. + """ + sortOrder: Int +} + +""" +Deletes a product media. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductMediaDelete { + product: Product + media: ProductMedia + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +""" +Deletes product media. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductMediaBulkDelete { + """Returns how many objects were affected.""" + count: Int! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +""" +Changes ordering of the product media. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductMediaReorder { + product: Product + media: [ProductMedia!] + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +""" +Updates a product media. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductMediaUpdate { + product: Product + media: ProductMedia + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +input ProductMediaUpdateInput { + """Alt text for a product media.""" + alt: String +} + +""" +Creates a new product type. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductTypeCreate { + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! + productType: ProductType +} + +input ProductTypeInput { + """Name of the product type.""" + name: String + + """Product type slug.""" + slug: String + + """The product type kind.""" + kind: ProductTypeKindEnum + + """ + Determines if product of this type has multiple variants. This option mainly simplifies product management in the dashboard. There is always at least one variant created under the hood. + """ + hasVariants: Boolean + + """List of attributes shared among all product variants.""" + productAttributes: [ID!] + + """ + List of attributes used to distinguish between different variants of a product. + """ + variantAttributes: [ID!] + + """Determines if shipping is required for products of this variant.""" + isShippingRequired: Boolean + + """Determines if products are digital.""" + isDigital: Boolean + + """Weight of the ProductType items.""" + weight: WeightScalar + + """ + Tax rate for enabled tax gateway. + + DEPRECATED: this field will be removed in Saleor 4.0.. Use tax classes to control the tax calculation for a product type. + """ + taxCode: String + + """ + ID of a tax class to assign to this product type. All products of this product type would use this tax class, unless it's overridden in the `Product` type. + """ + taxClass: ID +} + +""" +Deletes a product type. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductTypeDelete { + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! + productType: ProductType +} + +""" +Deletes product types. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductTypeBulkDelete { + """Returns how many objects were affected.""" + count: Int! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +""" +Updates an existing product type. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductTypeUpdate { + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! + productType: ProductType +} + +""" +Reorder the attributes of a product type. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type ProductTypeReorderAttributes { + """Product type from which attributes are reordered.""" + productType: ProductType + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +""" +Reorder product attribute values. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductReorderAttributeValues { + """Product from which attribute values are reordered.""" + product: Product + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +""" +Create new digital content. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type DigitalContentCreate { + variant: ProductVariant + content: DigitalContent + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +input DigitalContentUploadInput { + """Use default digital content settings for this product.""" + useDefaultSettings: Boolean! + + """ + Determines how many times a download link can be accessed by a customer. + """ + maxDownloads: Int + + """ + Determines for how many days a download link is active since it was generated. + """ + urlValidDays: Int + + """Overwrite default automatic_fulfillment setting for variant.""" + automaticFulfillment: Boolean + + """ + Fields required to update the digital content metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """ + Fields required to update the digital content private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """Represents an file in a multipart request.""" + contentFile: Upload! +} + +""" +Remove digital content assigned to given variant. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type DigitalContentDelete { + variant: ProductVariant + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +""" +Update digital content. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type DigitalContentUpdate { + variant: ProductVariant + content: DigitalContent + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +input DigitalContentInput { + """Use default digital content settings for this product.""" + useDefaultSettings: Boolean! + + """ + Determines how many times a download link can be accessed by a customer. + """ + maxDownloads: Int + + """ + Determines for how many days a download link is active since it was generated. + """ + urlValidDays: Int + + """Overwrite default automatic_fulfillment setting for variant.""" + automaticFulfillment: Boolean + + """ + Fields required to update the digital content metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """ + Fields required to update the digital content private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] +} + +""" +Generate new URL to digital content. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type DigitalContentUrlCreate { + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! + digitalContentUrl: DigitalContentUrl +} + +input DigitalContentUrlCreateInput { + """Digital content ID which URL will belong to.""" + content: ID! +} + +""" +Creates a new variant for a product. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantCreate { + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! + productVariant: ProductVariant +} + +input ProductVariantCreateInput { + """List of attributes specific to this variant.""" + attributes: [AttributeValueInput!]! + + """Stock keeping unit.""" + sku: String + + """Variant name.""" + name: String + + """ + Determines if the inventory of this variant should be tracked. If false, the quantity won't change when customers buy this item. + """ + trackInventory: Boolean + + """Weight of the Product Variant.""" + weight: WeightScalar + + """ + Determines if variant is in preorder. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + preorder: PreorderSettingsInput + + """ + Determines maximum quantity of `ProductVariant`,that can be bought in a single checkout. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + quantityLimitPerCustomer: Int + + """ + Fields required to update the product variant metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """ + Fields required to update the product variant private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """ + External ID of this product variant. + + Added in Saleor 3.10. + """ + externalReference: String + + """Product ID of which type is the variant.""" + product: ID! + + """Stocks of a product available for sale.""" + stocks: [StockInput!] +} + +input PreorderSettingsInput { + """The global threshold for preorder variant.""" + globalThreshold: Int + + """The end date for preorder.""" + endDate: DateTime +} + +input StockInput { + """Warehouse in which stock is located.""" + warehouse: ID! + + """Quantity of items available for sell.""" + quantity: Int! +} + +""" +Deletes a product variant. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantDelete { + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! + productVariant: ProductVariant +} + +""" +Creates product variants for a given product. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantBulkCreate { + """Returns how many objects were created.""" + count: Int! + + """List of the created variants.""" + productVariants: [ProductVariant!]! + bulkProductErrors: [BulkProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [BulkProductError!]! +} + +type BulkProductError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: ProductErrorCode! + + """List of attributes IDs which causes the error.""" + attributes: [ID!] + + """List of attribute values IDs which causes the error.""" + values: [ID!] + + """Index of an input list item that caused the error.""" + index: Int + + """List of warehouse IDs which causes the error.""" + warehouses: [ID!] + + """List of channel IDs which causes the error.""" + channels: [ID!] +} + +input ProductVariantBulkCreateInput { + """List of attributes specific to this variant.""" + attributes: [BulkAttributeValueInput!]! + + """Stock keeping unit.""" + sku: String + + """Variant name.""" + name: String + + """ + Determines if the inventory of this variant should be tracked. If false, the quantity won't change when customers buy this item. + """ + trackInventory: Boolean + + """Weight of the Product Variant.""" + weight: WeightScalar + + """ + Determines if variant is in preorder. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + preorder: PreorderSettingsInput + + """ + Determines maximum quantity of `ProductVariant`,that can be bought in a single checkout. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + quantityLimitPerCustomer: Int + + """ + Fields required to update the product variant metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """ + Fields required to update the product variant private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """ + External ID of this product variant. + + Added in Saleor 3.10. + """ + externalReference: String + + """Stocks of a product available for sale.""" + stocks: [StockInput!] + + """List of prices assigned to channels.""" + channelListings: [ProductVariantChannelListingAddInput!] +} + +input BulkAttributeValueInput { + """ID of the selected attribute.""" + id: ID + + """ + The value or slug of an attribute to resolve. If the passed value is non-existent, it will be created. + """ + values: [String!] + + """ + The boolean value of an attribute to resolve. If the passed value is non-existent, it will be created. + """ + boolean: Boolean +} + +input ProductVariantChannelListingAddInput { + """ID of a channel.""" + channelId: ID! + + """Price of the particular variant in channel.""" + price: PositiveDecimal! + + """Cost price of the variant in channel.""" + costPrice: PositiveDecimal + + """ + The threshold for preorder variant in channel. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + preorderThreshold: Int +} + +""" +Deletes product variants. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantBulkDelete { + """Returns how many objects were affected.""" + count: Int! + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +""" +Creates stocks for product variant. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantStocksCreate { + """Updated product variant.""" + productVariant: ProductVariant + bulkStockErrors: [BulkStockError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [BulkStockError!]! +} + +type BulkStockError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: ProductErrorCode! + + """List of attributes IDs which causes the error.""" + attributes: [ID!] + + """List of attribute values IDs which causes the error.""" + values: [ID!] + + """Index of an input list item that caused the error.""" + index: Int +} + +""" +Delete stocks from product variant. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantStocksDelete { + """Updated product variant.""" + productVariant: ProductVariant + stockErrors: [StockError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [StockError!]! +} + +type StockError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: StockErrorCode! +} + +"""An enumeration.""" +enum StockErrorCode { + ALREADY_EXISTS + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE +} + +""" +Update stocks for product variant. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantStocksUpdate { + """Updated product variant.""" + productVariant: ProductVariant + bulkStockErrors: [BulkStockError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [BulkStockError!]! +} + +""" +Updates an existing variant for product. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantUpdate { + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! + productVariant: ProductVariant +} + +input ProductVariantInput { + """List of attributes specific to this variant.""" + attributes: [AttributeValueInput!] + + """Stock keeping unit.""" + sku: String + + """Variant name.""" + name: String + + """ + Determines if the inventory of this variant should be tracked. If false, the quantity won't change when customers buy this item. + """ + trackInventory: Boolean + + """Weight of the Product Variant.""" + weight: WeightScalar + + """ + Determines if variant is in preorder. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + preorder: PreorderSettingsInput + + """ + Determines maximum quantity of `ProductVariant`,that can be bought in a single checkout. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + quantityLimitPerCustomer: Int + + """ + Fields required to update the product variant metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] + + """ + Fields required to update the product variant private metadata. + + Added in Saleor 3.8. + """ + privateMetadata: [MetadataInput!] + + """ + External ID of this product variant. + + Added in Saleor 3.10. + """ + externalReference: String +} + +""" +Set default variant for a product. Mutation triggers PRODUCT_UPDATED webhook. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantSetDefault { + product: Product + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +""" +Creates/updates translations for a product variant. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type ProductVariantTranslate { + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [TranslationError!]! + productVariant: ProductVariant +} + +input NameTranslationInput { + name: String +} + +""" +Manage product variant prices in channels. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantChannelListingUpdate { + """An updated product variant instance.""" + variant: ProductVariant + productChannelListingErrors: [ProductChannelListingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductChannelListingError!]! +} + +""" +Reorder product variant attribute values. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantReorderAttributeValues { + """Product variant from which attribute values are reordered.""" + productVariant: ProductVariant + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +""" +Deactivates product variant preorder. It changes all preorder allocation into regular allocation. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ProductVariantPreorderDeactivate { + """Product variant with ended preorder.""" + productVariant: ProductVariant + errors: [ProductError!]! +} + +""" +Assign an media to a product variant. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type VariantMediaAssign { + productVariant: ProductVariant + media: ProductMedia + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +""" +Unassign an media from a product variant. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type VariantMediaUnassign { + productVariant: ProductVariant + media: ProductMedia + productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ProductError!]! +} + +""" +Captures the authorized payment amount. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type PaymentCapture { + """Updated payment.""" + payment: Payment + paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PaymentError!]! +} + +type PaymentError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: PaymentErrorCode! + + """List of variant IDs which causes the error.""" + variants: [ID!] +} + +"""An enumeration.""" +enum PaymentErrorCode { + BILLING_ADDRESS_NOT_SET + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE + PARTIAL_PAYMENT_NOT_ALLOWED + SHIPPING_ADDRESS_NOT_SET + INVALID_SHIPPING_METHOD + SHIPPING_METHOD_NOT_SET + PAYMENT_ERROR + NOT_SUPPORTED_GATEWAY + CHANNEL_INACTIVE + BALANCE_CHECK_ERROR + CHECKOUT_EMAIL_NOT_SET + UNAVAILABLE_VARIANT_IN_CHANNEL + NO_CHECKOUT_LINES +} + +""" +Refunds the captured payment amount. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type PaymentRefund { + """Updated payment.""" + payment: Payment + paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PaymentError!]! +} + +""" +Voids the authorized payment. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type PaymentVoid { + """Updated payment.""" + payment: Payment + paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PaymentError!]! +} + +"""Initializes payment process when it is required by gateway.""" +type PaymentInitialize { + initializedPayment: PaymentInitialized + paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PaymentError!]! +} + +""" +Server-side data generated by a payment gateway. Optional step when the payment provider requires an additional action to initialize payment session. +""" +type PaymentInitialized { + """ID of a payment gateway.""" + gateway: String! + + """Payment gateway name.""" + name: String! + + """Initialized data by gateway.""" + data: JSONString +} + +"""Check payment balance.""" +type PaymentCheckBalance { + """Response from the gateway.""" + data: JSONString + paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PaymentError!]! +} + +input PaymentCheckBalanceInput { + """An ID of a payment gateway to check.""" + gatewayId: String! + + """Payment method name.""" + method: String! + + """Slug of a channel for which the data should be returned.""" + channel: String! + + """Information about card.""" + card: CardInput! +} + +input CardInput { + """ + Payment method nonce, a token returned by the appropriate provider's SDK. + """ + code: String! + + """Card security code.""" + cvc: String + + """Information about currency and amount.""" + money: MoneyInput! +} + +input MoneyInput { + """Currency code.""" + currency: String! + + """Amount of money.""" + amount: PositiveDecimal! +} + +""" +Create transaction for checkout or order. Requires the following permissions: AUTHENTICATED_APP and HANDLE_PAYMENTS. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TransactionCreate { + transaction: TransactionItem + errors: [TransactionCreateError!]! +} + +type TransactionCreateError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: TransactionCreateErrorCode! +} + +"""An enumeration.""" +enum TransactionCreateErrorCode { + INVALID + GRAPHQL_ERROR + NOT_FOUND + INCORRECT_CURRENCY + METADATA_KEY_REQUIRED +} + +input TransactionCreateInput { + """Status of the transaction.""" + status: String! + + """Payment type used for this transaction.""" + type: String! + + """Reference of the transaction.""" + reference: String + + """List of all possible actions for the transaction""" + availableActions: [TransactionActionEnum!] + + """Amount authorized by this transaction.""" + amountAuthorized: MoneyInput + + """Amount charged by this transaction.""" + amountCharged: MoneyInput + + """Amount refunded by this transaction.""" + amountRefunded: MoneyInput + + """Amount voided by this transaction.""" + amountVoided: MoneyInput + + """Payment public metadata.""" + metadata: [MetadataInput!] + + """Payment private metadata.""" + privateMetadata: [MetadataInput!] +} + +input TransactionEventInput { + """Current status of the payment transaction.""" + status: TransactionStatus! + + """Reference of the transaction.""" + reference: String + + """Name of the transaction.""" + name: String +} + +""" +Create transaction for checkout or order. Requires the following permissions: AUTHENTICATED_APP and HANDLE_PAYMENTS. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TransactionUpdate { + transaction: TransactionItem + errors: [TransactionUpdateError!]! +} + +type TransactionUpdateError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: TransactionUpdateErrorCode! +} + +"""An enumeration.""" +enum TransactionUpdateErrorCode { + INVALID + GRAPHQL_ERROR + NOT_FOUND + INCORRECT_CURRENCY + METADATA_KEY_REQUIRED +} + +input TransactionUpdateInput { + """Status of the transaction.""" + status: String + + """Payment type used for this transaction.""" + type: String + + """Reference of the transaction.""" + reference: String + + """List of all possible actions for the transaction""" + availableActions: [TransactionActionEnum!] + + """Amount authorized by this transaction.""" + amountAuthorized: MoneyInput + + """Amount charged by this transaction.""" + amountCharged: MoneyInput + + """Amount refunded by this transaction.""" + amountRefunded: MoneyInput + + """Amount voided by this transaction.""" + amountVoided: MoneyInput + + """Payment public metadata.""" + metadata: [MetadataInput!] + + """Payment private metadata.""" + privateMetadata: [MetadataInput!] +} + +""" +Request an action for payment transaction. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: HANDLE_PAYMENTS, MANAGE_ORDERS. +""" +type TransactionRequestAction { + transaction: TransactionItem + errors: [TransactionRequestActionError!]! +} + +type TransactionRequestActionError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: TransactionRequestActionErrorCode! +} + +"""An enumeration.""" +enum TransactionRequestActionErrorCode { + INVALID + GRAPHQL_ERROR + NOT_FOUND + MISSING_TRANSACTION_ACTION_REQUEST_WEBHOOK +} + +""" +Creates a new page. + +Requires one of the following permissions: MANAGE_PAGES. +""" +type PageCreate { + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PageError!]! + page: Page +} + +type PageError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: PageErrorCode! + + """List of attributes IDs which causes the error.""" + attributes: [ID!] + + """List of attribute values IDs which causes the error.""" + values: [ID!] +} + +"""An enumeration.""" +enum PageErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE + DUPLICATED_INPUT_ITEM + ATTRIBUTE_ALREADY_ASSIGNED +} + +input PageCreateInput { + """Page internal name.""" + slug: String + + """Page title.""" + title: String + + """ + Page content. + + Rich text format. For reference see https://editorjs.io/ + """ + content: JSONString + + """List of attributes.""" + attributes: [AttributeValueInput!] + + """Determines if page is visible in the storefront.""" + isPublished: Boolean + + """ + Publication date. ISO 8601 standard. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `publishedAt` field instead. + """ + publicationDate: String + + """ + Publication date time. ISO 8601 standard. + + Added in Saleor 3.3. + """ + publishedAt: DateTime + + """Search engine optimization fields.""" + seo: SeoInput + + """ID of the page type that page belongs to.""" + pageType: ID! +} + +""" +Deletes a page. + +Requires one of the following permissions: MANAGE_PAGES. +""" +type PageDelete { + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PageError!]! + page: Page +} + +""" +Deletes pages. + +Requires one of the following permissions: MANAGE_PAGES. +""" +type PageBulkDelete { + """Returns how many objects were affected.""" + count: Int! + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PageError!]! +} + +""" +Publish pages. + +Requires one of the following permissions: MANAGE_PAGES. +""" +type PageBulkPublish { + """Returns how many objects were affected.""" + count: Int! + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PageError!]! +} + +""" +Updates an existing page. + +Requires one of the following permissions: MANAGE_PAGES. +""" +type PageUpdate { + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PageError!]! + page: Page +} + +input PageInput { + """Page internal name.""" + slug: String + + """Page title.""" + title: String + + """ + Page content. + + Rich text format. For reference see https://editorjs.io/ + """ + content: JSONString + + """List of attributes.""" + attributes: [AttributeValueInput!] + + """Determines if page is visible in the storefront.""" + isPublished: Boolean + + """ + Publication date. ISO 8601 standard. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `publishedAt` field instead. + """ + publicationDate: String + + """ + Publication date time. ISO 8601 standard. + + Added in Saleor 3.3. + """ + publishedAt: DateTime + + """Search engine optimization fields.""" + seo: SeoInput +} + +""" +Creates/updates translations for a page. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type PageTranslate { + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [TranslationError!]! + page: PageTranslatableContent +} + +input PageTranslationInput { + seoTitle: String + seoDescription: String + title: String + + """ + Translated page content. + + Rich text format. For reference see https://editorjs.io/ + """ + content: JSONString +} + +""" +Create a new page type. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type PageTypeCreate { + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PageError!]! + pageType: PageType +} + +input PageTypeCreateInput { + """Name of the page type.""" + name: String + + """Page type slug.""" + slug: String + + """List of attribute IDs to be assigned to the page type.""" + addAttributes: [ID!] +} + +""" +Update page type. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type PageTypeUpdate { + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PageError!]! + pageType: PageType +} + +input PageTypeUpdateInput { + """Name of the page type.""" + name: String + + """Page type slug.""" + slug: String + + """List of attribute IDs to be assigned to the page type.""" + addAttributes: [ID!] + + """List of attribute IDs to be assigned to the page type.""" + removeAttributes: [ID!] +} + +""" +Delete a page type. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type PageTypeDelete { + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PageError!]! + pageType: PageType +} + +""" +Delete page types. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type PageTypeBulkDelete { + """Returns how many objects were affected.""" + count: Int! + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PageError!]! +} + +""" +Assign attributes to a given page type. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type PageAttributeAssign { + """The updated page type.""" + pageType: PageType + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PageError!]! +} + +""" +Unassign attributes from a given page type. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type PageAttributeUnassign { + """The updated page type.""" + pageType: PageType + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PageError!]! +} + +""" +Reorder the attributes of a page type. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type PageTypeReorderAttributes { + """Page type from which attributes are reordered.""" + pageType: PageType + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PageError!]! +} + +""" +Reorder page attribute values. + +Requires one of the following permissions: MANAGE_PAGES. +""" +type PageReorderAttributeValues { + """Page from which attribute values are reordered.""" + page: Page + pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PageError!]! +} + +""" +Completes creating an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type DraftOrderComplete { + """Completed order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Creates a new draft order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type DraftOrderCreate { + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! + order: Order +} + +input DraftOrderCreateInput { + """Billing address of the customer.""" + billingAddress: AddressInput + + """Customer associated with the draft order.""" + user: ID + + """Email address of the customer.""" + userEmail: String + + """Discount amount for the order.""" + discount: PositiveDecimal + + """Shipping address of the customer.""" + shippingAddress: AddressInput + + """ID of a selected shipping method.""" + shippingMethod: ID + + """ID of the voucher associated with the order.""" + voucher: ID + + """A note from a customer. Visible by customers in the order summary.""" + customerNote: String + + """ID of the channel associated with the order.""" + channelId: ID + + """ + URL of a view where users should be redirected to see the order details. URL in RFC 1808 format. + """ + redirectUrl: String + + """ + External ID of this order. + + Added in Saleor 3.10. + """ + externalReference: String + + """Variant line input consisting of variant ID and quantity of products.""" + lines: [OrderLineCreateInput!] +} + +input OrderLineCreateInput { + """Number of variant items ordered.""" + quantity: Int! + + """Product variant ID.""" + variantId: ID! + + """ + Flag that allow force splitting the same variant into multiple lines by skipping the matching logic. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + forceNewLine: Boolean = false +} + +""" +Deletes a draft order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type DraftOrderDelete { + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! + order: Order +} + +""" +Deletes draft orders. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type DraftOrderBulkDelete { + """Returns how many objects were affected.""" + count: Int! + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Deletes order lines. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type DraftOrderLinesBulkDelete { + """Returns how many objects were affected.""" + count: Int! + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Updates a draft order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type DraftOrderUpdate { + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! + order: Order +} + +input DraftOrderInput { + """Billing address of the customer.""" + billingAddress: AddressInput + + """Customer associated with the draft order.""" + user: ID + + """Email address of the customer.""" + userEmail: String + + """Discount amount for the order.""" + discount: PositiveDecimal + + """Shipping address of the customer.""" + shippingAddress: AddressInput + + """ID of a selected shipping method.""" + shippingMethod: ID + + """ID of the voucher associated with the order.""" + voucher: ID + + """A note from a customer. Visible by customers in the order summary.""" + customerNote: String + + """ID of the channel associated with the order.""" + channelId: ID + + """ + URL of a view where users should be redirected to see the order details. URL in RFC 1808 format. + """ + redirectUrl: String + + """ + External ID of this order. + + Added in Saleor 3.10. + """ + externalReference: String +} + +""" +Adds note to the order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderAddNote { + """Order with the note added.""" + order: Order + + """Order note created.""" + event: OrderEvent + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +input OrderAddNoteInput { + """Note message.""" + message: String! +} + +""" +Cancel an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderCancel { + """Canceled order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Capture an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderCapture { + """Captured order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Confirms an unconfirmed order by changing status to unfulfilled. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderConfirm { + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Creates new fulfillments for an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderFulfill { + """List of created fulfillments.""" + fulfillments: [Fulfillment!] + + """Fulfilled order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +input OrderFulfillInput { + """List of items informing how to fulfill the order.""" + lines: [OrderFulfillLineInput!]! + + """If true, send an email notification to the customer.""" + notifyCustomer: Boolean + + """If true, then allow proceed fulfillment when stock is exceeded.""" + allowStockToBeExceeded: Boolean = false + + """ + Fulfillment tracking number. + + Added in Saleor 3.6. + """ + trackingNumber: String +} + +input OrderFulfillLineInput { + """The ID of the order line.""" + orderLineId: ID + + """List of stock items to create.""" + stocks: [OrderFulfillStockInput!]! +} + +input OrderFulfillStockInput { + """The number of line items to be fulfilled from given warehouse.""" + quantity: Int! + + """ID of the warehouse from which the item will be fulfilled.""" + warehouse: ID! +} + +""" +Cancels existing fulfillment and optionally restocks items. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type FulfillmentCancel { + """A canceled fulfillment.""" + fulfillment: Fulfillment + + """Order which fulfillment was cancelled.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +input FulfillmentCancelInput { + """ + ID of a warehouse where items will be restocked. Optional when fulfillment is in WAITING_FOR_APPROVAL state. + """ + warehouseId: ID +} + +""" +Approve existing fulfillment. + +Added in Saleor 3.1. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type FulfillmentApprove { + """An approved fulfillment.""" + fulfillment: Fulfillment + + """Order which fulfillment was approved.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Updates a fulfillment for an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type FulfillmentUpdateTracking { + """A fulfillment with updated tracking.""" + fulfillment: Fulfillment + + """Order for which fulfillment was updated.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +input FulfillmentUpdateTrackingInput { + """Fulfillment tracking number.""" + trackingNumber: String + + """If true, send an email notification to the customer.""" + notifyCustomer: Boolean = false +} + +""" +Refund products. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type FulfillmentRefundProducts { + """A refunded fulfillment.""" + fulfillment: Fulfillment + + """Order which fulfillment was refunded.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +input OrderRefundProductsInput { + """List of unfulfilled lines to refund.""" + orderLines: [OrderRefundLineInput!] + + """List of fulfilled lines to refund.""" + fulfillmentLines: [OrderRefundFulfillmentLineInput!] + + """The total amount of refund when the value is provided manually.""" + amountToRefund: PositiveDecimal + + """ + If true, Saleor will refund shipping costs. If amountToRefund is providedincludeShippingCosts will be ignored. + """ + includeShippingCosts: Boolean = false +} + +input OrderRefundLineInput { + """The ID of the order line to refund.""" + orderLineId: ID! + + """The number of items to be refunded.""" + quantity: Int! +} + +input OrderRefundFulfillmentLineInput { + """The ID of the fulfillment line to refund.""" + fulfillmentLineId: ID! + + """The number of items to be refunded.""" + quantity: Int! +} + +""" +Return products. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type FulfillmentReturnProducts { + """A return fulfillment.""" + returnFulfillment: Fulfillment + + """A replace fulfillment.""" + replaceFulfillment: Fulfillment + + """Order which fulfillment was returned.""" + order: Order + + """A draft order which was created for products with replace flag.""" + replaceOrder: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +input OrderReturnProductsInput { + """List of unfulfilled lines to return.""" + orderLines: [OrderReturnLineInput!] + + """List of fulfilled lines to return.""" + fulfillmentLines: [OrderReturnFulfillmentLineInput!] + + """The total amount of refund when the value is provided manually.""" + amountToRefund: PositiveDecimal + + """ + If true, Saleor will refund shipping costs. If amountToRefund is providedincludeShippingCosts will be ignored. + """ + includeShippingCosts: Boolean = false + + """If true, Saleor will call refund action for all lines.""" + refund: Boolean = false +} + +input OrderReturnLineInput { + """The ID of the order line to return.""" + orderLineId: ID! + + """The number of items to be returned.""" + quantity: Int! + + """Determines, if the line should be added to replace order.""" + replace: Boolean = false +} + +input OrderReturnFulfillmentLineInput { + """The ID of the fulfillment line to return.""" + fulfillmentLineId: ID! + + """The number of items to be returned.""" + quantity: Int! + + """Determines, if the line should be added to replace order.""" + replace: Boolean = false +} + +""" +Create order lines for an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderLinesCreate { + """Related order.""" + order: Order + + """List of added order lines.""" + orderLines: [OrderLine!] + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Deletes an order line from an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderLineDelete { + """A related order.""" + order: Order + + """An order line that was deleted.""" + orderLine: OrderLine + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Updates an order line of an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderLineUpdate { + """Related order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! + orderLine: OrderLine +} + +input OrderLineInput { + """Number of variant items ordered.""" + quantity: Int! +} + +""" +Adds discount to the order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderDiscountAdd { + """Order which has been discounted.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +input OrderDiscountCommonInput { + """Type of the discount: fixed or percent""" + valueType: DiscountValueTypeEnum! + + """Value of the discount. Can store fixed value or percent value""" + value: PositiveDecimal! + + """Explanation for the applied discount.""" + reason: String +} + +""" +Update discount for the order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderDiscountUpdate { + """Order which has been discounted.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Remove discount from the order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderDiscountDelete { + """Order which has removed discount.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Update discount for the order line. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderLineDiscountUpdate { + """Order line which has been discounted.""" + orderLine: OrderLine + + """Order which is related to the discounted line.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Remove discount applied to the order line. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderLineDiscountRemove { + """Order line which has removed discount.""" + orderLine: OrderLine + + """Order which is related to line which has removed discount.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Mark order as manually paid. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderMarkAsPaid { + """Order marked as paid.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Refund an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderRefund { + """A refunded order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Updates an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderUpdate { + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! + order: Order +} + +input OrderUpdateInput { + """Billing address of the customer.""" + billingAddress: AddressInput + + """Email address of the customer.""" + userEmail: String + + """Shipping address of the customer.""" + shippingAddress: AddressInput + + """ + External ID of this order. + + Added in Saleor 3.10. + """ + externalReference: String +} + +""" +Updates a shipping method of the order. Requires shipping method ID to update, when null is passed then currently assigned shipping method is removed. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderUpdateShipping { + """Order with updated shipping method.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +input OrderUpdateShippingInput { + """ + ID of the selected shipping method, pass null to remove currently assigned shipping method. + """ + shippingMethod: ID +} + +""" +Void an order. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderVoid { + """A voided order.""" + order: Order + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Cancels orders. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type OrderBulkCancel { + """Returns how many objects were affected.""" + count: Int! + orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [OrderError!]! +} + +""" +Delete metadata of an object. To use it, you need to have access to the modified object. +""" +type DeleteMetadata { + metadataErrors: [MetadataError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [MetadataError!]! + item: ObjectWithMetadata +} + +type MetadataError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: MetadataErrorCode! +} + +"""An enumeration.""" +enum MetadataErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + NOT_UPDATED +} + +""" +Delete object's private metadata. To use it, you need to be an authenticated staff user or an app and have access to the modified object. +""" +type DeletePrivateMetadata { + metadataErrors: [MetadataError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [MetadataError!]! + item: ObjectWithMetadata +} + +""" +Updates metadata of an object. To use it, you need to have access to the modified object. +""" +type UpdateMetadata { + metadataErrors: [MetadataError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [MetadataError!]! + item: ObjectWithMetadata +} + +""" +Updates private metadata of an object. To use it, you need to be an authenticated staff user or an app and have access to the modified object. +""" +type UpdatePrivateMetadata { + metadataErrors: [MetadataError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [MetadataError!]! + item: ObjectWithMetadata +} + +""" +Assigns storefront's navigation menus. + +Requires one of the following permissions: MANAGE_MENUS, MANAGE_SETTINGS. +""" +type AssignNavigation { + """Assigned navigation menu.""" + menu: Menu + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [MenuError!]! +} + +type MenuError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: MenuErrorCode! +} + +"""An enumeration.""" +enum MenuErrorCode { + CANNOT_ASSIGN_NODE + GRAPHQL_ERROR + INVALID + INVALID_MENU_ITEM + NO_MENU_ITEM_PROVIDED + NOT_FOUND + REQUIRED + TOO_MANY_MENU_ITEMS + UNIQUE +} + +enum NavigationType { + """Main storefront navigation.""" + MAIN + + """Secondary storefront navigation.""" + SECONDARY +} + +""" +Creates a new Menu. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuCreate { + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [MenuError!]! + menu: Menu +} + +input MenuCreateInput { + """Name of the menu.""" + name: String! + + """Slug of the menu. Will be generated if not provided.""" + slug: String + + """List of menu items.""" + items: [MenuItemInput!] +} + +input MenuItemInput { + """Name of the menu item.""" + name: String + + """URL of the pointed item.""" + url: String + + """Category to which item points.""" + category: ID + + """Collection to which item points.""" + collection: ID + + """Page to which item points.""" + page: ID +} + +""" +Deletes a menu. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuDelete { + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [MenuError!]! + menu: Menu +} + +""" +Deletes menus. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuBulkDelete { + """Returns how many objects were affected.""" + count: Int! + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [MenuError!]! +} + +""" +Updates a menu. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuUpdate { + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [MenuError!]! + menu: Menu +} + +input MenuInput { + """Name of the menu.""" + name: String + + """Slug of the menu.""" + slug: String +} + +""" +Creates a new menu item. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuItemCreate { + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [MenuError!]! + menuItem: MenuItem +} + +input MenuItemCreateInput { + """Name of the menu item.""" + name: String! + + """URL of the pointed item.""" + url: String + + """Category to which item points.""" + category: ID + + """Collection to which item points.""" + collection: ID + + """Page to which item points.""" + page: ID + + """Menu to which item belongs.""" + menu: ID! + + """ID of the parent menu. If empty, menu will be top level menu.""" + parent: ID +} + +""" +Deletes a menu item. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuItemDelete { + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [MenuError!]! + menuItem: MenuItem +} + +""" +Deletes menu items. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuItemBulkDelete { + """Returns how many objects were affected.""" + count: Int! + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [MenuError!]! +} + +""" +Updates a menu item. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuItemUpdate { + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [MenuError!]! + menuItem: MenuItem +} + +""" +Creates/updates translations for a menu item. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type MenuItemTranslate { + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [TranslationError!]! + menuItem: MenuItem +} + +""" +Moves items of menus. + +Requires one of the following permissions: MANAGE_MENUS. +""" +type MenuItemMove { + """Assigned menu to move within.""" + menu: Menu + menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [MenuError!]! +} + +input MenuItemMoveInput { + """The menu item ID to move.""" + itemId: ID! + + """ID of the parent menu. If empty, menu will be top level menu.""" + parentId: ID + + """ + The new relative sorting position of the item (from -inf to +inf). 1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged. + """ + sortOrder: Int +} + +""" +Request an invoice for the order using plugin. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type InvoiceRequest { + """Order related to an invoice.""" + order: Order + invoiceErrors: [InvoiceError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [InvoiceError!]! + invoice: Invoice +} + +type InvoiceError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: InvoiceErrorCode! +} + +"""An enumeration.""" +enum InvoiceErrorCode { + REQUIRED + NOT_READY + URL_NOT_SET + EMAIL_NOT_SET + NUMBER_NOT_SET + NOT_FOUND + INVALID_STATUS + NO_INVOICE_PLUGIN +} + +""" +Requests deletion of an invoice. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type InvoiceRequestDelete { + invoiceErrors: [InvoiceError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [InvoiceError!]! + invoice: Invoice +} + +""" +Creates a ready to send invoice. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type InvoiceCreate { + invoiceErrors: [InvoiceError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [InvoiceError!]! + invoice: Invoice +} + +input InvoiceCreateInput { + """Invoice number.""" + number: String! + + """URL of an invoice to download.""" + url: String! +} + +""" +Deletes an invoice. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type InvoiceDelete { + invoiceErrors: [InvoiceError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [InvoiceError!]! + invoice: Invoice +} + +""" +Updates an invoice. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type InvoiceUpdate { + invoiceErrors: [InvoiceError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [InvoiceError!]! + invoice: Invoice +} + +input UpdateInvoiceInput { + """Invoice number""" + number: String + + """URL of an invoice to download.""" + url: String +} + +""" +Send an invoice notification to the customer. + +Requires one of the following permissions: MANAGE_ORDERS. +""" +type InvoiceSendNotification { + invoiceErrors: [InvoiceError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [InvoiceError!]! + invoice: Invoice +} + +""" +Activate a gift card. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardActivate { + """Activated gift card.""" + giftCard: GiftCard + giftCardErrors: [GiftCardError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [GiftCardError!]! +} + +type GiftCardError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: GiftCardErrorCode! + + """List of tag values that cause the error.""" + tags: [String!] +} + +"""An enumeration.""" +enum GiftCardErrorCode { + ALREADY_EXISTS + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE + EXPIRED_GIFT_CARD + DUPLICATED_INPUT_ITEM +} + +""" +Creates a new gift card. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardCreate { + giftCardErrors: [GiftCardError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [GiftCardError!]! + giftCard: GiftCard +} + +input GiftCardCreateInput { + """ + The gift card tags to add. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + addTags: [String!] + + """ + The gift card expiry date. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + expiryDate: Date + + """ + Start date of the gift card in ISO 8601 format. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + startDate: Date + + """ + End date of the gift card in ISO 8601 format. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `expiryDate` from `expirySettings` instead. + """ + endDate: Date + + """Balance of the gift card.""" + balance: PriceInput! + + """Email of the customer to whom gift card will be sent.""" + userEmail: String + + """ + Slug of a channel from which the email should be sent. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + channel: String + + """ + Determine if gift card is active. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + isActive: Boolean! + + """ + Code to use the gift card. + + DEPRECATED: this field will be removed in Saleor 4.0. The code is now auto generated. + """ + code: String + + """ + The gift card note from the staff member. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + note: String +} + +input PriceInput { + """Currency code.""" + currency: String! + + """Amount of money.""" + amount: PositiveDecimal! +} + +""" +Delete gift card. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardDelete { + giftCardErrors: [GiftCardError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [GiftCardError!]! + giftCard: GiftCard +} + +""" +Deactivate a gift card. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardDeactivate { + """Deactivated gift card.""" + giftCard: GiftCard + giftCardErrors: [GiftCardError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [GiftCardError!]! +} + +""" +Update a gift card. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardUpdate { + giftCardErrors: [GiftCardError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [GiftCardError!]! + giftCard: GiftCard +} + +input GiftCardUpdateInput { + """ + The gift card tags to add. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + addTags: [String!] + + """ + The gift card expiry date. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + expiryDate: Date + + """ + Start date of the gift card in ISO 8601 format. + + DEPRECATED: this field will be removed in Saleor 4.0. + """ + startDate: Date + + """ + End date of the gift card in ISO 8601 format. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `expiryDate` from `expirySettings` instead. + """ + endDate: Date + + """ + The gift card tags to remove. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + removeTags: [String!] + + """ + The gift card balance amount. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + balanceAmount: PositiveDecimal +} + +""" +Resend a gift card. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardResend { + """Gift card which has been sent.""" + giftCard: GiftCard + errors: [GiftCardError!]! +} + +input GiftCardResendInput { + """ID of a gift card to resend.""" + id: ID! + + """Email to which gift card should be send.""" + email: String + + """Slug of a channel from which the email should be sent.""" + channel: String! +} + +""" +Adds note to the gift card. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardAddNote { + """Gift card with the note added.""" + giftCard: GiftCard + + """Gift card note created.""" + event: GiftCardEvent + errors: [GiftCardError!]! +} + +input GiftCardAddNoteInput { + """Note message.""" + message: String! +} + +""" +Create gift cards. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardBulkCreate { + """Returns how many objects were created.""" + count: Int! + + """List of created gift cards.""" + giftCards: [GiftCard!]! + errors: [GiftCardError!]! +} + +input GiftCardBulkCreateInput { + """The number of cards to issue.""" + count: Int! + + """Balance of the gift card.""" + balance: PriceInput! + + """The gift card tags.""" + tags: [String!] + + """The gift card expiry date.""" + expiryDate: Date + + """Determine if gift card is active.""" + isActive: Boolean! +} + +""" +Delete gift cards. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardBulkDelete { + """Returns how many objects were affected.""" + count: Int! + errors: [GiftCardError!]! +} + +""" +Activate gift cards. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardBulkActivate { + """Returns how many objects were affected.""" + count: Int! + errors: [GiftCardError!]! +} + +""" +Deactivate gift cards. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type GiftCardBulkDeactivate { + """Returns how many objects were affected.""" + count: Int! + errors: [GiftCardError!]! +} + +""" +Update plugin configuration. + +Requires one of the following permissions: MANAGE_PLUGINS. +""" +type PluginUpdate { + plugin: Plugin + pluginsErrors: [PluginError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PluginError!]! +} + +type PluginError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: PluginErrorCode! +} + +"""An enumeration.""" +enum PluginErrorCode { + GRAPHQL_ERROR + INVALID + PLUGIN_MISCONFIGURED + NOT_FOUND + REQUIRED + UNIQUE +} + +input PluginUpdateInput { + """Indicates whether the plugin should be enabled.""" + active: Boolean + + """Configuration of the plugin.""" + configuration: [ConfigurationItemInput!] +} + +input ConfigurationItemInput { + """Name of the field to update.""" + name: String! + + """Value of the given field to update.""" + value: String +} + +""" +Trigger sending a notification with the notify plugin method. Serializes nodes provided as ids parameter and includes this data in the notification payload. + +Added in Saleor 3.1. +""" +type ExternalNotificationTrigger { + errors: [ExternalNotificationError!]! +} + +type ExternalNotificationError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: ExternalNotificationErrorCodes! +} + +"""An enumeration.""" +enum ExternalNotificationErrorCodes { + REQUIRED + INVALID_MODEL_TYPE + NOT_FOUND + CHANNEL_INACTIVE +} + +input ExternalNotificationTriggerInput { + """ + The list of customers or orders node IDs that will be serialized and included in the notification payload. + """ + ids: [ID!]! + + """ + Additional payload that will be merged with the one based on the bussines object ID. + """ + extraPayload: JSONString + + """ + External event type. This field is passed to a plugin as an event type. + """ + externalEventType: String! +} + +""" +Creates a new sale. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type SaleCreate { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + sale: Sale +} + +type DiscountError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """List of products IDs which causes the error.""" + products: [ID!] + + """The error code.""" + code: DiscountErrorCode! + + """List of channels IDs which causes the error.""" + channels: [ID!] +} + +"""An enumeration.""" +enum DiscountErrorCode { + ALREADY_EXISTS + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE + CANNOT_MANAGE_PRODUCT_WITHOUT_VARIANT + DUPLICATED_INPUT_ITEM +} + +input SaleInput { + """Voucher name.""" + name: String + + """Fixed or percentage.""" + type: DiscountValueTypeEnum + + """Value of the voucher.""" + value: PositiveDecimal + + """Products related to the discount.""" + products: [ID!] + variants: [ID!] + + """Categories related to the discount.""" + categories: [ID!] + + """Collections related to the discount.""" + collections: [ID!] + + """Start date of the voucher in ISO 8601 format.""" + startDate: DateTime + + """End date of the voucher in ISO 8601 format.""" + endDate: DateTime +} + +""" +Deletes a sale. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type SaleDelete { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + sale: Sale +} + +""" +Deletes sales. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type SaleBulkDelete { + """Returns how many objects were affected.""" + count: Int! + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! +} + +""" +Updates a sale. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type SaleUpdate { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + sale: Sale +} + +""" +Adds products, categories, collections to a voucher. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type SaleAddCatalogues { + """Sale of which catalogue IDs will be modified.""" + sale: Sale + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! +} + +input CatalogueInput { + """Products related to the discount.""" + products: [ID!] + + """Categories related to the discount.""" + categories: [ID!] + + """Collections related to the discount.""" + collections: [ID!] + + """ + Product variant related to the discount. + + Added in Saleor 3.1. + """ + variants: [ID!] +} + +""" +Removes products, categories, collections from a sale. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type SaleRemoveCatalogues { + """Sale of which catalogue IDs will be modified.""" + sale: Sale + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! +} + +""" +Creates/updates translations for a sale. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type SaleTranslate { + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [TranslationError!]! + sale: Sale +} + +""" +Manage sale's availability in channels. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type SaleChannelListingUpdate { + """An updated sale instance.""" + sale: Sale + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! +} + +input SaleChannelListingInput { + """List of channels to which the sale should be assigned.""" + addChannels: [SaleChannelListingAddInput!] + + """List of channels from which the sale should be unassigned.""" + removeChannels: [ID!] +} + +input SaleChannelListingAddInput { + """ID of a channel.""" + channelId: ID! + + """The value of the discount.""" + discountValue: PositiveDecimal! +} + +""" +Creates a new voucher. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type VoucherCreate { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + voucher: Voucher +} + +input VoucherInput { + """Voucher type: PRODUCT, CATEGORY SHIPPING or ENTIRE_ORDER.""" + type: VoucherTypeEnum + + """Voucher name.""" + name: String + + """Code to use the voucher.""" + code: String + + """Start date of the voucher in ISO 8601 format.""" + startDate: DateTime + + """End date of the voucher in ISO 8601 format.""" + endDate: DateTime + + """Choices: fixed or percentage.""" + discountValueType: DiscountValueTypeEnum + + """Products discounted by the voucher.""" + products: [ID!] + + """ + Variants discounted by the voucher. + + Added in Saleor 3.1. + """ + variants: [ID!] + + """Collections discounted by the voucher.""" + collections: [ID!] + + """Categories discounted by the voucher.""" + categories: [ID!] + + """Minimal quantity of checkout items required to apply the voucher.""" + minCheckoutItemsQuantity: Int + + """Country codes that can be used with the shipping voucher.""" + countries: [String!] + + """Voucher should be applied to the cheapest item or entire order.""" + applyOncePerOrder: Boolean + + """Voucher should be applied once per customer.""" + applyOncePerCustomer: Boolean + + """Voucher can be used only by staff user.""" + onlyForStaff: Boolean + + """Limit number of times this voucher can be used in total.""" + usageLimit: Int +} + +""" +Deletes a voucher. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type VoucherDelete { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + voucher: Voucher +} + +""" +Deletes vouchers. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type VoucherBulkDelete { + """Returns how many objects were affected.""" + count: Int! + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! +} + +""" +Updates a voucher. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type VoucherUpdate { + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! + voucher: Voucher +} + +""" +Adds products, categories, collections to a voucher. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type VoucherAddCatalogues { + """Voucher of which catalogue IDs will be modified.""" + voucher: Voucher + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! +} + +""" +Removes products, categories, collections from a voucher. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type VoucherRemoveCatalogues { + """Voucher of which catalogue IDs will be modified.""" + voucher: Voucher + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! +} + +""" +Creates/updates translations for a voucher. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type VoucherTranslate { + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [TranslationError!]! + voucher: Voucher +} + +""" +Manage voucher's availability in channels. + +Requires one of the following permissions: MANAGE_DISCOUNTS. +""" +type VoucherChannelListingUpdate { + """An updated voucher instance.""" + voucher: Voucher + discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [DiscountError!]! +} + +input VoucherChannelListingInput { + """List of channels to which the voucher should be assigned.""" + addChannels: [VoucherChannelListingAddInput!] + + """List of channels from which the voucher should be unassigned.""" + removeChannels: [ID!] +} + +input VoucherChannelListingAddInput { + """ID of a channel.""" + channelId: ID! + + """Value of the voucher.""" + discountValue: PositiveDecimal + + """Min purchase amount required to apply the voucher.""" + minAmountSpent: PositiveDecimal +} + +""" +Export products to csv file. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type ExportProducts { + """ + The newly created export file job which is responsible for export data. + """ + exportFile: ExportFile + exportErrors: [ExportError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ExportError!]! +} + +type ExportError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: ExportErrorCode! +} + +"""An enumeration.""" +enum ExportErrorCode { + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED +} + +input ExportProductsInput { + """Determine which products should be exported.""" + scope: ExportScope! + + """Filtering options for products.""" + filter: ProductFilterInput + + """List of products IDs to export.""" + ids: [ID!] + + """Input with info about fields which should be exported.""" + exportInfo: ExportInfoInput + + """Type of exported file.""" + fileType: FileTypesEnum! +} + +enum ExportScope { + """Export all products.""" + ALL + + """Export products with given ids.""" + IDS + + """Export the filtered products.""" + FILTER +} + +input ExportInfoInput { + """List of attribute ids witch should be exported.""" + attributes: [ID!] + + """List of warehouse ids witch should be exported.""" + warehouses: [ID!] + + """List of channels ids which should be exported.""" + channels: [ID!] + + """List of product fields witch should be exported.""" + fields: [ProductFieldEnum!] +} + +enum ProductFieldEnum { + NAME + DESCRIPTION + PRODUCT_TYPE + CATEGORY + PRODUCT_WEIGHT + COLLECTIONS + CHARGE_TAXES + PRODUCT_MEDIA + VARIANT_ID + VARIANT_SKU + VARIANT_WEIGHT + VARIANT_MEDIA +} + +"""An enumeration.""" +enum FileTypesEnum { + CSV + XLSX +} + +""" +Export gift cards to csv file. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_GIFT_CARD. +""" +type ExportGiftCards { + """ + The newly created export file job which is responsible for export data. + """ + exportFile: ExportFile + errors: [ExportError!]! +} + +input ExportGiftCardsInput { + """Determine which gift cards should be exported.""" + scope: ExportScope! + + """Filtering options for gift cards.""" + filter: GiftCardFilterInput + + """List of gift cards IDs to export.""" + ids: [ID!] + + """Type of exported file.""" + fileType: FileTypesEnum! +} + +""" +Upload a file. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + +Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. +""" +type FileUpload { + uploadedFile: File + uploadErrors: [UploadError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [UploadError!]! +} + +type UploadError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: UploadErrorCode! +} + +"""An enumeration.""" +enum UploadErrorCode { + GRAPHQL_ERROR +} + +"""Adds a gift card or a voucher to a checkout.""" +type CheckoutAddPromoCode { + """The checkout with the added gift card or voucher.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +type CheckoutError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: CheckoutErrorCode! + + """List of varint IDs which causes the error.""" + variants: [ID!] + + """List of line Ids which cause the error.""" + lines: [ID!] + + """A type of address that causes the error.""" + addressType: AddressTypeEnum +} + +"""An enumeration.""" +enum CheckoutErrorCode { + BILLING_ADDRESS_NOT_SET + CHECKOUT_NOT_FULLY_PAID + GRAPHQL_ERROR + PRODUCT_NOT_PUBLISHED + PRODUCT_UNAVAILABLE_FOR_PURCHASE + INSUFFICIENT_STOCK + INVALID + INVALID_SHIPPING_METHOD + NOT_FOUND + PAYMENT_ERROR + QUANTITY_GREATER_THAN_LIMIT + REQUIRED + SHIPPING_ADDRESS_NOT_SET + SHIPPING_METHOD_NOT_APPLICABLE + DELIVERY_METHOD_NOT_APPLICABLE + SHIPPING_METHOD_NOT_SET + SHIPPING_NOT_REQUIRED + TAX_ERROR + UNIQUE + VOUCHER_NOT_APPLICABLE + GIFT_CARD_NOT_APPLICABLE + ZERO_QUANTITY + MISSING_CHANNEL_SLUG + CHANNEL_INACTIVE + UNAVAILABLE_VARIANT_IN_CHANNEL + EMAIL_NOT_SET + NO_LINES + INACTIVE_PAYMENT +} + +"""Update billing address in the existing checkout.""" +type CheckoutBillingAddressUpdate { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +input CheckoutAddressValidationRules { + """ + Determines if an error should be raised when the provided address doesn't have all the required fields. The list of required fields is dynamic and depends on the country code (use the `addressValidationRules` query to fetch them). Note: country code is mandatory for all addresses regardless of the rules provided in this input. + """ + checkRequiredFields: Boolean = true + + """ + Determines if an error should be raised when the provided address doesn't match the expected format. Example: using letters for postal code when the numbers are expected. + """ + checkFieldsFormat: Boolean = true + + """ + Determines if Saleor should apply normalization on address fields. Example: converting city field to uppercase letters. + """ + enableFieldsNormalization: Boolean = true +} + +""" +Completes the checkout. As a result a new order is created and a payment charge is made. This action requires a successful payment before it can be performed. In case additional confirmation step as 3D secure is required confirmationNeeded flag will be set to True and no order created until payment is confirmed with second call of this mutation. +""" +type CheckoutComplete { + """Placed order.""" + order: Order + + """ + Set to true if payment needs to be confirmed before checkout is complete. + """ + confirmationNeeded: Boolean! + + """Confirmation data used to process additional authorization steps.""" + confirmationData: JSONString + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +"""Create a new checkout.""" +type CheckoutCreate { + """ + Whether the checkout was created or the current active one was returned. Refer to checkoutLinesAdd and checkoutLinesUpdate to merge a cart with an active checkout. + """ + created: Boolean @deprecated(reason: "This field will be removed in Saleor 4.0. Always returns `true`.") + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! + checkout: Checkout +} + +input CheckoutCreateInput { + """Slug of a channel in which to create a checkout.""" + channel: String + + """ + A list of checkout lines, each containing information about an item in the checkout. + """ + lines: [CheckoutLineInput!]! + + """The customer's email address.""" + email: String + + """ + The mailing address to where the checkout will be shipped. Note: the address will be ignored if the checkout doesn't contain shippable items. + """ + shippingAddress: AddressInput + + """Billing address of the customer.""" + billingAddress: AddressInput + + """Checkout language code.""" + languageCode: LanguageCodeEnum + + """ + The checkout validation rules that can be changed. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + validationRules: CheckoutValidationRules +} + +input CheckoutLineInput { + """The number of items purchased.""" + quantity: Int! + + """ID of the product variant.""" + variantId: ID! + + """ + Custom price of the item. Can be set only by apps with `HANDLE_CHECKOUTS` permission. When the line with the same variant will be provided multiple times, the last price will be used. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + price: PositiveDecimal + + """ + Flag that allow force splitting the same variant into multiple lines by skipping the matching logic. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + forceNewLine: Boolean = false + + """ + Fields required to update the object's metadata. + + Added in Saleor 3.8. + """ + metadata: [MetadataInput!] +} + +input CheckoutValidationRules { + """ + The validation rules that can be applied to provided shipping address data. + """ + shippingAddress: CheckoutAddressValidationRules + + """ + The validation rules that can be applied to provided billing address data. + """ + billingAddress: CheckoutAddressValidationRules +} + +""" +Sets the customer as the owner of the checkout. + +Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_USER. +""" +type CheckoutCustomerAttach { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +""" +Removes the user assigned as the owner of the checkout. + +Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_USER. +""" +type CheckoutCustomerDetach { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +"""Updates email address in the existing checkout object.""" +type CheckoutEmailUpdate { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +"""Deletes a CheckoutLine.""" +type CheckoutLineDelete { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +"""Deletes checkout lines.""" +type CheckoutLinesDelete { + """An updated checkout.""" + checkout: Checkout + errors: [CheckoutError!]! +} + +""" +Adds a checkout line to the existing checkout.If line was already in checkout, its quantity will be increased. +""" +type CheckoutLinesAdd { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +"""Updates checkout line in the existing checkout.""" +type CheckoutLinesUpdate { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +input CheckoutLineUpdateInput { + """ + ID of the product variant. + + DEPRECATED: this field will be removed in Saleor 4.0. Use `lineId` instead. + """ + variantId: ID + + """ + The number of items purchased. Optional for apps, required for any other users. + """ + quantity: Int + + """ + Custom price of the item. Can be set only by apps with `HANDLE_CHECKOUTS` permission. When the line with the same variant will be provided multiple times, the last price will be used. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + price: PositiveDecimal + + """ + ID of the line. + + Added in Saleor 3.6. + """ + lineId: ID +} + +"""Remove a gift card or a voucher from a checkout.""" +type CheckoutRemovePromoCode { + """The checkout with the removed gift card or voucher.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +"""Create a new payment for given checkout.""" +type CheckoutPaymentCreate { + """Related checkout object.""" + checkout: Checkout + + """A newly created payment.""" + payment: Payment + paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PaymentError!]! +} + +input PaymentInput { + """A gateway to use with that payment.""" + gateway: String! + + """ + Client-side generated payment token, representing customer's billing data in a secure manner. + """ + token: String + + """ + Total amount of the transaction, including all taxes and discounts. If no amount is provided, the checkout total will be used. + """ + amount: PositiveDecimal + + """ + URL of a storefront view where user should be redirected after requiring additional actions. Payment with additional actions will not be finished if this field is not provided. + """ + returnUrl: String + + """ + Payment store type. + + Added in Saleor 3.1. + """ + storePaymentMethod: StorePaymentMethodEnum = NONE + + """ + User public metadata. + + Added in Saleor 3.1. + """ + metadata: [MetadataInput!] +} + +"""Enum representing the type of a payment storage in a gateway.""" +enum StorePaymentMethodEnum { + """ + On session storage type. The payment is stored only to be reused when the customer is present in the checkout flow. + """ + ON_SESSION + + """ + Off session storage type. The payment is stored to be reused even if the customer is absent. + """ + OFF_SESSION + + """Storage is disabled. The payment is not stored.""" + NONE +} + +"""Update shipping address in the existing checkout.""" +type CheckoutShippingAddressUpdate { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +"""Updates the shipping method of the checkout.""" +type CheckoutShippingMethodUpdate { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +""" +Updates the delivery method (shipping method or pick up point) of the checkout. + +Added in Saleor 3.1. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CheckoutDeliveryMethodUpdate { + """An updated checkout.""" + checkout: Checkout + errors: [CheckoutError!]! +} + +"""Update language code in the existing checkout.""" +type CheckoutLanguageCodeUpdate { + """An updated checkout.""" + checkout: Checkout + checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [CheckoutError!]! +} + +""" +Create new order from existing checkout. Requires the following permissions: AUTHENTICATED_APP and HANDLE_CHECKOUTS. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderCreateFromCheckout { + """Placed order.""" + order: Order + errors: [OrderCreateFromCheckoutError!]! +} + +type OrderCreateFromCheckoutError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: OrderCreateFromCheckoutErrorCode! + + """List of variant IDs which causes the error.""" + variants: [ID!] + + """List of line Ids which cause the error.""" + lines: [ID!] +} + +"""An enumeration.""" +enum OrderCreateFromCheckoutErrorCode { + GRAPHQL_ERROR + CHECKOUT_NOT_FOUND + CHANNEL_INACTIVE + INSUFFICIENT_STOCK + VOUCHER_NOT_APPLICABLE + GIFT_CARD_NOT_APPLICABLE + TAX_ERROR + SHIPPING_METHOD_NOT_SET + BILLING_ADDRESS_NOT_SET + SHIPPING_ADDRESS_NOT_SET + INVALID_SHIPPING_METHOD + NO_LINES + EMAIL_NOT_SET + UNAVAILABLE_VARIANT_IN_CHANNEL +} + +""" +Creates new channel. + +Requires one of the following permissions: MANAGE_CHANNELS. +""" +type ChannelCreate { + channelErrors: [ChannelError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ChannelError!]! + channel: Channel +} + +type ChannelError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: ChannelErrorCode! + + """List of shipping zone IDs which causes the error.""" + shippingZones: [ID!] + + """List of warehouses IDs which causes the error.""" + warehouses: [ID!] +} + +"""An enumeration.""" +enum ChannelErrorCode { + ALREADY_EXISTS + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE + CHANNELS_CURRENCY_MUST_BE_THE_SAME + CHANNEL_WITH_ORDERS + DUPLICATED_INPUT_ITEM +} + +input ChannelCreateInput { + """isActive flag.""" + isActive: Boolean + + """ + The channel stock settings. + + Added in Saleor 3.7. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + stockSettings: StockSettingsInput + + """List of shipping zones to assign to the channel.""" + addShippingZones: [ID!] + + """ + List of warehouses to assign to the channel. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + addWarehouses: [ID!] + + """Name of the channel.""" + name: String! + + """Slug of the channel.""" + slug: String! + + """Currency of the channel.""" + currencyCode: String! + + """ + Default country for the channel. Default country can be used in checkout to determine the stock quantities or calculate taxes when the country was not explicitly provided. + + Added in Saleor 3.1. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + defaultCountry: CountryCode! +} + +input StockSettingsInput { + """ + Allocation strategy options. Strategy defines the preference of warehouses for allocations and reservations. + """ + allocationStrategy: AllocationStrategyEnum! +} + +""" +Update a channel. + +Requires one of the following permissions: MANAGE_CHANNELS. +""" +type ChannelUpdate { + channelErrors: [ChannelError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ChannelError!]! + channel: Channel +} + +input ChannelUpdateInput { + """isActive flag.""" + isActive: Boolean + + """ + The channel stock settings. + + Added in Saleor 3.7. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + stockSettings: StockSettingsInput + + """List of shipping zones to assign to the channel.""" + addShippingZones: [ID!] + + """ + List of warehouses to assign to the channel. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + addWarehouses: [ID!] + + """Name of the channel.""" + name: String + + """Slug of the channel.""" + slug: String + + """ + Default country for the channel. Default country can be used in checkout to determine the stock quantities or calculate taxes when the country was not explicitly provided. + + Added in Saleor 3.1. + """ + defaultCountry: CountryCode + + """List of shipping zones to unassign from the channel.""" + removeShippingZones: [ID!] + + """ + List of warehouses to unassign from the channel. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + removeWarehouses: [ID!] +} + +""" +Delete a channel. Orders associated with the deleted channel will be moved to the target channel. Checkouts, product availability, and pricing will be removed. + +Requires one of the following permissions: MANAGE_CHANNELS. +""" +type ChannelDelete { + channelErrors: [ChannelError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ChannelError!]! + channel: Channel +} + +input ChannelDeleteInput { + """ID of channel to migrate orders from origin channel.""" + channelId: ID! +} + +""" +Activate a channel. + +Requires one of the following permissions: MANAGE_CHANNELS. +""" +type ChannelActivate { + """Activated channel.""" + channel: Channel + channelErrors: [ChannelError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ChannelError!]! +} + +""" +Deactivate a channel. + +Requires one of the following permissions: MANAGE_CHANNELS. +""" +type ChannelDeactivate { + """Deactivated channel.""" + channel: Channel + channelErrors: [ChannelError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [ChannelError!]! +} + +""" +Reorder the warehouses of a channel. + +Added in Saleor 3.7. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. + +Requires one of the following permissions: MANAGE_CHANNELS. +""" +type ChannelReorderWarehouses { + """Channel within the warehouses are reordered.""" + channel: Channel + errors: [ChannelError!]! +} + +"""Creates an attribute.""" +type AttributeCreate { + attribute: Attribute + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AttributeError!]! +} + +type AttributeError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: AttributeErrorCode! +} + +"""An enumeration.""" +enum AttributeErrorCode { + ALREADY_EXISTS + GRAPHQL_ERROR + INVALID + NOT_FOUND + REQUIRED + UNIQUE +} + +input AttributeCreateInput { + """The input type to use for entering attribute values in the dashboard.""" + inputType: AttributeInputTypeEnum + + """The entity type which can be used as a reference.""" + entityType: AttributeEntityTypeEnum + + """Name of an attribute displayed in the interface.""" + name: String! + + """Internal representation of an attribute name.""" + slug: String + + """The attribute type.""" + type: AttributeTypeEnum! + + """The unit of attribute values.""" + unit: MeasurementUnitsEnum + + """List of attribute's values.""" + values: [AttributeValueCreateInput!] + + """Whether the attribute requires values to be passed or not.""" + valueRequired: Boolean + + """Whether the attribute is for variants only.""" + isVariantOnly: Boolean + + """Whether the attribute should be visible or not in storefront.""" + visibleInStorefront: Boolean + + """Whether the attribute can be filtered in storefront.""" + filterableInStorefront: Boolean + + """Whether the attribute can be filtered in dashboard.""" + filterableInDashboard: Boolean + + """ + The position of the attribute in the storefront navigation (0 by default). + """ + storefrontSearchPosition: Int + + """Whether the attribute can be displayed in the admin product list.""" + availableInGrid: Boolean + + """ + External ID of this attribute. + + Added in Saleor 3.10. + """ + externalReference: String +} + +input AttributeValueCreateInput { + """ + Represent value of the attribute value (e.g. color values for swatch attributes). + """ + value: String + + """ + Represents the text of the attribute value, includes formatting. + + Rich text format. For reference see https://editorjs.io/ + + DEPRECATED: this field will be removed in Saleor 4.0.The rich text attribute hasn't got predefined value, so can be specified only from instance that supports the given attribute. + """ + richText: JSONString + + """ + Represents the text of the attribute value, plain text without formating. + + DEPRECATED: this field will be removed in Saleor 4.0.The plain text attribute hasn't got predefined value, so can be specified only from instance that supports the given attribute. + """ + plainText: String + + """URL of the file attribute. Every time, a new value is created.""" + fileUrl: String + + """File content type.""" + contentType: String + + """ + External ID of this attribute value. + + Added in Saleor 3.10. + """ + externalReference: String + + """Name of a value displayed in the interface.""" + name: String! +} + +""" +Deletes an attribute. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type AttributeDelete { + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AttributeError!]! + attribute: Attribute +} + +""" +Updates attribute. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type AttributeUpdate { + attribute: Attribute + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AttributeError!]! +} + +input AttributeUpdateInput { + """Name of an attribute displayed in the interface.""" + name: String + + """Internal representation of an attribute name.""" + slug: String + + """The unit of attribute values.""" + unit: MeasurementUnitsEnum + + """IDs of values to be removed from this attribute.""" + removeValues: [ID!] + + """New values to be created for this attribute.""" + addValues: [AttributeValueUpdateInput!] + + """Whether the attribute requires values to be passed or not.""" + valueRequired: Boolean + + """Whether the attribute is for variants only.""" + isVariantOnly: Boolean + + """Whether the attribute should be visible or not in storefront.""" + visibleInStorefront: Boolean + + """Whether the attribute can be filtered in storefront.""" + filterableInStorefront: Boolean + + """Whether the attribute can be filtered in dashboard.""" + filterableInDashboard: Boolean + + """ + The position of the attribute in the storefront navigation (0 by default). + """ + storefrontSearchPosition: Int + + """Whether the attribute can be displayed in the admin product list.""" + availableInGrid: Boolean + + """ + External ID of this product. + + Added in Saleor 3.10. + """ + externalReference: String +} + +input AttributeValueUpdateInput { + """ + Represent value of the attribute value (e.g. color values for swatch attributes). + """ + value: String + + """ + Represents the text of the attribute value, includes formatting. + + Rich text format. For reference see https://editorjs.io/ + + DEPRECATED: this field will be removed in Saleor 4.0.The rich text attribute hasn't got predefined value, so can be specified only from instance that supports the given attribute. + """ + richText: JSONString + + """ + Represents the text of the attribute value, plain text without formating. + + DEPRECATED: this field will be removed in Saleor 4.0.The plain text attribute hasn't got predefined value, so can be specified only from instance that supports the given attribute. + """ + plainText: String + + """URL of the file attribute. Every time, a new value is created.""" + fileUrl: String + + """File content type.""" + contentType: String + + """ + External ID of this attribute value. + + Added in Saleor 3.10. + """ + externalReference: String + + """Name of a value displayed in the interface.""" + name: String +} + +""" +Creates/updates translations for an attribute. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type AttributeTranslate { + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [TranslationError!]! + attribute: Attribute +} + +""" +Deletes attributes. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type AttributeBulkDelete { + """Returns how many objects were affected.""" + count: Int! + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AttributeError!]! +} + +""" +Deletes values of attributes. + +Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. +""" +type AttributeValueBulkDelete { + """Returns how many objects were affected.""" + count: Int! + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AttributeError!]! +} + +""" +Creates a value for an attribute. + +Requires one of the following permissions: MANAGE_PRODUCTS. +""" +type AttributeValueCreate { + """The updated attribute.""" + attribute: Attribute + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AttributeError!]! + attributeValue: AttributeValue +} + +""" +Deletes a value of an attribute. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type AttributeValueDelete { + """The updated attribute.""" + attribute: Attribute + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AttributeError!]! + attributeValue: AttributeValue +} + +""" +Updates value of an attribute. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type AttributeValueUpdate { + """The updated attribute.""" + attribute: Attribute + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AttributeError!]! + attributeValue: AttributeValue +} + +""" +Creates/updates translations for an attribute value. + +Requires one of the following permissions: MANAGE_TRANSLATIONS. +""" +type AttributeValueTranslate { + translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [TranslationError!]! + attributeValue: AttributeValue +} + +input AttributeValueTranslationInput { + name: String + + """ + Translated text. + + Rich text format. For reference see https://editorjs.io/ + """ + richText: JSONString + + """Translated text.""" + plainText: String +} + +""" +Reorder the values of an attribute. + +Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. +""" +type AttributeReorderValues { + """Attribute from which values are reordered.""" + attribute: Attribute + attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AttributeError!]! +} + +""" +Creates a new app. Requires the following permissions: AUTHENTICATED_STAFF_USER and MANAGE_APPS. +""" +type AppCreate { + """The newly created authentication token.""" + authToken: String + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! + app: App +} + +type AppError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: AppErrorCode! + + """List of permissions which causes the error.""" + permissions: [PermissionEnum!] +} + +"""An enumeration.""" +enum AppErrorCode { + FORBIDDEN + GRAPHQL_ERROR + INVALID + INVALID_STATUS + INVALID_PERMISSION + INVALID_URL_FORMAT + INVALID_MANIFEST_FORMAT + MANIFEST_URL_CANT_CONNECT + NOT_FOUND + REQUIRED + UNIQUE + OUT_OF_SCOPE_APP + OUT_OF_SCOPE_PERMISSION +} + +input AppInput { + """Name of the app.""" + name: String + + """List of permission code names to assign to this app.""" + permissions: [PermissionEnum!] +} + +""" +Updates an existing app. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppUpdate { + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! + app: App +} + +""" +Deletes an app. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppDelete { + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! + app: App +} + +""" +Creates a new token. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppTokenCreate { + """The newly created authentication token.""" + authToken: String + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! + appToken: AppToken +} + +input AppTokenInput { + """Name of the token.""" + name: String + + """ID of app.""" + app: ID! +} + +""" +Deletes an authentication token assigned to app. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppTokenDelete { + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! + appToken: AppToken +} + +"""Verify provided app token.""" +type AppTokenVerify { + """Determine if token is valid or not.""" + valid: Boolean! + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! +} + +""" +Install new app by using app manifest. Requires the following permissions: AUTHENTICATED_STAFF_USER and MANAGE_APPS. +""" +type AppInstall { + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! + appInstallation: AppInstallation +} + +input AppInstallInput { + """Name of the app to install.""" + appName: String + + """Url to app's manifest in JSON format.""" + manifestUrl: String + + """Determine if app will be set active or not.""" + activateAfterInstallation: Boolean = true + + """List of permission code names to assign to this app.""" + permissions: [PermissionEnum!] +} + +""" +Retry failed installation of new app. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppRetryInstall { + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! + appInstallation: AppInstallation +} + +""" +Delete failed installation. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppDeleteFailedInstallation { + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! + appInstallation: AppInstallation +} + +""" +Fetch and validate manifest. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppFetchManifest { + manifest: Manifest + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! +} + +"""The manifest definition.""" +type Manifest { + identifier: String! + version: String! + name: String! + about: String + permissions: [Permission!] + appUrl: String + + """URL to iframe with the configuration for the app.""" + configurationUrl: String @deprecated(reason: "This field will be removed in Saleor 4.0. Use `appUrl` instead.") + tokenTargetUrl: String + + """Description of the data privacy defined for this app.""" + dataPrivacy: String @deprecated(reason: "This field will be removed in Saleor 4.0. Use `dataPrivacyUrl` instead.") + dataPrivacyUrl: String + homepageUrl: String + supportUrl: String + extensions: [AppManifestExtension!]! + + """ + List of the app's webhooks. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + webhooks: [AppManifestWebhook!]! + + """ + The audience that will be included in all JWT tokens for the app. + + Added in Saleor 3.8. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + audience: String +} + +type AppManifestExtension { + """List of the app extension's permissions.""" + permissions: [Permission!]! + + """Label of the extension to show in the dashboard.""" + label: String! + + """URL of a view where extension's iframe is placed.""" + url: String! + + """Place where given extension will be mounted.""" + mount: AppExtensionMountEnum! + + """Type of way how app extension will be opened.""" + target: AppExtensionTargetEnum! +} + +type AppManifestWebhook { + """The name of the webhook.""" + name: String! + + """The asynchronous events that webhook wants to subscribe.""" + asyncEvents: [WebhookEventTypeAsyncEnum!] + + """The synchronous events that webhook wants to subscribe.""" + syncEvents: [WebhookEventTypeSyncEnum!] + + """Subscription query of a webhook""" + query: String! + + """The url to receive the payload.""" + targetUrl: String! +} + +""" +Activate the app. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppActivate { + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! + app: App +} + +""" +Deactivate the app. + +Requires one of the following permissions: MANAGE_APPS. +""" +type AppDeactivate { + appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AppError!]! + app: App +} + +"""Create JWT token.""" +type CreateToken { + """JWT token, required to authenticate.""" + token: String + + """JWT refresh token, required to re-generate access token.""" + refreshToken: String + + """CSRF token required to re-generate access token.""" + csrfToken: String + + """A user instance.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +type AccountError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: AccountErrorCode! + + """A type of address that causes the error.""" + addressType: AddressTypeEnum +} + +"""An enumeration.""" +enum AccountErrorCode { + ACTIVATE_OWN_ACCOUNT + ACTIVATE_SUPERUSER_ACCOUNT + DUPLICATED_INPUT_ITEM + DEACTIVATE_OWN_ACCOUNT + DEACTIVATE_SUPERUSER_ACCOUNT + DELETE_NON_STAFF_USER + DELETE_OWN_ACCOUNT + DELETE_STAFF_ACCOUNT + DELETE_SUPERUSER_ACCOUNT + GRAPHQL_ERROR + INACTIVE + INVALID + INVALID_PASSWORD + LEFT_NOT_MANAGEABLE_PERMISSION + INVALID_CREDENTIALS + NOT_FOUND + OUT_OF_SCOPE_USER + OUT_OF_SCOPE_GROUP + OUT_OF_SCOPE_PERMISSION + PASSWORD_ENTIRELY_NUMERIC + PASSWORD_TOO_COMMON + PASSWORD_TOO_SHORT + PASSWORD_TOO_SIMILAR + REQUIRED + UNIQUE + JWT_SIGNATURE_EXPIRED + JWT_INVALID_TOKEN + JWT_DECODE_ERROR + JWT_MISSING_TOKEN + JWT_INVALID_CSRF_TOKEN + CHANNEL_INACTIVE + MISSING_CHANNEL_SLUG + ACCOUNT_NOT_CONFIRMED +} + +""" +Refresh JWT token. Mutation tries to take refreshToken from the input.If it fails it will try to take refreshToken from the http-only cookie -refreshToken. csrfToken is required when refreshToken is provided as a cookie. +""" +type RefreshToken { + """JWT token, required to authenticate.""" + token: String + + """A user instance.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +"""Verify JWT token.""" +type VerifyToken { + """User assigned to token.""" + user: User + + """Determine if token is valid or not.""" + isValid: Boolean! + + """JWT payload.""" + payload: GenericScalar + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +""" +The `GenericScalar` scalar type represents a generic +GraphQL scalar value that could be: +String, Boolean, Int, Float, List or Object. +""" +scalar GenericScalar + +""" +Deactivate all JWT tokens of the currently authenticated user. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type DeactivateAllUserTokens { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +"""Prepare external authentication url for user by custom plugin.""" +type ExternalAuthenticationUrl { + """The data returned by authentication plugin.""" + authenticationData: JSONString + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +"""Obtain external access tokens for user by custom plugin.""" +type ExternalObtainAccessTokens { + """The token, required to authenticate.""" + token: String + + """The refresh token, required to re-generate external access token.""" + refreshToken: String + + """CSRF token required to re-generate external access token.""" + csrfToken: String + + """A user instance.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +"""Refresh user's access by custom plugin.""" +type ExternalRefresh { + """The token, required to authenticate.""" + token: String + + """The refresh token, required to re-generate external access token.""" + refreshToken: String + + """CSRF token required to re-generate external access token.""" + csrfToken: String + + """A user instance.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +"""Logout user by custom plugin.""" +type ExternalLogout { + """The data returned by authentication plugin.""" + logoutData: JSONString + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +"""Verify external authentication data by plugin.""" +type ExternalVerify { + """User assigned to data.""" + user: User + + """Determine if authentication data is valid or not.""" + isValid: Boolean! + + """External data.""" + verifyData: JSONString + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +"""Sends an email with the account password modification link.""" +type RequestPasswordReset { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +"""Confirm user account with token sent by email during registration.""" +type ConfirmAccount { + """An activated user account.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +""" +Sets the user's password from the token sent by email using the RequestPasswordReset mutation. +""" +type SetPassword { + """JWT token, required to authenticate.""" + token: String + + """JWT refresh token, required to re-generate access token.""" + refreshToken: String + + """CSRF token required to re-generate access token.""" + csrfToken: String + + """A user instance.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +""" +Change the password of the logged in user. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type PasswordChange { + """A user instance with a new password.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +""" +Request email change of the logged in user. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type RequestEmailChange { + """A user instance.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +""" +Confirm the email change of the logged-in user. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type ConfirmEmailChange { + """A user instance with a new email.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +""" +Create a new address for the customer. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type AccountAddressCreate { + """A user instance for which the address was created.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + address: Address +} + +""" +Updates an address of the logged-in user. Requires one of the following permissions: MANAGE_USERS, IS_OWNER. +""" +type AccountAddressUpdate { + """A user object for which the address was edited.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + address: Address +} + +""" +Delete an address of the logged-in user. Requires one of the following permissions: MANAGE_USERS, IS_OWNER. +""" +type AccountAddressDelete { + """A user instance for which the address was deleted.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + address: Address +} + +""" +Sets a default address for the authenticated user. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type AccountSetDefaultAddress { + """An updated user instance.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +"""Register a new user.""" +type AccountRegister { + """Informs whether users need to confirm their email address.""" + requiresConfirmation: Boolean + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + user: User +} + +input AccountRegisterInput { + """Given name.""" + firstName: String + + """Family name.""" + lastName: String + + """User language code.""" + languageCode: LanguageCodeEnum + + """The email address of the user.""" + email: String! + + """Password.""" + password: String! + + """Base of frontend URL that will be needed to create confirmation URL.""" + redirectUrl: String + + """User public metadata.""" + metadata: [MetadataInput!] + + """ + Slug of a channel which will be used to notify users. Optional when only one channel exists. + """ + channel: String +} + +""" +Updates the account of the logged-in user. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type AccountUpdate { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + user: User +} + +input AccountInput { + """Given name.""" + firstName: String + + """Family name.""" + lastName: String + + """User language code.""" + languageCode: LanguageCodeEnum + + """Billing address of the customer.""" + defaultBillingAddress: AddressInput + + """Shipping address of the customer.""" + defaultShippingAddress: AddressInput +} + +""" +Sends an email with the account removal link for the logged-in user. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type AccountRequestDeletion { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +""" +Remove user account. + +Requires one of the following permissions: AUTHENTICATED_USER. +""" +type AccountDelete { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + user: User +} + +""" +Creates user address. + +Requires one of the following permissions: MANAGE_USERS. +""" +type AddressCreate { + """A user instance for which the address was created.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + address: Address +} + +""" +Updates an address. + +Requires one of the following permissions: MANAGE_USERS. +""" +type AddressUpdate { + """A user object for which the address was edited.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + address: Address +} + +""" +Deletes an address. + +Requires one of the following permissions: MANAGE_USERS. +""" +type AddressDelete { + """A user instance for which the address was deleted.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + address: Address +} + +""" +Sets a default address for the given user. + +Requires one of the following permissions: MANAGE_USERS. +""" +type AddressSetDefault { + """An updated user instance.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +""" +Creates a new customer. + +Requires one of the following permissions: MANAGE_USERS. +""" +type CustomerCreate { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + user: User +} + +input UserCreateInput { + """Billing address of the customer.""" + defaultBillingAddress: AddressInput + + """Shipping address of the customer.""" + defaultShippingAddress: AddressInput + + """Given name.""" + firstName: String + + """Family name.""" + lastName: String + + """The unique email address of the user.""" + email: String + + """User account is active.""" + isActive: Boolean + + """A note about the user.""" + note: String + + """User language code.""" + languageCode: LanguageCodeEnum + + """ + External ID of the customer. + + Added in Saleor 3.10. + """ + externalReference: String + + """ + URL of a view where users should be redirected to set the password. URL in RFC 1808 format. + """ + redirectUrl: String + + """ + Slug of a channel which will be used for notify user. Optional when only one channel exists. + """ + channel: String +} + +""" +Updates an existing customer. + +Requires one of the following permissions: MANAGE_USERS. +""" +type CustomerUpdate { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + user: User +} + +input CustomerInput { + """Billing address of the customer.""" + defaultBillingAddress: AddressInput + + """Shipping address of the customer.""" + defaultShippingAddress: AddressInput + + """Given name.""" + firstName: String + + """Family name.""" + lastName: String + + """The unique email address of the user.""" + email: String + + """User account is active.""" + isActive: Boolean + + """A note about the user.""" + note: String + + """User language code.""" + languageCode: LanguageCodeEnum + + """ + External ID of the customer. + + Added in Saleor 3.10. + """ + externalReference: String +} + +""" +Deletes a customer. + +Requires one of the following permissions: MANAGE_USERS. +""" +type CustomerDelete { + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! + user: User +} + +""" +Deletes customers. + +Requires one of the following permissions: MANAGE_USERS. +""" +type CustomerBulkDelete { + """Returns how many objects were affected.""" + count: Int! + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +""" +Creates a new staff user. Apps are not allowed to perform this mutation. + +Requires one of the following permissions: MANAGE_STAFF. +""" +type StaffCreate { + staffErrors: [StaffError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [StaffError!]! + user: User +} + +type StaffError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: AccountErrorCode! + + """A type of address that causes the error.""" + addressType: AddressTypeEnum + + """List of permissions which causes the error.""" + permissions: [PermissionEnum!] + + """List of permission group IDs which cause the error.""" + groups: [ID!] + + """List of user IDs which causes the error.""" + users: [ID!] +} + +input StaffCreateInput { + """Given name.""" + firstName: String + + """Family name.""" + lastName: String + + """The unique email address of the user.""" + email: String + + """User account is active.""" + isActive: Boolean + + """A note about the user.""" + note: String + + """List of permission group IDs to which user should be assigned.""" + addGroups: [ID!] + + """ + URL of a view where users should be redirected to set the password. URL in RFC 1808 format. + """ + redirectUrl: String +} + +""" +Updates an existing staff user. Apps are not allowed to perform this mutation. + +Requires one of the following permissions: MANAGE_STAFF. +""" +type StaffUpdate { + staffErrors: [StaffError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [StaffError!]! + user: User +} + +input StaffUpdateInput { + """Given name.""" + firstName: String + + """Family name.""" + lastName: String + + """The unique email address of the user.""" + email: String + + """User account is active.""" + isActive: Boolean + + """A note about the user.""" + note: String + + """List of permission group IDs to which user should be assigned.""" + addGroups: [ID!] + + """List of permission group IDs from which user should be unassigned.""" + removeGroups: [ID!] +} + +""" +Deletes a staff user. Apps are not allowed to perform this mutation. + +Requires one of the following permissions: MANAGE_STAFF. +""" +type StaffDelete { + staffErrors: [StaffError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [StaffError!]! + user: User +} + +""" +Deletes staff users. Apps are not allowed to perform this mutation. + +Requires one of the following permissions: MANAGE_STAFF. +""" +type StaffBulkDelete { + """Returns how many objects were affected.""" + count: Int! + staffErrors: [StaffError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [StaffError!]! +} + +""" +Create a user avatar. Only for staff members. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec + +Requires one of the following permissions: AUTHENTICATED_STAFF_USER. +""" +type UserAvatarUpdate { + """An updated user instance.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +""" +Deletes a user avatar. Only for staff members. + +Requires one of the following permissions: AUTHENTICATED_STAFF_USER. +""" +type UserAvatarDelete { + """An updated user instance.""" + user: User + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +""" +Activate or deactivate users. + +Requires one of the following permissions: MANAGE_USERS. +""" +type UserBulkSetActive { + """Returns how many objects were affected.""" + count: Int! + accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [AccountError!]! +} + +""" +Create new permission group. Apps are not allowed to perform this mutation. + +Requires one of the following permissions: MANAGE_STAFF. +""" +type PermissionGroupCreate { + permissionGroupErrors: [PermissionGroupError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PermissionGroupError!]! + group: Group +} + +type PermissionGroupError { + """ + Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field. + """ + field: String + + """The error message.""" + message: String + + """The error code.""" + code: PermissionGroupErrorCode! + + """List of permissions which causes the error.""" + permissions: [PermissionEnum!] + + """List of user IDs which causes the error.""" + users: [ID!] +} + +"""An enumeration.""" +enum PermissionGroupErrorCode { + ASSIGN_NON_STAFF_MEMBER + DUPLICATED_INPUT_ITEM + CANNOT_REMOVE_FROM_LAST_GROUP + LEFT_NOT_MANAGEABLE_PERMISSION + OUT_OF_SCOPE_PERMISSION + OUT_OF_SCOPE_USER + REQUIRED + UNIQUE +} + +input PermissionGroupCreateInput { + """List of permission code names to assign to this group.""" + addPermissions: [PermissionEnum!] + + """List of users to assign to this group.""" + addUsers: [ID!] + + """Group name.""" + name: String! +} + +""" +Update permission group. Apps are not allowed to perform this mutation. + +Requires one of the following permissions: MANAGE_STAFF. +""" +type PermissionGroupUpdate { + permissionGroupErrors: [PermissionGroupError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PermissionGroupError!]! + group: Group +} + +input PermissionGroupUpdateInput { + """List of permission code names to assign to this group.""" + addPermissions: [PermissionEnum!] + + """List of users to assign to this group.""" + addUsers: [ID!] + + """Group name.""" + name: String + + """List of permission code names to unassign from this group.""" + removePermissions: [PermissionEnum!] + + """List of users to unassign from this group.""" + removeUsers: [ID!] +} + +""" +Delete permission group. Apps are not allowed to perform this mutation. + +Requires one of the following permissions: MANAGE_STAFF. +""" +type PermissionGroupDelete { + permissionGroupErrors: [PermissionGroupError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + errors: [PermissionGroupError!]! + group: Group +} + +type Subscription { + """ + Look up subscription event. + + Added in Saleor 3.2. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + event: Event +} + +interface Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App +} + +union IssuingPrincipal = App | User + +"""An enumeration.""" +enum DistanceUnitsEnum { + CM + M + KM + FT + YD + INCH +} + +"""An enumeration.""" +enum AreaUnitsEnum { + SQ_CM + SQ_M + SQ_KM + SQ_FT + SQ_YD + SQ_INCH +} + +"""An enumeration.""" +enum VolumeUnitsEnum { + CUBIC_MILLIMETER + CUBIC_CENTIMETER + CUBIC_DECIMETER + CUBIC_METER + LITER + CUBIC_FOOT + CUBIC_INCH + CUBIC_YARD + QT + PINT + FL_OZ + ACRE_IN + ACRE_FT +} + +""" +Event sent when new address is created. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AddressCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The address the event relates to.""" + address: Address +} + +""" +Event sent when address is updated. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AddressUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The address the event relates to.""" + address: Address +} + +""" +Event sent when address is deleted. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AddressDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The address the event relates to.""" + address: Address +} + +""" +Event sent when new app is installed. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AppInstalled implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The application the event relates to.""" + app: App +} + +""" +Event sent when app is updated. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AppUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The application the event relates to.""" + app: App +} + +""" +Event sent when app is deleted. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AppDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The application the event relates to.""" + app: App +} + +""" +Event sent when app status has changed. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AppStatusChanged implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The application the event relates to.""" + app: App +} + +""" +Event sent when new attribute is created. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AttributeCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The attribute the event relates to.""" + attribute: Attribute +} + +""" +Event sent when attribute is updated. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AttributeUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The attribute the event relates to.""" + attribute: Attribute +} + +""" +Event sent when attribute is deleted. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AttributeDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The attribute the event relates to.""" + attribute: Attribute +} + +""" +Event sent when new attribute value is created. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AttributeValueCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The attribute value the event relates to.""" + attributeValue: AttributeValue +} + +""" +Event sent when attribute value is updated. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AttributeValueUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The attribute value the event relates to.""" + attributeValue: AttributeValue +} + +""" +Event sent when attribute value is deleted. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type AttributeValueDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The attribute value the event relates to.""" + attributeValue: AttributeValue +} + +""" +Event sent when new category is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CategoryCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The category the event relates to.""" + category: Category +} + +""" +Event sent when category is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CategoryUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The category the event relates to.""" + category: Category +} + +""" +Event sent when category is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CategoryDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The category the event relates to.""" + category: Category +} + +""" +Event sent when new channel is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ChannelCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The channel the event relates to.""" + channel: Channel +} + +""" +Event sent when channel is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ChannelUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The channel the event relates to.""" + channel: Channel +} + +""" +Event sent when channel is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ChannelDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The channel the event relates to.""" + channel: Channel +} + +""" +Event sent when channel status has changed. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ChannelStatusChanged implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The channel the event relates to.""" + channel: Channel +} + +""" +Event sent when new gift card is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type GiftCardCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The gift card the event relates to.""" + giftCard: GiftCard +} + +""" +Event sent when gift card is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type GiftCardUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The gift card the event relates to.""" + giftCard: GiftCard +} + +""" +Event sent when gift card is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type GiftCardDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The gift card the event relates to.""" + giftCard: GiftCard +} + +""" +Event sent when gift card status has changed. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type GiftCardStatusChanged implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The gift card the event relates to.""" + giftCard: GiftCard +} + +""" +Event sent when gift card metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type GiftCardMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The gift card the event relates to.""" + giftCard: GiftCard +} + +""" +Event sent when new menu is created. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type MenuCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The menu the event relates to.""" + menu( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Menu +} + +""" +Event sent when menu is updated. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type MenuUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The menu the event relates to.""" + menu( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Menu +} + +""" +Event sent when menu is deleted. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type MenuDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The menu the event relates to.""" + menu( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Menu +} + +""" +Event sent when new menu item is created. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type MenuItemCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The menu item the event relates to.""" + menuItem( + """Slug of a channel for which the data should be returned.""" + channel: String + ): MenuItem +} + +""" +Event sent when menu item is updated. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type MenuItemUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The menu item the event relates to.""" + menuItem( + """Slug of a channel for which the data should be returned.""" + channel: String + ): MenuItem +} + +""" +Event sent when menu item is deleted. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type MenuItemDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The menu item the event relates to.""" + menuItem( + """Slug of a channel for which the data should be returned.""" + channel: String + ): MenuItem +} + +""" +Event sent when new order is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The order the event relates to.""" + order: Order +} + +""" +Event sent when order is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The order the event relates to.""" + order: Order +} + +""" +Event sent when order is confirmed. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderConfirmed implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The order the event relates to.""" + order: Order +} + +""" +Event sent when order is fully paid. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderFullyPaid implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The order the event relates to.""" + order: Order +} + +""" +Event sent when order is fulfilled. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderFulfilled implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The order the event relates to.""" + order: Order +} + +""" +Event sent when order is canceled. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderCancelled implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The order the event relates to.""" + order: Order +} + +""" +Event sent when order metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The order the event relates to.""" + order: Order +} + +""" +Event sent when new draft order is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type DraftOrderCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The order the event relates to.""" + order: Order +} + +""" +Event sent when draft order is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type DraftOrderUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The order the event relates to.""" + order: Order +} + +""" +Event sent when draft order is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type DraftOrderDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The order the event relates to.""" + order: Order +} + +""" +Event sent when new product is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The product the event relates to.""" + product( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Product + + """The category of the product.""" + category: Category +} + +""" +Event sent when product is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The product the event relates to.""" + product( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Product + + """The category of the product.""" + category: Category +} + +""" +Event sent when product is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The product the event relates to.""" + product( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Product + + """The category of the product.""" + category: Category +} + +""" +Event sent when product metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The product the event relates to.""" + product( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Product + + """The category of the product.""" + category: Category +} + +""" +Event sent when new product variant is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductVariantCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The product variant the event relates to.""" + productVariant( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ProductVariant +} + +""" +Event sent when product variant is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductVariantUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The product variant the event relates to.""" + productVariant( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ProductVariant +} + +""" +Event sent when product variant is out of stock. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductVariantOutOfStock implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The product variant the event relates to.""" + productVariant( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ProductVariant + + """Look up a warehouse.""" + warehouse: Warehouse +} + +""" +Event sent when product variant is back in stock. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductVariantBackInStock implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The product variant the event relates to.""" + productVariant( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ProductVariant + + """Look up a warehouse.""" + warehouse: Warehouse +} + +""" +Event sent when product variant is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductVariantDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The product variant the event relates to.""" + productVariant( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ProductVariant +} + +""" +Event sent when product variant metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ProductVariantMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The product variant the event relates to.""" + productVariant( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ProductVariant +} + +""" +Event sent when new sale is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type SaleCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The sale the event relates to.""" + sale( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Sale +} + +""" +Event sent when sale is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type SaleUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The sale the event relates to.""" + sale( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Sale +} + +""" +Event sent when sale is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type SaleDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The sale the event relates to.""" + sale( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Sale +} + +""" +The event informs about the start or end of the sale. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type SaleToggle implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """ + The sale the event relates to. + + Added in Saleor 3.5. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + sale( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Sale +} + +""" +Event sent when invoice is requested. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type InvoiceRequested implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The invoice the event relates to.""" + invoice: Invoice + + """ + Order related to the invoice. + + Added in Saleor 3.10. + """ + order: Order! +} + +""" +Event sent when invoice is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type InvoiceDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The invoice the event relates to.""" + invoice: Invoice + + """ + Order related to the invoice. + + Added in Saleor 3.10. + """ + order: Order +} + +""" +Event sent when invoice is sent. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type InvoiceSent implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The invoice the event relates to.""" + invoice: Invoice + + """ + Order related to the invoice. + + Added in Saleor 3.10. + """ + order: Order +} + +""" +Event sent when new fulfillment is created. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type FulfillmentCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The fulfillment the event relates to.""" + fulfillment: Fulfillment + + """The order the fulfillment belongs to.""" + order: Order +} + +""" +Event sent when fulfillment is canceled. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type FulfillmentCanceled implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The fulfillment the event relates to.""" + fulfillment: Fulfillment + + """The order the fulfillment belongs to.""" + order: Order +} + +""" +Event sent when fulfillment is approved. + +Added in Saleor 3.7. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type FulfillmentApproved implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The fulfillment the event relates to.""" + fulfillment: Fulfillment + + """The order the fulfillment belongs to.""" + order: Order +} + +""" +Event sent when fulfillment metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type FulfillmentMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The fulfillment the event relates to.""" + fulfillment: Fulfillment + + """The order the fulfillment belongs to.""" + order: Order +} + +""" +Event sent when new customer user is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CustomerCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The user the event relates to.""" + user: User +} + +""" +Event sent when customer user is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CustomerUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The user the event relates to.""" + user: User +} + +""" +Event sent when customer user metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CustomerMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The user the event relates to.""" + user: User +} + +""" +Event sent when new collection is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CollectionCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The collection the event relates to.""" + collection( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Collection +} + +""" +Event sent when collection is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CollectionUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The collection the event relates to.""" + collection( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Collection +} + +""" +Event sent when collection is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CollectionDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The collection the event relates to.""" + collection( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Collection +} + +""" +Event sent when collection metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CollectionMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The collection the event relates to.""" + collection( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Collection +} + +""" +Event sent when new checkout is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CheckoutCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The checkout the event relates to.""" + checkout: Checkout +} + +""" +Event sent when checkout is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CheckoutUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The checkout the event relates to.""" + checkout: Checkout +} + +""" +Event sent when checkout metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CheckoutMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The checkout the event relates to.""" + checkout: Checkout +} + +""" +Event sent when new page is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PageCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The page the event relates to.""" + page: Page +} + +""" +Event sent when page is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PageUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The page the event relates to.""" + page: Page +} + +""" +Event sent when page is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PageDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The page the event relates to.""" + page: Page +} + +""" +Event sent when new page type is created. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PageTypeCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The page type the event relates to.""" + pageType: PageType +} + +""" +Event sent when page type is updated. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PageTypeUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The page type the event relates to.""" + pageType: PageType +} + +""" +Event sent when page type is deleted. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PageTypeDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The page type the event relates to.""" + pageType: PageType +} + +""" +Event sent when new permission group is created. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PermissionGroupCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The permission group the event relates to.""" + permissionGroup: Group +} + +""" +Event sent when permission group is updated. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PermissionGroupUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The permission group the event relates to.""" + permissionGroup: Group +} + +""" +Event sent when permission group is deleted. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PermissionGroupDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The permission group the event relates to.""" + permissionGroup: Group +} + +""" +Event sent when new shipping price is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingPriceCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The shipping method the event relates to.""" + shippingMethod( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingMethodType + + """The shipping zone the shipping method belongs to.""" + shippingZone( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingZone +} + +""" +Event sent when shipping price is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingPriceUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The shipping method the event relates to.""" + shippingMethod( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingMethodType + + """The shipping zone the shipping method belongs to.""" + shippingZone( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingZone +} + +""" +Event sent when shipping price is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingPriceDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The shipping method the event relates to.""" + shippingMethod( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingMethodType + + """The shipping zone the shipping method belongs to.""" + shippingZone( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingZone +} + +""" +Event sent when new shipping zone is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingZoneCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The shipping zone the event relates to.""" + shippingZone( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingZone +} + +""" +Event sent when shipping zone is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingZoneUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The shipping zone the event relates to.""" + shippingZone( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingZone +} + +""" +Event sent when shipping zone is deleted. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingZoneDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The shipping zone the event relates to.""" + shippingZone( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingZone +} + +""" +Event sent when shipping zone metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingZoneMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The shipping zone the event relates to.""" + shippingZone( + """Slug of a channel for which the data should be returned.""" + channel: String + ): ShippingZone +} + +""" +Event sent when new staff user is created. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type StaffCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The user the event relates to.""" + user: User +} + +""" +Event sent when staff user is updated. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type StaffUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The user the event relates to.""" + user: User +} + +""" +Event sent when staff user is deleted. + +Added in Saleor 3.5. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type StaffDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The user the event relates to.""" + user: User +} + +""" +Event sent when transaction action is requested. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TransactionActionRequest implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """ + Look up a transaction. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + transaction: TransactionItem + + """ + Requested action data. + + Added in Saleor 3.4. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + action: TransactionAction! +} + +type TransactionAction { + """Determines the action type.""" + actionType: TransactionActionEnum! + + """Transaction request amount. Null when action type is VOID.""" + amount: PositiveDecimal +} + +""" +Event sent when transaction item metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TransactionItemMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """ + Look up a transaction. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + transaction: TransactionItem +} + +""" +Event sent when new translation is created. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TranslationCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The translation the event relates to.""" + translation: TranslationTypes +} + +union TranslationTypes = ProductTranslation | CollectionTranslation | CategoryTranslation | AttributeTranslation | AttributeValueTranslation | ProductVariantTranslation | PageTranslation | ShippingMethodTranslation | SaleTranslation | VoucherTranslation | MenuItemTranslation + +""" +Event sent when translation is updated. + +Added in Saleor 3.2. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type TranslationUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The translation the event relates to.""" + translation: TranslationTypes +} + +""" +Event sent when new voucher is created. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type VoucherCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The voucher the event relates to.""" + voucher( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Voucher +} + +""" +Event sent when voucher is updated. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type VoucherUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The voucher the event relates to.""" + voucher( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Voucher +} + +""" +Event sent when voucher is deleted. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type VoucherDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The voucher the event relates to.""" + voucher( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Voucher +} + +""" +Event sent when voucher metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type VoucherMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The voucher the event relates to.""" + voucher( + """Slug of a channel for which the data should be returned.""" + channel: String + ): Voucher +} + +""" +Event sent when new warehouse is created. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type WarehouseCreated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The warehouse the event relates to.""" + warehouse: Warehouse +} + +""" +Event sent when warehouse is updated. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type WarehouseUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The warehouse the event relates to.""" + warehouse: Warehouse +} + +""" +Event sent when warehouse is deleted. + +Added in Saleor 3.4. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type WarehouseDeleted implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The warehouse the event relates to.""" + warehouse: Warehouse +} + +""" +Event sent when warehouse metadata is updated. + +Added in Saleor 3.8. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type WarehouseMetadataUpdated implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The warehouse the event relates to.""" + warehouse: Warehouse +} + +""" +Authorize payment. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PaymentAuthorize implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Look up a payment.""" + payment: Payment +} + +""" +Capture payment. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PaymentCaptureEvent implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Look up a payment.""" + payment: Payment +} + +""" +Refund payment. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PaymentRefundEvent implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Look up a payment.""" + payment: Payment +} + +""" +Void payment. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PaymentVoidEvent implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Look up a payment.""" + payment: Payment +} + +""" +Confirm payment. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PaymentConfirmEvent implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Look up a payment.""" + payment: Payment +} + +""" +Process payment. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PaymentProcessEvent implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """Look up a payment.""" + payment: Payment +} + +""" +List payment gateways. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type PaymentListGateways implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The checkout the event relates to.""" + checkout: Checkout +} + +""" +Filter shipping methods for order. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type OrderFilterShippingMethods implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The order the event relates to.""" + order: Order + + """ + Shipping methods that can be used with this checkout. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + shippingMethods: [ShippingMethod!] +} + +""" +Filter shipping methods for checkout. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CheckoutFilterShippingMethods implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The checkout the event relates to.""" + checkout: Checkout + + """ + Shipping methods that can be used with this checkout. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + shippingMethods: [ShippingMethod!] +} + +""" +List shipping methods for checkout. + +Added in Saleor 3.6. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type ShippingListMethodsForCheckout implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + + """The checkout the event relates to.""" + checkout: Checkout + + """ + Shipping methods that can be used with this checkout. + + Added in Saleor 3.6. + + Note: this API is currently in Feature Preview and can be subject to changes at later point. + """ + shippingMethods: [ShippingMethod!] +} + +""" +Synchronous webhook for calculating checkout/order taxes. + +Added in Saleor 3.7. + +Note: this API is currently in Feature Preview and can be subject to changes at later point. +""" +type CalculateTaxes implements Event { + """Time of the event.""" + issuedAt: DateTime + + """Saleor version that triggered the event.""" + version: String + + """The user or application that triggered the event.""" + issuingPrincipal: IssuingPrincipal + + """The application receiving the webhook.""" + recipient: App + taxBase: TaxableObject! +} + +"""Taxable object.""" +type TaxableObject { + """The source object related to this tax object.""" + sourceObject: TaxSourceObject! + + """Determines if prices contain entered tax..""" + pricesEnteredWithTax: Boolean! + + """The currency of the object.""" + currency: String! + + """The price of shipping method.""" + shippingPrice: Money! + + """The address data.""" + address: Address + + """List of discounts.""" + discounts: [TaxableObjectDiscount!]! + + """List of lines assigned to the object.""" + lines: [TaxableObjectLine!]! + channel: Channel! +} + +"""Taxable object discount.""" +type TaxableObjectDiscount { + """The name of the discount.""" + name: String + + """The amount of the discount.""" + amount: Money! +} + +type TaxableObjectLine { + """The source line related to this tax line.""" + sourceLine: TaxSourceLine! + + """Number of items.""" + quantity: Int! + + """Determines if taxes are being charged for the product.""" + chargeTaxes: Boolean! + + """The product name.""" + productName: String! + + """The variant name.""" + variantName: String! + + """The product sku.""" + productSku: String + + """Price of the single item in the order line.""" + unitPrice: Money! + + """Price of the order line.""" + totalPrice: Money! +} + +union TaxSourceLine = CheckoutLine | OrderLine + +"""_Any value scalar as defined by Federation spec.""" +scalar _Any + +"""_Entity union as defined by Federation spec.""" +union _Entity = App | Address | User | Group | ProductVariant | Product | ProductType | ProductMedia | Category | Collection | PageType + +"""_Service manifest as defined by Federation spec.""" +type _Service { + sdl: String +} diff --git a/apps/klaviyo/hooks/theme-synchronizer.tsx b/apps/klaviyo/hooks/theme-synchronizer.tsx new file mode 100644 index 0000000..7e5ce17 --- /dev/null +++ b/apps/klaviyo/hooks/theme-synchronizer.tsx @@ -0,0 +1,33 @@ +import { useAppBridge } from "@saleor/app-sdk/app-bridge"; +import { useTheme } from "@saleor/macaw-ui"; +import { memo, useEffect } from "react"; + +/** + * Macaw-ui stores its theme mode in memory and local storage. To synchronize App with Dashboard, + * Macaw must be informed about this change from AppBridge. + * + * If you are not using Macaw, you can remove this. + */ +function _ThemeSynchronizer() { + const { appBridgeState } = useAppBridge(); + const { setTheme, themeType } = useTheme(); + + useEffect(() => { + if (!setTheme || !appBridgeState?.theme) { + return; + } + + if (themeType !== appBridgeState?.theme) { + setTheme(appBridgeState.theme); + /** + * Hack to fix macaw, which is going into infinite loop on light mode (probably de-sync local storage with react state) + * TODO Fix me when Macaw 2.0 is shipped + */ + window.localStorage.setItem("macaw-ui-theme", appBridgeState.theme); + } + }, [appBridgeState?.theme, setTheme, themeType]); + + return null; +} + +export const ThemeSynchronizer = memo(_ThemeSynchronizer); diff --git a/apps/klaviyo/hooks/useAppApi.ts b/apps/klaviyo/hooks/useAppApi.ts new file mode 100644 index 0000000..7944ac3 --- /dev/null +++ b/apps/klaviyo/hooks/useAppApi.ts @@ -0,0 +1,64 @@ +import { useAppBridge } from "@saleor/app-sdk/app-bridge"; +import { SALEOR_API_URL_HEADER, SALEOR_AUTHORIZATION_BEARER_HEADER } from "@saleor/app-sdk/const"; +import { useEffect, useState } from "react"; + +type Options = Record; + +interface UseFetchProps { + url: string; + options?: Options; + skip?: boolean; +} + +// This hook is meant to be used mainly for internal API calls +const useAppApi = ({ url, options, skip }: UseFetchProps) => { + const { appBridgeState } = useAppBridge(); + + const [data, setData] = useState(); + const [error, setError] = useState(); + const [loading, setLoading] = useState(false); + + const fetchOptions: RequestInit = { + ...options, + headers: [ + [SALEOR_API_URL_HEADER, appBridgeState?.saleorApiUrl!], + [SALEOR_AUTHORIZATION_BEARER_HEADER, appBridgeState?.token!], + ], + }; + + useEffect(() => { + const fetchData = async () => { + setLoading(true); + setError(undefined); + + try { + const res = await fetch(url, fetchOptions); + + if (!res.ok) { + throw new Error(`Error status: ${res.status}`); + } + + const json = await res.json(); + setData(json); + } catch (e) { + setError(e as unknown); + } finally { + setLoading(false); + } + }; + + if (appBridgeState?.ready && !skip) { + fetchData(); + } + + return () => { + setLoading(false); + setError(undefined); + setData(undefined); + }; + }, [url, options, skip]); + + return { data, error, loading }; +}; + +export default useAppApi; diff --git a/apps/klaviyo/lib/graphql.ts b/apps/klaviyo/lib/graphql.ts new file mode 100644 index 0000000..1448c8a --- /dev/null +++ b/apps/klaviyo/lib/graphql.ts @@ -0,0 +1,48 @@ +import { AuthConfig, authExchange } from "@urql/exchange-auth"; +import { + cacheExchange, + createClient as urqlCreateClient, + dedupExchange, + fetchExchange, +} from "urql"; + +interface IAuthState { + token: string; +} + +export const createClient = (url: string, getAuth: AuthConfig["getAuth"]) => + urqlCreateClient({ + url, + exchanges: [ + dedupExchange, + cacheExchange, + authExchange({ + addAuthToOperation: ({ authState, operation }) => { + if (!authState || !authState?.token) { + return operation; + } + + const fetchOptions = + typeof operation.context.fetchOptions === "function" + ? operation.context.fetchOptions() + : operation.context.fetchOptions || {}; + + return { + ...operation, + context: { + ...operation.context, + fetchOptions: { + ...fetchOptions, + headers: { + ...fetchOptions.headers, + "Authorization-Bearer": authState.token, + }, + }, + }, + }; + }, + getAuth, + }), + fetchExchange, + ], + }); diff --git a/apps/klaviyo/lib/klaviyo.ts b/apps/klaviyo/lib/klaviyo.ts new file mode 100644 index 0000000..03d8651 --- /dev/null +++ b/apps/klaviyo/lib/klaviyo.ts @@ -0,0 +1,31 @@ +interface EmailServiceProvider { + send: (event: string, recipient: string, context: any) => Promise; +} + +const Klaviyo = (token: string): EmailServiceProvider => ({ + send: async (event, recipient, context) => { + const formParams = new URLSearchParams(); + formParams.append( + "data", + JSON.stringify({ + token, + event, + customer_properties: { $email: recipient }, + properties: context, + }) + ); + + console.debug("Klaviyo request: https://a.klaviyo.com/api/track, ", formParams); + + const response = await fetch("https://a.klaviyo.com/api/track", { + method: "POST", + body: formParams, + }); + + console.debug("Klaviyo response: ", response.status, ", ", await response.text()); + + return response; + }, +}); + +export default Klaviyo; diff --git a/apps/klaviyo/lib/metadata.ts b/apps/klaviyo/lib/metadata.ts new file mode 100644 index 0000000..491ffa3 --- /dev/null +++ b/apps/klaviyo/lib/metadata.ts @@ -0,0 +1,61 @@ +import { EncryptedMetadataManager, MetadataEntry } from "@saleor/app-sdk/settings-manager"; +import { Client } from "urql"; + +import { + FetchAppDetailsDocument, + FetchAppDetailsQuery, + UpdateAppMetadataDocument, +} from "../generated/graphql"; +import { settingsManagerSecretKey } from "../saleor-app"; + +// Function is using urql graphql client to fetch all available metadata. +// Before returning query result, we are transforming response to list of objects with key and value fields +// which can be used by the manager. +// Result of this query is cached by the manager. +export async function fetchAllMetadata(client: Client): Promise { + const { error, data } = await client + .query(FetchAppDetailsDocument, {}) + .toPromise(); + + if (error) { + console.debug("Error during fetching the metadata: ", error); + return []; + } + + return data?.app?.privateMetadata.map((md) => ({ key: md.key, value: md.value })) || []; +} + +// Mutate function takes urql client and metadata entries, and construct mutation to the API. +// Before data are send, additional query for required App ID is made. +// The manager will use updated entries returned by this mutation to update it's cache. +export async function mutateMetadata(client: Client, appId: string, metadata: MetadataEntry[]) { + const { error: mutationError, data: mutationData } = await client + .mutation(UpdateAppMetadataDocument, { + id: appId, + input: metadata, + }) + .toPromise(); + + if (mutationError) { + console.debug("Mutation error: ", mutationError); + throw new Error(`Mutation error: ${mutationError.message}`); + } + + return ( + mutationData?.updatePrivateMetadata?.item?.privateMetadata.map((md) => ({ + key: md.key, + value: md.value, + })) || [] + ); +} + +export const createSettingsManager = (client: Client, appId: string) => + // EncryptedMetadataManager gives you interface to manipulate metadata and cache values in memory. + // We recommend it for production, because all values are encrypted. + // If your use case require plain text values, you can use MetadataManager. + new EncryptedMetadataManager({ + // Secret key should be randomly created for production and set as environment variable + encryptionKey: settingsManagerSecretKey, + fetchMetadata: () => fetchAllMetadata(client), + mutateMetadata: (metadata) => mutateMetadata(client, appId, metadata), + }); diff --git a/apps/klaviyo/lib/ui/app-columns-layout.tsx b/apps/klaviyo/lib/ui/app-columns-layout.tsx new file mode 100644 index 0000000..167cced --- /dev/null +++ b/apps/klaviyo/lib/ui/app-columns-layout.tsx @@ -0,0 +1,21 @@ +import { makeStyles } from "@saleor/macaw-ui"; +import { PropsWithChildren } from "react"; + +const useStyles = makeStyles({ + root: { + display: "grid", + gridTemplateColumns: "280px auto 280px", + alignItems: "start", + gap: 32, + maxWidth: 1180, + margin: "0 auto", + }, +}); + +type Props = PropsWithChildren<{}>; + +export function AppColumnsLayout({ children }: Props) { + const styles = useStyles(); + + return
{children}
; +} diff --git a/apps/klaviyo/lib/ui/app-icon.tsx b/apps/klaviyo/lib/ui/app-icon.tsx new file mode 100644 index 0000000..bb87b1c --- /dev/null +++ b/apps/klaviyo/lib/ui/app-icon.tsx @@ -0,0 +1,28 @@ +import { Typography } from "@material-ui/core"; +import { makeStyles } from "@saleor/macaw-ui"; + +const useStyles = makeStyles({ + appIconContainer: { + background: "rgb(58, 86, 199)", + display: "flex", + flexDirection: "column", + justifyContent: "center", + alignItems: "center", + borderRadius: "50%", + color: "#fff", + width: 50, + height: 50, + }, +}); + +export function AppIcon() { + const styles = useStyles(); + + return ( +
+
+ S +
+
+ ); +} diff --git a/apps/klaviyo/lib/ui/main-bar.tsx b/apps/klaviyo/lib/ui/main-bar.tsx new file mode 100644 index 0000000..33b8cae --- /dev/null +++ b/apps/klaviyo/lib/ui/main-bar.tsx @@ -0,0 +1,67 @@ +import { Paper, PaperProps } from "@material-ui/core"; +import { makeStyles } from "@saleor/macaw-ui"; +import clsx from "clsx"; +import { ReactNode } from "react"; + +const useStyles = makeStyles((theme) => ({ + root: { + height: 96, + padding: "0 32px", + display: "flex", + alignItems: "center", + justifyContent: "space-between", + }, + leftColumn: { + marginRight: "auto", + }, + rightColumn: {}, + iconColumn: { + marginRight: 24, + }, + appName: { fontSize: 24, margin: 0 }, + appAuthor: { + fontSize: 12, + textTransform: "uppercase", + color: theme.palette.text.secondary, + fontWeight: 500, + margin: 0, + }, + bottomMargin: { + marginBottom: 32, + }, +})); + +type Props = { + name: string; + author: string; + rightColumnContent?: ReactNode; + icon?: ReactNode; + bottomMargin?: boolean; +} & PaperProps; + +export function MainBar({ + name, + author, + rightColumnContent, + className, + icon, + bottomMargin, +}: Props) { + const styles = useStyles(); + + return ( + + {icon &&
{icon}
} +
+

{name}

+

{author}

+
+
{rightColumnContent}
+
+ ); +} diff --git a/apps/klaviyo/next-env.d.ts b/apps/klaviyo/next-env.d.ts new file mode 100644 index 0000000..4f11a03 --- /dev/null +++ b/apps/klaviyo/next-env.d.ts @@ -0,0 +1,5 @@ +/// +/// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/basic-features/typescript for more information. diff --git a/apps/klaviyo/next.config.js b/apps/klaviyo/next.config.js new file mode 100644 index 0000000..12511ad --- /dev/null +++ b/apps/klaviyo/next.config.js @@ -0,0 +1,43 @@ +/** @type {import('next').NextConfig} */ + +const { withSentryConfig } = require("@sentry/nextjs"); + +const isSentryPropertiesInEnvironment = + process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG; + +/** @type {import('next').NextConfig} */ +const nextConfig = { + reactStrictMode: true, + eslint: { + ignoreDuringBuilds: false, + }, + sentry: { + disableServerWebpackPlugin: !isSentryPropertiesInEnvironment, + disableClientWebpackPlugin: !isSentryPropertiesInEnvironment, + }, + redirects() { + return [ + { + source: "/", + destination: "/configuration", + permanent: false, + }, + ]; + }, +}; + +const sentryWebpackPluginOptions = { + // Additional config options for the Sentry Webpack plugin. Keep in mind that + // the following options are set automatically, and overriding them is not + // recommended: + // release, url, org, project, authToken, configFile, stripPrefix, + // urlPrefix, include, ignore + + silent: true, // Suppresses all logs + // For all available options, see: + // https://github.com/getsentry/sentry-webpack-plugin#options. +}; + +// Make sure adding Sentry options is the last code to run before exporting, to +// ensure that your source maps include changes from all other Webpack plugins +module.exports = withSentryConfig(nextConfig, sentryWebpackPluginOptions); diff --git a/apps/klaviyo/package.json b/apps/klaviyo/package.json new file mode 100644 index 0000000..a973e64 --- /dev/null +++ b/apps/klaviyo/package.json @@ -0,0 +1,57 @@ +{ + "name": "saleor-app-klaviyo", + "version": "0.1.0", + "private": true, + "packageManager": "pnpm@7.18.1", + "scripts": { + "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", + "build": "pnpm generate && next build", + "start": "next start", + "lint": "pnpm generate && prettier --loglevel warn --write . && eslint --fix .", + "fetch-schema": "curl https://raw.githubusercontent.com/saleor/saleor/${npm_package_saleor_schemaVersion}/saleor/graphql/schema.graphql > graphql/schema.graphql", + "generate": "graphql-codegen" + }, + "saleor": { + "schemaVersion": "3.10" + }, + "dependencies": { + "@material-ui/core": "^4.12.4", + "@material-ui/icons": "^4.11.3", + "@material-ui/lab": "4.0.0-alpha.61", + "@saleor/app-sdk": "~0.27.1", + "@saleor/macaw-ui": "^0.7.2", + "@sentry/nextjs": "^7.31.0", + "@urql/exchange-auth": "^1.0.0", + "clsx": "^1.2.1", + "graphql": "^16.6.0", + "graphql-tag": "^2.12.6", + "next": "12.3.1", + "node-fetch": "^3.2.6", + "react": "18.2.0", + "react-dom": "18.2.0", + "react-helmet": "^6.1.0", + "urql": "^3.0.3" + }, + "devDependencies": { + "@graphql-codegen/cli": "2.7.0", + "@graphql-codegen/introspection": "2.1.1", + "@graphql-codegen/typed-document-node": "^2.2.14", + "@graphql-codegen/typescript": "2.6.0", + "@graphql-codegen/typescript-operations": "2.4.3", + "@graphql-codegen/typescript-urql": "^3.5.13", + "@graphql-codegen/urql-introspection": "2.1.1", + "@graphql-typed-document-node/core": "^3.1.1", + "@types/node": "18.0.1", + "@types/react": "18.0.14", + "@types/react-dom": "18.0.6", + "autoprefixer": "^10.4.7", + "clean-publish": "^4.0.1", + "eslint": "8.15.0", + "husky": "^8.0.1", + "postcss": "^8.4.14", + "prettier": "^2.7.1", + "pretty-quick": "^3.1.3", + "typescript": "4.9.5", + "eslint-config-saleor": "workspace:*" + } +} diff --git a/apps/klaviyo/pages/_app.tsx b/apps/klaviyo/pages/_app.tsx new file mode 100644 index 0000000..259c1f8 --- /dev/null +++ b/apps/klaviyo/pages/_app.tsx @@ -0,0 +1,57 @@ +import "../styles/globals.css"; + +import { Theme } from "@material-ui/core/styles"; +import { AppBridge, AppBridgeProvider } from "@saleor/app-sdk/app-bridge"; +import { ThemeProvider as MacawUIThemeProvider } from "@saleor/macaw-ui"; +import React, { PropsWithChildren, useEffect } from "react"; + +import { ThemeSynchronizer } from "../hooks/theme-synchronizer"; +import { AppLayoutProps } from "../types"; + +const themeOverrides: Partial = { + overrides: { + MuiTableCell: { + body: { + paddingBottom: 8, + paddingTop: 8, + }, + root: { + height: 56, + paddingBottom: 4, + paddingTop: 4, + }, + }, + }, +}; + +/** + * Ensure instance is a singleton, so React 18 dev mode doesn't render it twice + */ +const appBridgeInstance = typeof window !== "undefined" ? new AppBridge() : undefined; + +// That's a hack required by Macaw-UI incompatibility with React@18 +const ThemeProvider = MacawUIThemeProvider as React.FC< + PropsWithChildren<{ overrides: Partial; ssr: boolean }> +>; + +function SaleorApp({ Component, pageProps }: AppLayoutProps) { + const getLayout = Component.getLayout ?? ((page) => page); + + useEffect(() => { + const jssStyles = document.querySelector("#jss-server-side"); + if (jssStyles) { + jssStyles?.parentElement?.removeChild(jssStyles); + } + }, []); + + return ( + + + + {getLayout()} + + + ); +} + +export default SaleorApp; diff --git a/apps/klaviyo/pages/_document.tsx b/apps/klaviyo/pages/_document.tsx new file mode 100644 index 0000000..82f6b4d --- /dev/null +++ b/apps/klaviyo/pages/_document.tsx @@ -0,0 +1,19 @@ +import { Head, Html, Main, NextScript } from "next/document"; + +export default function Document() { + return ( + + + + + + +
+ + + + ); +} diff --git a/apps/klaviyo/pages/_error.tsx b/apps/klaviyo/pages/_error.tsx new file mode 100644 index 0000000..d431a7f --- /dev/null +++ b/apps/klaviyo/pages/_error.tsx @@ -0,0 +1,75 @@ +import * as Sentry from "@sentry/nextjs"; +import { NextPageContext } from "next"; +import NextErrorComponent, { ErrorProps } from "next/error"; + +interface ErrorPageProps { + err: Error; + statusCode: number; + hasGetInitialPropsRun: boolean; +} + +interface AppErrorProps extends ErrorProps { + err?: Error; + hasGetInitialPropsRun?: boolean; +} + +function MyError({ statusCode, hasGetInitialPropsRun, err }: ErrorPageProps) { + if (!hasGetInitialPropsRun && err) { + // getInitialProps is not called when an exception is thrown + // at the top level of a module while it is being loaded. + // As a workaround, we pass err via _app.js so it can be captured + // Read more: https://github.com/vercel/next.js/issues/8592. + Sentry.captureException(err); + // Flushing is not required in this case as it only happens on the client + } + + return ; +} + +MyError.getInitialProps = async (context: NextPageContext) => { + const errorInitialProps: AppErrorProps = await NextErrorComponent.getInitialProps(context); + + const { res, err, asPath } = context; + + // Workaround for https://github.com/vercel/next.js/issues/8592, mark when + // getInitialProps has run + errorInitialProps.hasGetInitialPropsRun = true; + + // Returning early because we don't want to log 404 errors to Sentry. + if (res?.statusCode === 404) { + return errorInitialProps; + } + + // Running on the server, the response object (`res`) is available. + // + // Next.js will pass an err on the server if a page's data fetching methods + // threw or returned a Promise that rejected + // + // Running on the client (browser), Next.js will provide an err if: + // + // - a page's `getInitialProps` threw or returned a Promise that rejected + // - an exception was thrown somewhere in the React lifecycle (render, + // componentDidMount, etc) that was caught by Next.js's React Error + // Boundary. Read more about what types of exceptions are caught by Error + // Boundaries: https://reactjs.org/docs/error-boundaries.html + + if (err) { + Sentry.captureException(err); + + // Flushing before returning is necessary if deploying to Vercel, see + // https://vercel.com/docs/platform/limits#streaming-responses + await Sentry.flush(2000); + + return errorInitialProps; + } + + // If this point is reached, getInitialProps was called without any + // information about what the error might be. This is unexpected and may + // indicate a bug introduced in Next.js, so record it in Sentry + Sentry.captureException(new Error(`_error.js getInitialProps missing data at path: ${asPath}`)); + await Sentry.flush(2000); + + return errorInitialProps; +}; + +export default MyError; diff --git a/apps/klaviyo/pages/api/configuration.ts b/apps/klaviyo/pages/api/configuration.ts new file mode 100644 index 0000000..27fa4ff --- /dev/null +++ b/apps/klaviyo/pages/api/configuration.ts @@ -0,0 +1,72 @@ +import { createProtectedHandler, NextProtectedApiHandler } from "@saleor/app-sdk/handlers/next"; +import { EncryptedMetadataManager } from "@saleor/app-sdk/settings-manager"; + +import { createClient } from "../../lib/graphql"; +import { createSettingsManager } from "../../lib/metadata"; +import { saleorApp } from "../../saleor-app"; + +type ConfigurationKeysType = + | "PUBLIC_TOKEN" + | "CUSTOMER_CREATED_METRIC" + | "FULFILLMENT_CREATED_METRIC" + | "ORDER_CREATED_METRIC" + | "ORDER_FULLY_PAID_METRIC"; + +interface PostRequestBody { + data: { + key: ConfigurationKeysType; + value: string; + }[]; +} + +const getAppSettings = async (settingsManager: EncryptedMetadataManager) => [ + { + key: "CUSTOMER_CREATED_METRIC", + value: (await settingsManager.get("CUSTOMER_CREATED_METRIC")) ?? "CUSTOMER_CREATED_METRIC", + }, + { + key: "FULFILLMENT_CREATED_METRIC", + value: + (await settingsManager.get("FULFILLMENT_CREATED_METRIC")) ?? "FULFILLMENT_CREATED_METRIC", + }, + { + key: "ORDER_CREATED_METRIC", + value: (await settingsManager.get("ORDER_CREATED_METRIC")) ?? "ORDER_CREATED_METRIC", + }, + { + key: "ORDER_FULLY_PAID_METRIC", + value: (await settingsManager.get("ORDER_FULLY_PAID_METRIC")) ?? "ORDER_FULLY_PAID_METRIC", + }, + { key: "PUBLIC_TOKEN", value: await settingsManager.get("PUBLIC_TOKEN") }, +]; + +const handler: NextProtectedApiHandler = async (request, res, ctx) => { + console.debug("Configuration handler called"); + + const { + authData: { token, saleorApiUrl, appId }, + } = ctx; + const client = createClient(saleorApiUrl, async () => Promise.resolve({ token })); + + const settings = createSettingsManager(client, appId); + + switch (request.method!) { + case "GET": + return res.json({ + success: true, + data: await getAppSettings(settings), + }); + case "POST": { + await settings.set((request.body as PostRequestBody).data); + + return res.json({ + success: true, + data: await getAppSettings(settings), + }); + } + default: + return res.status(405).end(); + } +}; + +export default createProtectedHandler(handler, saleorApp.apl, ["MANAGE_APPS"]); diff --git a/apps/klaviyo/pages/api/manifest.ts b/apps/klaviyo/pages/api/manifest.ts new file mode 100644 index 0000000..4793c8c --- /dev/null +++ b/apps/klaviyo/pages/api/manifest.ts @@ -0,0 +1,31 @@ +import { createManifestHandler } from "@saleor/app-sdk/handlers/next"; +import { AppManifest } from "@saleor/app-sdk/types"; + +import pkg from "../../package.json"; +import { customerCreatedWebhook } from "./webhooks/customer-created"; +import { fulfillmentCreatedWebhook } from "./webhooks/fulfillment-created"; +import { orderCreatedWebhook } from "./webhooks/order-created"; +import { orderFullyPaidWebhook } from "./webhooks/order-fully-paid"; + +const handler = createManifestHandler({ + async manifestFactory(context): Promise { + const { appBaseUrl } = context; + + return { + id: "saleor.app.klaviyo", + version: pkg.version, + name: pkg.name, + permissions: ["MANAGE_USERS", "MANAGE_ORDERS"], + appUrl: appBaseUrl, + tokenTargetUrl: `${appBaseUrl}/api/register`, + webhooks: [ + customerCreatedWebhook.getWebhookManifest(appBaseUrl), + fulfillmentCreatedWebhook.getWebhookManifest(appBaseUrl), + orderCreatedWebhook.getWebhookManifest(appBaseUrl), + orderFullyPaidWebhook.getWebhookManifest(appBaseUrl), + ], + }; + }, +}); + +export default handler; diff --git a/apps/klaviyo/pages/api/register.ts b/apps/klaviyo/pages/api/register.ts new file mode 100644 index 0000000..dd0cef2 --- /dev/null +++ b/apps/klaviyo/pages/api/register.ts @@ -0,0 +1,26 @@ +import { createAppRegisterHandler } from "@saleor/app-sdk/handlers/next"; + +import { saleorApp } from "../../saleor-app"; + +const allowedUrlsPattern = process.env.ALLOWED_DOMAIN_PATTERN; + +const handler = createAppRegisterHandler({ + apl: saleorApp.apl, + /** + * Prohibit installation from Saleors other than specified by the regex. + * Regex source is ENV so if ENV is not set, all installations will be allowed. + */ + allowedSaleorUrls: [ + (url) => { + if (allowedUrlsPattern) { + const regex = new RegExp(allowedUrlsPattern); + + return regex.test(url); + } + + return true; + }, + ], +}); + +export default handler; diff --git a/apps/klaviyo/pages/api/webhooks/customer-created.ts b/apps/klaviyo/pages/api/webhooks/customer-created.ts new file mode 100644 index 0000000..ef73145 --- /dev/null +++ b/apps/klaviyo/pages/api/webhooks/customer-created.ts @@ -0,0 +1,112 @@ +import { NextWebhookApiHandler, SaleorAsyncWebhook } from "@saleor/app-sdk/handlers/next"; +import { gql } from "urql"; + +import { + CustomerCreatedWebhookPayloadFragment, + UntypedCustomerCreatedDocument, +} from "../../../generated/graphql"; +import { createClient } from "../../../lib/graphql"; +import Klaviyo from "../../../lib/klaviyo"; +import { createSettingsManager } from "../../../lib/metadata"; +import { saleorApp } from "../../../saleor-app"; + +const CustomerCreatedWebhookPayload = gql` + fragment CustomerCreatedWebhookPayload on CustomerCreated { + user { + __typename + id + defaultShippingAddress { + ...AddressFragment + } + defaultBillingAddress { + ...AddressFragment + } + addresses { + ...AddressFragment + } + privateMetadata { + ...MetadataFragment + } + metadata { + ...MetadataFragment + } + email + firstName + lastName + isActive + dateJoined + languageCode + } + } +`; + +export const CustomerCreatedGraphqlSubscription = gql` + ${CustomerCreatedWebhookPayload} + subscription CustomerCreated { + event { + ...CustomerCreatedWebhookPayload + } + } +`; + +export const customerCreatedWebhook = new SaleorAsyncWebhook( + { + name: "Customer Created", + webhookPath: "api/webhooks/customer-created", + asyncEvent: "CUSTOMER_CREATED", + apl: saleorApp.apl, + subscriptionQueryAst: UntypedCustomerCreatedDocument, + } +); + +const handler: NextWebhookApiHandler = async ( + req, + res, + context +) => { + console.debug("customerCreatedWebhook handler called"); + + const { payload, authData } = context; + const { saleorApiUrl, token, appId } = authData; + const client = createClient(saleorApiUrl, async () => Promise.resolve({ token })); + const settings = createSettingsManager(client, appId); + + const klaviyoToken = await settings.get("PUBLIC_TOKEN"); + const klaviyoMetric = await settings.get("CUSTOMER_CREATED_METRIC"); + + if (!klaviyoToken || !klaviyoMetric) { + console.debug("Request rejected - app not configured"); + return res.status(400).json({ success: false, message: "App not configured." }); + } + + const userEmail = payload.user?.email; + + if (!userEmail) { + console.debug("Request rejected - missing user email"); + return res.status(400).json({ success: false, message: "No user email." }); + } + + const klaviyoClient = Klaviyo(klaviyoToken); + const klaviyoResponse = await klaviyoClient.send(klaviyoMetric, userEmail, payload); + + if (klaviyoResponse.status !== 200) { + const klaviyoMessage = ` Message: ${(await klaviyoResponse.json())?.message}.` || ""; + console.debug("Klaviyo returned error: ", klaviyoMessage); + + return res.status(500).json({ + success: false, + message: `Klaviyo API responded with status ${klaviyoResponse.status}.${klaviyoMessage}`, + }); + } + + console.debug("Webhook processed successfully"); + return res.status(200).json({ success: true, message: "Message sent!" }); +}; + +export default customerCreatedWebhook.createHandler(handler); + +export const config = { + api: { + bodyParser: false, + }, +}; diff --git a/apps/klaviyo/pages/api/webhooks/fulfillment-created.ts b/apps/klaviyo/pages/api/webhooks/fulfillment-created.ts new file mode 100644 index 0000000..f5df13f --- /dev/null +++ b/apps/klaviyo/pages/api/webhooks/fulfillment-created.ts @@ -0,0 +1,117 @@ +import { NextWebhookApiHandler, SaleorAsyncWebhook } from "@saleor/app-sdk/handlers/next"; +import { gql } from "urql"; + +import { + FulfillmentCreatedWebhookPayloadFragment, + UntypedFulfillmentCreatedDocument, +} from "../../../generated/graphql"; +import { createClient } from "../../../lib/graphql"; +import Klaviyo from "../../../lib/klaviyo"; +import { createSettingsManager } from "../../../lib/metadata"; +import { saleorApp } from "../../../saleor-app"; + +const FulfillmentCreatedWebhookPayload = gql` + fragment FulfillmentCreatedWebhookPayload on FulfillmentCreated { + fulfillment { + __typename + id + warehouse { + address { + ...AddressFragment + } + } + lines { + __typename + id + quantity + orderLine { + productName + variantName + productSku + productVariantId + unitPrice { + ...TaxedMoneyFragment + } + undiscountedUnitPrice { + ...TaxedMoneyFragment + } + totalPrice { + ...TaxedMoneyFragment + } + } + } + } + order { + ...OrderFragment + } + } +`; + +export const FulfillmentCreatedGraphqlSubscription = gql` + ${FulfillmentCreatedWebhookPayload} + subscription FulfillmentCreated { + event { + ...FulfillmentCreatedWebhookPayload + } + } +`; + +export const fulfillmentCreatedWebhook = + new SaleorAsyncWebhook({ + name: "Fulfillment Created", + webhookPath: "api/webhooks/fulfillment-created", + asyncEvent: "FULFILLMENT_CREATED", + apl: saleorApp.apl, + subscriptionQueryAst: UntypedFulfillmentCreatedDocument, + }); + +const handler: NextWebhookApiHandler = async ( + req, + res, + context +) => { + console.debug("fulfillmentCreatedWebhook handler called"); + + const { payload, authData } = context; + const { saleorApiUrl, token, appId } = authData; + const client = createClient(saleorApiUrl, async () => Promise.resolve({ token })); + const settings = createSettingsManager(client, appId); + + const klaviyoToken = await settings.get("PUBLIC_TOKEN"); + const klaviyoMetric = await settings.get("FULFILLMENT_CREATED_METRIC"); + + if (!klaviyoToken || !klaviyoMetric) { + return res.status(400).json({ success: false, message: "App not configured." }); + } + + const { userEmail } = payload.order || {}; + + if (!userEmail) { + console.debug("Request rejected - missing user email"); + return res.status(400).json({ success: false, message: "No user email." }); + } + + const klaviyoClient = Klaviyo(klaviyoToken); + const klaviyoResponse = await klaviyoClient.send(klaviyoMetric, userEmail, payload); + + if (klaviyoResponse.status !== 200) { + const klaviyoMessage = ` Message: ${(await klaviyoResponse.json())?.message}.` || ""; + console.debug("Klaviyo returned error: ", klaviyoMessage); + + return res.status(500).json({ + success: false, + message: `Klaviyo API responded with status ${klaviyoResponse.status}.${klaviyoMessage}`, + }); + } + + console.debug("Webhook processed successfully"); + return res.status(200).json({ success: true, message: "Message sent!" }); +}; + +export default fulfillmentCreatedWebhook.createHandler(handler); + +export const config = { + api: { + bodyParser: false, + }, +}; diff --git a/apps/klaviyo/pages/api/webhooks/order-created.ts b/apps/klaviyo/pages/api/webhooks/order-created.ts new file mode 100644 index 0000000..bae9d60 --- /dev/null +++ b/apps/klaviyo/pages/api/webhooks/order-created.ts @@ -0,0 +1,87 @@ +import { NextWebhookApiHandler, SaleorAsyncWebhook } from "@saleor/app-sdk/handlers/next"; +import { gql } from "urql"; + +import { + OrderCreatedWebhookPayloadFragment, + UntypedOrderCreatedDocument, +} from "../../../generated/graphql"; +import { createClient } from "../../../lib/graphql"; +import Klaviyo from "../../../lib/klaviyo"; +import { createSettingsManager } from "../../../lib/metadata"; +import { saleorApp } from "../../../saleor-app"; + +const OrderCreatedWebhookPayload = gql` + fragment OrderCreatedWebhookPayload on OrderCreated { + order { + ...OrderFragment + } + } +`; + +export const OrderCreatedGraphqlSubscription = gql` + ${OrderCreatedWebhookPayload} + subscription OrderCreated { + event { + ...OrderCreatedWebhookPayload + } + } +`; + +export const orderCreatedWebhook = new SaleorAsyncWebhook({ + name: "Order Created", + webhookPath: "api/webhooks/order-created", + asyncEvent: "ORDER_CREATED", + apl: saleorApp.apl, + subscriptionQueryAst: UntypedOrderCreatedDocument, +}); + +const handler: NextWebhookApiHandler = async ( + req, + res, + context +) => { + console.debug("orderCreatedWebhook handler called"); + + const { payload, authData } = context; + const { saleorApiUrl, token, appId } = authData; + const client = createClient(saleorApiUrl, async () => Promise.resolve({ token })); + const settings = createSettingsManager(client, appId); + + const klaviyoToken = await settings.get("PUBLIC_TOKEN"); + const klaviyoMetric = await settings.get("ORDER_CREATED_METRIC"); + + if (!klaviyoToken || !klaviyoMetric) { + console.debug("Request rejected - app not configured"); + return res.status(400).json({ success: false, message: "App not configured." }); + } + + const { userEmail } = payload.order || {}; + + if (!userEmail) { + console.debug("Request rejected - missing user email"); + return res.status(400).json({ success: false, message: "No user email." }); + } + + const klaviyoClient = Klaviyo(klaviyoToken); + const klaviyoResponse = await klaviyoClient.send(klaviyoMetric, userEmail, payload); + + if (klaviyoResponse.status !== 200) { + const klaviyoMessage = ` Message: ${(await klaviyoResponse.json())?.message}.` || ""; + console.debug("Klaviyo returned error: ", klaviyoMessage); + return res.status(500).json({ + success: false, + message: `Klaviyo API responded with status ${klaviyoResponse.status}.${klaviyoMessage}`, + }); + } + + console.debug("Webhook processed successfully"); + return res.status(200).json({ success: true, message: "Message sent!" }); +}; + +export default orderCreatedWebhook.createHandler(handler); + +export const config = { + api: { + bodyParser: false, + }, +}; diff --git a/apps/klaviyo/pages/api/webhooks/order-fully-paid.ts b/apps/klaviyo/pages/api/webhooks/order-fully-paid.ts new file mode 100644 index 0000000..4e4b726 --- /dev/null +++ b/apps/klaviyo/pages/api/webhooks/order-fully-paid.ts @@ -0,0 +1,88 @@ +import { NextWebhookApiHandler, SaleorAsyncWebhook } from "@saleor/app-sdk/handlers/next"; +import { gql } from "urql"; + +import { + OrderFullyPaidWebhookPayloadFragment, + UntypedOrderFullyPaidDocument, +} from "../../../generated/graphql"; +import { createClient } from "../../../lib/graphql"; +import Klaviyo from "../../../lib/klaviyo"; +import { createSettingsManager } from "../../../lib/metadata"; +import { saleorApp } from "../../../saleor-app"; + +const OrderFullyPaidWebhookPayload = gql` + fragment OrderFullyPaidWebhookPayload on OrderFullyPaid { + order { + ...OrderFragment + } + } +`; + +export const OrderFullyPaidGraphqlSubscription = gql` + ${OrderFullyPaidWebhookPayload} + subscription OrderFullyPaid { + event { + ...OrderFullyPaidWebhookPayload + } + } +`; + +export const orderFullyPaidWebhook = new SaleorAsyncWebhook({ + name: "Order Fully Paid", + webhookPath: "api/webhooks/order-fully-paid", + asyncEvent: "ORDER_FULLY_PAID", + apl: saleorApp.apl, + subscriptionQueryAst: UntypedOrderFullyPaidDocument, +}); + +const handler: NextWebhookApiHandler = async ( + req, + res, + context +) => { + console.debug("orderFullyPaidWebhook handler called"); + + const { payload, authData } = context; + const { saleorApiUrl, token, appId } = authData; + const client = createClient(saleorApiUrl, async () => Promise.resolve({ token })); + const settings = createSettingsManager(client, appId); + + const klaviyoToken = await settings.get("PUBLIC_TOKEN"); + const klaviyoMetric = await settings.get("ORDER_FULLY_PAID_METRIC"); + + if (!klaviyoToken || !klaviyoMetric) { + console.debug("Request rejected - app not configured"); + return res.status(400).json({ success: false, message: "App not configured." }); + } + + const { userEmail } = payload.order || {}; + + if (!userEmail) { + console.debug("Request rejected - missing user email"); + return res.status(400).json({ success: false, message: "No user email." }); + } + + const klaviyoClient = Klaviyo(klaviyoToken); + const klaviyoResponse = await klaviyoClient.send(klaviyoMetric, userEmail, payload); + + if (klaviyoResponse.status !== 200) { + const klaviyoMessage = ` Message: ${(await klaviyoResponse.json())?.message}.` || ""; + console.debug("Klaviyo returned error: ", klaviyoMessage); + + return res.status(500).json({ + success: false, + message: `Klaviyo API responded with status ${klaviyoResponse.status}.${klaviyoMessage}`, + }); + } + + console.debug("Webhook processed successfully"); + return res.status(200).json({ success: true, message: "Message sent!" }); +}; + +export default orderFullyPaidWebhook.createHandler(handler); + +export const config = { + api: { + bodyParser: false, + }, +}; diff --git a/apps/klaviyo/pages/configuration.tsx b/apps/klaviyo/pages/configuration.tsx new file mode 100644 index 0000000..5f773b2 --- /dev/null +++ b/apps/klaviyo/pages/configuration.tsx @@ -0,0 +1,261 @@ +import { Link, List, ListItem, Paper, PaperProps, TextField, Typography } from "@material-ui/core"; +import Skeleton from "@material-ui/lab/Skeleton"; +import { useAppBridge, withAuthorization } from "@saleor/app-sdk/app-bridge"; +import { SALEOR_API_URL_HEADER, SALEOR_AUTHORIZATION_BEARER_HEADER } from "@saleor/app-sdk/const"; +import { ConfirmButton, ConfirmButtonTransitionState, makeStyles } from "@saleor/macaw-ui"; +import { ChangeEvent, SyntheticEvent, useEffect, useState } from "react"; + +import AccessWarning from "../components/AccessWarning/AccessWarning"; +import useAppApi from "../hooks/useAppApi"; +import { AppColumnsLayout } from "../lib/ui/app-columns-layout"; +import { AppIcon } from "../lib/ui/app-icon"; +import { MainBar } from "../lib/ui/main-bar"; +import useDashboardNotifier from "../utils/useDashboardNotifier"; + +interface ConfigurationField { + key: string; + value: string; +} + +const useStyles = makeStyles((theme) => ({ + confirmButton: { + marginLeft: "auto", + }, + fieldContainer: { + marginBottom: theme.spacing(2), + }, +})); + +function Section(props: PaperProps) { + return ; +} + +function Instructions() { + const { appBridge } = useAppBridge(); + + const openExternalUrl = (url: string) => { + // eslint-disable-next-line + appBridge?.dispatch({ + type: "redirect", + payload: { + newContext: true, + actionId: "redirect_from_klaviyo_app", + to: url, + }, + }); + }; + + return ( +
+ + How to set up + + + App will send events as Klaviyo metrics each time Saleor Event occurs. + + + When first metric is sent, it should be available in Klaviyo to build on top of. + + + Metric name can be customized, PUBLIC_TOKEN must be provided to enable the app. + + Useful links + + + { + e.preventDefault(); + + openExternalUrl("https://github.com/saleor/saleor-app-klaviyo"); + }} + href="https://github.com/saleor/saleor-app-klaviyo" + > + Visit repository & readme + + + + How to configure + + + { + e.preventDefault(); + + openExternalUrl( + "https://help.klaviyo.com/hc/en-us/articles/115005062267-How-to-Manage-Your-Account-s-API-Keys" + ); + }} + href="https://help.klaviyo.com/hc/en-us/articles/115005062267-How-to-Manage-Your-Account-s-API-Keys" + > + Read about public tokens + + + + { + e.preventDefault(); + + openExternalUrl("https://www.klaviyo.com/account#api-keys-tab"); + }} + href="https://www.klaviyo.com/account#api-keys-tab" + > + Get public token here + + + + { + e.preventDefault(); + + openExternalUrl( + "https://help.klaviyo.com/hc/en-us/articles/115005076787-Guide-to-Managing-Your-Metrics" + ); + }} + href="https://help.klaviyo.com/hc/en-us/articles/115005076787-Guide-to-Managing-Your-Metrics" + > + Read about metrics + + + +
+ ); +} + +function Configuration() { + const { appBridgeState } = useAppBridge(); + const classes = useStyles(); + const [notify] = useDashboardNotifier(); + const [configuration, setConfiguration] = useState(); + const [transitionState, setTransitionState] = useState("default"); + + const { data: configurationData, error } = useAppApi({ + url: "/api/configuration", + }); + + useEffect(() => { + if (configurationData && !configuration) { + setConfiguration(configurationData.data); + } + }, [configurationData, configuration]); + + /** + * TODO Rewrite to tRPC + */ + const handleSubmit = (event: SyntheticEvent) => { + event.preventDefault(); + setTransitionState("loading"); + + fetch("/api/configuration", { + method: "POST", + headers: [ + ["content-type", "application/json"], + [SALEOR_API_URL_HEADER, appBridgeState?.saleorApiUrl!], + [SALEOR_AUTHORIZATION_BEARER_HEADER, appBridgeState?.token!], + ], + body: JSON.stringify({ data: configuration }), + }) + .then(async (response) => { + if (response.status !== 200) { + throw new Error("Error saving configuration data"); + } + setTransitionState("success"); + + await notify({ + status: "success", + title: "Success", + text: "Configuration updated successfully", + }); + }) + .catch(async () => { + setTransitionState("error"); + await notify({ + status: "error", + title: + "Configuration update failed. Ensure fields are filled correctly and you have MANAGE_APPS permission", + }); + }); + }; + + const onChange = (event: ChangeEvent) => { + const { name, value } = event.target as HTMLInputElement; + setConfiguration((prev) => + prev!.map((prevField) => (prevField.key === name ? { ...prevField, value } : prevField)) + ); + }; + + if (error) { + console.error("Can't establish connection with the App API: ", error); + return ( +
+

⚠️ Can't connect with the App API

+ You may see this error because: +
    +
  • Internet connection has been lost
  • +
  • + Application installation process is still in progress. If you use Vercel, you may need + to wait for redeployment of the app - try again in a minute. +
  • +
  • + Application is misconfigured. If you would like to know more how auth configuration is + kept,{" "} + + go to APL documentation + + . +
  • +
+
+ ); + } + + if (configuration === undefined) { + return ; + } + + return ( +
+ } + bottomMargin + name="Saleor Klaviyo App" + author="By Saleor Commerce" + /> + +
+
+
+ {configuration!.map(({ key, value }) => ( +
+ +
+ ))} +
+ +
+
+
+ + +
+ ); +} + +export default withAuthorization({ + notIframe: , + unmounted: null, + noDashboardToken: , + dashboardTokenInvalid: , +})(Configuration); diff --git a/apps/klaviyo/pnpm-lock.yaml b/apps/klaviyo/pnpm-lock.yaml new file mode 100644 index 0000000..52f0e69 --- /dev/null +++ b/apps/klaviyo/pnpm-lock.yaml @@ -0,0 +1,9046 @@ +lockfileVersion: 5.4 + +specifiers: + "@graphql-codegen/cli": 2.7.0 + "@graphql-codegen/introspection": 2.1.1 + "@graphql-codegen/typed-document-node": ^2.2.14 + "@graphql-codegen/typescript": 2.6.0 + "@graphql-codegen/typescript-operations": 2.4.3 + "@graphql-codegen/typescript-urql": ^3.5.13 + "@graphql-codegen/urql-introspection": 2.1.1 + "@graphql-typed-document-node/core": ^3.1.1 + "@material-ui/core": ^4.12.4 + "@material-ui/icons": ^4.11.3 + "@material-ui/lab": 4.0.0-alpha.61 + "@saleor/app-sdk": ~0.27.1 + "@saleor/macaw-ui": ^0.7.2 + "@sentry/nextjs": ^7.31.0 + "@types/node": 18.0.1 + "@types/react": 18.0.14 + "@types/react-dom": 18.0.6 + "@typescript-eslint/eslint-plugin": ^5.17.0 + "@typescript-eslint/parser": ^5.30.7 + "@urql/exchange-auth": ^0.1.7 + autoprefixer: ^10.4.7 + clean-publish: ^4.0.1 + clsx: ^1.2.1 + eslint: 8.15.0 + eslint-config-airbnb: ^19.0.4 + eslint-config-prettier: ^8.5.0 + eslint-import-resolver-typescript: ^3.3.0 + eslint-plugin-import: ^2.26.0 + eslint-plugin-jsx-a11y: ^6.6.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 + eslint-plugin-simple-import-sort: ^7.0.0 + graphql: ^16.5.0 + graphql-tag: ^2.12.6 + husky: ^8.0.1 + next: 12.3.1 + node-fetch: ^3.2.6 + postcss: ^8.4.14 + prettier: ^2.7.1 + pretty-quick: ^3.1.3 + react: 18.2.0 + react-dom: 18.2.0 + react-helmet: ^6.1.0 + typescript: 4.7.4 + urql: ^2.2.2 + +dependencies: + "@material-ui/core": 4.12.4_twyhzqqpkwvvgrmyeapdo6i4my + "@material-ui/icons": 4.11.3_xfab57qepcdrxdxif4xlv2kdgm + "@material-ui/lab": 4.0.0-alpha.61_xfab57qepcdrxdxif4xlv2kdgm + "@saleor/app-sdk": 0.27.1_azq6kxkn3od7qdylwkyksrwopy + "@saleor/macaw-ui": 0.7.2_5j6zkq4mzir5org5dcu2pr43hm + "@sentry/nextjs": 7.31.1_next@12.3.1+react@18.2.0 + "@urql/exchange-auth": 0.1.7_graphql@16.5.0 + clsx: 1.2.1 + graphql: 16.5.0 + graphql-tag: 2.12.6_graphql@16.5.0 + next: 12.3.1_biqbaboplfbrettd7655fr4n2y + node-fetch: 3.2.10 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-helmet: 6.1.0_react@18.2.0 + urql: 2.2.3_aez2jvt6lsvokp3l4ousdbdxf4 + +devDependencies: + "@graphql-codegen/cli": 2.7.0_kqlgh3qfz56lumowe57ujqqtt4 + "@graphql-codegen/introspection": 2.1.1_graphql@16.5.0 + "@graphql-codegen/typed-document-node": 2.3.3_graphql@16.5.0 + "@graphql-codegen/typescript": 2.6.0_graphql@16.5.0 + "@graphql-codegen/typescript-operations": 2.4.3_graphql@16.5.0 + "@graphql-codegen/typescript-urql": 3.6.4_ubrtutz2urcxyhwqr2zvlqjzha + "@graphql-codegen/urql-introspection": 2.1.1_graphql@16.5.0 + "@graphql-typed-document-node/core": 3.1.1_graphql@16.5.0 + "@types/node": 18.0.1 + "@types/react": 18.0.14 + "@types/react-dom": 18.0.6 + "@typescript-eslint/eslint-plugin": 5.33.0_4jeddhivx3y2sgb42mta5efkci + "@typescript-eslint/parser": 5.33.0_4hx5bygx4rxgd7xwyndf6ymwce + autoprefixer: 10.4.8_postcss@8.4.16 + clean-publish: 4.0.1 + eslint: 8.15.0 + eslint-config-airbnb: 19.0.4_iujtx6kjuhqd62xy5hvrdwitn4 + eslint-config-prettier: 8.5.0_eslint@8.15.0 + eslint-import-resolver-typescript: 3.4.0_gwd37gqv3vjv3xlpl7ju3ag2qu + eslint-plugin-import: 2.26.0_rlu3ikeqoagajb37jwrqpkinza + eslint-plugin-jsx-a11y: 6.6.1_eslint@8.15.0 + eslint-plugin-react: 7.30.1_eslint@8.15.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.15.0 + eslint-plugin-simple-import-sort: 7.0.0_eslint@8.15.0 + husky: 8.0.1 + postcss: 8.4.16 + prettier: 2.7.1 + pretty-quick: 3.1.3_prettier@2.7.1 + typescript: 4.7.4 + +packages: + /@ampproject/remapping/2.2.0: + resolution: + { + integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==, + } + engines: { node: ">=6.0.0" } + dependencies: + "@jridgewell/gen-mapping": 0.1.1 + "@jridgewell/trace-mapping": 0.3.14 + dev: true + + /@ardatan/relay-compiler/12.0.0_graphql@16.5.0: + resolution: + { + integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==, + } + hasBin: true + peerDependencies: + graphql: "*" + dependencies: + "@babel/core": 7.18.10 + "@babel/generator": 7.18.12 + "@babel/parser": 7.18.11 + "@babel/runtime": 7.18.9 + "@babel/traverse": 7.18.11 + "@babel/types": 7.18.10 + babel-preset-fbjs: 3.4.0_@babel+core@7.18.10 + chalk: 4.1.2 + fb-watchman: 2.0.1 + fbjs: 3.0.4 + glob: 7.2.3 + graphql: 16.5.0 + immutable: 3.7.6 + invariant: 2.2.4 + nullthrows: 1.1.1 + relay-runtime: 12.0.0 + signedsource: 1.0.0 + yargs: 15.4.1 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /@ardatan/sync-fetch/0.0.1: + resolution: + { + integrity: sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==, + } + engines: { node: ">=14" } + dependencies: + node-fetch: 2.6.7 + transitivePeerDependencies: + - encoding + dev: true + + /@babel/code-frame/7.18.6: + resolution: + { + integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/highlight": 7.18.6 + dev: true + + /@babel/compat-data/7.18.8: + resolution: + { + integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==, + } + engines: { node: ">=6.9.0" } + dev: true + + /@babel/core/7.18.10: + resolution: + { + integrity: sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@ampproject/remapping": 2.2.0 + "@babel/code-frame": 7.18.6 + "@babel/generator": 7.18.12 + "@babel/helper-compilation-targets": 7.18.9_@babel+core@7.18.10 + "@babel/helper-module-transforms": 7.18.9 + "@babel/helpers": 7.18.9 + "@babel/parser": 7.18.11 + "@babel/template": 7.18.10 + "@babel/traverse": 7.18.11 + "@babel/types": 7.18.10 + convert-source-map: 1.8.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/generator/7.18.12: + resolution: + { + integrity: sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.18.10 + "@jridgewell/gen-mapping": 0.3.2 + jsesc: 2.5.2 + dev: true + + /@babel/helper-annotate-as-pure/7.18.6: + resolution: + { + integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.18.10 + dev: true + + /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.10: + resolution: + { + integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/compat-data": 7.18.8 + "@babel/core": 7.18.10 + "@babel/helper-validator-option": 7.18.6 + browserslist: 4.21.3 + semver: 6.3.0 + dev: true + + /@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.18.10: + resolution: + { + integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-annotate-as-pure": 7.18.6 + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-function-name": 7.18.9 + "@babel/helper-member-expression-to-functions": 7.18.9 + "@babel/helper-optimise-call-expression": 7.18.6 + "@babel/helper-replace-supers": 7.18.9 + "@babel/helper-split-export-declaration": 7.18.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-environment-visitor/7.18.9: + resolution: + { + integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==, + } + engines: { node: ">=6.9.0" } + dev: true + + /@babel/helper-function-name/7.18.9: + resolution: + { + integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/template": 7.18.10 + "@babel/types": 7.18.10 + dev: true + + /@babel/helper-hoist-variables/7.18.6: + resolution: + { + integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.18.10 + dev: true + + /@babel/helper-member-expression-to-functions/7.18.9: + resolution: + { + integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.18.10 + dev: true + + /@babel/helper-module-imports/7.18.6: + resolution: + { + integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.18.10 + dev: true + + /@babel/helper-module-transforms/7.18.9: + resolution: + { + integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-module-imports": 7.18.6 + "@babel/helper-simple-access": 7.18.6 + "@babel/helper-split-export-declaration": 7.18.6 + "@babel/helper-validator-identifier": 7.18.6 + "@babel/template": 7.18.10 + "@babel/traverse": 7.18.11 + "@babel/types": 7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-optimise-call-expression/7.18.6: + resolution: + { + integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.18.10 + dev: true + + /@babel/helper-plugin-utils/7.18.9: + resolution: + { + integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==, + } + engines: { node: ">=6.9.0" } + dev: true + + /@babel/helper-replace-supers/7.18.9: + resolution: + { + integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-member-expression-to-functions": 7.18.9 + "@babel/helper-optimise-call-expression": 7.18.6 + "@babel/traverse": 7.18.11 + "@babel/types": 7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-simple-access/7.18.6: + resolution: + { + integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.18.10 + dev: true + + /@babel/helper-skip-transparent-expression-wrappers/7.18.9: + resolution: + { + integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.18.10 + dev: true + + /@babel/helper-split-export-declaration/7.18.6: + resolution: + { + integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.18.10 + dev: true + + /@babel/helper-string-parser/7.18.10: + resolution: + { + integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==, + } + engines: { node: ">=6.9.0" } + dev: true + + /@babel/helper-validator-identifier/7.18.6: + resolution: + { + integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==, + } + engines: { node: ">=6.9.0" } + dev: true + + /@babel/helper-validator-option/7.18.6: + resolution: + { + integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==, + } + engines: { node: ">=6.9.0" } + dev: true + + /@babel/helpers/7.18.9: + resolution: + { + integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/template": 7.18.10 + "@babel/traverse": 7.18.11 + "@babel/types": 7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/highlight/7.18.6: + resolution: + { + integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/helper-validator-identifier": 7.18.6 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: true + + /@babel/parser/7.18.11: + resolution: + { + integrity: sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==, + } + engines: { node: ">=6.0.0" } + hasBin: true + dependencies: + "@babel/types": 7.18.10 + dev: true + + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.10: + resolution: + { + integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-create-class-features-plugin": 7.18.9_@babel+core@7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.18.10: + resolution: + { + integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/compat-data": 7.18.8 + "@babel/core": 7.18.10 + "@babel/helper-compilation-targets": 7.18.9_@babel+core@7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.18.10 + "@babel/plugin-transform-parameters": 7.18.8_@babel+core@7.18.10 + dev: true + + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.10: + resolution: + { + integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.18.10: + resolution: + { + integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.10: + resolution: + { + integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.10: + resolution: + { + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.10: + resolution: + { + integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.10: + resolution: + { + integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.18.10: + resolution: + { + integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-transform-classes/7.18.9_@babel+core@7.18.10: + resolution: + { + integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-annotate-as-pure": 7.18.6 + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-function-name": 7.18.9 + "@babel/helper-optimise-call-expression": 7.18.6 + "@babel/helper-plugin-utils": 7.18.9 + "@babel/helper-replace-supers": 7.18.9 + "@babel/helper-split-export-declaration": 7.18.6 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.18.10: + resolution: + { + integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-transform-destructuring/7.18.9_@babel+core@7.18.10: + resolution: + { + integrity: sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-transform-flow-strip-types/7.18.9_@babel+core@7.18.10: + resolution: + { + integrity: sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + "@babel/plugin-syntax-flow": 7.18.6_@babel+core@7.18.10 + dev: true + + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.18.10: + resolution: + { + integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.18.10: + resolution: + { + integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-compilation-targets": 7.18.9_@babel+core@7.18.10 + "@babel/helper-function-name": 7.18.9 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.18.10: + resolution: + { + integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.10: + resolution: + { + integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.18.10: + resolution: + { + integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-module-transforms": 7.18.9 + "@babel/helper-plugin-utils": 7.18.9 + "@babel/helper-simple-access": 7.18.6 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.10: + resolution: + { + integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + "@babel/helper-replace-supers": 7.18.9 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.18.10: + resolution: + { + integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.10: + resolution: + { + integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.18.10: + resolution: + { + integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.18.10: + resolution: + { + integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-annotate-as-pure": 7.18.6 + "@babel/helper-module-imports": 7.18.6 + "@babel/helper-plugin-utils": 7.18.9 + "@babel/plugin-syntax-jsx": 7.18.6_@babel+core@7.18.10 + "@babel/types": 7.18.10 + dev: true + + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.10: + resolution: + { + integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/plugin-transform-spread/7.18.9_@babel+core@7.18.10: + resolution: + { + integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + "@babel/helper-skip-transparent-expression-wrappers": 7.18.9 + dev: true + + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.18.10: + resolution: + { + integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.10 + "@babel/helper-plugin-utils": 7.18.9 + dev: true + + /@babel/runtime-corejs3/7.18.9: + resolution: + { + integrity: sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==, + } + engines: { node: ">=6.9.0" } + dependencies: + core-js-pure: 3.24.1 + regenerator-runtime: 0.13.9 + dev: true + + /@babel/runtime/7.18.9: + resolution: + { + integrity: sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==, + } + engines: { node: ">=6.9.0" } + dependencies: + regenerator-runtime: 0.13.9 + + /@babel/template/7.18.10: + resolution: + { + integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/code-frame": 7.18.6 + "@babel/parser": 7.18.11 + "@babel/types": 7.18.10 + dev: true + + /@babel/traverse/7.18.11: + resolution: + { + integrity: sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/code-frame": 7.18.6 + "@babel/generator": 7.18.12 + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-function-name": 7.18.9 + "@babel/helper-hoist-variables": 7.18.6 + "@babel/helper-split-export-declaration": 7.18.6 + "@babel/parser": 7.18.11 + "@babel/types": 7.18.10 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/types/7.18.10: + resolution: + { + integrity: sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/helper-string-parser": 7.18.10 + "@babel/helper-validator-identifier": 7.18.6 + to-fast-properties: 2.0.0 + dev: true + + /@cspotcode/source-map-support/0.8.1: + resolution: + { + integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==, + } + engines: { node: ">=12" } + dependencies: + "@jridgewell/trace-mapping": 0.3.9 + dev: true + + /@emotion/hash/0.8.0: + resolution: + { + integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==, + } + dev: false + + /@eslint/eslintrc/1.3.0: + resolution: + { + integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 9.3.3 + globals: 13.17.0 + ignore: 5.2.0 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@floating-ui/core/0.7.3: + resolution: + { + integrity: sha512-buc8BXHmG9l82+OQXOFU3Kr2XQx9ys01U/Q9HMIrZ300iLc8HLMgh7dcCqgYzAzf4BkoQvDcXf5Y+CuEZ5JBYg==, + } + dev: false + + /@floating-ui/dom/0.5.4: + resolution: + { + integrity: sha512-419BMceRLq0RrmTSDxn8hf9R3VCJv2K9PUfugh5JyEFmdjzDo+e8U5EdR8nzKq8Yj1htzLm3b6eQEEam3/rrtg==, + } + dependencies: + "@floating-ui/core": 0.7.3 + dev: false + + /@floating-ui/react-dom-interactions/0.5.0_twyhzqqpkwvvgrmyeapdo6i4my: + resolution: + { + integrity: sha512-rfON7mkHjCeogd0BSXPa8GBp1TMxEytJQqGVlCouSUonJ4POqdHsqcxRnCh0yAaGVaL/nB/J1vq28V4RdoLszg==, + } + deprecated: Package renamed to @floating-ui/react + dependencies: + "@floating-ui/react-dom": 0.7.2_twyhzqqpkwvvgrmyeapdo6i4my + aria-hidden: 1.1.3 + use-isomorphic-layout-effect: 1.1.2_luyos4mouogwq6z3wafb3re4ce + transitivePeerDependencies: + - "@types/react" + - react + - react-dom + dev: false + + /@floating-ui/react-dom/0.7.2_twyhzqqpkwvvgrmyeapdo6i4my: + resolution: + { + integrity: sha512-1T0sJcpHgX/u4I1OzIEhlcrvkUN8ln39nz7fMoE/2HDHrPiMFoOGR7++GYyfUmIQHkkrTinaeQsO3XWubjSvGg==, + } + peerDependencies: + react: ">=16.8.0" + react-dom: ">=16.8.0" + dependencies: + "@floating-ui/dom": 0.5.4 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + use-isomorphic-layout-effect: 1.1.2_luyos4mouogwq6z3wafb3re4ce + transitivePeerDependencies: + - "@types/react" + dev: false + + /@graphql-codegen/cli/2.7.0_kqlgh3qfz56lumowe57ujqqtt4: + resolution: + { + integrity: sha512-qlBcS6jGfZ/xWXwqiyRLHGRuLC9gUdF8AwGHN7LdAYEP5MjL7pIXb02W5JuvMn47rrvr2Q22H9ECppZX65oSAg==, + } + hasBin: true + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + "@graphql-codegen/core": 2.5.1_graphql@16.5.0 + "@graphql-codegen/plugin-helpers": 2.6.2_graphql@16.5.0 + "@graphql-tools/apollo-engine-loader": 7.3.7_graphql@16.5.0 + "@graphql-tools/code-file-loader": 7.3.2_graphql@16.5.0 + "@graphql-tools/git-loader": 7.2.2_graphql@16.5.0 + "@graphql-tools/github-loader": 7.3.7_graphql@16.5.0 + "@graphql-tools/graphql-file-loader": 7.5.1_graphql@16.5.0 + "@graphql-tools/json-file-loader": 7.4.2_graphql@16.5.0 + "@graphql-tools/load": 7.7.3_graphql@16.5.0 + "@graphql-tools/prisma-loader": 7.2.9_n54dfqgve5qccicfl2lecljoee + "@graphql-tools/url-loader": 7.13.4_n54dfqgve5qccicfl2lecljoee + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + change-case-all: 1.0.14 + chokidar: 3.5.3 + common-tags: 1.8.2 + cosmiconfig: 7.0.1 + debounce: 1.2.1 + detect-indent: 6.1.0 + graphql: 16.5.0 + graphql-config: 4.3.3_kqlgh3qfz56lumowe57ujqqtt4 + inquirer: 8.2.4 + is-glob: 4.0.3 + json-to-pretty-yaml: 1.2.2 + latest-version: 5.1.0 + listr: 0.14.3 + listr-update-renderer: 0.5.0_listr@0.14.3 + log-symbols: 4.1.0 + mkdirp: 1.0.4 + string-env-interpolation: 1.0.1 + ts-log: 2.2.4 + wrap-ansi: 7.0.0 + yaml: 1.10.2 + yargs: 17.5.1 + transitivePeerDependencies: + - "@swc/core" + - "@swc/wasm" + - "@types/node" + - bufferutil + - encoding + - supports-color + - typescript + - utf-8-validate + - zen-observable + - zenObservable + dev: true + + /@graphql-codegen/core/2.5.1_graphql@16.5.0: + resolution: + { + integrity: sha512-alctBVl2hMnBXDLwkgmnFPrZVIiBDsWJSmxJcM4GKg1PB23+xuov35GE47YAyAhQItE1B1fbYnbb1PtGiDZ4LA==, + } + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + "@graphql-codegen/plugin-helpers": 2.6.2_graphql@16.5.0 + "@graphql-tools/schema": 8.5.1_graphql@16.5.0 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + graphql: 16.5.0 + tslib: 2.3.1 + dev: true + + /@graphql-codegen/introspection/2.1.1_graphql@16.5.0: + resolution: + { + integrity: sha512-O9zsy0IoFYDo37pBVF4pSvRMDx/AKdgOxyko4R/O+0DHEw9Nya/pQ3dbn+LDLj2n6X+xOXUBUfFvqhODTqU28w==, + } + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + "@graphql-codegen/plugin-helpers": 2.6.2_graphql@16.5.0 + graphql: 16.5.0 + tslib: 2.3.1 + dev: true + + /@graphql-codegen/plugin-helpers/2.6.2_graphql@16.5.0: + resolution: + { + integrity: sha512-bt5PNix0MwzWP53UdaYm6URrVMWU8RlQhrTSLFjxQ8ShS5zoTlQtpZJGZc5ONqFgKa83qbUmzXUtP8oRVVn8zw==, + } + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + change-case-all: 1.0.14 + common-tags: 1.8.2 + graphql: 16.5.0 + import-from: 4.0.0 + lodash: 4.17.21 + tslib: 2.4.0 + dev: true + + /@graphql-codegen/schema-ast/2.5.1_graphql@16.5.0: + resolution: + { + integrity: sha512-tewa5DEKbglWn7kYyVBkh3J8YQ5ALqAMVmZwiVFIGOao5u66nd+e4HuFqp0u+Jpz4SJGGi0ap/oFrEvlqLjd2A==, + } + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + "@graphql-codegen/plugin-helpers": 2.6.2_graphql@16.5.0 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + graphql: 16.5.0 + tslib: 2.4.0 + dev: true + + /@graphql-codegen/typed-document-node/2.3.3_graphql@16.5.0: + resolution: + { + integrity: sha512-0zUPMr1pAqzMyPvtpnlfCbwQgS22t2kPhhfGQs2Yw32O+0+vn1ACcvxt0x1TfUwspYfFJa8AAXJ8NjwmDVAFMQ==, + } + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + "@graphql-codegen/plugin-helpers": 2.6.2_graphql@16.5.0 + "@graphql-codegen/visitor-plugin-common": 2.12.1_graphql@16.5.0 + auto-bind: 4.0.0 + change-case-all: 1.0.14 + graphql: 16.5.0 + tslib: 2.4.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /@graphql-codegen/typescript-operations/2.4.3_graphql@16.5.0: + resolution: + { + integrity: sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==, + } + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + "@graphql-codegen/plugin-helpers": 2.6.2_graphql@16.5.0 + "@graphql-codegen/typescript": 2.6.0_graphql@16.5.0 + "@graphql-codegen/visitor-plugin-common": 2.10.0_graphql@16.5.0 + auto-bind: 4.0.0 + graphql: 16.5.0 + tslib: 2.4.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /@graphql-codegen/typescript-urql/3.6.4_ubrtutz2urcxyhwqr2zvlqjzha: + resolution: + { + integrity: sha512-JPwhAGah5akoqXhTY5Rd1y/gEcLSpZyrOz0YkioH8cf7igBErEt00W90ccHrHvZ7o5fhFFy2/QdCndDLQhpZCA==, + } + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql-tag: ^2.0.0 + dependencies: + "@graphql-codegen/plugin-helpers": 2.6.2_graphql@16.5.0 + "@graphql-codegen/visitor-plugin-common": 2.12.1_graphql@16.5.0 + auto-bind: 4.0.0 + graphql: 16.5.0 + graphql-tag: 2.12.6_graphql@16.5.0 + tslib: 2.4.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /@graphql-codegen/typescript/2.6.0_graphql@16.5.0: + resolution: + { + integrity: sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==, + } + peerDependencies: + graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + "@graphql-codegen/plugin-helpers": 2.6.2_graphql@16.5.0 + "@graphql-codegen/schema-ast": 2.5.1_graphql@16.5.0 + "@graphql-codegen/visitor-plugin-common": 2.10.0_graphql@16.5.0 + auto-bind: 4.0.0 + graphql: 16.5.0 + tslib: 2.4.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /@graphql-codegen/urql-introspection/2.1.1_graphql@16.5.0: + resolution: + { + integrity: sha512-XLDLxyK8N3x3fvbkMoDb6lYPX2/rx3LiYT8dBeZYrBH1i9Tu0kfcEg0GeqNeLxiwnch9PZIC3O+gzROqP+rveA==, + } + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + "@graphql-codegen/plugin-helpers": 2.6.2_graphql@16.5.0 + "@urql/introspection": 0.3.1_graphql@16.5.0 + graphql: 16.5.0 + tslib: 2.3.1 + dev: true + + /@graphql-codegen/visitor-plugin-common/2.10.0_graphql@16.5.0: + resolution: + { + integrity: sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==, + } + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + "@graphql-codegen/plugin-helpers": 2.6.2_graphql@16.5.0 + "@graphql-tools/optimize": 1.3.1_graphql@16.5.0 + "@graphql-tools/relay-operation-optimizer": 6.5.2_graphql@16.5.0 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + auto-bind: 4.0.0 + change-case-all: 1.0.14 + dependency-graph: 0.11.0 + graphql: 16.5.0 + graphql-tag: 2.12.6_graphql@16.5.0 + parse-filepath: 1.0.2 + tslib: 2.4.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /@graphql-codegen/visitor-plugin-common/2.12.1_graphql@16.5.0: + resolution: + { + integrity: sha512-dIUrX4+i/uazyPQqXyQ8cqykgNFe1lknjnfDWFo0gnk2W8+ruuL2JpSrj/7efzFHxbYGMQrCABDCUTVLi3DcVA==, + } + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + "@graphql-codegen/plugin-helpers": 2.6.2_graphql@16.5.0 + "@graphql-tools/optimize": 1.3.1_graphql@16.5.0 + "@graphql-tools/relay-operation-optimizer": 6.5.2_graphql@16.5.0 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + auto-bind: 4.0.0 + change-case-all: 1.0.14 + dependency-graph: 0.11.0 + graphql: 16.5.0 + graphql-tag: 2.12.6_graphql@16.5.0 + parse-filepath: 1.0.2 + tslib: 2.4.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /@graphql-tools/apollo-engine-loader/7.3.7_graphql@16.5.0: + resolution: + { + integrity: sha512-p5uxGFmBegT3BGTo/Y4AHTpQFW4NkUZzRB3EJL2isZHpdsp4ROiRN1a1uYjy3ORt7Ko0Ktnn0o20pK6Az8++hQ==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@ardatan/sync-fetch": 0.0.1 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + "@whatwg-node/fetch": 0.2.8 + graphql: 16.5.0 + tslib: 2.4.0 + transitivePeerDependencies: + - encoding + dev: true + + /@graphql-tools/batch-execute/8.5.2_graphql@16.5.0: + resolution: + { + integrity: sha512-ykB7RwDjdtR6MdBz6aB0/LzU8V0TJA93ziIWiQZRgC30oPye3ROUuxITMD3Trij6iFQyyuuecGm9GxM9oEvEcQ==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + dataloader: 2.1.0 + graphql: 16.5.0 + tslib: 2.4.0 + value-or-promise: 1.0.11 + dev: true + + /@graphql-tools/code-file-loader/7.3.2_graphql@16.5.0: + resolution: + { + integrity: sha512-ycYsaQ35DBg4OZbSajvuawbhUn/+SULCRFqmy3eyUgqDb5u0AQHJq/R4gYdx+pxV1zrzGOCPlDRYdY372cRRnQ==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@graphql-tools/graphql-tag-pluck": 7.3.2_graphql@16.5.0 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + globby: 11.1.0 + graphql: 16.5.0 + tslib: 2.4.0 + unixify: 1.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@graphql-tools/delegate/9.0.0_graphql@16.5.0: + resolution: + { + integrity: sha512-Y7cvToqKWdNZIk+wqcc3A7lQ/tLMwHDor0q5TE44FRkcvY9cvwEXUi+u6gV9SQ89vLaGz/VaNYJmMAG0cdOyMg==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@graphql-tools/batch-execute": 8.5.2_graphql@16.5.0 + "@graphql-tools/schema": 9.0.0_graphql@16.5.0 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + dataloader: 2.1.0 + graphql: 16.5.0 + tslib: 2.4.0 + value-or-promise: 1.0.11 + dev: true + + /@graphql-tools/git-loader/7.2.2_graphql@16.5.0: + resolution: + { + integrity: sha512-6b7HI2lI4NUaGiGeTX+CzLkLUZwtACVElo6ydRmFCCRxOFjfeKu00bwfldL4zYFx01UMrg7jn+JEdbYK1wXYjw==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@graphql-tools/graphql-tag-pluck": 7.3.2_graphql@16.5.0 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + graphql: 16.5.0 + is-glob: 4.0.3 + micromatch: 4.0.5 + tslib: 2.4.0 + unixify: 1.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@graphql-tools/github-loader/7.3.7_graphql@16.5.0: + resolution: + { + integrity: sha512-BFv3z7Y1NyRAylxEhliHeJEdbAl49rFT0c4yOcyI5Qk4BRP6OkoS+GlCntXdi1AotUrp6Tb9/9Y8bmarXh6W3Q==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@ardatan/sync-fetch": 0.0.1 + "@graphql-tools/graphql-tag-pluck": 7.3.2_graphql@16.5.0 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + "@whatwg-node/fetch": 0.2.8 + graphql: 16.5.0 + tslib: 2.4.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /@graphql-tools/graphql-file-loader/7.5.1_graphql@16.5.0: + resolution: + { + integrity: sha512-6jf6ueuKnkBt8zycmbu9TwyP4vOdGu0Bht3001U1O+yWwDfbBTyTo0AyGupf9kbkpWfWamLCcXs4wMOKT2k25g==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@graphql-tools/import": 6.7.2_graphql@16.5.0 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + globby: 11.1.0 + graphql: 16.5.0 + tslib: 2.4.0 + unixify: 1.0.0 + dev: true + + /@graphql-tools/graphql-tag-pluck/7.3.2_graphql@16.5.0: + resolution: + { + integrity: sha512-dRnDCtLDzL+UKcvVcC4j8zouC77/0HWg31mk9XAg5wHYyjB9EQ5R+i+SwTtG9NweczuQGqznAgwNbwrVt2g4aQ==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@babel/parser": 7.18.11 + "@babel/traverse": 7.18.11 + "@babel/types": 7.18.10 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + graphql: 16.5.0 + tslib: 2.4.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@graphql-tools/import/6.7.2_graphql@16.5.0: + resolution: + { + integrity: sha512-eGIUtdB5ekyVTyIkJSS7SkY1znSgwmhDr627W/oRw8UvoV10S7CxoECJChjA+web6Y46Jz1CF7K7JxwadexD4g==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + graphql: 16.5.0 + resolve-from: 5.0.0 + tslib: 2.4.0 + dev: true + + /@graphql-tools/json-file-loader/7.4.2_graphql@16.5.0: + resolution: + { + integrity: sha512-2iPdZaZwYHP8X0sh/DqV1y2AsHLuDtJvdc1gYdwp9M5D70wu7OrF35IMAw0LK732HSOuF8CayQDtfMcvWyJVxg==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + globby: 11.1.0 + graphql: 16.5.0 + tslib: 2.4.0 + unixify: 1.0.0 + dev: true + + /@graphql-tools/load/7.7.3_graphql@16.5.0: + resolution: + { + integrity: sha512-PD8/oCx/cuHhAhHYnLh5WN1uI9FeTHEK9X5FCR+BIaayZeyMQiW9OUbKyfVyzxKRQPRsMZVvbbcxACzLk1g9WQ==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@graphql-tools/schema": 9.0.0_graphql@16.5.0 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + graphql: 16.5.0 + p-limit: 3.1.0 + tslib: 2.4.0 + dev: true + + /@graphql-tools/merge/8.3.1_graphql@16.5.0: + resolution: + { + integrity: sha512-BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@graphql-tools/utils": 8.9.0_graphql@16.5.0 + graphql: 16.5.0 + tslib: 2.4.0 + dev: true + + /@graphql-tools/merge/8.3.2_graphql@16.5.0: + resolution: + { + integrity: sha512-r8TFlDFA9N4hbkKbHCUK5pkiSnVUsB5AtcyhoY1d3b9zNa9CAYgxZMkKZgDJAf9ZTIqki9t0eOW/jn1H4MCFsg==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + graphql: 16.5.0 + tslib: 2.4.0 + dev: true + + /@graphql-tools/optimize/1.3.1_graphql@16.5.0: + resolution: + { + integrity: sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + graphql: 16.5.0 + tslib: 2.4.0 + dev: true + + /@graphql-tools/prisma-loader/7.2.9_n54dfqgve5qccicfl2lecljoee: + resolution: + { + integrity: sha512-ZLziQlX7jhSeIYgLCLnj45mwqT5rLmkMHoBuUslbkiVRsu+2qR2bZefTYYNHrLx9E9wAO7p0ZoMmcQCJfHXz4A==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@graphql-tools/url-loader": 7.13.4_n54dfqgve5qccicfl2lecljoee + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + "@types/js-yaml": 4.0.5 + "@types/json-stable-stringify": 1.0.34 + "@types/jsonwebtoken": 8.5.8 + chalk: 4.1.2 + debug: 4.3.4 + dotenv: 16.0.1 + graphql: 16.5.0 + graphql-request: 4.3.0_graphql@16.5.0 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + isomorphic-fetch: 3.0.0 + js-yaml: 4.1.0 + json-stable-stringify: 1.0.1 + jsonwebtoken: 8.5.1 + lodash: 4.17.21 + scuid: 1.1.0 + tslib: 2.4.0 + yaml-ast-parser: 0.0.43 + transitivePeerDependencies: + - "@types/node" + - bufferutil + - encoding + - supports-color + - utf-8-validate + dev: true + + /@graphql-tools/relay-operation-optimizer/6.5.2_graphql@16.5.0: + resolution: + { + integrity: sha512-g4+J137tDKkq9GCSr9eKOtXIWiN0aIIK7vWgJTO3wKmvG/XDapHOkeyPF9ylU4YTrsloRQq0uEW1qarTmqUM7Q==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@ardatan/relay-compiler": 12.0.0_graphql@16.5.0 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + graphql: 16.5.0 + tslib: 2.4.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /@graphql-tools/schema/8.5.1_graphql@16.5.0: + resolution: + { + integrity: sha512-0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@graphql-tools/merge": 8.3.1_graphql@16.5.0 + "@graphql-tools/utils": 8.9.0_graphql@16.5.0 + graphql: 16.5.0 + tslib: 2.4.0 + value-or-promise: 1.0.11 + dev: true + + /@graphql-tools/schema/9.0.0_graphql@16.5.0: + resolution: + { + integrity: sha512-H1rlt0tptzYE1jnKGjfmMvvMCwsDTUgCy3Eam9agsPP4ZtHAcwijDx3BKKJaV1fDRV5ztz2aJ5Q7+4s/SMOYvQ==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@graphql-tools/merge": 8.3.2_graphql@16.5.0 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + graphql: 16.5.0 + tslib: 2.4.0 + value-or-promise: 1.0.11 + dev: true + + /@graphql-tools/url-loader/7.13.4_n54dfqgve5qccicfl2lecljoee: + resolution: + { + integrity: sha512-xAaRpfoUdlKBq88JTO8FIlxuQ7uej/zOVe7aYJ0oPfrFvG0TwS+FcggCpvGVPIfN20ABogaiBKL8DIGVuC470A==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@ardatan/sync-fetch": 0.0.1 + "@graphql-tools/delegate": 9.0.0_graphql@16.5.0 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + "@graphql-tools/wrap": 9.0.0_graphql@16.5.0 + "@n1ru4l/graphql-live-query": 0.10.0_graphql@16.5.0 + "@types/ws": 8.5.3 + "@whatwg-node/fetch": 0.2.8 + dset: 3.1.2 + extract-files: 11.0.0 + graphql: 16.5.0 + graphql-ws: 5.10.0_graphql@16.5.0 + isomorphic-ws: 5.0.0_ws@8.8.1 + meros: 1.2.0_@types+node@18.0.1 + tslib: 2.4.0 + value-or-promise: 1.0.11 + ws: 8.8.1 + transitivePeerDependencies: + - "@types/node" + - bufferutil + - encoding + - utf-8-validate + dev: true + + /@graphql-tools/utils/8.9.0_graphql@16.5.0: + resolution: + { + integrity: sha512-pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + graphql: 16.5.0 + tslib: 2.4.0 + dev: true + + /@graphql-tools/utils/8.9.1_graphql@16.5.0: + resolution: + { + integrity: sha512-LHR7U4okICeUap+WV/T1FnLOmTr3KYuphgkXYendaBVO/DXKyc+TeOFBiN1LcEjPqCB8hO+0B0iTIO0cGqhNTA==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + graphql: 16.5.0 + tslib: 2.4.0 + dev: true + + /@graphql-tools/wrap/9.0.0_graphql@16.5.0: + resolution: + { + integrity: sha512-kBR7xKdPPnAK2OKimAeFKN/OZHSKVjAoxJPT6gfPE27fe/N1vhvAV6/wlYDgfJvWfeX3+3XLwRAcWCyZQbg0QQ==, + } + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + "@graphql-tools/delegate": 9.0.0_graphql@16.5.0 + "@graphql-tools/schema": 9.0.0_graphql@16.5.0 + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + graphql: 16.5.0 + tslib: 2.4.0 + value-or-promise: 1.0.11 + dev: true + + /@graphql-typed-document-node/core/3.1.1_graphql@16.5.0: + resolution: + { + integrity: sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==, + } + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + graphql: 16.5.0 + + /@humanwhocodes/config-array/0.9.5: + resolution: + { + integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==, + } + engines: { node: ">=10.10.0" } + dependencies: + "@humanwhocodes/object-schema": 1.2.1 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/object-schema/1.2.1: + resolution: + { + integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, + } + dev: true + + /@iarna/toml/2.2.5: + resolution: + { + integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==, + } + dev: true + + /@jridgewell/gen-mapping/0.1.1: + resolution: + { + integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==, + } + engines: { node: ">=6.0.0" } + dependencies: + "@jridgewell/set-array": 1.1.2 + "@jridgewell/sourcemap-codec": 1.4.14 + dev: true + + /@jridgewell/gen-mapping/0.3.2: + resolution: + { + integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==, + } + engines: { node: ">=6.0.0" } + dependencies: + "@jridgewell/set-array": 1.1.2 + "@jridgewell/sourcemap-codec": 1.4.14 + "@jridgewell/trace-mapping": 0.3.14 + dev: true + + /@jridgewell/resolve-uri/3.1.0: + resolution: + { + integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==, + } + engines: { node: ">=6.0.0" } + dev: true + + /@jridgewell/set-array/1.1.2: + resolution: + { + integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, + } + engines: { node: ">=6.0.0" } + dev: true + + /@jridgewell/sourcemap-codec/1.4.14: + resolution: + { + integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==, + } + + /@jridgewell/trace-mapping/0.3.14: + resolution: + { + integrity: sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==, + } + dependencies: + "@jridgewell/resolve-uri": 3.1.0 + "@jridgewell/sourcemap-codec": 1.4.14 + dev: true + + /@jridgewell/trace-mapping/0.3.9: + resolution: + { + integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==, + } + dependencies: + "@jridgewell/resolve-uri": 3.1.0 + "@jridgewell/sourcemap-codec": 1.4.14 + dev: true + + /@material-ui/core/4.12.4_twyhzqqpkwvvgrmyeapdo6i4my: + resolution: + { + integrity: sha512-tr7xekNlM9LjA6pagJmL8QCgZXaubWUwkJnoYcMKd4gw/t4XiyvnTkjdGrUVicyB2BsdaAv1tvow45bPM4sSwQ==, + } + engines: { node: ">=8.0.0" } + peerDependencies: + "@types/react": ^16.8.6 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + dependencies: + "@babel/runtime": 7.18.9 + "@material-ui/styles": 4.11.5_twyhzqqpkwvvgrmyeapdo6i4my + "@material-ui/system": 4.12.2_twyhzqqpkwvvgrmyeapdo6i4my + "@material-ui/types": 5.1.0_@types+react@18.0.14 + "@material-ui/utils": 4.11.3_biqbaboplfbrettd7655fr4n2y + "@types/react": 18.0.14 + "@types/react-transition-group": 4.4.5 + clsx: 1.2.1 + hoist-non-react-statics: 3.3.2 + popper.js: 1.16.1-lts + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 17.0.2 + react-transition-group: 4.4.5_biqbaboplfbrettd7655fr4n2y + dev: false + + /@material-ui/icons/4.11.3_xfab57qepcdrxdxif4xlv2kdgm: + resolution: + { + integrity: sha512-IKHlyx6LDh8n19vzwH5RtHIOHl9Tu90aAAxcbWME6kp4dmvODM3UvOHJeMIDzUbd4muuJKHmlNoBN+mDY4XkBA==, + } + engines: { node: ">=8.0.0" } + peerDependencies: + "@material-ui/core": ^4.0.0 + "@types/react": ^16.8.6 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + dependencies: + "@babel/runtime": 7.18.9 + "@material-ui/core": 4.12.4_twyhzqqpkwvvgrmyeapdo6i4my + "@types/react": 18.0.14 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + + /@material-ui/lab/4.0.0-alpha.61_xfab57qepcdrxdxif4xlv2kdgm: + resolution: + { + integrity: sha512-rSzm+XKiNUjKegj8bzt5+pygZeckNLOr+IjykH8sYdVk7dE9y2ZuUSofiMV2bJk3qU+JHwexmw+q0RyNZB9ugg==, + } + engines: { node: ">=8.0.0" } + peerDependencies: + "@material-ui/core": ^4.12.1 + "@types/react": ^16.8.6 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + dependencies: + "@babel/runtime": 7.18.9 + "@material-ui/core": 4.12.4_twyhzqqpkwvvgrmyeapdo6i4my + "@material-ui/utils": 4.11.3_biqbaboplfbrettd7655fr4n2y + "@types/react": 18.0.14 + clsx: 1.2.1 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 17.0.2 + dev: false + + /@material-ui/styles/4.11.5_twyhzqqpkwvvgrmyeapdo6i4my: + resolution: + { + integrity: sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA==, + } + engines: { node: ">=8.0.0" } + peerDependencies: + "@types/react": ^16.8.6 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + dependencies: + "@babel/runtime": 7.18.9 + "@emotion/hash": 0.8.0 + "@material-ui/types": 5.1.0_@types+react@18.0.14 + "@material-ui/utils": 4.11.3_biqbaboplfbrettd7655fr4n2y + "@types/react": 18.0.14 + clsx: 1.2.1 + csstype: 2.6.20 + hoist-non-react-statics: 3.3.2 + jss: 10.9.2 + jss-plugin-camel-case: 10.9.2 + jss-plugin-default-unit: 10.9.2 + jss-plugin-global: 10.9.2 + jss-plugin-nested: 10.9.2 + jss-plugin-props-sort: 10.9.2 + jss-plugin-rule-value-function: 10.9.2 + jss-plugin-vendor-prefixer: 10.9.2 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + + /@material-ui/system/4.12.2_twyhzqqpkwvvgrmyeapdo6i4my: + resolution: + { + integrity: sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw==, + } + engines: { node: ">=8.0.0" } + peerDependencies: + "@types/react": ^16.8.6 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + dependencies: + "@babel/runtime": 7.18.9 + "@material-ui/utils": 4.11.3_biqbaboplfbrettd7655fr4n2y + "@types/react": 18.0.14 + csstype: 2.6.20 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + + /@material-ui/types/5.1.0_@types+react@18.0.14: + resolution: + { + integrity: sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==, + } + peerDependencies: + "@types/react": "*" + peerDependenciesMeta: + "@types/react": + optional: true + dependencies: + "@types/react": 18.0.14 + dev: false + + /@material-ui/utils/4.11.3_biqbaboplfbrettd7655fr4n2y: + resolution: + { + integrity: sha512-ZuQPV4rBK/V1j2dIkSSEcH5uT6AaHuKWFfotADHsC0wVL1NLd2WkFCm4ZZbX33iO4ydl6V0GPngKm8HZQ2oujg==, + } + engines: { node: ">=8.0.0" } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + "@babel/runtime": 7.18.9 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 17.0.2 + dev: false + + /@n1ru4l/graphql-live-query/0.10.0_graphql@16.5.0: + resolution: + { + integrity: sha512-qZ7OHH/NB0NcG/Xa7irzgjE63UH0CkofZT0Bw4Ko6iRFagPRHBM8RgFXwTt/6JbFGIEUS4STRtaFoc/Eq/ZtzQ==, + } + peerDependencies: + graphql: ^15.4.0 || ^16.0.0 + dependencies: + graphql: 16.5.0 + dev: true + + /@next/env/12.3.1: + resolution: + { + integrity: sha512-9P9THmRFVKGKt9DYqeC2aKIxm8rlvkK38V1P1sRE7qyoPBIs8l9oo79QoSdPtOWfzkbDAVUqvbQGgTMsb8BtJg==, + } + dev: false + + /@next/swc-android-arm-eabi/12.3.1: + resolution: + { + integrity: sha512-i+BvKA8tB//srVPPQxIQN5lvfROcfv4OB23/L1nXznP+N/TyKL8lql3l7oo2LNhnH66zWhfoemg3Q4VJZSruzQ==, + } + engines: { node: ">= 10" } + cpu: [arm] + os: [android] + requiresBuild: true + dev: false + optional: true + + /@next/swc-android-arm64/12.3.1: + resolution: + { + integrity: sha512-CmgU2ZNyBP0rkugOOqLnjl3+eRpXBzB/I2sjwcGZ7/Z6RcUJXK5Evz+N0ucOxqE4cZ3gkTeXtSzRrMK2mGYV8Q==, + } + engines: { node: ">= 10" } + cpu: [arm64] + os: [android] + requiresBuild: true + dev: false + optional: true + + /@next/swc-darwin-arm64/12.3.1: + resolution: + { + integrity: sha512-hT/EBGNcu0ITiuWDYU9ur57Oa4LybD5DOQp4f22T6zLfpoBMfBibPtR8XktXmOyFHrL/6FC2p9ojdLZhWhvBHg==, + } + engines: { node: ">= 10" } + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: false + optional: true + + /@next/swc-darwin-x64/12.3.1: + resolution: + { + integrity: sha512-9S6EVueCVCyGf2vuiLiGEHZCJcPAxglyckTZcEwLdJwozLqN0gtS0Eq0bQlGS3dH49Py/rQYpZ3KVWZ9BUf/WA==, + } + engines: { node: ">= 10" } + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: false + optional: true + + /@next/swc-freebsd-x64/12.3.1: + resolution: + { + integrity: sha512-qcuUQkaBZWqzM0F1N4AkAh88lLzzpfE6ImOcI1P6YeyJSsBmpBIV8o70zV+Wxpc26yV9vpzb+e5gCyxNjKJg5Q==, + } + engines: { node: ">= 10" } + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: false + optional: true + + /@next/swc-linux-arm-gnueabihf/12.3.1: + resolution: + { + integrity: sha512-diL9MSYrEI5nY2wc/h/DBewEDUzr/DqBjIgHJ3RUNtETAOB3spMNHvJk2XKUDjnQuluLmFMloet9tpEqU2TT9w==, + } + engines: { node: ">= 10" } + cpu: [arm] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@next/swc-linux-arm64-gnu/12.3.1: + resolution: + { + integrity: sha512-o/xB2nztoaC7jnXU3Q36vGgOolJpsGG8ETNjxM1VAPxRwM7FyGCPHOMk1XavG88QZSQf+1r+POBW0tLxQOJ9DQ==, + } + engines: { node: ">= 10" } + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@next/swc-linux-arm64-musl/12.3.1: + resolution: + { + integrity: sha512-2WEasRxJzgAmP43glFNhADpe8zB7kJofhEAVNbDJZANp+H4+wq+/cW1CdDi8DqjkShPEA6/ejJw+xnEyDID2jg==, + } + engines: { node: ">= 10" } + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@next/swc-linux-x64-gnu/12.3.1: + resolution: + { + integrity: sha512-JWEaMyvNrXuM3dyy9Pp5cFPuSSvG82+yABqsWugjWlvfmnlnx9HOQZY23bFq3cNghy5V/t0iPb6cffzRWylgsA==, + } + engines: { node: ">= 10" } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@next/swc-linux-x64-musl/12.3.1: + resolution: + { + integrity: sha512-xoEWQQ71waWc4BZcOjmatuvPUXKTv6MbIFzpm4LFeCHsg2iwai0ILmNXf81rJR+L1Wb9ifEke2sQpZSPNz1Iyg==, + } + engines: { node: ">= 10" } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@next/swc-win32-arm64-msvc/12.3.1: + resolution: + { + integrity: sha512-hswVFYQYIeGHE2JYaBVtvqmBQ1CppplQbZJS/JgrVI3x2CurNhEkmds/yqvDONfwfbttTtH4+q9Dzf/WVl3Opw==, + } + engines: { node: ">= 10" } + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: false + optional: true + + /@next/swc-win32-ia32-msvc/12.3.1: + resolution: + { + integrity: sha512-Kny5JBehkTbKPmqulr5i+iKntO5YMP+bVM8Hf8UAmjSMVo3wehyLVc9IZkNmcbxi+vwETnQvJaT5ynYBkJ9dWA==, + } + engines: { node: ">= 10" } + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: false + optional: true + + /@next/swc-win32-x64-msvc/12.3.1: + resolution: + { + integrity: sha512-W1ijvzzg+kPEX6LAc+50EYYSEo0FVu7dmTE+t+DM4iOLqgGHoW9uYSz9wCVdkXOEEMP9xhXfGpcSxsfDucyPkA==, + } + engines: { node: ">= 10" } + cpu: [x64] + os: [win32] + requiresBuild: true + dev: false + optional: true + + /@nodelib/fs.scandir/2.1.5: + resolution: + { + integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, + } + engines: { node: ">= 8" } + dependencies: + "@nodelib/fs.stat": 2.0.5 + run-parallel: 1.2.0 + + /@nodelib/fs.stat/2.0.5: + resolution: + { + integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, + } + engines: { node: ">= 8" } + + /@nodelib/fs.walk/1.2.8: + resolution: + { + integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, + } + engines: { node: ">= 8" } + dependencies: + "@nodelib/fs.scandir": 2.1.5 + fastq: 1.13.0 + + /@peculiar/asn1-schema/2.3.0: + resolution: + { + integrity: sha512-DtNLAG4vmDrdSJFPe7rypkcj597chNQL7u+2dBtYo5mh7VW2+im6ke+O0NVr8W1f4re4C3F71LhoMb0Yxqa48Q==, + } + dependencies: + asn1js: 3.0.5 + pvtsutils: 1.3.2 + tslib: 2.4.0 + dev: true + + /@peculiar/json-schema/1.1.12: + resolution: + { + integrity: sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==, + } + engines: { node: ">=8.0.0" } + dependencies: + tslib: 2.4.0 + dev: true + + /@peculiar/webcrypto/1.4.0: + resolution: + { + integrity: sha512-U58N44b2m3OuTgpmKgf0LPDOmP3bhwNz01vAnj1mBwxBASRhptWYK+M3zG+HBkDqGQM+bFsoIihTW8MdmPXEqg==, + } + engines: { node: ">=10.12.0" } + dependencies: + "@peculiar/asn1-schema": 2.3.0 + "@peculiar/json-schema": 1.1.12 + pvtsutils: 1.3.2 + tslib: 2.4.0 + webcrypto-core: 1.7.5 + dev: true + + /@pkgr/utils/2.3.0: + resolution: + { + integrity: sha512-7dIJ9CRVzBnqyEl7diUHPUFJf/oty2SeoVzcMocc5PeOUDK9KGzvgIBjGRRzzlRDaOjh3ADwH0WeibQvi3ls2Q==, + } + engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 } + dependencies: + cross-spawn: 7.0.3 + is-glob: 4.0.3 + open: 8.4.0 + picocolors: 1.0.0 + tiny-glob: 0.2.9 + tslib: 2.4.0 + dev: true + + /@rollup/plugin-commonjs/24.0.0_rollup@2.78.0: + resolution: + { + integrity: sha512-0w0wyykzdyRRPHOb0cQt14mIBLujfAv6GgP6g8nvg/iBxEm112t3YPPq+Buqe2+imvElTka+bjNlJ/gB56TD8g==, + } + engines: { node: ">=14.0.0" } + peerDependencies: + rollup: ^2.68.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + "@rollup/pluginutils": 5.0.2_rollup@2.78.0 + commondir: 1.0.1 + estree-walker: 2.0.2 + glob: 8.1.0 + is-reference: 1.2.1 + magic-string: 0.27.0 + rollup: 2.78.0 + dev: false + + /@rollup/pluginutils/5.0.2_rollup@2.78.0: + resolution: + { + integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==, + } + engines: { node: ">=14.0.0" } + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + "@types/estree": 1.0.0 + estree-walker: 2.0.2 + picomatch: 2.3.1 + rollup: 2.78.0 + dev: false + + /@saleor/app-sdk/0.27.1_azq6kxkn3od7qdylwkyksrwopy: + resolution: + { + integrity: sha512-ZNbucokKCdBE1qa+YLHvjBVazYcRuUExBdaPW9aNxfeYyXgQNCdHqJx9oA/S1lMEVSbZSIRcn8Sx1+X/eEV8BA==, + } + peerDependencies: + next: ">=12" + react: ">=17" + react-dom: ">=17" + dependencies: + debug: 4.3.4 + fast-glob: 3.2.11 + graphql: 16.6.0 + jose: 4.10.3 + next: 12.3.1_biqbaboplfbrettd7655fr4n2y + raw-body: 2.5.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + retes: 0.33.0 + uuid: 8.3.2 + transitivePeerDependencies: + - supports-color + dev: false + + /@saleor/macaw-ui/0.7.2_5j6zkq4mzir5org5dcu2pr43hm: + resolution: + { + integrity: sha512-Fli7fhTWuHu7q2CzxwTUpB4x9HYaxHSAzCLZLA23VY1ieIWbCxbsXadMiMGWp/nuYitswMr6JXMm+1SDe9K8LQ==, + } + engines: { node: ">=16 <19" } + peerDependencies: + "@material-ui/core": ^4.11.2 + "@material-ui/icons": ^4.11.2 + "@material-ui/lab": ^4.0.0-alpha.58 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + react-helmet: ^6.1.0 + dependencies: + "@floating-ui/react-dom-interactions": 0.5.0_twyhzqqpkwvvgrmyeapdo6i4my + "@material-ui/core": 4.12.4_twyhzqqpkwvvgrmyeapdo6i4my + "@material-ui/icons": 4.11.3_xfab57qepcdrxdxif4xlv2kdgm + "@material-ui/lab": 4.0.0-alpha.61_xfab57qepcdrxdxif4xlv2kdgm + clsx: 1.2.1 + downshift: 6.1.7_react@18.2.0 + lodash: 4.17.21 + lodash-es: 4.17.21 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-helmet: 6.1.0_react@18.2.0 + react-inlinesvg: 3.0.1_react@18.2.0 + transitivePeerDependencies: + - "@types/react" + dev: false + + /@samverschueren/stream-to-observable/0.3.1_rxjs@6.6.7: + resolution: + { + integrity: sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==, + } + engines: { node: ">=6" } + peerDependencies: + rxjs: "*" + zen-observable: "*" + peerDependenciesMeta: + rxjs: + optional: true + zen-observable: + optional: true + dependencies: + any-observable: 0.3.0_rxjs@6.6.7 + rxjs: 6.6.7 + transitivePeerDependencies: + - zenObservable + dev: true + + /@sentry/browser/7.31.1: + resolution: + { + integrity: sha512-Rg9F61S1tz1Dv3iUyyGP26bxoi7WJAG2+f2fBbSmFuJ+JTH4Jvu2/F1bBig8Dz01ejzVhbNSUUCfoDhSvksIsQ==, + } + engines: { node: ">=8" } + dependencies: + "@sentry/core": 7.31.1 + "@sentry/replay": 7.31.1 + "@sentry/types": 7.31.1 + "@sentry/utils": 7.31.1 + tslib: 1.14.1 + dev: false + + /@sentry/cli/1.74.6: + resolution: + { + integrity: sha512-pJ7JJgozyjKZSTjOGi86chIngZMLUlYt2HOog+OJn+WGvqEkVymu8m462j1DiXAnex9NspB4zLLNuZ/R6rTQHg==, + } + engines: { node: ">= 8" } + hasBin: true + requiresBuild: true + dependencies: + https-proxy-agent: 5.0.1 + mkdirp: 0.5.6 + node-fetch: 2.6.7 + npmlog: 4.1.2 + progress: 2.0.3 + proxy-from-env: 1.1.0 + which: 2.0.2 + transitivePeerDependencies: + - encoding + - supports-color + dev: false + + /@sentry/core/7.31.1: + resolution: + { + integrity: sha512-quaNU6z8jabmatBTDi28Wpff2yzfWIp/IU4bbi2QOtEiCNT+TQJXqlRTRMu9xLrX7YzyKCL5X2gbit/85lyWUg==, + } + engines: { node: ">=8" } + dependencies: + "@sentry/types": 7.31.1 + "@sentry/utils": 7.31.1 + tslib: 1.14.1 + dev: false + + /@sentry/integrations/7.31.1: + resolution: + { + integrity: sha512-El+qzwbiXHPDWg8ZmX+W/kCheoaYoaAJuaG2+l3D5Y4ny8JNYfSMCum9qXVEb8oB98fFHfSEoFzB+z54pH+p3w==, + } + engines: { node: ">=8" } + dependencies: + "@sentry/types": 7.31.1 + "@sentry/utils": 7.31.1 + localforage: 1.10.0 + tslib: 1.14.1 + dev: false + + /@sentry/nextjs/7.31.1_next@12.3.1+react@18.2.0: + resolution: + { + integrity: sha512-Azqa2YwVH4LZjq/U1gsSwqoLBcbNhxxaMIDOocHm7ACbk0Dl3u3cZKDnRUJZ591+DTlDSfgE/WXjs/hWuNohSQ==, + } + engines: { node: ">=8" } + peerDependencies: + next: ^10.0.8 || ^11.0 || ^12.0 || ^13.0 + react: 15.x || 16.x || 17.x || 18.x + webpack: ">= 4.0.0" + peerDependenciesMeta: + webpack: + optional: true + dependencies: + "@rollup/plugin-commonjs": 24.0.0_rollup@2.78.0 + "@sentry/core": 7.31.1 + "@sentry/integrations": 7.31.1 + "@sentry/node": 7.31.1 + "@sentry/react": 7.31.1_react@18.2.0 + "@sentry/tracing": 7.31.1 + "@sentry/types": 7.31.1 + "@sentry/utils": 7.31.1 + "@sentry/webpack-plugin": 1.20.0 + chalk: 3.0.0 + next: 12.3.1_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + rollup: 2.78.0 + tslib: 1.14.1 + transitivePeerDependencies: + - encoding + - supports-color + dev: false + + /@sentry/node/7.31.1: + resolution: + { + integrity: sha512-4VzfOU1YHeoGkBQmkVXlXoXITf+1NkZEREKhdzgpVAkVjb2Tk3sMoFov4wOKWnNTTj4ka50xyaw/ZmqApgQ4Pw==, + } + engines: { node: ">=8" } + dependencies: + "@sentry/core": 7.31.1 + "@sentry/types": 7.31.1 + "@sentry/utils": 7.31.1 + cookie: 0.4.2 + https-proxy-agent: 5.0.1 + lru_map: 0.3.3 + tslib: 1.14.1 + transitivePeerDependencies: + - supports-color + dev: false + + /@sentry/react/7.31.1_react@18.2.0: + resolution: + { + integrity: sha512-h65vrF7xVFV+JAvgUJQSqfY4EPU+E4Y39nwjQdnMvdrhb3gjlhOUQTBVGibuM0/bvwm7vBgjfVSBOezavfp6eA==, + } + engines: { node: ">=8" } + peerDependencies: + react: 15.x || 16.x || 17.x || 18.x + dependencies: + "@sentry/browser": 7.31.1 + "@sentry/types": 7.31.1 + "@sentry/utils": 7.31.1 + hoist-non-react-statics: 3.3.2 + react: 18.2.0 + tslib: 1.14.1 + dev: false + + /@sentry/replay/7.31.1: + resolution: + { + integrity: sha512-sLArvwZn6IwA/bASctyhxN7LhdCXJvMmyTynRfmk7pzuNzBMc5CNlHeIsDpHrfQuH53IKicvl6cHnHyclu5DSA==, + } + engines: { node: ">=12" } + dependencies: + "@sentry/core": 7.31.1 + "@sentry/types": 7.31.1 + "@sentry/utils": 7.31.1 + dev: false + + /@sentry/tracing/7.31.1: + resolution: + { + integrity: sha512-kW6vNwddp2Ycq2JfTzveUEIRF9YQwvl7L6BBoOZt9oVnYlsPipEeyU2Q277LatHldr8hDo2tbz/vz2BQjO5GSw==, + } + engines: { node: ">=8" } + dependencies: + "@sentry/core": 7.31.1 + "@sentry/types": 7.31.1 + "@sentry/utils": 7.31.1 + tslib: 1.14.1 + dev: false + + /@sentry/types/7.31.1: + resolution: + { + integrity: sha512-1uzr2l0AxEnxUX/S0EdmXUQ15/kDsam8Nbdw4Gai8SU764XwQgA/TTjoewVP597CDI/AHKan67Y630/Ylmkx9w==, + } + engines: { node: ">=8" } + dev: false + + /@sentry/utils/7.31.1: + resolution: + { + integrity: sha512-ZsIPq29aNdP9q3R7qIzJhZ9WW+4DzE9g5SfGwx3UjTIxoRRBfdUJUbf7S+LKEdvCkKbyoDt6FLt5MiSJV43xBA==, + } + engines: { node: ">=8" } + dependencies: + "@sentry/types": 7.31.1 + tslib: 1.14.1 + dev: false + + /@sentry/webpack-plugin/1.20.0: + resolution: + { + integrity: sha512-Ssj1mJVFsfU6vMCOM2d+h+KQR7QHSfeIP16t4l20Uq/neqWXZUQ2yvQfe4S3BjdbJXz/X4Rw8Hfy1Sd0ocunYw==, + } + engines: { node: ">= 8" } + dependencies: + "@sentry/cli": 1.74.6 + webpack-sources: 3.2.3 + transitivePeerDependencies: + - encoding + - supports-color + dev: false + + /@sindresorhus/is/0.14.0: + resolution: + { + integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==, + } + engines: { node: ">=6" } + dev: true + + /@swc/helpers/0.4.11: + resolution: + { + integrity: sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw==, + } + dependencies: + tslib: 2.4.0 + dev: false + + /@szmarczak/http-timer/1.1.2: + resolution: + { + integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==, + } + engines: { node: ">=6" } + dependencies: + defer-to-connect: 1.1.3 + dev: true + + /@tootallnate/once/2.0.0: + resolution: + { + integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==, + } + engines: { node: ">= 10" } + dev: true + + /@tsconfig/node10/1.0.9: + resolution: + { + integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==, + } + dev: true + + /@tsconfig/node12/1.0.11: + resolution: + { + integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==, + } + dev: true + + /@tsconfig/node14/1.0.3: + resolution: + { + integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==, + } + dev: true + + /@tsconfig/node16/1.0.3: + resolution: + { + integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==, + } + dev: true + + /@types/estree/1.0.0: + resolution: + { + integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==, + } + dev: false + + /@types/js-yaml/4.0.5: + resolution: + { + integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==, + } + dev: true + + /@types/json-schema/7.0.11: + resolution: + { + integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==, + } + dev: true + + /@types/json-stable-stringify/1.0.34: + resolution: + { + integrity: sha512-s2cfwagOQAS8o06TcwKfr9Wx11dNGbH2E9vJz1cqV+a/LOyhWNLUNd6JSRYNzvB4d29UuJX2M0Dj9vE1T8fRXw==, + } + dev: true + + /@types/json5/0.0.29: + resolution: + { + integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, + } + dev: true + + /@types/jsonwebtoken/8.5.8: + resolution: + { + integrity: sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==, + } + dependencies: + "@types/node": 18.0.1 + dev: true + + /@types/keyv/3.1.4: + resolution: + { + integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==, + } + dependencies: + "@types/node": 18.0.1 + dev: true + + /@types/minimatch/3.0.5: + resolution: + { + integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==, + } + dev: true + + /@types/node/18.0.1: + resolution: + { + integrity: sha512-CmR8+Tsy95hhwtZBKJBs0/FFq4XX7sDZHlGGf+0q+BRZfMbOTkzkj0AFAuTyXbObDIoanaBBW0+KEW+m3N16Wg==, + } + dev: true + + /@types/parse-json/4.0.0: + resolution: + { + integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==, + } + dev: true + + /@types/prop-types/15.7.5: + resolution: + { + integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==, + } + + /@types/react-dom/18.0.6: + resolution: + { + integrity: sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==, + } + dependencies: + "@types/react": 18.0.14 + dev: true + + /@types/react-transition-group/4.4.5: + resolution: + { + integrity: sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==, + } + dependencies: + "@types/react": 18.0.14 + dev: false + + /@types/react/18.0.14: + resolution: + { + integrity: sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==, + } + dependencies: + "@types/prop-types": 15.7.5 + "@types/scheduler": 0.16.2 + csstype: 3.1.0 + + /@types/responselike/1.0.0: + resolution: + { + integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==, + } + dependencies: + "@types/node": 18.0.1 + dev: true + + /@types/scheduler/0.16.2: + resolution: + { + integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==, + } + + /@types/ws/8.5.3: + resolution: + { + integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==, + } + dependencies: + "@types/node": 18.0.1 + dev: true + + /@typescript-eslint/eslint-plugin/5.33.0_4jeddhivx3y2sgb42mta5efkci: + resolution: + { + integrity: sha512-jHvZNSW2WZ31OPJ3enhLrEKvAZNyAFWZ6rx9tUwaessTc4sx9KmgMNhVcqVAl1ETnT5rU5fpXTLmY9YvC1DCNg==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + "@typescript-eslint/parser": ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@typescript-eslint/parser": 5.33.0_4hx5bygx4rxgd7xwyndf6ymwce + "@typescript-eslint/scope-manager": 5.33.0 + "@typescript-eslint/type-utils": 5.33.0_4hx5bygx4rxgd7xwyndf6ymwce + "@typescript-eslint/utils": 5.33.0_4hx5bygx4rxgd7xwyndf6ymwce + debug: 4.3.4 + eslint: 8.15.0 + functional-red-black-tree: 1.0.1 + ignore: 5.2.0 + regexpp: 3.2.0 + semver: 7.3.7 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser/5.33.0_4hx5bygx4rxgd7xwyndf6ymwce: + resolution: + { + integrity: sha512-cgM5cJrWmrDV2KpvlcSkelTBASAs1mgqq+IUGKJvFxWrapHpaRy5EXPQz9YaKF3nZ8KY18ILTiVpUtbIac86/w==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@typescript-eslint/scope-manager": 5.33.0 + "@typescript-eslint/types": 5.33.0 + "@typescript-eslint/typescript-estree": 5.33.0_typescript@4.7.4 + debug: 4.3.4 + eslint: 8.15.0 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/scope-manager/5.33.0: + resolution: + { + integrity: sha512-/Jta8yMNpXYpRDl8EwF/M8It2A9sFJTubDo0ATZefGXmOqlaBffEw0ZbkbQ7TNDK6q55NPHFshGBPAZvZkE8Pw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + "@typescript-eslint/types": 5.33.0 + "@typescript-eslint/visitor-keys": 5.33.0 + dev: true + + /@typescript-eslint/type-utils/5.33.0_4hx5bygx4rxgd7xwyndf6ymwce: + resolution: + { + integrity: sha512-2zB8uEn7hEH2pBeyk3NpzX1p3lF9dKrEbnXq1F7YkpZ6hlyqb2yZujqgRGqXgRBTHWIUG3NGx/WeZk224UKlIA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: "*" + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@typescript-eslint/utils": 5.33.0_4hx5bygx4rxgd7xwyndf6ymwce + debug: 4.3.4 + eslint: 8.15.0 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/types/5.33.0: + resolution: + { + integrity: sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dev: true + + /@typescript-eslint/typescript-estree/5.33.0_typescript@4.7.4: + resolution: + { + integrity: sha512-tqq3MRLlggkJKJUrzM6wltk8NckKyyorCSGMq4eVkyL5sDYzJJcMgZATqmF8fLdsWrW7OjjIZ1m9v81vKcaqwQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@typescript-eslint/types": 5.33.0 + "@typescript-eslint/visitor-keys": 5.33.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.7 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils/5.33.0_4hx5bygx4rxgd7xwyndf6ymwce: + resolution: + { + integrity: sha512-JxOAnXt9oZjXLIiXb5ZIcZXiwVHCkqZgof0O8KPgz7C7y0HS42gi75PdPlqh1Tf109M0fyUw45Ao6JLo7S5AHw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + "@types/json-schema": 7.0.11 + "@typescript-eslint/scope-manager": 5.33.0 + "@typescript-eslint/types": 5.33.0 + "@typescript-eslint/typescript-estree": 5.33.0_typescript@4.7.4 + eslint: 8.15.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0_eslint@8.15.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/visitor-keys/5.33.0: + resolution: + { + integrity: sha512-/XsqCzD4t+Y9p5wd9HZiptuGKBlaZO5showwqODii5C0nZawxWLF+Q6k5wYHBrQv96h6GYKyqqMHCSTqta8Kiw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + "@typescript-eslint/types": 5.33.0 + eslint-visitor-keys: 3.3.0 + dev: true + + /@urql/core/2.6.1_graphql@16.5.0: + resolution: + { + integrity: sha512-gYrEHy3tViJhwIhauK6MIf2Qp09QTsgNHZRd0n71rS+hF6gdwjspf1oKljl4m25+272cJF7fPjBUGmjaiEr7Kg==, + } + peerDependencies: + graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + "@graphql-typed-document-node/core": 3.1.1_graphql@16.5.0 + graphql: 16.5.0 + wonka: 4.0.15 + dev: false + + /@urql/exchange-auth/0.1.7_graphql@16.5.0: + resolution: + { + integrity: sha512-4Bmmi6YMW1YjZnTdr0Gfp9IoIY1fpNGq/fo1XHWEFEYe+IEOEDQhKT1CyhztyvvKpFw2C46D32MJRWJHQUPo/g==, + } + peerDependencies: + graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + "@urql/core": 2.6.1_graphql@16.5.0 + graphql: 16.5.0 + wonka: 4.0.15 + dev: false + + /@urql/introspection/0.3.1_graphql@16.5.0: + resolution: + { + integrity: sha512-4Srr45lA00cVlfRGtGJqYlc2vcPN6BZwFW9EVY20yROaoADCGNxm6xmScZhxuCRQPhOB9DXtuYs2KNrOo84ZeA==, + } + peerDependencies: + graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + graphql: 16.5.0 + dev: true + + /@whatwg-node/fetch/0.2.8: + resolution: + { + integrity: sha512-KyUD1Vx9TpdTTlM01aXOx1NED93C33cOT/5RyCqVL6H/srGTU1hlLacOLgmYSLNzkEVerVfhb7Bd6IxiI7JziA==, + } + dependencies: + "@peculiar/webcrypto": 1.4.0 + abort-controller: 3.0.0 + busboy: 1.6.0 + event-target-polyfill: 0.0.3 + form-data-encoder: 1.7.2 + formdata-node: 4.3.3 + node-fetch: 2.6.7 + undici: 5.8.2 + web-streams-polyfill: 3.2.1 + transitivePeerDependencies: + - encoding + dev: true + + /abort-controller/3.0.0: + resolution: + { + integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==, + } + engines: { node: ">=6.5" } + dependencies: + event-target-shim: 5.0.1 + dev: true + + /acorn-jsx/5.3.2_acorn@8.8.0: + resolution: + { + integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, + } + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.8.0 + dev: true + + /acorn-walk/8.2.0: + resolution: + { + integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==, + } + engines: { node: ">=0.4.0" } + dev: true + + /acorn/8.8.0: + resolution: + { + integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==, + } + engines: { node: ">=0.4.0" } + hasBin: true + dev: true + + /agent-base/6.0.2: + resolution: + { + integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, + } + engines: { node: ">= 6.0.0" } + dependencies: + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + + /ajv/6.12.6: + resolution: + { + integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, + } + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + dev: true + + /ansi-escapes/3.2.0: + resolution: + { + integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==, + } + engines: { node: ">=4" } + dev: true + + /ansi-escapes/4.3.2: + resolution: + { + integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, + } + engines: { node: ">=8" } + dependencies: + type-fest: 0.21.3 + dev: true + + /ansi-regex/2.1.1: + resolution: + { + integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==, + } + engines: { node: ">=0.10.0" } + + /ansi-regex/3.0.1: + resolution: + { + integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==, + } + engines: { node: ">=4" } + dev: true + + /ansi-regex/5.0.1: + resolution: + { + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, + } + engines: { node: ">=8" } + + /ansi-styles/2.2.1: + resolution: + { + integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==, + } + engines: { node: ">=0.10.0" } + dev: true + + /ansi-styles/3.2.1: + resolution: + { + integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, + } + engines: { node: ">=4" } + dependencies: + color-convert: 1.9.3 + dev: true + + /ansi-styles/4.3.0: + resolution: + { + integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, + } + engines: { node: ">=8" } + dependencies: + color-convert: 2.0.1 + + /any-observable/0.3.0_rxjs@6.6.7: + resolution: + { + integrity: sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==, + } + engines: { node: ">=6" } + peerDependencies: + rxjs: "*" + zenObservable: "*" + peerDependenciesMeta: + rxjs: + optional: true + zenObservable: + optional: true + dependencies: + rxjs: 6.6.7 + dev: true + + /anymatch/3.1.2: + resolution: + { + integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==, + } + engines: { node: ">= 8" } + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + dev: true + + /aproba/1.2.0: + resolution: + { + integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==, + } + dev: false + + /are-we-there-yet/1.1.7: + resolution: + { + integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==, + } + dependencies: + delegates: 1.0.0 + readable-stream: 2.3.7 + dev: false + + /arg/4.1.3: + resolution: + { + integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==, + } + dev: true + + /argparse/2.0.1: + resolution: + { + integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, + } + dev: true + + /aria-hidden/1.1.3: + resolution: + { + integrity: sha512-RhVWFtKH5BiGMycI72q2RAFMLQi8JP9bLuQXgR5a8Znp7P5KOIADSJeyfI8PCVxLEp067B2HbP5JIiI/PXIZeA==, + } + engines: { node: ">=8.5.0" } + dependencies: + tslib: 1.14.1 + dev: false + + /aria-query/4.2.2: + resolution: + { + integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==, + } + engines: { node: ">=6.0" } + dependencies: + "@babel/runtime": 7.18.9 + "@babel/runtime-corejs3": 7.18.9 + dev: true + + /array-differ/3.0.0: + resolution: + { + integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==, + } + engines: { node: ">=8" } + dev: true + + /array-includes/3.1.5: + resolution: + { + integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + get-intrinsic: 1.1.2 + is-string: 1.0.7 + dev: true + + /array-union/2.1.0: + resolution: + { + integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, + } + engines: { node: ">=8" } + dev: true + + /array.prototype.flat/1.3.0: + resolution: + { + integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + es-shim-unscopables: 1.0.0 + dev: true + + /array.prototype.flatmap/1.3.0: + resolution: + { + integrity: sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + es-shim-unscopables: 1.0.0 + dev: true + + /arrify/2.0.1: + resolution: + { + integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==, + } + engines: { node: ">=8" } + dev: true + + /asap/2.0.6: + resolution: + { + integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==, + } + dev: true + + /asn1js/3.0.5: + resolution: + { + integrity: sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==, + } + engines: { node: ">=12.0.0" } + dependencies: + pvtsutils: 1.3.2 + pvutils: 1.1.3 + tslib: 2.4.0 + dev: true + + /ast-types-flow/0.0.7: + resolution: + { + integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==, + } + dev: true + + /asynckit/0.4.0: + resolution: + { + integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, + } + dev: true + + /auto-bind/4.0.0: + resolution: + { + integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==, + } + engines: { node: ">=8" } + dev: true + + /autoprefixer/10.4.8_postcss@8.4.16: + resolution: + { + integrity: sha512-75Jr6Q/XpTqEf6D2ltS5uMewJIx5irCU1oBYJrWjFenq/m12WRRrz6g15L1EIoYvPLXTbEry7rDOwrcYNj77xw==, + } + engines: { node: ^10 || ^12 || >=14 } + hasBin: true + peerDependencies: + postcss: ^8.1.0 + dependencies: + browserslist: 4.21.3 + caniuse-lite: 1.0.30001375 + fraction.js: 4.2.0 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /axe-core/4.4.3: + resolution: + { + integrity: sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==, + } + engines: { node: ">=4" } + dev: true + + /axobject-query/2.2.0: + resolution: + { + integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==, + } + dev: true + + /babel-plugin-dynamic-import-node/2.3.3: + resolution: + { + integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==, + } + dependencies: + object.assign: 4.1.3 + dev: true + + /babel-plugin-syntax-trailing-function-commas/7.0.0-beta.0: + resolution: + { + integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==, + } + dev: true + + /babel-preset-fbjs/3.4.0_@babel+core@7.18.10: + resolution: + { + integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==, + } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.18.10 + "@babel/plugin-proposal-class-properties": 7.18.6_@babel+core@7.18.10 + "@babel/plugin-proposal-object-rest-spread": 7.18.9_@babel+core@7.18.10 + "@babel/plugin-syntax-class-properties": 7.12.13_@babel+core@7.18.10 + "@babel/plugin-syntax-flow": 7.18.6_@babel+core@7.18.10 + "@babel/plugin-syntax-jsx": 7.18.6_@babel+core@7.18.10 + "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.18.10 + "@babel/plugin-transform-arrow-functions": 7.18.6_@babel+core@7.18.10 + "@babel/plugin-transform-block-scoped-functions": 7.18.6_@babel+core@7.18.10 + "@babel/plugin-transform-block-scoping": 7.18.9_@babel+core@7.18.10 + "@babel/plugin-transform-classes": 7.18.9_@babel+core@7.18.10 + "@babel/plugin-transform-computed-properties": 7.18.9_@babel+core@7.18.10 + "@babel/plugin-transform-destructuring": 7.18.9_@babel+core@7.18.10 + "@babel/plugin-transform-flow-strip-types": 7.18.9_@babel+core@7.18.10 + "@babel/plugin-transform-for-of": 7.18.8_@babel+core@7.18.10 + "@babel/plugin-transform-function-name": 7.18.9_@babel+core@7.18.10 + "@babel/plugin-transform-literals": 7.18.9_@babel+core@7.18.10 + "@babel/plugin-transform-member-expression-literals": 7.18.6_@babel+core@7.18.10 + "@babel/plugin-transform-modules-commonjs": 7.18.6_@babel+core@7.18.10 + "@babel/plugin-transform-object-super": 7.18.6_@babel+core@7.18.10 + "@babel/plugin-transform-parameters": 7.18.8_@babel+core@7.18.10 + "@babel/plugin-transform-property-literals": 7.18.6_@babel+core@7.18.10 + "@babel/plugin-transform-react-display-name": 7.18.6_@babel+core@7.18.10 + "@babel/plugin-transform-react-jsx": 7.18.10_@babel+core@7.18.10 + "@babel/plugin-transform-shorthand-properties": 7.18.6_@babel+core@7.18.10 + "@babel/plugin-transform-spread": 7.18.9_@babel+core@7.18.10 + "@babel/plugin-transform-template-literals": 7.18.9_@babel+core@7.18.10 + babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 + transitivePeerDependencies: + - supports-color + dev: true + + /balanced-match/1.0.2: + resolution: + { + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, + } + + /base64-js/1.5.1: + resolution: + { + integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, + } + dev: true + + /binary-extensions/2.2.0: + resolution: + { + integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==, + } + engines: { node: ">=8" } + dev: true + + /bl/4.1.0: + resolution: + { + integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==, + } + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.0 + dev: true + + /brace-expansion/1.1.11: + resolution: + { + integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, + } + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /brace-expansion/2.0.1: + resolution: + { + integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, + } + dependencies: + balanced-match: 1.0.2 + dev: false + + /braces/3.0.2: + resolution: + { + integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, + } + engines: { node: ">=8" } + dependencies: + fill-range: 7.0.1 + + /browserslist/4.21.3: + resolution: + { + integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==, + } + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } + hasBin: true + dependencies: + caniuse-lite: 1.0.30001415 + electron-to-chromium: 1.4.213 + node-releases: 2.0.6 + update-browserslist-db: 1.0.5_browserslist@4.21.3 + dev: true + + /bser/2.1.1: + resolution: + { + integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==, + } + dependencies: + node-int64: 0.4.0 + dev: true + + /buffer-equal-constant-time/1.0.1: + resolution: { integrity: sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk= } + dev: true + + /buffer/5.7.1: + resolution: + { + integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, + } + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + dev: true + + /busboy/1.6.0: + resolution: + { + integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==, + } + engines: { node: ">=10.16.0" } + dependencies: + streamsearch: 1.1.0 + + /bytes/3.1.2: + resolution: + { + integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==, + } + engines: { node: ">= 0.8" } + dev: false + + /cacheable-request/6.1.0: + resolution: + { + integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==, + } + engines: { node: ">=8" } + dependencies: + clone-response: 1.0.3 + get-stream: 5.2.0 + http-cache-semantics: 4.1.0 + keyv: 3.1.0 + lowercase-keys: 2.0.0 + normalize-url: 4.5.1 + responselike: 1.0.2 + dev: true + + /call-bind/1.0.2: + resolution: + { + integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, + } + dependencies: + function-bind: 1.1.1 + get-intrinsic: 1.1.2 + dev: true + + /callsites/3.1.0: + resolution: + { + integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, + } + engines: { node: ">=6" } + dev: true + + /camel-case/4.1.2: + resolution: + { + integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==, + } + dependencies: + pascal-case: 3.1.2 + tslib: 2.4.0 + dev: true + + /camelcase/5.3.1: + resolution: + { + integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==, + } + engines: { node: ">=6" } + dev: true + + /caniuse-lite/1.0.30001375: + resolution: + { + integrity: sha512-kWIMkNzLYxSvnjy0hL8w1NOaWNr2rn39RTAVyIwcw8juu60bZDWiF1/loOYANzjtJmy6qPgNmn38ro5Pygagdw==, + } + dev: true + + /caniuse-lite/1.0.30001415: + resolution: + { + integrity: sha512-ER+PfgCJUe8BqunLGWd/1EY4g8AzQcsDAVzdtMGKVtQEmKAwaFfU6vb7EAVIqTMYsqxBorYZi2+22Iouj/y7GQ==, + } + + /capital-case/1.0.4: + resolution: + { + integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==, + } + dependencies: + no-case: 3.0.4 + tslib: 2.4.0 + upper-case-first: 2.0.2 + dev: true + + /chalk/1.1.3: + resolution: + { + integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==, + } + engines: { node: ">=0.10.0" } + dependencies: + ansi-styles: 2.2.1 + escape-string-regexp: 1.0.5 + has-ansi: 2.0.0 + strip-ansi: 3.0.1 + supports-color: 2.0.0 + dev: true + + /chalk/2.4.2: + resolution: + { + integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, + } + engines: { node: ">=4" } + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: true + + /chalk/3.0.0: + resolution: + { + integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==, + } + engines: { node: ">=8" } + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + /chalk/4.1.2: + resolution: + { + integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, + } + engines: { node: ">=10" } + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /change-case-all/1.0.14: + resolution: + { + integrity: sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==, + } + dependencies: + change-case: 4.1.2 + is-lower-case: 2.0.2 + is-upper-case: 2.0.2 + lower-case: 2.0.2 + lower-case-first: 2.0.2 + sponge-case: 1.0.1 + swap-case: 2.0.2 + title-case: 3.0.3 + upper-case: 2.0.2 + upper-case-first: 2.0.2 + dev: true + + /change-case/4.1.2: + resolution: + { + integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==, + } + dependencies: + camel-case: 4.1.2 + capital-case: 1.0.4 + constant-case: 3.0.4 + dot-case: 3.0.4 + header-case: 2.0.4 + no-case: 3.0.4 + param-case: 3.0.4 + pascal-case: 3.1.2 + path-case: 3.0.4 + sentence-case: 3.0.4 + snake-case: 3.0.4 + tslib: 2.4.0 + dev: true + + /chardet/0.7.0: + resolution: + { + integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==, + } + dev: true + + /chokidar/3.5.3: + resolution: + { + integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==, + } + engines: { node: ">= 8.10.0" } + dependencies: + anymatch: 3.1.2 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /clean-publish/4.0.1: + resolution: + { + integrity: sha512-6v0bh5kQD5FDlxBgXDVNNc6KmAB7iIP/GHD91q9xsGVZT5XB9Y8TNqB7dL5u9PTZlBeLpBw+A1AseRlEEJLSWA==, + } + engines: { node: ">= 16.0.0" } + hasBin: true + dependencies: + cross-spawn: 7.0.3 + fast-glob: 3.2.11 + lilconfig: 2.0.6 + micromatch: 4.0.5 + dev: true + + /cli-cursor/2.1.0: + resolution: + { + integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==, + } + engines: { node: ">=4" } + dependencies: + restore-cursor: 2.0.0 + dev: true + + /cli-cursor/3.1.0: + resolution: + { + integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==, + } + engines: { node: ">=8" } + dependencies: + restore-cursor: 3.1.0 + dev: true + + /cli-spinners/2.7.0: + resolution: + { + integrity: sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==, + } + engines: { node: ">=6" } + dev: true + + /cli-truncate/0.2.1: + resolution: + { + integrity: sha512-f4r4yJnbT++qUPI9NR4XLDLq41gQ+uqnPItWG0F5ZkehuNiTTa3EY0S4AqTSUOeJ7/zU41oWPQSNkW5BqPL9bg==, + } + engines: { node: ">=0.10.0" } + dependencies: + slice-ansi: 0.0.4 + string-width: 1.0.2 + dev: true + + /cli-width/3.0.0: + resolution: + { + integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==, + } + engines: { node: ">= 10" } + dev: true + + /cliui/6.0.0: + resolution: + { + integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==, + } + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 6.2.0 + dev: true + + /cliui/7.0.4: + resolution: + { + integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==, + } + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + + /clone-response/1.0.3: + resolution: + { + integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==, + } + dependencies: + mimic-response: 1.0.1 + dev: true + + /clone/1.0.4: + resolution: + { + integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, + } + engines: { node: ">=0.8" } + dev: true + + /clsx/1.2.1: + resolution: + { + integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==, + } + engines: { node: ">=6" } + dev: false + + /code-point-at/1.1.0: + resolution: + { + integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==, + } + engines: { node: ">=0.10.0" } + + /color-convert/1.9.3: + resolution: + { + integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, + } + dependencies: + color-name: 1.1.3 + dev: true + + /color-convert/2.0.1: + resolution: + { + integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, + } + engines: { node: ">=7.0.0" } + dependencies: + color-name: 1.1.4 + + /color-name/1.1.3: + resolution: + { + integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, + } + dev: true + + /color-name/1.1.4: + resolution: + { + integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, + } + + /combined-stream/1.0.8: + resolution: + { + integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, + } + engines: { node: ">= 0.8" } + dependencies: + delayed-stream: 1.0.0 + dev: true + + /common-tags/1.8.2: + resolution: + { + integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==, + } + engines: { node: ">=4.0.0" } + dev: true + + /commondir/1.0.1: + resolution: + { + integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==, + } + dev: false + + /compute-scroll-into-view/1.0.17: + resolution: + { + integrity: sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==, + } + dev: false + + /concat-map/0.0.1: + resolution: { integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= } + dev: true + + /confusing-browser-globals/1.0.11: + resolution: + { + integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==, + } + dev: true + + /console-control-strings/1.1.0: + resolution: + { + integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==, + } + dev: false + + /constant-case/3.0.4: + resolution: + { + integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==, + } + dependencies: + no-case: 3.0.4 + tslib: 2.4.0 + upper-case: 2.0.2 + dev: true + + /convert-source-map/1.8.0: + resolution: + { + integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==, + } + dependencies: + safe-buffer: 5.1.2 + dev: true + + /cookie/0.4.2: + resolution: + { + integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==, + } + engines: { node: ">= 0.6" } + dev: false + + /core-js-pure/3.24.1: + resolution: + { + integrity: sha512-r1nJk41QLLPyozHUUPmILCEMtMw24NG4oWK6RbsDdjzQgg9ZvrUsPBj1MnG0wXXp1DCDU6j+wUvEmBSrtRbLXg==, + } + requiresBuild: true + dev: true + + /core-util-is/1.0.3: + resolution: + { + integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, + } + dev: false + + /cosmiconfig-toml-loader/1.0.0: + resolution: + { + integrity: sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==, + } + dependencies: + "@iarna/toml": 2.2.5 + dev: true + + /cosmiconfig-typescript-loader/3.1.1_x2aapophsqfcoaefqond3h4adq: + resolution: + { + integrity: sha512-SR5/NciF0vyYqcGsmB9WJ4QOKkcSSSzcBPLrnT6094BYahMy0eImWvlH3zoEOYqpF2zgiyAKHtWTXTo+fqgxPg==, + } + engines: { node: ">=12", npm: ">=6" } + peerDependencies: + "@types/node": "*" + cosmiconfig: ">=7" + ts-node: ">=10" + typescript: ">=3" + dependencies: + "@types/node": 18.0.1 + cosmiconfig: 7.0.1 + ts-node: 10.9.1_qqrtuuv3y2pz7xoxv47yka6pmi + typescript: 4.7.4 + dev: true + + /cosmiconfig/7.0.1: + resolution: + { + integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==, + } + engines: { node: ">=10" } + dependencies: + "@types/parse-json": 4.0.0 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + dev: true + + /create-require/1.1.1: + resolution: + { + integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, + } + dev: true + + /cross-fetch/3.1.5: + resolution: + { + integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==, + } + dependencies: + node-fetch: 2.6.7 + transitivePeerDependencies: + - encoding + dev: true + + /cross-spawn/7.0.3: + resolution: + { + integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, + } + engines: { node: ">= 8" } + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + + /css-vendor/2.0.8: + resolution: + { + integrity: sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==, + } + dependencies: + "@babel/runtime": 7.18.9 + is-in-browser: 1.1.3 + dev: false + + /csstype/2.6.20: + resolution: + { + integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==, + } + dev: false + + /csstype/3.1.0: + resolution: + { + integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==, + } + + /damerau-levenshtein/1.0.8: + resolution: + { + integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==, + } + dev: true + + /data-uri-to-buffer/4.0.0: + resolution: + { + integrity: sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==, + } + engines: { node: ">= 12" } + dev: false + + /dataloader/2.1.0: + resolution: + { + integrity: sha512-qTcEYLen3r7ojZNgVUaRggOI+KM7jrKxXeSHhogh/TWxYMeONEMqY+hmkobiYQozsGIyg9OYVzO4ZIfoB4I0pQ==, + } + dev: true + + /date-fns/1.30.1: + resolution: + { + integrity: sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==, + } + dev: true + + /debounce/1.2.1: + resolution: + { + integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==, + } + dev: true + + /debug/2.6.9: + resolution: + { + integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, + } + peerDependencies: + supports-color: "*" + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.0.0 + dev: true + + /debug/3.2.7: + resolution: + { + integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, + } + peerDependencies: + supports-color: "*" + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.3 + dev: true + + /debug/4.3.4: + resolution: + { + integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, + } + engines: { node: ">=6.0" } + peerDependencies: + supports-color: "*" + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + + /decamelize/1.2.0: + resolution: + { + integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==, + } + engines: { node: ">=0.10.0" } + dev: true + + /decompress-response/3.3.0: + resolution: + { + integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==, + } + engines: { node: ">=4" } + dependencies: + mimic-response: 1.0.1 + dev: true + + /deep-extend/0.6.0: + resolution: + { + integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==, + } + engines: { node: ">=4.0.0" } + dev: true + + /deep-is/0.1.4: + resolution: + { + integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==, + } + dev: true + + /defaults/1.0.3: + resolution: + { + integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==, + } + dependencies: + clone: 1.0.4 + dev: true + + /defer-to-connect/1.1.3: + resolution: + { + integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==, + } + dev: true + + /define-lazy-prop/2.0.0: + resolution: + { + integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==, + } + engines: { node: ">=8" } + dev: true + + /define-properties/1.1.4: + resolution: + { + integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==, + } + engines: { node: ">= 0.4" } + dependencies: + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 + dev: true + + /delayed-stream/1.0.0: + resolution: + { + integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, + } + engines: { node: ">=0.4.0" } + dev: true + + /delegates/1.0.0: + resolution: + { + integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==, + } + dev: false + + /depd/2.0.0: + resolution: + { + integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==, + } + engines: { node: ">= 0.8" } + dev: false + + /dependency-graph/0.11.0: + resolution: + { + integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==, + } + engines: { node: ">= 0.6.0" } + dev: true + + /detect-indent/6.1.0: + resolution: + { + integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, + } + engines: { node: ">=8" } + dev: true + + /diff/4.0.2: + resolution: + { + integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==, + } + engines: { node: ">=0.3.1" } + dev: true + + /dir-glob/3.0.1: + resolution: + { + integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, + } + engines: { node: ">=8" } + dependencies: + path-type: 4.0.0 + dev: true + + /doctrine/2.1.0: + resolution: + { + integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==, + } + engines: { node: ">=0.10.0" } + dependencies: + esutils: 2.0.3 + dev: true + + /doctrine/3.0.0: + resolution: + { + integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==, + } + engines: { node: ">=6.0.0" } + dependencies: + esutils: 2.0.3 + dev: true + + /dom-helpers/5.2.1: + resolution: + { + integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==, + } + dependencies: + "@babel/runtime": 7.18.9 + csstype: 3.1.0 + dev: false + + /dot-case/3.0.4: + resolution: + { + integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==, + } + dependencies: + no-case: 3.0.4 + tslib: 2.4.0 + dev: true + + /dotenv/16.0.1: + resolution: + { + integrity: sha512-1K6hR6wtk2FviQ4kEiSjFiH5rpzEVi8WW0x96aztHVMhEspNpc4DVOUTEHtEva5VThQ8IaBX1Pe4gSzpVVUsKQ==, + } + engines: { node: ">=12" } + dev: true + + /downshift/6.1.7_react@18.2.0: + resolution: + { + integrity: sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==, + } + peerDependencies: + react: ">=16.12.0" + dependencies: + "@babel/runtime": 7.18.9 + compute-scroll-into-view: 1.0.17 + prop-types: 15.8.1 + react: 18.2.0 + react-is: 17.0.2 + tslib: 2.4.0 + dev: false + + /dset/3.1.2: + resolution: + { + integrity: sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==, + } + engines: { node: ">=4" } + dev: true + + /duplexer3/0.1.5: + resolution: + { + integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==, + } + dev: true + + /ecdsa-sig-formatter/1.0.11: + resolution: + { + integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==, + } + dependencies: + safe-buffer: 5.2.1 + dev: true + + /electron-to-chromium/1.4.213: + resolution: + { + integrity: sha512-+3DbGHGOCHTVB/Ms63bGqbyC1b8y7Fk86+7ltssB8NQrZtSCvZG6eooSl9U2Q0yw++fL2DpHKOdTU0NVEkFObg==, + } + dev: true + + /elegant-spinner/1.0.1: + resolution: + { + integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==, + } + engines: { node: ">=0.10.0" } + dev: true + + /emoji-regex/8.0.0: + resolution: + { + integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, + } + + /emoji-regex/9.2.2: + resolution: + { + integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, + } + dev: true + + /end-of-stream/1.4.4: + resolution: + { + integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==, + } + dependencies: + once: 1.4.0 + dev: true + + /enhanced-resolve/5.10.0: + resolution: + { + integrity: sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==, + } + engines: { node: ">=10.13.0" } + dependencies: + graceful-fs: 4.2.10 + tapable: 2.2.1 + dev: true + + /error-ex/1.3.2: + resolution: + { + integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, + } + dependencies: + is-arrayish: 0.2.1 + dev: true + + /es-abstract/1.20.1: + resolution: + { + integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + es-to-primitive: 1.2.1 + function-bind: 1.1.1 + function.prototype.name: 1.1.5 + get-intrinsic: 1.1.2 + get-symbol-description: 1.0.0 + has: 1.0.3 + has-property-descriptors: 1.0.0 + has-symbols: 1.0.3 + internal-slot: 1.0.3 + is-callable: 1.2.4 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-weakref: 1.0.2 + object-inspect: 1.12.2 + object-keys: 1.1.1 + object.assign: 4.1.3 + regexp.prototype.flags: 1.4.3 + string.prototype.trimend: 1.0.5 + string.prototype.trimstart: 1.0.5 + unbox-primitive: 1.0.2 + dev: true + + /es-shim-unscopables/1.0.0: + resolution: + { + integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==, + } + dependencies: + has: 1.0.3 + dev: true + + /es-to-primitive/1.2.1: + resolution: + { + integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, + } + engines: { node: ">= 0.4" } + dependencies: + is-callable: 1.2.4 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + dev: true + + /escalade/3.1.1: + resolution: + { + integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, + } + engines: { node: ">=6" } + dev: true + + /escape-string-regexp/1.0.5: + resolution: + { + integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, + } + engines: { node: ">=0.8.0" } + dev: true + + /escape-string-regexp/4.0.0: + resolution: + { + integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==, + } + engines: { node: ">=10" } + dev: true + + /eslint-config-airbnb-base/15.0.0_gwd37gqv3vjv3xlpl7ju3ag2qu: + resolution: + { + integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==, + } + engines: { node: ^10.12.0 || >=12.0.0 } + peerDependencies: + eslint: ^7.32.0 || ^8.2.0 + eslint-plugin-import: ^2.25.2 + dependencies: + confusing-browser-globals: 1.0.11 + eslint: 8.15.0 + eslint-plugin-import: 2.26.0_rlu3ikeqoagajb37jwrqpkinza + object.assign: 4.1.3 + object.entries: 1.1.5 + semver: 6.3.0 + dev: true + + /eslint-config-airbnb/19.0.4_iujtx6kjuhqd62xy5hvrdwitn4: + resolution: + { + integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==, + } + engines: { node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^7.32.0 || ^8.2.0 + eslint-plugin-import: ^2.25.3 + eslint-plugin-jsx-a11y: ^6.5.1 + eslint-plugin-react: ^7.28.0 + eslint-plugin-react-hooks: ^4.3.0 + dependencies: + eslint: 8.15.0 + eslint-config-airbnb-base: 15.0.0_gwd37gqv3vjv3xlpl7ju3ag2qu + eslint-plugin-import: 2.26.0_rlu3ikeqoagajb37jwrqpkinza + eslint-plugin-jsx-a11y: 6.6.1_eslint@8.15.0 + eslint-plugin-react: 7.30.1_eslint@8.15.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.15.0 + object.assign: 4.1.3 + object.entries: 1.1.5 + dev: true + + /eslint-config-prettier/8.5.0_eslint@8.15.0: + resolution: + { + integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==, + } + hasBin: true + peerDependencies: + eslint: ">=7.0.0" + dependencies: + eslint: 8.15.0 + dev: true + + /eslint-import-resolver-node/0.3.6: + resolution: + { + integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==, + } + dependencies: + debug: 3.2.7 + resolve: 1.22.1 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-import-resolver-typescript/3.4.0_gwd37gqv3vjv3xlpl7ju3ag2qu: + resolution: + { + integrity: sha512-rBCgiEovwX/HQ8ESWV+XIWZaFiRtDeAXNZdcTATB8UbMuadc9qfGOlIP+vy+c7nsgfEBN4NTwy5qunGNptDP0Q==, + } + engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 } + peerDependencies: + eslint: "*" + eslint-plugin-import: "*" + dependencies: + debug: 4.3.4 + enhanced-resolve: 5.10.0 + eslint: 8.15.0 + eslint-plugin-import: 2.26.0_rlu3ikeqoagajb37jwrqpkinza + get-tsconfig: 4.2.0 + globby: 13.1.2 + is-core-module: 2.10.0 + is-glob: 4.0.3 + synckit: 0.8.2 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-module-utils/2.7.3_3emebfo47ot2oz7c77gnbpvqsy: + resolution: + { + integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==, + } + engines: { node: ">=4" } + peerDependencies: + "@typescript-eslint/parser": "*" + eslint-import-resolver-node: "*" + eslint-import-resolver-typescript: "*" + eslint-import-resolver-webpack: "*" + peerDependenciesMeta: + "@typescript-eslint/parser": + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + "@typescript-eslint/parser": 5.33.0_4hx5bygx4rxgd7xwyndf6ymwce + debug: 3.2.7 + eslint-import-resolver-node: 0.3.6 + eslint-import-resolver-typescript: 3.4.0_gwd37gqv3vjv3xlpl7ju3ag2qu + find-up: 2.1.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-import/2.26.0_rlu3ikeqoagajb37jwrqpkinza: + resolution: + { + integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, + } + engines: { node: ">=4" } + peerDependencies: + "@typescript-eslint/parser": "*" + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + "@typescript-eslint/parser": + optional: true + dependencies: + "@typescript-eslint/parser": 5.33.0_4hx5bygx4rxgd7xwyndf6ymwce + array-includes: 3.1.5 + array.prototype.flat: 1.3.0 + debug: 2.6.9 + doctrine: 2.1.0 + eslint: 8.15.0 + eslint-import-resolver-node: 0.3.6 + eslint-module-utils: 2.7.3_3emebfo47ot2oz7c77gnbpvqsy + has: 1.0.3 + is-core-module: 2.10.0 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.5 + resolve: 1.22.1 + tsconfig-paths: 3.14.1 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: true + + /eslint-plugin-jsx-a11y/6.6.1_eslint@8.15.0: + resolution: + { + integrity: sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==, + } + engines: { node: ">=4.0" } + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + "@babel/runtime": 7.18.9 + aria-query: 4.2.2 + array-includes: 3.1.5 + ast-types-flow: 0.0.7 + axe-core: 4.4.3 + axobject-query: 2.2.0 + damerau-levenshtein: 1.0.8 + emoji-regex: 9.2.2 + eslint: 8.15.0 + has: 1.0.3 + jsx-ast-utils: 3.3.3 + language-tags: 1.0.5 + minimatch: 3.1.2 + semver: 6.3.0 + dev: true + + /eslint-plugin-react-hooks/4.6.0_eslint@8.15.0: + resolution: + { + integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==, + } + engines: { node: ">=10" } + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dependencies: + eslint: 8.15.0 + dev: true + + /eslint-plugin-react/7.30.1_eslint@8.15.0: + resolution: + { + integrity: sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg==, + } + engines: { node: ">=4" } + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.5 + array.prototype.flatmap: 1.3.0 + doctrine: 2.1.0 + eslint: 8.15.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.3 + minimatch: 3.1.2 + object.entries: 1.1.5 + object.fromentries: 2.0.5 + object.hasown: 1.1.1 + object.values: 1.1.5 + prop-types: 15.8.1 + resolve: 2.0.0-next.4 + semver: 6.3.0 + string.prototype.matchall: 4.0.7 + dev: true + + /eslint-plugin-simple-import-sort/7.0.0_eslint@8.15.0: + resolution: + { + integrity: sha512-U3vEDB5zhYPNfxT5TYR7u01dboFZp+HNpnGhkDB2g/2E4wZ/g1Q9Ton8UwCLfRV9yAKyYqDh62oHOamvkFxsvw==, + } + peerDependencies: + eslint: ">=5.0.0" + dependencies: + eslint: 8.15.0 + dev: true + + /eslint-scope/5.1.1: + resolution: + { + integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==, + } + engines: { node: ">=8.0.0" } + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + + /eslint-scope/7.1.1: + resolution: + { + integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + dev: true + + /eslint-utils/3.0.0_eslint@8.15.0: + resolution: + { + integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, + } + engines: { node: ^10.0.0 || ^12.0.0 || >= 14.0.0 } + peerDependencies: + eslint: ">=5" + dependencies: + eslint: 8.15.0 + eslint-visitor-keys: 2.1.0 + dev: true + + /eslint-visitor-keys/2.1.0: + resolution: + { + integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==, + } + engines: { node: ">=10" } + dev: true + + /eslint-visitor-keys/3.3.0: + resolution: + { + integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dev: true + + /eslint/8.15.0: + resolution: + { + integrity: sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + hasBin: true + dependencies: + "@eslint/eslintrc": 1.3.0 + "@humanwhocodes/config-array": 0.9.5 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.1.1 + eslint-utils: 3.0.0_eslint@8.15.0 + eslint-visitor-keys: 3.3.0 + espree: 9.3.3 + esquery: 1.4.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + functional-red-black-tree: 1.0.1 + glob-parent: 6.0.2 + globals: 13.17.0 + ignore: 5.2.0 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.1 + regexpp: 3.2.0 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + text-table: 0.2.0 + v8-compile-cache: 2.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree/9.3.3: + resolution: + { + integrity: sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + acorn: 8.8.0 + acorn-jsx: 5.3.2_acorn@8.8.0 + eslint-visitor-keys: 3.3.0 + dev: true + + /esquery/1.4.0: + resolution: + { + integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==, + } + engines: { node: ">=0.10" } + dependencies: + estraverse: 5.3.0 + dev: true + + /esrecurse/4.3.0: + resolution: + { + integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==, + } + engines: { node: ">=4.0" } + dependencies: + estraverse: 5.3.0 + dev: true + + /estraverse/4.3.0: + resolution: + { + integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, + } + engines: { node: ">=4.0" } + dev: true + + /estraverse/5.3.0: + resolution: + { + integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, + } + engines: { node: ">=4.0" } + dev: true + + /estree-walker/2.0.2: + resolution: + { + integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, + } + dev: false + + /esutils/2.0.3: + resolution: + { + integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, + } + engines: { node: ">=0.10.0" } + dev: true + + /event-target-polyfill/0.0.3: + resolution: + { + integrity: sha512-ZMc6UuvmbinrCk4RzGyVmRyIsAyxMRlp4CqSrcQRO8Dy0A9ldbiRy5kdtBj4OtP7EClGdqGfIqo9JmOClMsGLQ==, + } + dev: true + + /event-target-shim/5.0.1: + resolution: + { + integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==, + } + engines: { node: ">=6" } + dev: true + + /execa/4.1.0: + resolution: + { + integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==, + } + engines: { node: ">=10" } + dependencies: + cross-spawn: 7.0.3 + get-stream: 5.2.0 + human-signals: 1.1.1 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + + /exenv/1.2.2: + resolution: + { + integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==, + } + dev: false + + /external-editor/3.1.0: + resolution: + { + integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, + } + engines: { node: ">=4" } + dependencies: + chardet: 0.7.0 + iconv-lite: 0.4.24 + tmp: 0.0.33 + dev: true + + /extract-files/11.0.0: + resolution: + { + integrity: sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==, + } + engines: { node: ^12.20 || >= 14.13 } + dev: true + + /extract-files/9.0.0: + resolution: + { + integrity: sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==, + } + engines: { node: ^10.17.0 || ^12.0.0 || >= 13.7.0 } + dev: true + + /fast-deep-equal/3.1.3: + resolution: + { + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, + } + dev: true + + /fast-glob/3.2.11: + resolution: + { + integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==, + } + engines: { node: ">=8.6.0" } + dependencies: + "@nodelib/fs.stat": 2.0.5 + "@nodelib/fs.walk": 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + + /fast-json-stable-stringify/2.1.0: + resolution: + { + integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, + } + dev: true + + /fast-levenshtein/2.0.6: + resolution: + { + integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, + } + dev: true + + /fastq/1.13.0: + resolution: + { + integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==, + } + dependencies: + reusify: 1.0.4 + + /fb-watchman/2.0.1: + resolution: + { + integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==, + } + dependencies: + bser: 2.1.1 + dev: true + + /fbjs-css-vars/1.0.2: + resolution: + { + integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==, + } + dev: true + + /fbjs/3.0.4: + resolution: + { + integrity: sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==, + } + dependencies: + cross-fetch: 3.1.5 + fbjs-css-vars: 1.0.2 + loose-envify: 1.4.0 + object-assign: 4.1.1 + promise: 7.3.1 + setimmediate: 1.0.5 + ua-parser-js: 0.7.31 + transitivePeerDependencies: + - encoding + dev: true + + /fetch-blob/3.2.0: + resolution: + { + integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==, + } + engines: { node: ^12.20 || >= 14.13 } + dependencies: + node-domexception: 1.0.0 + web-streams-polyfill: 3.2.1 + dev: false + + /figures/1.7.0: + resolution: + { + integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==, + } + engines: { node: ">=0.10.0" } + dependencies: + escape-string-regexp: 1.0.5 + object-assign: 4.1.1 + dev: true + + /figures/2.0.0: + resolution: + { + integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==, + } + engines: { node: ">=4" } + dependencies: + escape-string-regexp: 1.0.5 + dev: true + + /figures/3.2.0: + resolution: + { + integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==, + } + engines: { node: ">=8" } + dependencies: + escape-string-regexp: 1.0.5 + dev: true + + /file-entry-cache/6.0.1: + resolution: + { + integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==, + } + engines: { node: ^10.12.0 || >=12.0.0 } + dependencies: + flat-cache: 3.0.4 + dev: true + + /fill-range/7.0.1: + resolution: + { + integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, + } + engines: { node: ">=8" } + dependencies: + to-regex-range: 5.0.1 + + /find-up/2.1.0: + resolution: + { + integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==, + } + engines: { node: ">=4" } + dependencies: + locate-path: 2.0.0 + dev: true + + /find-up/4.1.0: + resolution: + { + integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, + } + engines: { node: ">=8" } + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + dev: true + + /flat-cache/3.0.4: + resolution: + { + integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==, + } + engines: { node: ^10.12.0 || >=12.0.0 } + dependencies: + flatted: 3.2.6 + rimraf: 3.0.2 + dev: true + + /flatted/3.2.6: + resolution: + { + integrity: sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==, + } + dev: true + + /form-data-encoder/1.7.2: + resolution: + { + integrity: sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==, + } + dev: true + + /form-data/3.0.1: + resolution: + { + integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==, + } + engines: { node: ">= 6" } + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: true + + /formdata-node/4.3.3: + resolution: + { + integrity: sha512-coTew7WODO2vF+XhpUdmYz4UBvlsiTMSNaFYZlrXIqYbFd4W7bMwnoALNLE6uvNgzTg2j1JDF0ZImEfF06VPAA==, + } + engines: { node: ">= 12.20" } + dependencies: + node-domexception: 1.0.0 + web-streams-polyfill: 4.0.0-beta.1 + dev: true + + /formdata-polyfill/4.0.10: + resolution: + { + integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==, + } + engines: { node: ">=12.20.0" } + dependencies: + fetch-blob: 3.2.0 + dev: false + + /fraction.js/4.2.0: + resolution: + { + integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==, + } + dev: true + + /fs.realpath/1.0.0: + resolution: + { + integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, + } + + /fsevents/2.3.2: + resolution: + { + integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, + } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + os: [darwin] + requiresBuild: true + optional: true + + /function-bind/1.1.1: + resolution: + { + integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, + } + dev: true + + /function.prototype.name/1.1.5: + resolution: + { + integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + functions-have-names: 1.2.3 + dev: true + + /functional-red-black-tree/1.0.1: + resolution: + { + integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==, + } + dev: true + + /functions-have-names/1.2.3: + resolution: + { + integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, + } + dev: true + + /gauge/2.7.4: + resolution: + { + integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==, + } + dependencies: + aproba: 1.2.0 + console-control-strings: 1.1.0 + has-unicode: 2.0.1 + object-assign: 4.1.1 + signal-exit: 3.0.7 + string-width: 1.0.2 + strip-ansi: 3.0.1 + wide-align: 1.1.5 + dev: false + + /gensync/1.0.0-beta.2: + resolution: + { + integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, + } + engines: { node: ">=6.9.0" } + dev: true + + /get-caller-file/2.0.5: + resolution: + { + integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, + } + engines: { node: 6.* || 8.* || >= 10.* } + dev: true + + /get-intrinsic/1.1.2: + resolution: + { + integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==, + } + dependencies: + function-bind: 1.1.1 + has: 1.0.3 + has-symbols: 1.0.3 + dev: true + + /get-stream/4.1.0: + resolution: + { + integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==, + } + engines: { node: ">=6" } + dependencies: + pump: 3.0.0 + dev: true + + /get-stream/5.2.0: + resolution: + { + integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==, + } + engines: { node: ">=8" } + dependencies: + pump: 3.0.0 + dev: true + + /get-symbol-description/1.0.0: + resolution: + { + integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.2 + dev: true + + /get-tsconfig/4.2.0: + resolution: + { + integrity: sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==, + } + dev: true + + /glob-parent/5.1.2: + resolution: + { + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, + } + engines: { node: ">= 6" } + dependencies: + is-glob: 4.0.3 + + /glob-parent/6.0.2: + resolution: + { + integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, + } + engines: { node: ">=10.13.0" } + dependencies: + is-glob: 4.0.3 + dev: true + + /glob/7.2.3: + resolution: + { + integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, + } + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /glob/8.1.0: + resolution: + { + integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==, + } + engines: { node: ">=12" } + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 5.1.5 + once: 1.4.0 + dev: false + + /globals/11.12.0: + resolution: + { + integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, + } + engines: { node: ">=4" } + dev: true + + /globals/13.17.0: + resolution: + { + integrity: sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==, + } + engines: { node: ">=8" } + dependencies: + type-fest: 0.20.2 + dev: true + + /globalyzer/0.1.0: + resolution: + { + integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==, + } + dev: true + + /globby/11.1.0: + resolution: + { + integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, + } + engines: { node: ">=10" } + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.11 + ignore: 5.2.0 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + + /globby/13.1.2: + resolution: + { + integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dependencies: + dir-glob: 3.0.1 + fast-glob: 3.2.11 + ignore: 5.2.0 + merge2: 1.4.1 + slash: 4.0.0 + dev: true + + /globrex/0.1.2: + resolution: + { + integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==, + } + dev: true + + /got/9.6.0: + resolution: + { + integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==, + } + engines: { node: ">=8.6" } + dependencies: + "@sindresorhus/is": 0.14.0 + "@szmarczak/http-timer": 1.1.2 + "@types/keyv": 3.1.4 + "@types/responselike": 1.0.0 + cacheable-request: 6.1.0 + decompress-response: 3.3.0 + duplexer3: 0.1.5 + get-stream: 4.1.0 + lowercase-keys: 1.0.1 + mimic-response: 1.0.1 + p-cancelable: 1.1.0 + to-readable-stream: 1.0.0 + url-parse-lax: 3.0.0 + dev: true + + /graceful-fs/4.2.10: + resolution: + { + integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==, + } + dev: true + + /graphql-config/4.3.3_kqlgh3qfz56lumowe57ujqqtt4: + resolution: + { + integrity: sha512-ju2LAbOk6GLp+8JY7mh3CrEe0iEj2AdImNKv58G0DyISBo72kDEJYNJ07hKmkHdIzhDsSHiVzaCVIyBU2LCUug==, + } + engines: { node: ">= 10.0.0" } + peerDependencies: + graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + "@graphql-tools/graphql-file-loader": 7.5.1_graphql@16.5.0 + "@graphql-tools/json-file-loader": 7.4.2_graphql@16.5.0 + "@graphql-tools/load": 7.7.3_graphql@16.5.0 + "@graphql-tools/merge": 8.3.2_graphql@16.5.0 + "@graphql-tools/url-loader": 7.13.4_n54dfqgve5qccicfl2lecljoee + "@graphql-tools/utils": 8.9.1_graphql@16.5.0 + cosmiconfig: 7.0.1 + cosmiconfig-toml-loader: 1.0.0 + cosmiconfig-typescript-loader: 3.1.1_x2aapophsqfcoaefqond3h4adq + graphql: 16.5.0 + minimatch: 4.2.1 + string-env-interpolation: 1.0.1 + ts-node: 10.9.1_qqrtuuv3y2pz7xoxv47yka6pmi + transitivePeerDependencies: + - "@swc/core" + - "@swc/wasm" + - "@types/node" + - bufferutil + - encoding + - typescript + - utf-8-validate + dev: true + + /graphql-request/4.3.0_graphql@16.5.0: + resolution: + { + integrity: sha512-2v6hQViJvSsifK606AliqiNiijb1uwWp6Re7o0RTyH+uRTv/u7Uqm2g4Fjq/LgZIzARB38RZEvVBFOQOVdlBow==, + } + peerDependencies: + graphql: 14 - 16 + dependencies: + cross-fetch: 3.1.5 + extract-files: 9.0.0 + form-data: 3.0.1 + graphql: 16.5.0 + transitivePeerDependencies: + - encoding + dev: true + + /graphql-tag/2.12.6_graphql@16.5.0: + resolution: + { + integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==, + } + engines: { node: ">=10" } + peerDependencies: + graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + graphql: 16.5.0 + tslib: 2.4.0 + + /graphql-ws/5.10.0_graphql@16.5.0: + resolution: + { + integrity: sha512-ewbPzHQdRZgNCPDH9Yr6xccSeZfk3fmpO/AGGGg4KkM5gc6oAOJQ10Oui1EqprhVOyRbOll9bw2qAkOiOwfTag==, + } + engines: { node: ">=10" } + peerDependencies: + graphql: ">=0.11 <=16" + dependencies: + graphql: 16.5.0 + dev: true + + /graphql/16.5.0: + resolution: + { + integrity: sha512-qbHgh8Ix+j/qY+a/ZcJnFQ+j8ezakqPiHwPiZhV/3PgGlgf96QMBB5/f2rkiC9sgLoy/xvT6TSiaf2nTHJh5iA==, + } + engines: { node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0 } + + /graphql/16.6.0: + resolution: + { + integrity: sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==, + } + engines: { node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0 } + dev: false + + /has-ansi/2.0.0: + resolution: + { + integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==, + } + engines: { node: ">=0.10.0" } + dependencies: + ansi-regex: 2.1.1 + dev: true + + /has-bigints/1.0.2: + resolution: + { + integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, + } + dev: true + + /has-flag/3.0.0: + resolution: + { + integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, + } + engines: { node: ">=4" } + dev: true + + /has-flag/4.0.0: + resolution: + { + integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, + } + engines: { node: ">=8" } + + /has-property-descriptors/1.0.0: + resolution: + { + integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, + } + dependencies: + get-intrinsic: 1.1.2 + dev: true + + /has-symbols/1.0.3: + resolution: + { + integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, + } + engines: { node: ">= 0.4" } + dev: true + + /has-tostringtag/1.0.0: + resolution: + { + integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, + } + engines: { node: ">= 0.4" } + dependencies: + has-symbols: 1.0.3 + dev: true + + /has-unicode/2.0.1: + resolution: + { + integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==, + } + dev: false + + /has/1.0.3: + resolution: + { + integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, + } + engines: { node: ">= 0.4.0" } + dependencies: + function-bind: 1.1.1 + dev: true + + /header-case/2.0.4: + resolution: + { + integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==, + } + dependencies: + capital-case: 1.0.4 + tslib: 2.4.0 + dev: true + + /hoist-non-react-statics/3.3.2: + resolution: + { + integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==, + } + dependencies: + react-is: 16.13.1 + dev: false + + /http-cache-semantics/4.1.0: + resolution: + { + integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==, + } + dev: true + + /http-errors/2.0.0: + resolution: + { + integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==, + } + engines: { node: ">= 0.8" } + dependencies: + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.1 + toidentifier: 1.0.1 + dev: false + + /http-proxy-agent/5.0.0: + resolution: + { + integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==, + } + engines: { node: ">= 6" } + dependencies: + "@tootallnate/once": 2.0.0 + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /https-proxy-agent/5.0.1: + resolution: + { + integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, + } + engines: { node: ">= 6" } + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + + /human-signals/1.1.1: + resolution: + { + integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==, + } + engines: { node: ">=8.12.0" } + dev: true + + /husky/8.0.1: + resolution: + { + integrity: sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw==, + } + engines: { node: ">=14" } + hasBin: true + dev: true + + /hyphenate-style-name/1.0.4: + resolution: + { + integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==, + } + dev: false + + /iconv-lite/0.4.24: + resolution: + { + integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, + } + engines: { node: ">=0.10.0" } + dependencies: + safer-buffer: 2.1.2 + + /ieee754/1.2.1: + resolution: + { + integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, + } + dev: true + + /ignore/5.2.0: + resolution: + { + integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==, + } + engines: { node: ">= 4" } + dev: true + + /immediate/3.0.6: + resolution: + { + integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==, + } + dev: false + + /immutable/3.7.6: + resolution: + { + integrity: sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==, + } + engines: { node: ">=0.8.0" } + dev: true + + /import-fresh/3.3.0: + resolution: + { + integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, + } + engines: { node: ">=6" } + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + + /import-from/4.0.0: + resolution: + { + integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==, + } + engines: { node: ">=12.2" } + dev: true + + /imurmurhash/0.1.4: + resolution: + { + integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, + } + engines: { node: ">=0.8.19" } + dev: true + + /indent-string/3.2.0: + resolution: + { + integrity: sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==, + } + engines: { node: ">=4" } + dev: true + + /inflight/1.0.6: + resolution: + { + integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, + } + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + + /inherits/2.0.4: + resolution: + { + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, + } + + /ini/1.3.8: + resolution: + { + integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==, + } + dev: true + + /inquirer/8.2.4: + resolution: + { + integrity: sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==, + } + engines: { node: ">=12.0.0" } + dependencies: + ansi-escapes: 4.3.2 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-width: 3.0.0 + external-editor: 3.1.0 + figures: 3.2.0 + lodash: 4.17.21 + mute-stream: 0.0.8 + ora: 5.4.1 + run-async: 2.4.1 + rxjs: 7.5.6 + string-width: 4.2.3 + strip-ansi: 6.0.1 + through: 2.3.8 + wrap-ansi: 7.0.0 + dev: true + + /internal-slot/1.0.3: + resolution: + { + integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==, + } + engines: { node: ">= 0.4" } + dependencies: + get-intrinsic: 1.1.2 + has: 1.0.3 + side-channel: 1.0.4 + dev: true + + /invariant/2.2.4: + resolution: + { + integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==, + } + dependencies: + loose-envify: 1.4.0 + dev: true + + /is-absolute/1.0.0: + resolution: + { + integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==, + } + engines: { node: ">=0.10.0" } + dependencies: + is-relative: 1.0.0 + is-windows: 1.0.2 + dev: true + + /is-arrayish/0.2.1: + resolution: + { + integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, + } + dev: true + + /is-bigint/1.0.4: + resolution: + { + integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, + } + dependencies: + has-bigints: 1.0.2 + dev: true + + /is-binary-path/2.1.0: + resolution: + { + integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, + } + engines: { node: ">=8" } + dependencies: + binary-extensions: 2.2.0 + dev: true + + /is-boolean-object/1.1.2: + resolution: + { + integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-callable/1.2.4: + resolution: + { + integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==, + } + engines: { node: ">= 0.4" } + dev: true + + /is-core-module/2.10.0: + resolution: + { + integrity: sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==, + } + dependencies: + has: 1.0.3 + dev: true + + /is-date-object/1.0.5: + resolution: + { + integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, + } + engines: { node: ">= 0.4" } + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-docker/2.2.1: + resolution: + { + integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==, + } + engines: { node: ">=8" } + hasBin: true + dev: true + + /is-extglob/2.1.1: + resolution: + { + integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, + } + engines: { node: ">=0.10.0" } + + /is-fullwidth-code-point/1.0.0: + resolution: + { + integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==, + } + engines: { node: ">=0.10.0" } + dependencies: + number-is-nan: 1.0.1 + + /is-fullwidth-code-point/2.0.0: + resolution: + { + integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==, + } + engines: { node: ">=4" } + dev: true + + /is-fullwidth-code-point/3.0.0: + resolution: + { + integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, + } + engines: { node: ">=8" } + + /is-glob/4.0.3: + resolution: + { + integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, + } + engines: { node: ">=0.10.0" } + dependencies: + is-extglob: 2.1.1 + + /is-in-browser/1.1.3: + resolution: + { + integrity: sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g==, + } + dev: false + + /is-interactive/1.0.0: + resolution: + { + integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==, + } + engines: { node: ">=8" } + dev: true + + /is-lower-case/2.0.2: + resolution: + { + integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==, + } + dependencies: + tslib: 2.4.0 + dev: true + + /is-negative-zero/2.0.2: + resolution: + { + integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, + } + engines: { node: ">= 0.4" } + dev: true + + /is-number-object/1.0.7: + resolution: + { + integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, + } + engines: { node: ">= 0.4" } + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-number/7.0.0: + resolution: + { + integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, + } + engines: { node: ">=0.12.0" } + + /is-observable/1.1.0: + resolution: + { + integrity: sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==, + } + engines: { node: ">=4" } + dependencies: + symbol-observable: 1.2.0 + dev: true + + /is-promise/2.2.2: + resolution: + { + integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==, + } + dev: true + + /is-reference/1.2.1: + resolution: + { + integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==, + } + dependencies: + "@types/estree": 1.0.0 + dev: false + + /is-regex/1.1.4: + resolution: + { + integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-relative/1.0.0: + resolution: + { + integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==, + } + engines: { node: ">=0.10.0" } + dependencies: + is-unc-path: 1.0.0 + dev: true + + /is-shared-array-buffer/1.0.2: + resolution: + { + integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, + } + dependencies: + call-bind: 1.0.2 + dev: true + + /is-stream/1.1.0: + resolution: + { + integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==, + } + engines: { node: ">=0.10.0" } + dev: true + + /is-stream/2.0.1: + resolution: + { + integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, + } + engines: { node: ">=8" } + dev: true + + /is-string/1.0.7: + resolution: + { + integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, + } + engines: { node: ">= 0.4" } + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-symbol/1.0.4: + resolution: + { + integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, + } + engines: { node: ">= 0.4" } + dependencies: + has-symbols: 1.0.3 + dev: true + + /is-unc-path/1.0.0: + resolution: + { + integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==, + } + engines: { node: ">=0.10.0" } + dependencies: + unc-path-regex: 0.1.2 + dev: true + + /is-unicode-supported/0.1.0: + resolution: + { + integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==, + } + engines: { node: ">=10" } + dev: true + + /is-upper-case/2.0.2: + resolution: + { + integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==, + } + dependencies: + tslib: 2.4.0 + dev: true + + /is-weakref/1.0.2: + resolution: + { + integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, + } + dependencies: + call-bind: 1.0.2 + dev: true + + /is-windows/1.0.2: + resolution: + { + integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==, + } + engines: { node: ">=0.10.0" } + dev: true + + /is-wsl/2.2.0: + resolution: + { + integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==, + } + engines: { node: ">=8" } + dependencies: + is-docker: 2.2.1 + dev: true + + /isarray/1.0.0: + resolution: + { + integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, + } + dev: false + + /isexe/2.0.0: + resolution: + { + integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, + } + + /isomorphic-fetch/3.0.0: + resolution: + { + integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==, + } + dependencies: + node-fetch: 2.6.7 + whatwg-fetch: 3.6.2 + transitivePeerDependencies: + - encoding + dev: true + + /isomorphic-ws/5.0.0_ws@8.8.1: + resolution: + { + integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==, + } + peerDependencies: + ws: "*" + dependencies: + ws: 8.8.1 + dev: true + + /jose/4.10.3: + resolution: + { + integrity: sha512-3S4wQnaoJKSAx9uHSoyf8B/lxjs1qCntHWL6wNFszJazo+FtWe+qD0zVfY0BlqJ5HHK4jcnM98k3BQzVLbzE4g==, + } + dev: false + + /js-tokens/4.0.0: + resolution: + { + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, + } + + /js-yaml/4.1.0: + resolution: + { + integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, + } + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + + /jsesc/2.5.2: + resolution: + { + integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, + } + engines: { node: ">=4" } + hasBin: true + dev: true + + /json-buffer/3.0.0: + resolution: + { + integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==, + } + dev: true + + /json-parse-even-better-errors/2.3.1: + resolution: + { + integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, + } + dev: true + + /json-schema-traverse/0.4.1: + resolution: + { + integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, + } + dev: true + + /json-stable-stringify-without-jsonify/1.0.1: + resolution: + { + integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==, + } + dev: true + + /json-stable-stringify/1.0.1: + resolution: + { + integrity: sha512-i/J297TW6xyj7sDFa7AmBPkQvLIxWr2kKPWI26tXydnZrzVAocNqn5DMNT1Mzk0vit1V5UkRM7C1KdVNp7Lmcg==, + } + dependencies: + jsonify: 0.0.0 + dev: true + + /json-to-pretty-yaml/1.2.2: + resolution: + { + integrity: sha512-rvm6hunfCcqegwYaG5T4yKJWxc9FXFgBVrcTZ4XfSVRwa5HA/Xs+vB/Eo9treYYHCeNM0nrSUr82V/M31Urc7A==, + } + engines: { node: ">= 0.2.0" } + dependencies: + remedial: 1.0.8 + remove-trailing-spaces: 1.0.8 + dev: true + + /json5/1.0.1: + resolution: + { + integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==, + } + hasBin: true + dependencies: + minimist: 1.2.6 + dev: true + + /json5/2.2.1: + resolution: + { + integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==, + } + engines: { node: ">=6" } + hasBin: true + dev: true + + /jsonify/0.0.0: + resolution: + { + integrity: sha512-trvBk1ki43VZptdBI5rIlG4YOzyeH/WefQt5rj1grasPn4iiZWKet8nkgc4GlsAylaztn0qZfUYOiTsASJFdNA==, + } + dev: true + + /jsonwebtoken/8.5.1: + resolution: + { + integrity: sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==, + } + engines: { node: ">=4", npm: ">=1.4.28" } + dependencies: + jws: 3.2.2 + lodash.includes: 4.3.0 + lodash.isboolean: 3.0.3 + lodash.isinteger: 4.0.4 + lodash.isnumber: 3.0.3 + lodash.isplainobject: 4.0.6 + lodash.isstring: 4.0.1 + lodash.once: 4.1.1 + ms: 2.1.3 + semver: 5.7.1 + dev: true + + /jss-plugin-camel-case/10.9.2: + resolution: + { + integrity: sha512-wgBPlL3WS0WDJ1lPJcgjux/SHnDuu7opmgQKSraKs4z8dCCyYMx9IDPFKBXQ8Q5dVYij1FFV0WdxyhuOOAXuTg==, + } + dependencies: + "@babel/runtime": 7.18.9 + hyphenate-style-name: 1.0.4 + jss: 10.9.2 + dev: false + + /jss-plugin-default-unit/10.9.2: + resolution: + { + integrity: sha512-pYg0QX3bBEFtTnmeSI3l7ad1vtHU42YEEpgW7pmIh+9pkWNWb5dwS/4onSfAaI0kq+dOZHzz4dWe+8vWnanoSg==, + } + dependencies: + "@babel/runtime": 7.18.9 + jss: 10.9.2 + dev: false + + /jss-plugin-global/10.9.2: + resolution: + { + integrity: sha512-GcX0aE8Ef6AtlasVrafg1DItlL/tWHoC4cGir4r3gegbWwF5ZOBYhx04gurPvWHC8F873aEGqge7C17xpwmp2g==, + } + dependencies: + "@babel/runtime": 7.18.9 + jss: 10.9.2 + dev: false + + /jss-plugin-nested/10.9.2: + resolution: + { + integrity: sha512-VgiOWIC6bvgDaAL97XCxGD0BxOKM0K0zeB/ECyNaVF6FqvdGB9KBBWRdy2STYAss4VVA7i5TbxFZN+WSX1kfQA==, + } + dependencies: + "@babel/runtime": 7.18.9 + jss: 10.9.2 + tiny-warning: 1.0.3 + dev: false + + /jss-plugin-props-sort/10.9.2: + resolution: + { + integrity: sha512-AP1AyUTbi2szylgr+O0OB7gkIxEGzySLITZ2GpsaoX72YMCGI2jYAc+WUhPfvUnZYiauF4zTnN4V4TGuvFjJlw==, + } + dependencies: + "@babel/runtime": 7.18.9 + jss: 10.9.2 + dev: false + + /jss-plugin-rule-value-function/10.9.2: + resolution: + { + integrity: sha512-vf5ms8zvLFMub6swbNxvzsurHfUZ5Shy5aJB2gIpY6WNA3uLinEcxYyraQXItRHi5ivXGqYciFDRM2ZoVoRZ4Q==, + } + dependencies: + "@babel/runtime": 7.18.9 + jss: 10.9.2 + tiny-warning: 1.0.3 + dev: false + + /jss-plugin-vendor-prefixer/10.9.2: + resolution: + { + integrity: sha512-SxcEoH+Rttf9fEv6KkiPzLdXRmI6waOTcMkbbEFgdZLDYNIP9UKNHFy6thhbRKqv0XMQZdrEsbDyV464zE/dUA==, + } + dependencies: + "@babel/runtime": 7.18.9 + css-vendor: 2.0.8 + jss: 10.9.2 + dev: false + + /jss/10.9.2: + resolution: + { + integrity: sha512-b8G6rWpYLR4teTUbGd4I4EsnWjg7MN0Q5bSsjKhVkJVjhQDy2KzkbD2AW3TuT0RYZVmZZHKIrXDn6kjU14qkUg==, + } + dependencies: + "@babel/runtime": 7.18.9 + csstype: 3.1.0 + is-in-browser: 1.1.3 + tiny-warning: 1.0.3 + dev: false + + /jsx-ast-utils/3.3.3: + resolution: + { + integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==, + } + engines: { node: ">=4.0" } + dependencies: + array-includes: 3.1.5 + object.assign: 4.1.3 + dev: true + + /jwa/1.4.1: + resolution: + { + integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==, + } + dependencies: + buffer-equal-constant-time: 1.0.1 + ecdsa-sig-formatter: 1.0.11 + safe-buffer: 5.2.1 + dev: true + + /jws/3.2.2: + resolution: + { + integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==, + } + dependencies: + jwa: 1.4.1 + safe-buffer: 5.2.1 + dev: true + + /keyv/3.1.0: + resolution: + { + integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==, + } + dependencies: + json-buffer: 3.0.0 + dev: true + + /language-subtag-registry/0.3.22: + resolution: + { + integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==, + } + dev: true + + /language-tags/1.0.5: + resolution: + { + integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==, + } + dependencies: + language-subtag-registry: 0.3.22 + dev: true + + /latest-version/5.1.0: + resolution: + { + integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==, + } + engines: { node: ">=8" } + dependencies: + package-json: 6.5.0 + dev: true + + /levn/0.4.1: + resolution: + { + integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==, + } + engines: { node: ">= 0.8.0" } + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /lie/3.1.1: + resolution: + { + integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==, + } + dependencies: + immediate: 3.0.6 + dev: false + + /lilconfig/2.0.6: + resolution: + { + integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==, + } + engines: { node: ">=10" } + dev: true + + /lines-and-columns/1.2.4: + resolution: + { + integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, + } + dev: true + + /listr-silent-renderer/1.1.1: + resolution: + { + integrity: sha512-L26cIFm7/oZeSNVhWB6faeorXhMg4HNlb/dS/7jHhr708jxlXrtrBWo4YUxZQkc6dGoxEAe6J/D3juTRBUzjtA==, + } + engines: { node: ">=4" } + dev: true + + /listr-update-renderer/0.5.0_listr@0.14.3: + resolution: + { + integrity: sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==, + } + engines: { node: ">=6" } + peerDependencies: + listr: ^0.14.2 + dependencies: + chalk: 1.1.3 + cli-truncate: 0.2.1 + elegant-spinner: 1.0.1 + figures: 1.7.0 + indent-string: 3.2.0 + listr: 0.14.3 + log-symbols: 1.0.2 + log-update: 2.3.0 + strip-ansi: 3.0.1 + dev: true + + /listr-verbose-renderer/0.5.0: + resolution: + { + integrity: sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==, + } + engines: { node: ">=4" } + dependencies: + chalk: 2.4.2 + cli-cursor: 2.1.0 + date-fns: 1.30.1 + figures: 2.0.0 + dev: true + + /listr/0.14.3: + resolution: + { + integrity: sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==, + } + engines: { node: ">=6" } + dependencies: + "@samverschueren/stream-to-observable": 0.3.1_rxjs@6.6.7 + is-observable: 1.1.0 + is-promise: 2.2.2 + is-stream: 1.1.0 + listr-silent-renderer: 1.1.1 + listr-update-renderer: 0.5.0_listr@0.14.3 + listr-verbose-renderer: 0.5.0 + p-map: 2.1.0 + rxjs: 6.6.7 + transitivePeerDependencies: + - zen-observable + - zenObservable + dev: true + + /localforage/1.10.0: + resolution: + { + integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==, + } + dependencies: + lie: 3.1.1 + dev: false + + /locate-path/2.0.0: + resolution: + { + integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==, + } + engines: { node: ">=4" } + dependencies: + p-locate: 2.0.0 + path-exists: 3.0.0 + dev: true + + /locate-path/5.0.0: + resolution: + { + integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, + } + engines: { node: ">=8" } + dependencies: + p-locate: 4.1.0 + dev: true + + /lodash-es/4.17.21: + resolution: + { + integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==, + } + dev: false + + /lodash.includes/4.3.0: + resolution: + { + integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==, + } + dev: true + + /lodash.isboolean/3.0.3: + resolution: + { + integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==, + } + dev: true + + /lodash.isinteger/4.0.4: + resolution: + { + integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==, + } + dev: true + + /lodash.isnumber/3.0.3: + resolution: + { + integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==, + } + dev: true + + /lodash.isplainobject/4.0.6: + resolution: + { + integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==, + } + dev: true + + /lodash.isstring/4.0.1: + resolution: + { + integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==, + } + dev: true + + /lodash.merge/4.6.2: + resolution: + { + integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, + } + dev: true + + /lodash.once/4.1.1: + resolution: + { + integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==, + } + dev: true + + /lodash/4.17.21: + resolution: + { + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, + } + + /log-symbols/1.0.2: + resolution: + { + integrity: sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ==, + } + engines: { node: ">=0.10.0" } + dependencies: + chalk: 1.1.3 + dev: true + + /log-symbols/4.1.0: + resolution: + { + integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==, + } + engines: { node: ">=10" } + dependencies: + chalk: 4.1.2 + is-unicode-supported: 0.1.0 + dev: true + + /log-update/2.3.0: + resolution: + { + integrity: sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==, + } + engines: { node: ">=4" } + dependencies: + ansi-escapes: 3.2.0 + cli-cursor: 2.1.0 + wrap-ansi: 3.0.1 + dev: true + + /loose-envify/1.4.0: + resolution: + { + integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, + } + hasBin: true + dependencies: + js-tokens: 4.0.0 + + /lower-case-first/2.0.2: + resolution: + { + integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==, + } + dependencies: + tslib: 2.4.0 + dev: true + + /lower-case/2.0.2: + resolution: + { + integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, + } + dependencies: + tslib: 2.4.0 + dev: true + + /lowercase-keys/1.0.1: + resolution: + { + integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==, + } + engines: { node: ">=0.10.0" } + dev: true + + /lowercase-keys/2.0.0: + resolution: + { + integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==, + } + engines: { node: ">=8" } + dev: true + + /lru-cache/6.0.0: + resolution: + { + integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, + } + engines: { node: ">=10" } + dependencies: + yallist: 4.0.0 + dev: true + + /lru_map/0.3.3: + resolution: + { + integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==, + } + dev: false + + /magic-string/0.27.0: + resolution: + { + integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==, + } + engines: { node: ">=12" } + dependencies: + "@jridgewell/sourcemap-codec": 1.4.14 + dev: false + + /make-error/1.3.6: + resolution: + { + integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==, + } + dev: true + + /map-cache/0.2.2: + resolution: + { + integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==, + } + engines: { node: ">=0.10.0" } + dev: true + + /merge-stream/2.0.0: + resolution: + { + integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, + } + dev: true + + /merge2/1.4.1: + resolution: + { + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, + } + engines: { node: ">= 8" } + + /meros/1.2.0_@types+node@18.0.1: + resolution: + { + integrity: sha512-3QRZIS707pZQnijHdhbttXRWwrHhZJ/gzolneoxKVz9N/xmsvY/7Ls8lpnI9gxbgxjcHsAVEW3mgwiZCo6kkJQ==, + } + engines: { node: ">=12" } + peerDependencies: + "@types/node": ">=12" + peerDependenciesMeta: + "@types/node": + optional: true + dependencies: + "@types/node": 18.0.1 + dev: true + + /micromatch/4.0.5: + resolution: + { + integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, + } + engines: { node: ">=8.6" } + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + + /mime-db/1.52.0: + resolution: + { + integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, + } + engines: { node: ">= 0.6" } + dev: true + + /mime-types/2.1.35: + resolution: + { + integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, + } + engines: { node: ">= 0.6" } + dependencies: + mime-db: 1.52.0 + dev: true + + /mimic-fn/1.2.0: + resolution: + { + integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==, + } + engines: { node: ">=4" } + dev: true + + /mimic-fn/2.1.0: + resolution: + { + integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, + } + engines: { node: ">=6" } + dev: true + + /mimic-response/1.0.1: + resolution: + { + integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==, + } + engines: { node: ">=4" } + dev: true + + /minimatch/3.1.2: + resolution: + { + integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, + } + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimatch/4.2.1: + resolution: + { + integrity: sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==, + } + engines: { node: ">=10" } + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimatch/5.1.5: + resolution: + { + integrity: sha512-CI8wwdrll4ehjPAqs8TL8lBPyNnpZlQI02Wn8C1weNz/QbUbjh3OMxgMKSnvqfKFdLlks3EzHB9tO0BqGc3phQ==, + } + engines: { node: ">=10" } + dependencies: + brace-expansion: 2.0.1 + dev: false + + /minimist/1.2.6: + resolution: + { + integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==, + } + + /mkdirp/0.5.6: + resolution: + { + integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==, + } + hasBin: true + dependencies: + minimist: 1.2.6 + dev: false + + /mkdirp/1.0.4: + resolution: + { + integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==, + } + engines: { node: ">=10" } + hasBin: true + dev: true + + /mri/1.2.0: + resolution: + { + integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==, + } + engines: { node: ">=4" } + dev: true + + /ms/2.0.0: + resolution: + { + integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, + } + dev: true + + /ms/2.1.2: + resolution: + { + integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, + } + + /ms/2.1.3: + resolution: + { + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, + } + dev: true + + /multimatch/4.0.0: + resolution: + { + integrity: sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==, + } + engines: { node: ">=8" } + dependencies: + "@types/minimatch": 3.0.5 + array-differ: 3.0.0 + array-union: 2.1.0 + arrify: 2.0.1 + minimatch: 3.1.2 + dev: true + + /mute-stream/0.0.8: + resolution: + { + integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==, + } + dev: true + + /nanoid/3.3.4: + resolution: + { + integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==, + } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } + hasBin: true + + /natural-compare/1.4.0: + resolution: + { + integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, + } + dev: true + + /next/12.3.1_biqbaboplfbrettd7655fr4n2y: + resolution: + { + integrity: sha512-l7bvmSeIwX5lp07WtIiP9u2ytZMv7jIeB8iacR28PuUEFG5j0HGAPnMqyG5kbZNBG2H7tRsrQ4HCjuMOPnANZw==, + } + engines: { node: ">=12.22.0" } + hasBin: true + peerDependencies: + fibers: ">= 3.1.0" + node-sass: ^6.0.0 || ^7.0.0 + react: ^17.0.2 || ^18.0.0-0 + react-dom: ^17.0.2 || ^18.0.0-0 + sass: ^1.3.0 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + dependencies: + "@next/env": 12.3.1 + "@swc/helpers": 0.4.11 + caniuse-lite: 1.0.30001415 + postcss: 8.4.14 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + styled-jsx: 5.0.7_react@18.2.0 + use-sync-external-store: 1.2.0_react@18.2.0 + optionalDependencies: + "@next/swc-android-arm-eabi": 12.3.1 + "@next/swc-android-arm64": 12.3.1 + "@next/swc-darwin-arm64": 12.3.1 + "@next/swc-darwin-x64": 12.3.1 + "@next/swc-freebsd-x64": 12.3.1 + "@next/swc-linux-arm-gnueabihf": 12.3.1 + "@next/swc-linux-arm64-gnu": 12.3.1 + "@next/swc-linux-arm64-musl": 12.3.1 + "@next/swc-linux-x64-gnu": 12.3.1 + "@next/swc-linux-x64-musl": 12.3.1 + "@next/swc-win32-arm64-msvc": 12.3.1 + "@next/swc-win32-ia32-msvc": 12.3.1 + "@next/swc-win32-x64-msvc": 12.3.1 + transitivePeerDependencies: + - "@babel/core" + - babel-plugin-macros + dev: false + + /no-case/3.0.4: + resolution: + { + integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==, + } + dependencies: + lower-case: 2.0.2 + tslib: 2.4.0 + dev: true + + /node-domexception/1.0.0: + resolution: + { + integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==, + } + engines: { node: ">=10.5.0" } + + /node-fetch/2.6.7: + resolution: + { + integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==, + } + engines: { node: 4.x || >=6.0.0 } + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + dependencies: + whatwg-url: 5.0.0 + + /node-fetch/3.2.10: + resolution: + { + integrity: sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dependencies: + data-uri-to-buffer: 4.0.0 + fetch-blob: 3.2.0 + formdata-polyfill: 4.0.10 + dev: false + + /node-int64/0.4.0: + resolution: + { + integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, + } + dev: true + + /node-releases/2.0.6: + resolution: + { + integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==, + } + dev: true + + /normalize-path/2.1.1: + resolution: + { + integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==, + } + engines: { node: ">=0.10.0" } + dependencies: + remove-trailing-separator: 1.1.0 + dev: true + + /normalize-path/3.0.0: + resolution: + { + integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, + } + engines: { node: ">=0.10.0" } + dev: true + + /normalize-range/0.1.2: + resolution: + { + integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==, + } + engines: { node: ">=0.10.0" } + dev: true + + /normalize-url/4.5.1: + resolution: + { + integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==, + } + engines: { node: ">=8" } + dev: true + + /npm-run-path/4.0.1: + resolution: + { + integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==, + } + engines: { node: ">=8" } + dependencies: + path-key: 3.1.1 + dev: true + + /npmlog/4.1.2: + resolution: + { + integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==, + } + dependencies: + are-we-there-yet: 1.1.7 + console-control-strings: 1.1.0 + gauge: 2.7.4 + set-blocking: 2.0.0 + dev: false + + /nullthrows/1.1.1: + resolution: + { + integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==, + } + dev: true + + /number-is-nan/1.0.1: + resolution: + { + integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==, + } + engines: { node: ">=0.10.0" } + + /object-assign/4.1.1: + resolution: + { + integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, + } + engines: { node: ">=0.10.0" } + + /object-inspect/1.12.2: + resolution: + { + integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==, + } + dev: true + + /object-keys/1.1.1: + resolution: + { + integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, + } + engines: { node: ">= 0.4" } + dev: true + + /object.assign/4.1.3: + resolution: + { + integrity: sha512-ZFJnX3zltyjcYJL0RoCJuzb+11zWGyaDbjgxZbdV7rFEcHQuYxrZqhow67aA7xpes6LhojyFDaBKAFfogQrikA==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /object.entries/1.1.5: + resolution: + { + integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /object.fromentries/2.0.5: + resolution: + { + integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /object.hasown/1.1.1: + resolution: + { + integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==, + } + dependencies: + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /object.values/1.1.5: + resolution: + { + integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /once/1.4.0: + resolution: + { + integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, + } + dependencies: + wrappy: 1.0.2 + + /onetime/2.0.1: + resolution: + { + integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==, + } + engines: { node: ">=4" } + dependencies: + mimic-fn: 1.2.0 + dev: true + + /onetime/5.1.2: + resolution: + { + integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, + } + engines: { node: ">=6" } + dependencies: + mimic-fn: 2.1.0 + dev: true + + /open/8.4.0: + resolution: + { + integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==, + } + engines: { node: ">=12" } + dependencies: + define-lazy-prop: 2.0.0 + is-docker: 2.2.1 + is-wsl: 2.2.0 + dev: true + + /optionator/0.9.1: + resolution: + { + integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==, + } + engines: { node: ">= 0.8.0" } + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.3 + dev: true + + /ora/5.4.1: + resolution: + { + integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==, + } + engines: { node: ">=10" } + dependencies: + bl: 4.1.0 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-spinners: 2.7.0 + is-interactive: 1.0.0 + is-unicode-supported: 0.1.0 + log-symbols: 4.1.0 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + dev: true + + /os-tmpdir/1.0.2: + resolution: + { + integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==, + } + engines: { node: ">=0.10.0" } + dev: true + + /p-cancelable/1.1.0: + resolution: + { + integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==, + } + engines: { node: ">=6" } + dev: true + + /p-limit/1.3.0: + resolution: + { + integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==, + } + engines: { node: ">=4" } + dependencies: + p-try: 1.0.0 + dev: true + + /p-limit/2.3.0: + resolution: + { + integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, + } + engines: { node: ">=6" } + dependencies: + p-try: 2.2.0 + dev: true + + /p-limit/3.1.0: + resolution: + { + integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, + } + engines: { node: ">=10" } + dependencies: + yocto-queue: 0.1.0 + dev: true + + /p-locate/2.0.0: + resolution: + { + integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==, + } + engines: { node: ">=4" } + dependencies: + p-limit: 1.3.0 + dev: true + + /p-locate/4.1.0: + resolution: + { + integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, + } + engines: { node: ">=8" } + dependencies: + p-limit: 2.3.0 + dev: true + + /p-map/2.1.0: + resolution: + { + integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==, + } + engines: { node: ">=6" } + dev: true + + /p-try/1.0.0: + resolution: + { + integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==, + } + engines: { node: ">=4" } + dev: true + + /p-try/2.2.0: + resolution: + { + integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, + } + engines: { node: ">=6" } + dev: true + + /package-json/6.5.0: + resolution: + { + integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==, + } + engines: { node: ">=8" } + dependencies: + got: 9.6.0 + registry-auth-token: 4.2.2 + registry-url: 5.1.0 + semver: 6.3.0 + dev: true + + /param-case/3.0.4: + resolution: + { + integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==, + } + dependencies: + dot-case: 3.0.4 + tslib: 2.4.0 + dev: true + + /parent-module/1.0.1: + resolution: + { + integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, + } + engines: { node: ">=6" } + dependencies: + callsites: 3.1.0 + dev: true + + /parse-filepath/1.0.2: + resolution: + { + integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==, + } + engines: { node: ">=0.8" } + dependencies: + is-absolute: 1.0.0 + map-cache: 0.2.2 + path-root: 0.1.1 + dev: true + + /parse-json/5.2.0: + resolution: + { + integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, + } + engines: { node: ">=8" } + dependencies: + "@babel/code-frame": 7.18.6 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: true + + /pascal-case/3.1.2: + resolution: + { + integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==, + } + dependencies: + no-case: 3.0.4 + tslib: 2.4.0 + dev: true + + /path-case/3.0.4: + resolution: + { + integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==, + } + dependencies: + dot-case: 3.0.4 + tslib: 2.4.0 + dev: true + + /path-exists/3.0.0: + resolution: + { + integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, + } + engines: { node: ">=4" } + dev: true + + /path-exists/4.0.0: + resolution: + { + integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, + } + engines: { node: ">=8" } + dev: true + + /path-is-absolute/1.0.1: + resolution: + { + integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, + } + engines: { node: ">=0.10.0" } + dev: true + + /path-key/3.1.1: + resolution: + { + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, + } + engines: { node: ">=8" } + dev: true + + /path-parse/1.0.7: + resolution: + { + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, + } + dev: true + + /path-root-regex/0.1.2: + resolution: + { + integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==, + } + engines: { node: ">=0.10.0" } + dev: true + + /path-root/0.1.1: + resolution: + { + integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==, + } + engines: { node: ">=0.10.0" } + dependencies: + path-root-regex: 0.1.2 + dev: true + + /path-type/4.0.0: + resolution: + { + integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, + } + engines: { node: ">=8" } + dev: true + + /picocolors/1.0.0: + resolution: + { + integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, + } + + /picomatch/2.3.1: + resolution: + { + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, + } + engines: { node: ">=8.6" } + + /popper.js/1.16.1-lts: + resolution: + { + integrity: sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==, + } + dev: false + + /postcss-value-parser/4.2.0: + resolution: + { + integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==, + } + dev: true + + /postcss/8.4.14: + resolution: + { + integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==, + } + engines: { node: ^10 || ^12 || >=14 } + dependencies: + nanoid: 3.3.4 + picocolors: 1.0.0 + source-map-js: 1.0.2 + dev: false + + /postcss/8.4.16: + resolution: + { + integrity: sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==, + } + engines: { node: ^10 || ^12 || >=14 } + dependencies: + nanoid: 3.3.4 + picocolors: 1.0.0 + source-map-js: 1.0.2 + dev: true + + /prelude-ls/1.2.1: + resolution: + { + integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==, + } + engines: { node: ">= 0.8.0" } + dev: true + + /prepend-http/2.0.0: + resolution: + { + integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==, + } + engines: { node: ">=4" } + dev: true + + /prettier/2.7.1: + resolution: + { + integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==, + } + engines: { node: ">=10.13.0" } + hasBin: true + dev: true + + /pretty-quick/3.1.3_prettier@2.7.1: + resolution: + { + integrity: sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==, + } + engines: { node: ">=10.13" } + hasBin: true + peerDependencies: + prettier: ">=2.0.0" + dependencies: + chalk: 3.0.0 + execa: 4.1.0 + find-up: 4.1.0 + ignore: 5.2.0 + mri: 1.2.0 + multimatch: 4.0.0 + prettier: 2.7.1 + dev: true + + /process-nextick-args/2.0.1: + resolution: + { + integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, + } + dev: false + + /progress/2.0.3: + resolution: + { + integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==, + } + engines: { node: ">=0.4.0" } + dev: false + + /promise/7.3.1: + resolution: + { + integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==, + } + dependencies: + asap: 2.0.6 + dev: true + + /prop-types/15.8.1: + resolution: + { + integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, + } + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + + /proxy-from-env/1.1.0: + resolution: + { + integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, + } + dev: false + + /pump/3.0.0: + resolution: + { + integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==, + } + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + dev: true + + /punycode/2.1.1: + resolution: + { + integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==, + } + engines: { node: ">=6" } + dev: true + + /pvtsutils/1.3.2: + resolution: + { + integrity: sha512-+Ipe2iNUyrZz+8K/2IOo+kKikdtfhRKzNpQbruF2URmqPtoqAs8g3xS7TJvFF2GcPXjh7DkqMnpVveRFq4PgEQ==, + } + dependencies: + tslib: 2.4.0 + dev: true + + /pvutils/1.1.3: + resolution: + { + integrity: sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==, + } + engines: { node: ">=6.0.0" } + dev: true + + /queue-microtask/1.2.3: + resolution: + { + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, + } + + /raw-body/2.5.1: + resolution: + { + integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==, + } + engines: { node: ">= 0.8" } + dependencies: + bytes: 3.1.2 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + unpipe: 1.0.0 + dev: false + + /rc/1.2.8: + resolution: + { + integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==, + } + hasBin: true + dependencies: + deep-extend: 0.6.0 + ini: 1.3.8 + minimist: 1.2.6 + strip-json-comments: 2.0.1 + dev: true + + /react-dom/18.2.0_react@18.2.0: + resolution: + { + integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, + } + peerDependencies: + react: ^18.2.0 + dependencies: + loose-envify: 1.4.0 + react: 18.2.0 + scheduler: 0.23.0 + dev: false + + /react-fast-compare/3.2.0: + resolution: + { + integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==, + } + dev: false + + /react-from-dom/0.6.2_react@18.2.0: + resolution: + { + integrity: sha512-qvWWTL/4xw4k/Dywd41RBpLQUSq97csuv15qrxN+izNeLYlD9wn5W8LspbfYe5CWbaSdkZ72BsaYBPQf2x4VbQ==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + react: 18.2.0 + dev: false + + /react-helmet/6.1.0_react@18.2.0: + resolution: + { + integrity: sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw==, + } + peerDependencies: + react: ">=16.3.0" + dependencies: + object-assign: 4.1.1 + prop-types: 15.8.1 + react: 18.2.0 + react-fast-compare: 3.2.0 + react-side-effect: 2.1.2_react@18.2.0 + dev: false + + /react-inlinesvg/3.0.1_react@18.2.0: + resolution: + { + integrity: sha512-cBfoyfseNI2PkDA7ZKIlDoHq0eMfpoC3DhKBQNC+/X1M4ZQB+aXW+YiNPUDDDKXUsGDUIZWWiZWNFeauDIVdoA==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + exenv: 1.2.2 + react: 18.2.0 + react-from-dom: 0.6.2_react@18.2.0 + dev: false + + /react-is/16.13.1: + resolution: + { + integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==, + } + + /react-is/17.0.2: + resolution: + { + integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==, + } + dev: false + + /react-side-effect/2.1.2_react@18.2.0: + resolution: + { + integrity: sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw==, + } + peerDependencies: + react: ^16.3.0 || ^17.0.0 || ^18.0.0 + dependencies: + react: 18.2.0 + dev: false + + /react-transition-group/4.4.5_biqbaboplfbrettd7655fr4n2y: + resolution: + { + integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==, + } + peerDependencies: + react: ">=16.6.0" + react-dom: ">=16.6.0" + dependencies: + "@babel/runtime": 7.18.9 + dom-helpers: 5.2.1 + loose-envify: 1.4.0 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + + /react/18.2.0: + resolution: + { + integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, + } + engines: { node: ">=0.10.0" } + dependencies: + loose-envify: 1.4.0 + dev: false + + /readable-stream/2.3.7: + resolution: + { + integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==, + } + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + dev: false + + /readable-stream/3.6.0: + resolution: + { + integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==, + } + engines: { node: ">= 6" } + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + dev: true + + /readdirp/3.6.0: + resolution: + { + integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, + } + engines: { node: ">=8.10.0" } + dependencies: + picomatch: 2.3.1 + dev: true + + /regenerator-runtime/0.13.9: + resolution: + { + integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==, + } + + /regexp.prototype.flags/1.4.3: + resolution: + { + integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + functions-have-names: 1.2.3 + dev: true + + /regexpp/3.2.0: + resolution: + { + integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==, + } + engines: { node: ">=8" } + dev: true + + /registry-auth-token/4.2.2: + resolution: + { + integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==, + } + engines: { node: ">=6.0.0" } + dependencies: + rc: 1.2.8 + dev: true + + /registry-url/5.1.0: + resolution: + { + integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==, + } + engines: { node: ">=8" } + dependencies: + rc: 1.2.8 + dev: true + + /relay-runtime/12.0.0: + resolution: + { + integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==, + } + dependencies: + "@babel/runtime": 7.18.9 + fbjs: 3.0.4 + invariant: 2.2.4 + transitivePeerDependencies: + - encoding + dev: true + + /remedial/1.0.8: + resolution: + { + integrity: sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==, + } + dev: true + + /remove-trailing-separator/1.1.0: + resolution: + { + integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==, + } + dev: true + + /remove-trailing-spaces/1.0.8: + resolution: + { + integrity: sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA==, + } + dev: true + + /require-directory/2.1.1: + resolution: + { + integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, + } + engines: { node: ">=0.10.0" } + dev: true + + /require-main-filename/2.0.0: + resolution: + { + integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==, + } + dev: true + + /resolve-from/4.0.0: + resolution: + { + integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, + } + engines: { node: ">=4" } + dev: true + + /resolve-from/5.0.0: + resolution: + { + integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, + } + engines: { node: ">=8" } + dev: true + + /resolve/1.22.1: + resolution: + { + integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==, + } + hasBin: true + dependencies: + is-core-module: 2.10.0 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /resolve/2.0.0-next.4: + resolution: + { + integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==, + } + hasBin: true + dependencies: + is-core-module: 2.10.0 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /responselike/1.0.2: + resolution: + { + integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==, + } + dependencies: + lowercase-keys: 1.0.1 + dev: true + + /restore-cursor/2.0.0: + resolution: + { + integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==, + } + engines: { node: ">=4" } + dependencies: + onetime: 2.0.1 + signal-exit: 3.0.7 + dev: true + + /restore-cursor/3.1.0: + resolution: + { + integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==, + } + engines: { node: ">=8" } + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + dev: true + + /retes/0.33.0: + resolution: + { + integrity: sha512-I6V1G2JkJ2JFIFSVuultNXepf7BW8SCaSUOq5IETM2fDjFim5Dg5F1zU/QbplNW0mqkk8QCw+I722v3nPkpRlA==, + } + dependencies: + busboy: 1.6.0 + zod: 3.19.1 + dev: false + + /reusify/1.0.4: + resolution: + { + integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, + } + engines: { iojs: ">=1.0.0", node: ">=0.10.0" } + + /rimraf/3.0.2: + resolution: + { + integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, + } + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /rollup/2.78.0: + resolution: + { + integrity: sha512-4+YfbQC9QEVvKTanHhIAFVUFSRsezvQF8vFOJwtGfb9Bb+r014S+qryr9PSmw8x6sMnPkmFBGAvIFVQxvJxjtg==, + } + engines: { node: ">=10.0.0" } + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: false + + /run-async/2.4.1: + resolution: + { + integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==, + } + engines: { node: ">=0.12.0" } + dev: true + + /run-parallel/1.2.0: + resolution: + { + integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, + } + dependencies: + queue-microtask: 1.2.3 + + /rxjs/6.6.7: + resolution: + { + integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==, + } + engines: { npm: ">=2.0.0" } + dependencies: + tslib: 1.14.1 + dev: true + + /rxjs/7.5.6: + resolution: + { + integrity: sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==, + } + dependencies: + tslib: 2.4.0 + dev: true + + /safe-buffer/5.1.2: + resolution: + { + integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, + } + + /safe-buffer/5.2.1: + resolution: + { + integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, + } + dev: true + + /safer-buffer/2.1.2: + resolution: + { + integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, + } + + /scheduler/0.23.0: + resolution: + { + integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, + } + dependencies: + loose-envify: 1.4.0 + dev: false + + /scuid/1.1.0: + resolution: + { + integrity: sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==, + } + dev: true + + /semver/5.7.1: + resolution: + { + integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==, + } + hasBin: true + dev: true + + /semver/6.3.0: + resolution: + { + integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==, + } + hasBin: true + dev: true + + /semver/7.3.7: + resolution: + { + integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==, + } + engines: { node: ">=10" } + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /sentence-case/3.0.4: + resolution: + { + integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==, + } + dependencies: + no-case: 3.0.4 + tslib: 2.4.0 + upper-case-first: 2.0.2 + dev: true + + /set-blocking/2.0.0: + resolution: + { + integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==, + } + + /setimmediate/1.0.5: + resolution: + { + integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==, + } + dev: true + + /setprototypeof/1.2.0: + resolution: + { + integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, + } + dev: false + + /shebang-command/2.0.0: + resolution: + { + integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, + } + engines: { node: ">=8" } + dependencies: + shebang-regex: 3.0.0 + dev: true + + /shebang-regex/3.0.0: + resolution: + { + integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, + } + engines: { node: ">=8" } + dev: true + + /side-channel/1.0.4: + resolution: + { + integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, + } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.2 + object-inspect: 1.12.2 + dev: true + + /signal-exit/3.0.7: + resolution: + { + integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, + } + + /signedsource/1.0.0: + resolution: + { + integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==, + } + dev: true + + /slash/3.0.0: + resolution: + { + integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, + } + engines: { node: ">=8" } + dev: true + + /slash/4.0.0: + resolution: + { + integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==, + } + engines: { node: ">=12" } + dev: true + + /slice-ansi/0.0.4: + resolution: { integrity: sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU= } + engines: { node: ">=0.10.0" } + dev: true + + /snake-case/3.0.4: + resolution: + { + integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==, + } + dependencies: + dot-case: 3.0.4 + tslib: 2.4.0 + dev: true + + /source-map-js/1.0.2: + resolution: + { + integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, + } + engines: { node: ">=0.10.0" } + + /sponge-case/1.0.1: + resolution: + { + integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==, + } + dependencies: + tslib: 2.4.0 + dev: true + + /statuses/2.0.1: + resolution: + { + integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==, + } + engines: { node: ">= 0.8" } + dev: false + + /streamsearch/1.1.0: + resolution: + { + integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==, + } + engines: { node: ">=10.0.0" } + + /string-env-interpolation/1.0.1: + resolution: + { + integrity: sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==, + } + dev: true + + /string-width/1.0.2: + resolution: + { + integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==, + } + engines: { node: ">=0.10.0" } + dependencies: + code-point-at: 1.1.0 + is-fullwidth-code-point: 1.0.0 + strip-ansi: 3.0.1 + + /string-width/2.1.1: + resolution: + { + integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==, + } + engines: { node: ">=4" } + dependencies: + is-fullwidth-code-point: 2.0.0 + strip-ansi: 4.0.0 + dev: true + + /string-width/4.2.3: + resolution: + { + integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, + } + engines: { node: ">=8" } + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + /string.prototype.matchall/4.0.7: + resolution: + { + integrity: sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==, + } + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + get-intrinsic: 1.1.2 + has-symbols: 1.0.3 + internal-slot: 1.0.3 + regexp.prototype.flags: 1.4.3 + side-channel: 1.0.4 + dev: true + + /string.prototype.trimend/1.0.5: + resolution: + { + integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==, + } + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /string.prototype.trimstart/1.0.5: + resolution: + { + integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==, + } + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /string_decoder/1.1.1: + resolution: + { + integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, + } + dependencies: + safe-buffer: 5.1.2 + dev: false + + /string_decoder/1.3.0: + resolution: + { + integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, + } + dependencies: + safe-buffer: 5.2.1 + dev: true + + /strip-ansi/3.0.1: + resolution: + { + integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==, + } + engines: { node: ">=0.10.0" } + dependencies: + ansi-regex: 2.1.1 + + /strip-ansi/4.0.0: + resolution: + { + integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==, + } + engines: { node: ">=4" } + dependencies: + ansi-regex: 3.0.1 + dev: true + + /strip-ansi/6.0.1: + resolution: + { + integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, + } + engines: { node: ">=8" } + dependencies: + ansi-regex: 5.0.1 + + /strip-bom/3.0.0: + resolution: + { + integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, + } + engines: { node: ">=4" } + dev: true + + /strip-final-newline/2.0.0: + resolution: + { + integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==, + } + engines: { node: ">=6" } + dev: true + + /strip-json-comments/2.0.1: + resolution: + { + integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==, + } + engines: { node: ">=0.10.0" } + dev: true + + /strip-json-comments/3.1.1: + resolution: + { + integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==, + } + engines: { node: ">=8" } + dev: true + + /styled-jsx/5.0.7_react@18.2.0: + resolution: + { + integrity: sha512-b3sUzamS086YLRuvnaDigdAewz1/EFYlHpYBP5mZovKEdQQOIIYq8lApylub3HHZ6xFjV051kkGU7cudJmrXEA==, + } + engines: { node: ">= 12.0.0" } + peerDependencies: + "@babel/core": "*" + babel-plugin-macros: "*" + react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" + peerDependenciesMeta: + "@babel/core": + optional: true + babel-plugin-macros: + optional: true + dependencies: + react: 18.2.0 + dev: false + + /supports-color/2.0.0: + resolution: + { + integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==, + } + engines: { node: ">=0.8.0" } + dev: true + + /supports-color/5.5.0: + resolution: + { + integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, + } + engines: { node: ">=4" } + dependencies: + has-flag: 3.0.0 + dev: true + + /supports-color/7.2.0: + resolution: + { + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, + } + engines: { node: ">=8" } + dependencies: + has-flag: 4.0.0 + + /supports-preserve-symlinks-flag/1.0.0: + resolution: + { + integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, + } + engines: { node: ">= 0.4" } + dev: true + + /swap-case/2.0.2: + resolution: + { + integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==, + } + dependencies: + tslib: 2.4.0 + dev: true + + /symbol-observable/1.2.0: + resolution: + { + integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==, + } + engines: { node: ">=0.10.0" } + dev: true + + /synckit/0.8.2: + resolution: + { + integrity: sha512-k7D/IqZ8/jCiPSWqQqe7GtyG/ir0gubq58VWIX983QvdSP3L6T27qW1iTN7dm1MsTDZgu+dP5zooCKlMnGA32A==, + } + engines: { node: ^14.18.0 || >=16.0.0 } + dependencies: + "@pkgr/utils": 2.3.0 + tslib: 2.4.0 + dev: true + + /tapable/2.2.1: + resolution: + { + integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, + } + engines: { node: ">=6" } + dev: true + + /text-table/0.2.0: + resolution: + { + integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, + } + dev: true + + /through/2.3.8: + resolution: + { + integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, + } + dev: true + + /tiny-glob/0.2.9: + resolution: + { + integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==, + } + dependencies: + globalyzer: 0.1.0 + globrex: 0.1.2 + dev: true + + /tiny-warning/1.0.3: + resolution: + { + integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==, + } + dev: false + + /title-case/3.0.3: + resolution: + { + integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==, + } + dependencies: + tslib: 2.4.0 + dev: true + + /tmp/0.0.33: + resolution: + { + integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, + } + engines: { node: ">=0.6.0" } + dependencies: + os-tmpdir: 1.0.2 + dev: true + + /to-fast-properties/2.0.0: + resolution: + { + integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, + } + engines: { node: ">=4" } + dev: true + + /to-readable-stream/1.0.0: + resolution: + { + integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==, + } + engines: { node: ">=6" } + dev: true + + /to-regex-range/5.0.1: + resolution: + { + integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, + } + engines: { node: ">=8.0" } + dependencies: + is-number: 7.0.0 + + /toidentifier/1.0.1: + resolution: + { + integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==, + } + engines: { node: ">=0.6" } + dev: false + + /tr46/0.0.3: + resolution: + { + integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, + } + + /ts-log/2.2.4: + resolution: + { + integrity: sha512-DEQrfv6l7IvN2jlzc/VTdZJYsWUnQNCsueYjMkC/iXoEoi5fNan6MjeDqkvhfzbmHgdz9UxDUluX3V5HdjTydQ==, + } + dev: true + + /ts-node/10.9.1_qqrtuuv3y2pz7xoxv47yka6pmi: + resolution: + { + integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, + } + hasBin: true + peerDependencies: + "@swc/core": ">=1.2.50" + "@swc/wasm": ">=1.2.50" + "@types/node": "*" + typescript: ">=2.7" + peerDependenciesMeta: + "@swc/core": + optional: true + "@swc/wasm": + optional: true + dependencies: + "@cspotcode/source-map-support": 0.8.1 + "@tsconfig/node10": 1.0.9 + "@tsconfig/node12": 1.0.11 + "@tsconfig/node14": 1.0.3 + "@tsconfig/node16": 1.0.3 + "@types/node": 18.0.1 + acorn: 8.8.0 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 4.7.4 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + dev: true + + /tsconfig-paths/3.14.1: + resolution: + { + integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==, + } + dependencies: + "@types/json5": 0.0.29 + json5: 1.0.1 + minimist: 1.2.6 + strip-bom: 3.0.0 + dev: true + + /tslib/1.14.1: + resolution: + { + integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==, + } + + /tslib/2.3.1: + resolution: + { + integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==, + } + dev: true + + /tslib/2.4.0: + resolution: + { + integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==, + } + + /tsutils/3.21.0_typescript@4.7.4: + resolution: + { + integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, + } + engines: { node: ">= 6" } + peerDependencies: + typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + dependencies: + tslib: 1.14.1 + typescript: 4.7.4 + dev: true + + /type-check/0.4.0: + resolution: + { + integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==, + } + engines: { node: ">= 0.8.0" } + dependencies: + prelude-ls: 1.2.1 + dev: true + + /type-fest/0.20.2: + resolution: + { + integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==, + } + engines: { node: ">=10" } + dev: true + + /type-fest/0.21.3: + resolution: + { + integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, + } + engines: { node: ">=10" } + dev: true + + /typescript/4.7.4: + resolution: + { + integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==, + } + engines: { node: ">=4.2.0" } + hasBin: true + dev: true + + /ua-parser-js/0.7.31: + resolution: + { + integrity: sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==, + } + dev: true + + /unbox-primitive/1.0.2: + resolution: + { + integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, + } + dependencies: + call-bind: 1.0.2 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /unc-path-regex/0.1.2: + resolution: + { + integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==, + } + engines: { node: ">=0.10.0" } + dev: true + + /undici/5.8.2: + resolution: + { + integrity: sha512-3KLq3pXMS0Y4IELV045fTxqz04Nk9Ms7yfBBHum3yxsTR4XNn+ZCaUbf/mWitgYDAhsplQ0B1G4S5D345lMO3A==, + } + engines: { node: ">=12.18" } + dev: true + + /unixify/1.0.0: + resolution: + { + integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==, + } + engines: { node: ">=0.10.0" } + dependencies: + normalize-path: 2.1.1 + dev: true + + /unpipe/1.0.0: + resolution: + { + integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==, + } + engines: { node: ">= 0.8" } + dev: false + + /update-browserslist-db/1.0.5_browserslist@4.21.3: + resolution: + { + integrity: sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==, + } + hasBin: true + peerDependencies: + browserslist: ">= 4.21.0" + dependencies: + browserslist: 4.21.3 + escalade: 3.1.1 + picocolors: 1.0.0 + dev: true + + /upper-case-first/2.0.2: + resolution: + { + integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==, + } + dependencies: + tslib: 2.4.0 + dev: true + + /upper-case/2.0.2: + resolution: + { + integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==, + } + dependencies: + tslib: 2.4.0 + dev: true + + /uri-js/4.4.1: + resolution: + { + integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, + } + dependencies: + punycode: 2.1.1 + dev: true + + /url-parse-lax/3.0.0: + resolution: + { + integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==, + } + engines: { node: ">=4" } + dependencies: + prepend-http: 2.0.0 + dev: true + + /urql/2.2.3_aez2jvt6lsvokp3l4ousdbdxf4: + resolution: + { + integrity: sha512-XMkSYJKW9s4ZlbSuxcUz3fTBIykOn0sGileRXQeyZpaRBXJPVz5saSY05k7jdefNxShZtTI+/nr7PYUWQertfg==, + } + peerDependencies: + graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + react: ">= 16.8.0" + dependencies: + "@urql/core": 2.6.1_graphql@16.5.0 + graphql: 16.5.0 + react: 18.2.0 + wonka: 4.0.15 + dev: false + + /use-isomorphic-layout-effect/1.1.2_luyos4mouogwq6z3wafb3re4ce: + resolution: + { + integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==, + } + peerDependencies: + "@types/react": "*" + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + dependencies: + "@types/react": 18.0.14 + react: 18.2.0 + dev: false + + /use-sync-external-store/1.2.0_react@18.2.0: + resolution: + { + integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + react: 18.2.0 + dev: false + + /util-deprecate/1.0.2: + resolution: + { + integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, + } + + /uuid/8.3.2: + resolution: + { + integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==, + } + hasBin: true + dev: false + + /v8-compile-cache-lib/3.0.1: + resolution: + { + integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==, + } + dev: true + + /v8-compile-cache/2.3.0: + resolution: + { + integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==, + } + dev: true + + /value-or-promise/1.0.11: + resolution: + { + integrity: sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==, + } + engines: { node: ">=12" } + dev: true + + /wcwidth/1.0.1: + resolution: + { + integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, + } + dependencies: + defaults: 1.0.3 + dev: true + + /web-streams-polyfill/3.2.1: + resolution: + { + integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==, + } + engines: { node: ">= 8" } + + /web-streams-polyfill/4.0.0-beta.1: + resolution: + { + integrity: sha512-3ux37gEX670UUphBF9AMCq8XM6iQ8Ac6A+DSRRjDoRBm1ufCkaCDdNVbaqq60PsEkdNlLKrGtv/YBP4EJXqNtQ==, + } + engines: { node: ">= 12" } + dev: true + + /webcrypto-core/1.7.5: + resolution: + { + integrity: sha512-gaExY2/3EHQlRNNNVSrbG2Cg94Rutl7fAaKILS1w8ZDhGxdFOaw6EbCfHIxPy9vt/xwp5o0VQAx9aySPF6hU1A==, + } + dependencies: + "@peculiar/asn1-schema": 2.3.0 + "@peculiar/json-schema": 1.1.12 + asn1js: 3.0.5 + pvtsutils: 1.3.2 + tslib: 2.4.0 + dev: true + + /webidl-conversions/3.0.1: + resolution: + { + integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==, + } + + /webpack-sources/3.2.3: + resolution: + { + integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==, + } + engines: { node: ">=10.13.0" } + dev: false + + /whatwg-fetch/3.6.2: + resolution: + { + integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==, + } + dev: true + + /whatwg-url/5.0.0: + resolution: + { + integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, + } + dependencies: + tr46: 0.0.3 + webidl-conversions: 3.0.1 + + /which-boxed-primitive/1.0.2: + resolution: + { + integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, + } + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + dev: true + + /which-module/2.0.0: + resolution: + { + integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==, + } + dev: true + + /which/2.0.2: + resolution: + { + integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, + } + engines: { node: ">= 8" } + hasBin: true + dependencies: + isexe: 2.0.0 + + /wide-align/1.1.5: + resolution: + { + integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==, + } + dependencies: + string-width: 4.2.3 + dev: false + + /wonka/4.0.15: + resolution: + { + integrity: sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==, + } + dev: false + + /word-wrap/1.2.3: + resolution: + { + integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==, + } + engines: { node: ">=0.10.0" } + dev: true + + /wrap-ansi/3.0.1: + resolution: + { + integrity: sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==, + } + engines: { node: ">=4" } + dependencies: + string-width: 2.1.1 + strip-ansi: 4.0.0 + dev: true + + /wrap-ansi/6.2.0: + resolution: + { + integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, + } + engines: { node: ">=8" } + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrap-ansi/7.0.0: + resolution: + { + integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, + } + engines: { node: ">=10" } + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrappy/1.0.2: + resolution: + { + integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, + } + + /ws/8.8.1: + resolution: + { + integrity: sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==, + } + engines: { node: ">=10.0.0" } + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dev: true + + /y18n/4.0.3: + resolution: + { + integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==, + } + dev: true + + /y18n/5.0.8: + resolution: + { + integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, + } + engines: { node: ">=10" } + dev: true + + /yallist/4.0.0: + resolution: + { + integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, + } + dev: true + + /yaml-ast-parser/0.0.43: + resolution: + { + integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==, + } + dev: true + + /yaml/1.10.2: + resolution: + { + integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==, + } + engines: { node: ">= 6" } + dev: true + + /yargs-parser/18.1.3: + resolution: + { + integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==, + } + engines: { node: ">=6" } + dependencies: + camelcase: 5.3.1 + decamelize: 1.2.0 + dev: true + + /yargs-parser/21.1.1: + resolution: + { + integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, + } + engines: { node: ">=12" } + dev: true + + /yargs/15.4.1: + resolution: + { + integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==, + } + engines: { node: ">=8" } + dependencies: + cliui: 6.0.0 + decamelize: 1.2.0 + find-up: 4.1.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + require-main-filename: 2.0.0 + set-blocking: 2.0.0 + string-width: 4.2.3 + which-module: 2.0.0 + y18n: 4.0.3 + yargs-parser: 18.1.3 + dev: true + + /yargs/17.5.1: + resolution: + { + integrity: sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==, + } + engines: { node: ">=12" } + dependencies: + cliui: 7.0.4 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + dev: true + + /yn/3.1.1: + resolution: + { + integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==, + } + engines: { node: ">=6" } + dev: true + + /yocto-queue/0.1.0: + resolution: + { + integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, + } + engines: { node: ">=10" } + dev: true + + /zod/3.19.1: + resolution: + { + integrity: sha512-LYjZsEDhCdYET9ikFu6dVPGp2YH9DegXjdJToSzD9rO6fy4qiRYFoyEYwps88OseJlPyl2NOe2iJuhEhL7IpEA==, + } + dev: false diff --git a/apps/klaviyo/public/favicon.ico b/apps/klaviyo/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..718d6fea4835ec2d246af9800eddb7ffb276240c GIT binary patch literal 25931 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 LrJugUA?W`A8`#=m literal 0 HcmV?d00001 diff --git a/apps/klaviyo/public/vercel.svg b/apps/klaviyo/public/vercel.svg new file mode 100644 index 0000000..fbf0e25 --- /dev/null +++ b/apps/klaviyo/public/vercel.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/apps/klaviyo/saleor-app.ts b/apps/klaviyo/saleor-app.ts new file mode 100644 index 0000000..8463511 --- /dev/null +++ b/apps/klaviyo/saleor-app.ts @@ -0,0 +1,55 @@ +import { APL, FileAPL, SaleorCloudAPL, UpstashAPL, VercelAPL } from "@saleor/app-sdk/APL"; +import { SaleorApp } from "@saleor/app-sdk/saleor-app"; + +/** + * By default auth data are stored in the `.auth-data.json` (FileAPL). + * For multi-tenant applications and deployments please use UpstashAPL. + * + * To read more about storing auth data, read the + * [APL documentation](https://github.com/saleor/saleor-app-sdk/blob/main/docs/apl.md) + */ +const aplType = process.env.APL ?? "file"; +let apl: APL; + +switch (aplType) { + case "vercel": + apl = new VercelAPL(); + + break; + case "upstash": + apl = new UpstashAPL(); + + break; + case "file": + apl = new FileAPL(); + + break; + case "saleor-cloud": { + if (!process.env.REST_APL_ENDPOINT || !process.env.REST_APL_TOKEN) { + throw new Error("Rest APL is not configured - missing env variables. Check saleor-app.ts"); + } + + apl = new SaleorCloudAPL({ + resourceUrl: process.env.REST_APL_ENDPOINT, + token: process.env.REST_APL_TOKEN, + }); + + break; + } + default: { + throw new Error("Invalid APL config, "); + } +} + +if (!process.env.SECRET_KEY && process.env.NODE_ENV === "production") { + throw new Error( + "For production deployment SECRET_KEY is mandatory to use EncryptedSettingsManager." + ); +} + +// Use placeholder value for the development +export const settingsManagerSecretKey = process.env.SECRET_KEY || "CHANGE_ME"; + +export const saleorApp = new SaleorApp({ + apl, +}); diff --git a/apps/klaviyo/sentry.client.config.js b/apps/klaviyo/sentry.client.config.js new file mode 100644 index 0000000..d480b2d --- /dev/null +++ b/apps/klaviyo/sentry.client.config.js @@ -0,0 +1,17 @@ +// This file configures the initialization of Sentry on the browser. +// The config you add here will be used whenever a page is visited. +// https://docs.sentry.io/platforms/javascript/guides/nextjs/ + +import * as Sentry from "@sentry/nextjs"; + +const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN; + +Sentry.init({ + dsn: SENTRY_DSN, + // Adjust this value in production, or use tracesSampler for greater control + tracesSampleRate: 1.0, + // ... + // Note: if you want to override the automatic release value, do not set a + // `release` value here - use the environment variable `SENTRY_RELEASE`, so + // that it will also get attached to your source maps +}); diff --git a/apps/klaviyo/sentry.server.config.js b/apps/klaviyo/sentry.server.config.js new file mode 100644 index 0000000..a7e581b --- /dev/null +++ b/apps/klaviyo/sentry.server.config.js @@ -0,0 +1,17 @@ +// This file configures the initialization of Sentry on the server. +// The config you add here will be used whenever the server handles a request. +// https://docs.sentry.io/platforms/javascript/guides/nextjs/ + +import * as Sentry from "@sentry/nextjs"; + +const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN; + +Sentry.init({ + dsn: SENTRY_DSN, + // Adjust this value in production, or use tracesSampler for greater control + tracesSampleRate: 1.0, + // ... + // Note: if you want to override the automatic release value, do not set a + // `release` value here - use the environment variable `SENTRY_RELEASE`, so + // that it will also get attached to your source maps +}); diff --git a/apps/klaviyo/styles/globals.css b/apps/klaviyo/styles/globals.css new file mode 100644 index 0000000..a70ca08 --- /dev/null +++ b/apps/klaviyo/styles/globals.css @@ -0,0 +1,26 @@ +body { + font-family: Inter, -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, + "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; + color: #111; + padding: 1rem 2rem; +} + +code { + background: #f6f8fa; + border: 1px solid #eaeaea; + border-radius: 5px; + display: inline-block; + margin-top: 10px; + padding: 0.75rem; + font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, + Bitstream Vera Sans Mono, Courier New, monospace; +} + +code::before { + content: "$ "; + opacity: 0.6; +} + +li { + padding-bottom: 1rem; +} diff --git a/apps/klaviyo/tsconfig.json b/apps/klaviyo/tsconfig.json new file mode 100644 index 0000000..99710e8 --- /dev/null +++ b/apps/klaviyo/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], + "exclude": ["node_modules"] +} diff --git a/apps/klaviyo/types.ts b/apps/klaviyo/types.ts new file mode 100644 index 0000000..f4d6c4a --- /dev/null +++ b/apps/klaviyo/types.ts @@ -0,0 +1,17 @@ +import { NextPage } from "next"; +import { AppProps as NextAppProps } from "next/app"; +import { NextComponentType, NextPageContext } from "next/types"; +import { ReactElement, ReactNode } from "react"; + +export type PageWithLayout = NextPage & { + getLayout?: (page: ReactElement) => ReactNode; +}; + +export type AppProps = { + pageProps: NextAppProps["pageProps"]; + Component: NextComponentType & { layoutProps: any }; +}; + +export type AppLayoutProps = AppProps & { + Component: PageWithLayout; +}; diff --git a/apps/klaviyo/utils/useDashboardNotifier.ts b/apps/klaviyo/utils/useDashboardNotifier.ts new file mode 100644 index 0000000..0b6d80d --- /dev/null +++ b/apps/klaviyo/utils/useDashboardNotifier.ts @@ -0,0 +1,12 @@ +import { actions, NotificationPayload, useAppBridge } from "@saleor/app-sdk/app-bridge"; + +const useDashboardNotifier = () => { + const { appBridgeState, appBridge } = useAppBridge(); + + const notify = (payload: NotificationPayload) => + appBridgeState?.ready && appBridge?.dispatch(actions.Notification(payload)); + + return [notify]; +}; + +export default useDashboardNotifier; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9fcbccc..58e5674 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -206,6 +206,83 @@ importers: vite: 4.1.1_@types+node@18.13.0 vitest: 0.28.4_jsdom@20.0.3 + apps/klaviyo: + specifiers: + '@graphql-codegen/cli': 2.7.0 + '@graphql-codegen/introspection': 2.1.1 + '@graphql-codegen/typed-document-node': ^2.2.14 + '@graphql-codegen/typescript': 2.6.0 + '@graphql-codegen/typescript-operations': 2.4.3 + '@graphql-codegen/typescript-urql': ^3.5.13 + '@graphql-codegen/urql-introspection': 2.1.1 + '@graphql-typed-document-node/core': ^3.1.1 + '@material-ui/core': ^4.12.4 + '@material-ui/icons': ^4.11.3 + '@material-ui/lab': 4.0.0-alpha.61 + '@saleor/app-sdk': ~0.27.1 + '@saleor/macaw-ui': ^0.7.2 + '@sentry/nextjs': ^7.31.0 + '@types/node': 18.0.1 + '@types/react': 18.0.14 + '@types/react-dom': 18.0.6 + '@urql/exchange-auth': ^1.0.0 + autoprefixer: ^10.4.7 + clean-publish: ^4.0.1 + clsx: ^1.2.1 + eslint: 8.15.0 + eslint-config-saleor: workspace:* + graphql: ^16.6.0 + graphql-tag: ^2.12.6 + husky: ^8.0.1 + next: 12.3.1 + node-fetch: ^3.2.6 + postcss: ^8.4.14 + prettier: ^2.7.1 + pretty-quick: ^3.1.3 + react: 18.2.0 + react-dom: 18.2.0 + react-helmet: ^6.1.0 + typescript: 4.9.5 + urql: ^3.0.3 + dependencies: + '@material-ui/core': 4.12.4_twyhzqqpkwvvgrmyeapdo6i4my + '@material-ui/icons': 4.11.3_xfab57qepcdrxdxif4xlv2kdgm + '@material-ui/lab': 4.0.0-alpha.61_xfab57qepcdrxdxif4xlv2kdgm + '@saleor/app-sdk': 0.27.1_azq6kxkn3od7qdylwkyksrwopy + '@saleor/macaw-ui': 0.7.2_5j6zkq4mzir5org5dcu2pr43hm + '@sentry/nextjs': 7.36.0_next@12.3.1+react@18.2.0 + '@urql/exchange-auth': 1.0.0_graphql@16.6.0 + clsx: 1.2.1 + graphql: 16.6.0 + graphql-tag: 2.12.6_graphql@16.6.0 + next: 12.3.1_biqbaboplfbrettd7655fr4n2y + node-fetch: 3.3.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-helmet: 6.1.0_react@18.2.0 + urql: 3.0.3_onqnqwb3ubg5opvemcqf7c2qhy + devDependencies: + '@graphql-codegen/cli': 2.7.0_74lnzcgk6cgqsdyscb5kbgak6q + '@graphql-codegen/introspection': 2.1.1_graphql@16.6.0 + '@graphql-codegen/typed-document-node': 2.3.13_graphql@16.6.0 + '@graphql-codegen/typescript': 2.6.0_graphql@16.6.0 + '@graphql-codegen/typescript-operations': 2.4.3_graphql@16.6.0 + '@graphql-codegen/typescript-urql': 3.7.3_sy4knu3obj4ys7pjcqbyfxmqle + '@graphql-codegen/urql-introspection': 2.1.1_graphql@16.6.0 + '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 + '@types/node': 18.0.1 + '@types/react': 18.0.14 + '@types/react-dom': 18.0.6 + autoprefixer: 10.4.13_postcss@8.4.21 + clean-publish: 4.1.1 + eslint: 8.15.0 + eslint-config-saleor: link:../../packages/eslint-config-saleor + husky: 8.0.3 + postcss: 8.4.21 + prettier: 2.8.3 + pretty-quick: 3.1.3_prettier@2.8.3 + typescript: 4.9.5 + apps/search: specifiers: '@graphql-codegen/cli': 2.13.11 @@ -1560,6 +1637,19 @@ packages: - react-dom dev: false + /@floating-ui/react-dom-interactions/0.5.0_twyhzqqpkwvvgrmyeapdo6i4my: + resolution: {integrity: sha512-rfON7mkHjCeogd0BSXPa8GBp1TMxEytJQqGVlCouSUonJ4POqdHsqcxRnCh0yAaGVaL/nB/J1vq28V4RdoLszg==} + deprecated: Package renamed to @floating-ui/react + dependencies: + '@floating-ui/react-dom': 0.7.2_twyhzqqpkwvvgrmyeapdo6i4my + aria-hidden: 1.2.2_luyos4mouogwq6z3wafb3re4ce + use-isomorphic-layout-effect: 1.1.2_luyos4mouogwq6z3wafb3re4ce + transitivePeerDependencies: + - '@types/react' + - react + - react-dom + dev: false + /@floating-ui/react-dom/0.7.2_5ndqzdd6t4rivxsukjv3i3ak2q: resolution: {integrity: sha512-1T0sJcpHgX/u4I1OzIEhlcrvkUN8ln39nz7fMoE/2HDHrPiMFoOGR7++GYyfUmIQHkkrTinaeQsO3XWubjSvGg==} peerDependencies: @@ -1574,6 +1664,20 @@ packages: - '@types/react' dev: false + /@floating-ui/react-dom/0.7.2_twyhzqqpkwvvgrmyeapdo6i4my: + resolution: {integrity: sha512-1T0sJcpHgX/u4I1OzIEhlcrvkUN8ln39nz7fMoE/2HDHrPiMFoOGR7++GYyfUmIQHkkrTinaeQsO3XWubjSvGg==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + dependencies: + '@floating-ui/dom': 0.5.4 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + use-isomorphic-layout-effect: 1.1.2_luyos4mouogwq6z3wafb3re4ce + transitivePeerDependencies: + - '@types/react' + dev: false + /@graphql-codegen/cli/2.13.11_tlz2ma6byvlbw5iffqokhee6bi: resolution: {integrity: sha512-PJF36a1i6M7Btj1kB4PWWzBUO3u2BJzsd/6KXxRmEugcxrbaCnbTDDktopy0CZYKdqaFbXaowwbRY8Tk8DV99Q==} hasBin: true @@ -1685,6 +1789,72 @@ packages: - utf-8-validate dev: true + /@graphql-codegen/cli/2.7.0_74lnzcgk6cgqsdyscb5kbgak6q: + resolution: {integrity: sha512-qlBcS6jGfZ/xWXwqiyRLHGRuLC9gUdF8AwGHN7LdAYEP5MjL7pIXb02W5JuvMn47rrvr2Q22H9ECppZX65oSAg==} + hasBin: true + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + '@graphql-codegen/core': 2.5.1_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 + '@graphql-tools/apollo-engine-loader': 7.3.25_74lnzcgk6cgqsdyscb5kbgak6q + '@graphql-tools/code-file-loader': 7.3.20_graphql@16.6.0 + '@graphql-tools/git-loader': 7.2.19_graphql@16.6.0 + '@graphql-tools/github-loader': 7.3.26_74lnzcgk6cgqsdyscb5kbgak6q + '@graphql-tools/graphql-file-loader': 7.5.16_graphql@16.6.0 + '@graphql-tools/json-file-loader': 7.4.17_graphql@16.6.0 + '@graphql-tools/load': 7.8.12_graphql@16.6.0 + '@graphql-tools/prisma-loader': 7.2.62_74lnzcgk6cgqsdyscb5kbgak6q + '@graphql-tools/url-loader': 7.17.11_74lnzcgk6cgqsdyscb5kbgak6q + '@graphql-tools/utils': 8.13.1_graphql@16.6.0 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + change-case-all: 1.0.14 + chokidar: 3.5.3 + common-tags: 1.8.2 + cosmiconfig: 7.1.0 + debounce: 1.2.1 + detect-indent: 6.1.0 + graphql: 16.6.0 + graphql-config: 4.4.1_74lnzcgk6cgqsdyscb5kbgak6q + inquirer: 8.2.5 + is-glob: 4.0.3 + json-to-pretty-yaml: 1.2.2 + latest-version: 5.1.0 + listr: 0.14.3 + listr-update-renderer: 0.5.0_listr@0.14.3 + log-symbols: 4.1.0 + mkdirp: 1.0.4 + string-env-interpolation: 1.0.1 + ts-log: 2.2.5 + wrap-ansi: 7.0.0 + yaml: 1.10.2 + yargs: 17.6.2 + transitivePeerDependencies: + - '@babel/core' + - '@types/node' + - bufferutil + - cosmiconfig-toml-loader + - cosmiconfig-typescript-loader + - encoding + - supports-color + - utf-8-validate + - zen-observable + - zenObservable + dev: true + + /@graphql-codegen/core/2.5.1_graphql@16.6.0: + resolution: {integrity: sha512-alctBVl2hMnBXDLwkgmnFPrZVIiBDsWJSmxJcM4GKg1PB23+xuov35GE47YAyAhQItE1B1fbYnbb1PtGiDZ4LA==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 + '@graphql-tools/schema': 8.5.1_graphql@16.6.0 + '@graphql-tools/utils': 8.13.1_graphql@16.6.0 + graphql: 16.6.0 + tslib: 2.3.1 + dev: true + /@graphql-codegen/core/2.6.2_graphql@16.6.0: resolution: {integrity: sha512-58T5yf9nEfAhDwN1Vz1hImqpdJ/gGpCGUaroQ5tqskZPf7eZYYVkEXbtqRZZLx1MCCKwjWX4hMtTPpHhwKCkng==} peerDependencies: @@ -1709,6 +1879,16 @@ packages: tslib: 2.4.1 dev: true + /@graphql-codegen/introspection/2.1.1_graphql@16.6.0: + resolution: {integrity: sha512-O9zsy0IoFYDo37pBVF4pSvRMDx/AKdgOxyko4R/O+0DHEw9Nya/pQ3dbn+LDLj2n6X+xOXUBUfFvqhODTqU28w==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 + graphql: 16.6.0 + tslib: 2.3.1 + dev: true + /@graphql-codegen/introspection/2.2.1_graphql@16.6.0: resolution: {integrity: sha512-083tu9rSLL0k9LrAyGt1AjGQI/O9gX3w1UliaufLc3mofDSt7iV04tT9VJRuk4IoBvyPZ/8YCs5zIpmt/GexPA==} peerDependencies: @@ -1778,6 +1958,22 @@ packages: - supports-color dev: true + /@graphql-codegen/typescript-operations/2.4.3_graphql@16.6.0: + resolution: {integrity: sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 + '@graphql-codegen/typescript': 2.8.1_graphql@16.6.0 + '@graphql-codegen/visitor-plugin-common': 2.10.0_graphql@16.6.0 + auto-bind: 4.0.0 + graphql: 16.6.0 + tslib: 2.4.1 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + /@graphql-codegen/typescript-operations/2.5.3_graphql@16.6.0: resolution: {integrity: sha512-s+pA+Erm0HeBb/D5cNrflwRM5KWhkiA5cbz4uA99l3fzFPveoQBPfRCBu0XAlJLP/kBDy64+o4B8Nfc7wdRtmA==} peerDependencies: @@ -1827,6 +2023,22 @@ packages: - supports-color dev: true + /@graphql-codegen/typescript/2.6.0_graphql@16.6.0: + resolution: {integrity: sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==} + peerDependencies: + graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 + '@graphql-codegen/schema-ast': 2.6.1_graphql@16.6.0 + '@graphql-codegen/visitor-plugin-common': 2.10.0_graphql@16.6.0 + auto-bind: 4.0.0 + graphql: 16.6.0 + tslib: 2.4.1 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + /@graphql-codegen/typescript/2.7.3_graphql@16.6.0: resolution: {integrity: sha512-EzX/acijXtbG/AwPzho2ZZWaNo00+xAbsRDP+vnT2PwQV3AYq3/5bFvjq1XfAGWbTntdmlYlIwC9hf5bI85WVA==} peerDependencies: @@ -1859,6 +2071,17 @@ packages: - supports-color dev: true + /@graphql-codegen/urql-introspection/2.1.1_graphql@16.6.0: + resolution: {integrity: sha512-XLDLxyK8N3x3fvbkMoDb6lYPX2/rx3LiYT8dBeZYrBH1i9Tu0kfcEg0GeqNeLxiwnch9PZIC3O+gzROqP+rveA==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 + '@urql/introspection': 0.3.1_graphql@16.6.0 + graphql: 16.6.0 + tslib: 2.3.1 + dev: true + /@graphql-codegen/urql-introspection/2.2.1_graphql@16.6.0: resolution: {integrity: sha512-/KjHSf4dQNoYZZ+G10b3lbw304ik9xHzRf/syNvoYehmwdYE5J7RnO1v1Cz78LDm2NEdsFas6vJHi0sJd/pOHg==} peerDependencies: @@ -1870,6 +2093,27 @@ packages: tslib: 2.4.1 dev: true + /@graphql-codegen/visitor-plugin-common/2.10.0_graphql@16.6.0: + resolution: {integrity: sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 + '@graphql-tools/optimize': 1.3.1_graphql@16.6.0 + '@graphql-tools/relay-operation-optimizer': 6.5.17_graphql@16.6.0 + '@graphql-tools/utils': 8.13.1_graphql@16.6.0 + auto-bind: 4.0.0 + change-case-all: 1.0.14 + dependency-graph: 0.11.0 + graphql: 16.6.0 + graphql-tag: 2.12.6_graphql@16.6.0 + parse-filepath: 1.0.2 + tslib: 2.4.1 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + /@graphql-codegen/visitor-plugin-common/2.12.1_graphql@16.6.0: resolution: {integrity: sha512-dIUrX4+i/uazyPQqXyQ8cqykgNFe1lknjnfDWFo0gnk2W8+ruuL2JpSrj/7efzFHxbYGMQrCABDCUTVLi3DcVA==} peerDependencies: @@ -1933,6 +2177,21 @@ packages: - supports-color dev: true + /@graphql-tools/apollo-engine-loader/7.3.25_74lnzcgk6cgqsdyscb5kbgak6q: + resolution: {integrity: sha512-n5iX1rnu84QrfdrFOTP1YGXEL/zIN499hYllnCaOsd4Hj6IcPcH28+V6odbc6yn9NvOpy9pQ8vyPi3mrCFS6EA==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + '@ardatan/sync-fetch': 0.0.1 + '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@whatwg-node/fetch': 0.7.0_@types+node@18.0.1 + graphql: 16.6.0 + tslib: 2.5.0 + transitivePeerDependencies: + - '@types/node' + - encoding + dev: true + /@graphql-tools/apollo-engine-loader/7.3.25_d3dx4krdt4fsynqrp5lqxelwe4: resolution: {integrity: sha512-n5iX1rnu84QrfdrFOTP1YGXEL/zIN499hYllnCaOsd4Hj6IcPcH28+V6odbc6yn9NvOpy9pQ8vyPi3mrCFS6EA==} peerDependencies: @@ -2009,6 +2268,24 @@ packages: - utf-8-validate dev: true + /@graphql-tools/executor-http/0.1.6_74lnzcgk6cgqsdyscb5kbgak6q: + resolution: {integrity: sha512-OPE730n7T8nMgQFujbDuclCJrEchaVKZ4G5rl8r8fY/a/clKtZDZONTPnVSgW3/cBJ/WIXJGDvJtXwx6F8Fepg==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@repeaterjs/repeater': 3.0.4 + '@whatwg-node/fetch': 0.7.0_@types+node@18.0.1 + dset: 3.1.2 + extract-files: 11.0.0 + graphql: 16.6.0 + meros: 1.2.1_@types+node@18.0.1 + tslib: 2.5.0 + value-or-promise: 1.0.12 + transitivePeerDependencies: + - '@types/node' + dev: true + /@graphql-tools/executor-http/0.1.6_d3dx4krdt4fsynqrp5lqxelwe4: resolution: {integrity: sha512-OPE730n7T8nMgQFujbDuclCJrEchaVKZ4G5rl8r8fY/a/clKtZDZONTPnVSgW3/cBJ/WIXJGDvJtXwx6F8Fepg==} peerDependencies: @@ -2073,6 +2350,24 @@ packages: - supports-color dev: true + /@graphql-tools/github-loader/7.3.26_74lnzcgk6cgqsdyscb5kbgak6q: + resolution: {integrity: sha512-fly5zI4H+2nQfpj3OENVq95cS/5qJZsBWy9zgTT6WucRmdzvxodhXh4Q4tkznCR0mWdROze/2/vb6tgkcddQ6Q==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + '@ardatan/sync-fetch': 0.0.1 + '@graphql-tools/graphql-tag-pluck': 7.4.6_graphql@16.6.0 + '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@whatwg-node/fetch': 0.7.0_@types+node@18.0.1 + graphql: 16.6.0 + tslib: 2.5.0 + transitivePeerDependencies: + - '@babel/core' + - '@types/node' + - encoding + - supports-color + dev: true + /@graphql-tools/github-loader/7.3.26_d3dx4krdt4fsynqrp5lqxelwe4: resolution: {integrity: sha512-fly5zI4H+2nQfpj3OENVq95cS/5qJZsBWy9zgTT6WucRmdzvxodhXh4Q4tkznCR0mWdROze/2/vb6tgkcddQ6Q==} peerDependencies: @@ -2178,6 +2473,16 @@ packages: tslib: 2.5.0 dev: true + /@graphql-tools/merge/8.3.1_graphql@16.6.0: + resolution: {integrity: sha512-BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + '@graphql-tools/utils': 8.9.0_graphql@16.6.0 + graphql: 16.6.0 + tslib: 2.5.0 + dev: true + /@graphql-tools/merge/8.3.6_graphql@16.6.0: resolution: {integrity: sha512-uUBokxXi89bj08P+iCvQk3Vew4vcfL5ZM6NTylWi8PIpoq4r5nJ625bRuN8h2uubEdRiH8ntN9M4xkd/j7AybQ==} peerDependencies: @@ -2197,6 +2502,39 @@ packages: tslib: 2.5.0 dev: true + /@graphql-tools/prisma-loader/7.2.62_74lnzcgk6cgqsdyscb5kbgak6q: + resolution: {integrity: sha512-b2wxhkOO5+Ogo+uc87VzEoWeZFXD8yznzO3HbdK++fKQMekOBxTS/igH4hKrrstcJ3hk/Qci962OYCwFAa8hhg==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + '@graphql-tools/url-loader': 7.17.11_74lnzcgk6cgqsdyscb5kbgak6q + '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@types/js-yaml': 4.0.5 + '@types/json-stable-stringify': 1.0.34 + '@types/jsonwebtoken': 9.0.1 + chalk: 4.1.2 + debug: 4.3.4 + dotenv: 16.0.3 + graphql: 16.6.0 + graphql-request: 5.1.0_graphql@16.6.0 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + isomorphic-fetch: 3.0.0 + js-yaml: 4.1.0 + json-stable-stringify: 1.0.2 + jsonwebtoken: 9.0.0 + lodash: 4.17.21 + scuid: 1.1.0 + tslib: 2.5.0 + yaml-ast-parser: 0.0.43 + transitivePeerDependencies: + - '@types/node' + - bufferutil + - encoding + - supports-color + - utf-8-validate + dev: true + /@graphql-tools/prisma-loader/7.2.62_d3dx4krdt4fsynqrp5lqxelwe4: resolution: {integrity: sha512-b2wxhkOO5+Ogo+uc87VzEoWeZFXD8yznzO3HbdK++fKQMekOBxTS/igH4hKrrstcJ3hk/Qci962OYCwFAa8hhg==} peerDependencies: @@ -2244,6 +2582,18 @@ packages: - supports-color dev: true + /@graphql-tools/schema/8.5.1_graphql@16.6.0: + resolution: {integrity: sha512-0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + '@graphql-tools/merge': 8.3.1_graphql@16.6.0 + '@graphql-tools/utils': 8.9.0_graphql@16.6.0 + graphql: 16.6.0 + tslib: 2.5.0 + value-or-promise: 1.0.11 + dev: true + /@graphql-tools/schema/9.0.16_graphql@16.6.0: resolution: {integrity: sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==} peerDependencies: @@ -2268,6 +2618,32 @@ packages: value-or-promise: 1.0.11 dev: true + /@graphql-tools/url-loader/7.17.11_74lnzcgk6cgqsdyscb5kbgak6q: + resolution: {integrity: sha512-zGTrdz5hVm/0+vLZJexhB/B4m95ZCP0eqD2QoNP0hsstaqTyn9u84kTtYUpbPlz7hAxZsdu+VcLaypE4qPGGGw==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + '@ardatan/sync-fetch': 0.0.1 + '@graphql-tools/delegate': 9.0.26_graphql@16.6.0 + '@graphql-tools/executor-graphql-ws': 0.0.10_graphql@16.6.0 + '@graphql-tools/executor-http': 0.1.6_74lnzcgk6cgqsdyscb5kbgak6q + '@graphql-tools/executor-legacy-ws': 0.0.8_graphql@16.6.0 + '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/wrap': 9.3.5_graphql@16.6.0 + '@types/ws': 8.5.4 + '@whatwg-node/fetch': 0.7.0_@types+node@18.0.1 + graphql: 16.6.0 + isomorphic-ws: 5.0.0_ws@8.12.0 + tslib: 2.5.0 + value-or-promise: 1.0.12 + ws: 8.12.0 + transitivePeerDependencies: + - '@types/node' + - bufferutil + - encoding + - utf-8-validate + dev: true + /@graphql-tools/url-loader/7.17.11_d3dx4krdt4fsynqrp5lqxelwe4: resolution: {integrity: sha512-zGTrdz5hVm/0+vLZJexhB/B4m95ZCP0eqD2QoNP0hsstaqTyn9u84kTtYUpbPlz7hAxZsdu+VcLaypE4qPGGGw==} peerDependencies: @@ -2312,6 +2688,15 @@ packages: tslib: 2.5.0 dev: true + /@graphql-tools/utils/8.9.0_graphql@16.6.0: + resolution: {integrity: sha512-pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + graphql: 16.6.0 + tslib: 2.5.0 + dev: true + /@graphql-tools/utils/9.0.0_graphql@16.6.0: resolution: {integrity: sha512-kaCwyWnURxMsYbxzkfylLqFFelu83jKk3BJOOy0GIuxEtgXVS9v7Y/tojljo69Q+jaZ2YxAi3+d8IpM+hx768A==} peerDependencies: @@ -2391,6 +2776,17 @@ packages: - supports-color dev: true + /@humanwhocodes/config-array/0.9.5: + resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==} + engines: {node: '>=10.10.0'} + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + /@humanwhocodes/module-importer/1.0.1: resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} engines: {node: '>=12.22'} @@ -2501,6 +2897,35 @@ packages: react-transition-group: 4.4.5_biqbaboplfbrettd7655fr4n2y dev: false + /@material-ui/core/4.12.4_twyhzqqpkwvvgrmyeapdo6i4my: + resolution: {integrity: sha512-tr7xekNlM9LjA6pagJmL8QCgZXaubWUwkJnoYcMKd4gw/t4XiyvnTkjdGrUVicyB2BsdaAv1tvow45bPM4sSwQ==} + engines: {node: '>=8.0.0'} + deprecated: Material UI v4 doesn't receive active development since September 2021. See the guide https://mui.com/material-ui/migration/migration-v4/ to upgrade to v5. + peerDependencies: + '@types/react': ^16.8.6 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.20.13 + '@material-ui/styles': 4.11.5_twyhzqqpkwvvgrmyeapdo6i4my + '@material-ui/system': 4.12.2_twyhzqqpkwvvgrmyeapdo6i4my + '@material-ui/types': 5.1.0_@types+react@18.0.14 + '@material-ui/utils': 4.11.3_biqbaboplfbrettd7655fr4n2y + '@types/react': 18.0.14 + '@types/react-transition-group': 4.4.5 + clsx: 1.2.1 + hoist-non-react-statics: 3.3.2 + popper.js: 1.16.1-lts + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 17.0.2 + react-transition-group: 4.4.5_biqbaboplfbrettd7655fr4n2y + dev: false + /@material-ui/icons/4.11.3_x54wk6dsnsxe7g7vvfmytp77te: resolution: {integrity: sha512-IKHlyx6LDh8n19vzwH5RtHIOHl9Tu90aAAxcbWME6kp4dmvODM3UvOHJeMIDzUbd4muuJKHmlNoBN+mDY4XkBA==} engines: {node: '>=8.0.0'} @@ -2520,6 +2945,25 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: false + /@material-ui/icons/4.11.3_xfab57qepcdrxdxif4xlv2kdgm: + resolution: {integrity: sha512-IKHlyx6LDh8n19vzwH5RtHIOHl9Tu90aAAxcbWME6kp4dmvODM3UvOHJeMIDzUbd4muuJKHmlNoBN+mDY4XkBA==} + engines: {node: '>=8.0.0'} + peerDependencies: + '@material-ui/core': ^4.0.0 + '@types/react': ^16.8.6 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.20.13 + '@material-ui/core': 4.12.4_twyhzqqpkwvvgrmyeapdo6i4my + '@types/react': 18.0.14 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + /@material-ui/lab/4.0.0-alpha.61_x54wk6dsnsxe7g7vvfmytp77te: resolution: {integrity: sha512-rSzm+XKiNUjKegj8bzt5+pygZeckNLOr+IjykH8sYdVk7dE9y2ZuUSofiMV2bJk3qU+JHwexmw+q0RyNZB9ugg==} engines: {node: '>=8.0.0'} @@ -2544,6 +2988,30 @@ packages: react-is: 17.0.2 dev: false + /@material-ui/lab/4.0.0-alpha.61_xfab57qepcdrxdxif4xlv2kdgm: + resolution: {integrity: sha512-rSzm+XKiNUjKegj8bzt5+pygZeckNLOr+IjykH8sYdVk7dE9y2ZuUSofiMV2bJk3qU+JHwexmw+q0RyNZB9ugg==} + engines: {node: '>=8.0.0'} + deprecated: Material UI v4 doesn't receive active development since September 2021. See the guide https://mui.com/material-ui/migration/migration-v4/ to upgrade to v5. + peerDependencies: + '@material-ui/core': ^4.12.1 + '@types/react': ^16.8.6 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.20.13 + '@material-ui/core': 4.12.4_twyhzqqpkwvvgrmyeapdo6i4my + '@material-ui/utils': 4.11.3_biqbaboplfbrettd7655fr4n2y + '@types/react': 18.0.14 + clsx: 1.2.1 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 17.0.2 + dev: false + /@material-ui/styles/4.11.5_5ndqzdd6t4rivxsukjv3i3ak2q: resolution: {integrity: sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA==} engines: {node: '>=8.0.0'} @@ -2577,6 +3045,39 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: false + /@material-ui/styles/4.11.5_twyhzqqpkwvvgrmyeapdo6i4my: + resolution: {integrity: sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA==} + engines: {node: '>=8.0.0'} + deprecated: Material UI v4 doesn't receive active development since September 2021. See the guide https://mui.com/material-ui/migration/migration-v4/ to upgrade to v5. + peerDependencies: + '@types/react': ^16.8.6 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.20.13 + '@emotion/hash': 0.8.0 + '@material-ui/types': 5.1.0_@types+react@18.0.14 + '@material-ui/utils': 4.11.3_biqbaboplfbrettd7655fr4n2y + '@types/react': 18.0.14 + clsx: 1.2.1 + csstype: 2.6.21 + hoist-non-react-statics: 3.3.2 + jss: 10.9.2 + jss-plugin-camel-case: 10.9.2 + jss-plugin-default-unit: 10.9.2 + jss-plugin-global: 10.9.2 + jss-plugin-nested: 10.9.2 + jss-plugin-props-sort: 10.9.2 + jss-plugin-rule-value-function: 10.9.2 + jss-plugin-vendor-prefixer: 10.9.2 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + /@material-ui/system/4.12.2_5ndqzdd6t4rivxsukjv3i3ak2q: resolution: {integrity: sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw==} engines: {node: '>=8.0.0'} @@ -2597,6 +3098,37 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: false + /@material-ui/system/4.12.2_twyhzqqpkwvvgrmyeapdo6i4my: + resolution: {integrity: sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw==} + engines: {node: '>=8.0.0'} + peerDependencies: + '@types/react': ^16.8.6 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.20.13 + '@material-ui/utils': 4.11.3_biqbaboplfbrettd7655fr4n2y + '@types/react': 18.0.14 + csstype: 2.6.21 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + + /@material-ui/types/5.1.0_@types+react@18.0.14: + resolution: {integrity: sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==} + peerDependencies: + '@types/react': '*' + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@types/react': 18.0.14 + dev: false + /@material-ui/types/5.1.0_@types+react@18.0.27: resolution: {integrity: sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==} peerDependencies: @@ -2622,6 +3154,10 @@ packages: react-is: 17.0.2 dev: false + /@next/env/12.3.1: + resolution: {integrity: sha512-9P9THmRFVKGKt9DYqeC2aKIxm8rlvkK38V1P1sRE7qyoPBIs8l9oo79QoSdPtOWfzkbDAVUqvbQGgTMsb8BtJg==} + dev: false + /@next/env/13.1.2: resolution: {integrity: sha512-PpT4UZIX66VMTqXt4HKEJ+/PwbS+tWmmhZlazaws1a+dbUA5pPdjntQ46Jvj616i3ZKN9doS9LHx3y50RLjAWg==} dev: false @@ -2642,6 +3178,15 @@ packages: glob: 7.1.7 dev: false + /@next/swc-android-arm-eabi/12.3.1: + resolution: {integrity: sha512-i+BvKA8tB//srVPPQxIQN5lvfROcfv4OB23/L1nXznP+N/TyKL8lql3l7oo2LNhnH66zWhfoemg3Q4VJZSruzQ==} + engines: {node: '>= 10'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: false + optional: true + /@next/swc-android-arm-eabi/13.1.2: resolution: {integrity: sha512-7mRz1owoGsbfIcdOJA3kk7KEwPZ+OvVT1z9DkR/yru4QdVLF69h/1SHy0vlUNQMxDRllabhxCfkoZCB34GOGAg==} engines: {node: '>= 10'} @@ -2660,6 +3205,15 @@ packages: dev: false optional: true + /@next/swc-android-arm64/12.3.1: + resolution: {integrity: sha512-CmgU2ZNyBP0rkugOOqLnjl3+eRpXBzB/I2sjwcGZ7/Z6RcUJXK5Evz+N0ucOxqE4cZ3gkTeXtSzRrMK2mGYV8Q==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: false + optional: true + /@next/swc-android-arm64/13.1.2: resolution: {integrity: sha512-mgjZ2eJSayovQm1LcE54BLSI4jjnnnLtq5GY5g+DdPuUiCT644gKtjZ/w2BQvuIecCqqBO+Ph9yzo/wUTq7NLg==} engines: {node: '>= 10'} @@ -2678,6 +3232,15 @@ packages: dev: false optional: true + /@next/swc-darwin-arm64/12.3.1: + resolution: {integrity: sha512-hT/EBGNcu0ITiuWDYU9ur57Oa4LybD5DOQp4f22T6zLfpoBMfBibPtR8XktXmOyFHrL/6FC2p9ojdLZhWhvBHg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: false + optional: true + /@next/swc-darwin-arm64/13.1.2: resolution: {integrity: sha512-RikoQqy109r2222UJlyGs4dZw2BibkfPqpeFdW5JEGv+L2PStlHID8DwyVYbmHfQ0VIBGvbf/NAUtFakAWlhwg==} engines: {node: '>= 10'} @@ -2696,6 +3259,15 @@ packages: dev: false optional: true + /@next/swc-darwin-x64/12.3.1: + resolution: {integrity: sha512-9S6EVueCVCyGf2vuiLiGEHZCJcPAxglyckTZcEwLdJwozLqN0gtS0Eq0bQlGS3dH49Py/rQYpZ3KVWZ9BUf/WA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: false + optional: true + /@next/swc-darwin-x64/13.1.2: resolution: {integrity: sha512-JbDZjaTvL8gyPC5TAH6OnD4jmXPkyUxRYPvu08ZmhT/XAFBb/Cso0BdXyDax/BPCG70mimP9d3hXNKNq+A0VtQ==} engines: {node: '>= 10'} @@ -2714,6 +3286,15 @@ packages: dev: false optional: true + /@next/swc-freebsd-x64/12.3.1: + resolution: {integrity: sha512-qcuUQkaBZWqzM0F1N4AkAh88lLzzpfE6ImOcI1P6YeyJSsBmpBIV8o70zV+Wxpc26yV9vpzb+e5gCyxNjKJg5Q==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: false + optional: true + /@next/swc-freebsd-x64/13.1.2: resolution: {integrity: sha512-ax4j8VrdFQ/xc3W7Om0u1vnDxVApQHKsChBbAMynCrnycZmpbqK4MZu4ZkycT+mx2eccCiqZROpbzDbEdPosEw==} engines: {node: '>= 10'} @@ -2732,6 +3313,15 @@ packages: dev: false optional: true + /@next/swc-linux-arm-gnueabihf/12.3.1: + resolution: {integrity: sha512-diL9MSYrEI5nY2wc/h/DBewEDUzr/DqBjIgHJ3RUNtETAOB3spMNHvJk2XKUDjnQuluLmFMloet9tpEqU2TT9w==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: false + optional: true + /@next/swc-linux-arm-gnueabihf/13.1.2: resolution: {integrity: sha512-NcRHTesnCxnUvSJa637PQJffBBkmqi5XS/xVWGY7dI6nyJ+pC96Oj7kd+mcjnFUQI5lHKbg39qBWKtOzbezc4w==} engines: {node: '>= 10'} @@ -2750,6 +3340,15 @@ packages: dev: false optional: true + /@next/swc-linux-arm64-gnu/12.3.1: + resolution: {integrity: sha512-o/xB2nztoaC7jnXU3Q36vGgOolJpsGG8ETNjxM1VAPxRwM7FyGCPHOMk1XavG88QZSQf+1r+POBW0tLxQOJ9DQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: false + optional: true + /@next/swc-linux-arm64-gnu/13.1.2: resolution: {integrity: sha512-AxJdjocLtPrsBY4P2COSBIc3crT5bpjgGenNuINoensOlXhBkYM0aRDYZdydwXOhG+kN2ngUvfgitop9pa204w==} engines: {node: '>= 10'} @@ -2768,6 +3367,15 @@ packages: dev: false optional: true + /@next/swc-linux-arm64-musl/12.3.1: + resolution: {integrity: sha512-2WEasRxJzgAmP43glFNhADpe8zB7kJofhEAVNbDJZANp+H4+wq+/cW1CdDi8DqjkShPEA6/ejJw+xnEyDID2jg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: false + optional: true + /@next/swc-linux-arm64-musl/13.1.2: resolution: {integrity: sha512-JmNimDkcCRq7P5zpkdqeaSZ69qKDntEPtyIaMNWqy5M0WUJxGim0Fs6Qzxayiyvuuh9Guxks4woQ/j/ZvX/c8Q==} engines: {node: '>= 10'} @@ -2786,6 +3394,15 @@ packages: dev: false optional: true + /@next/swc-linux-x64-gnu/12.3.1: + resolution: {integrity: sha512-JWEaMyvNrXuM3dyy9Pp5cFPuSSvG82+yABqsWugjWlvfmnlnx9HOQZY23bFq3cNghy5V/t0iPb6cffzRWylgsA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: false + optional: true + /@next/swc-linux-x64-gnu/13.1.2: resolution: {integrity: sha512-TsLsjZwUlgmvI42neTuIoD6K9RlXCUzqPtvIClgXxVO0um0DiZwK+M+0zX/uVXhMVphfPY2c5YeR1zFSIONY4A==} engines: {node: '>= 10'} @@ -2804,6 +3421,15 @@ packages: dev: false optional: true + /@next/swc-linux-x64-musl/12.3.1: + resolution: {integrity: sha512-xoEWQQ71waWc4BZcOjmatuvPUXKTv6MbIFzpm4LFeCHsg2iwai0ILmNXf81rJR+L1Wb9ifEke2sQpZSPNz1Iyg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: false + optional: true + /@next/swc-linux-x64-musl/13.1.2: resolution: {integrity: sha512-eSkyXgCXydEFPTkcncQOGepafedPte6JT/OofB9uvruucrrMVBagCASOuPxodWEMrlfEKSXVnExMKIlfmQMD7A==} engines: {node: '>= 10'} @@ -2822,6 +3448,15 @@ packages: dev: false optional: true + /@next/swc-win32-arm64-msvc/12.3.1: + resolution: {integrity: sha512-hswVFYQYIeGHE2JYaBVtvqmBQ1CppplQbZJS/JgrVI3x2CurNhEkmds/yqvDONfwfbttTtH4+q9Dzf/WVl3Opw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: false + optional: true + /@next/swc-win32-arm64-msvc/13.1.2: resolution: {integrity: sha512-DmXFaRTgt2KrV9dmRLifDJE+cYiutHVFIw5/C9BtnwXH39uf3YbPxeD98vNrtqqqZVVLXY/1ySaSIwzYnqeY9g==} engines: {node: '>= 10'} @@ -2840,6 +3475,15 @@ packages: dev: false optional: true + /@next/swc-win32-ia32-msvc/12.3.1: + resolution: {integrity: sha512-Kny5JBehkTbKPmqulr5i+iKntO5YMP+bVM8Hf8UAmjSMVo3wehyLVc9IZkNmcbxi+vwETnQvJaT5ynYBkJ9dWA==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: false + optional: true + /@next/swc-win32-ia32-msvc/13.1.2: resolution: {integrity: sha512-3+nBkuFs/wT+lmRVQNH5SyDT7I4vUlNPntosEaEP63FuYQdPLaxz0GvcR66MdFSFh2fsvazpe4wciOwVS4FItQ==} engines: {node: '>= 10'} @@ -2858,6 +3502,15 @@ packages: dev: false optional: true + /@next/swc-win32-x64-msvc/12.3.1: + resolution: {integrity: sha512-W1ijvzzg+kPEX6LAc+50EYYSEo0FVu7dmTE+t+DM4iOLqgGHoW9uYSz9wCVdkXOEEMP9xhXfGpcSxsfDucyPkA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: false + optional: true + /@next/swc-win32-x64-msvc/13.1.2: resolution: {integrity: sha512-avsyveEvcvH42PvKjR4Pb8JlLttuGURr2H3ZhS2b85pHOiZ7yjH3rMUoGnNzuLMApyxYaCvd4MedPrLhnNhkog==} engines: {node: '>= 10'} @@ -3044,6 +3697,27 @@ packages: - supports-color dev: false + /@saleor/app-sdk/0.27.1_azq6kxkn3od7qdylwkyksrwopy: + resolution: {integrity: sha512-ZNbucokKCdBE1qa+YLHvjBVazYcRuUExBdaPW9aNxfeYyXgQNCdHqJx9oA/S1lMEVSbZSIRcn8Sx1+X/eEV8BA==} + peerDependencies: + next: '>=12' + react: '>=17' + react-dom: '>=17' + dependencies: + debug: 4.3.4 + fast-glob: 3.2.12 + graphql: 16.6.0 + jose: 4.11.4 + next: 12.3.1_biqbaboplfbrettd7655fr4n2y + raw-body: 2.5.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + retes: 0.33.0 + uuid: 8.3.2 + transitivePeerDependencies: + - supports-color + dev: false + /@saleor/macaw-ui/0.7.2_2dwar4pp5qoelfawvjffoi6dne: resolution: {integrity: sha512-Fli7fhTWuHu7q2CzxwTUpB4x9HYaxHSAzCLZLA23VY1ieIWbCxbsXadMiMGWp/nuYitswMr6JXMm+1SDe9K8LQ==} engines: {node: '>=16 <19'} @@ -3071,6 +3745,33 @@ packages: - '@types/react' dev: false + /@saleor/macaw-ui/0.7.2_5j6zkq4mzir5org5dcu2pr43hm: + resolution: {integrity: sha512-Fli7fhTWuHu7q2CzxwTUpB4x9HYaxHSAzCLZLA23VY1ieIWbCxbsXadMiMGWp/nuYitswMr6JXMm+1SDe9K8LQ==} + engines: {node: '>=16 <19'} + peerDependencies: + '@material-ui/core': ^4.11.2 + '@material-ui/icons': ^4.11.2 + '@material-ui/lab': ^4.0.0-alpha.58 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + react-helmet: ^6.1.0 + dependencies: + '@floating-ui/react-dom-interactions': 0.5.0_twyhzqqpkwvvgrmyeapdo6i4my + '@material-ui/core': 4.12.4_twyhzqqpkwvvgrmyeapdo6i4my + '@material-ui/icons': 4.11.3_xfab57qepcdrxdxif4xlv2kdgm + '@material-ui/lab': 4.0.0-alpha.61_xfab57qepcdrxdxif4xlv2kdgm + clsx: 1.2.1 + downshift: 6.1.12_react@18.2.0 + lodash: 4.17.21 + lodash-es: 4.17.21 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-helmet: 6.1.0_react@18.2.0 + react-inlinesvg: 3.0.1_react@18.2.0 + transitivePeerDependencies: + - '@types/react' + dev: false + /@saleor/macaw-ui/0.7.2_pmlnlm755hlzzzocw2qhf3a34e: resolution: {integrity: sha512-Fli7fhTWuHu7q2CzxwTUpB4x9HYaxHSAzCLZLA23VY1ieIWbCxbsXadMiMGWp/nuYitswMr6JXMm+1SDe9K8LQ==} engines: {node: '>=16 <19'} @@ -3097,6 +3798,24 @@ packages: - '@types/react' dev: false + /@samverschueren/stream-to-observable/0.3.1_rxjs@6.6.7: + resolution: {integrity: sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==} + engines: {node: '>=6'} + peerDependencies: + rxjs: '*' + zen-observable: '*' + peerDependenciesMeta: + rxjs: + optional: true + zen-observable: + optional: true + dependencies: + any-observable: 0.3.0_rxjs@6.6.7 + rxjs: 6.6.7 + transitivePeerDependencies: + - zenObservable + dev: true + /@sentry/browser/7.36.0: resolution: {integrity: sha512-Mu0OpisCZFICBGxVXdHWjUDgSvuQKjnO9acNcXR1+68IU08iX+cU6f2kq6VzI4mW/pNieI20FDFbx9KA0YZ4+A==} engines: {node: '>=8'} @@ -3145,6 +3864,36 @@ packages: tslib: 1.14.1 dev: false + /@sentry/nextjs/7.36.0_next@12.3.1+react@18.2.0: + resolution: {integrity: sha512-7IUwBjCjo3rWuvEG16D1wKb0D+aMyCU920VGCAQVZaqTZAgrgAKfpTa1Sk0fmDxYglW1EBI9QM+WEnOa9RleLw==} + engines: {node: '>=8'} + peerDependencies: + next: ^10.0.8 || ^11.0 || ^12.0 || ^13.0 + react: 16.x || 17.x || 18.x + webpack: '>= 4.0.0' + peerDependenciesMeta: + webpack: + optional: true + dependencies: + '@rollup/plugin-commonjs': 24.0.0_rollup@2.78.0 + '@sentry/core': 7.36.0 + '@sentry/integrations': 7.36.0 + '@sentry/node': 7.36.0 + '@sentry/react': 7.36.0_react@18.2.0 + '@sentry/tracing': 7.36.0 + '@sentry/types': 7.36.0 + '@sentry/utils': 7.36.0 + '@sentry/webpack-plugin': 1.20.0 + chalk: 3.0.0 + next: 12.3.1_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + rollup: 2.78.0 + tslib: 1.14.1 + transitivePeerDependencies: + - encoding + - supports-color + dev: false + /@sentry/nextjs/7.36.0_next@13.1.2+react@18.2.0: resolution: {integrity: sha512-7IUwBjCjo3rWuvEG16D1wKb0D+aMyCU920VGCAQVZaqTZAgrgAKfpTa1Sk0fmDxYglW1EBI9QM+WEnOa9RleLw==} engines: {node: '>=8'} @@ -3277,6 +4026,11 @@ packages: - supports-color dev: false + /@sindresorhus/is/0.14.0: + resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} + engines: {node: '>=6'} + dev: true + /@swc/core-darwin-arm64/1.3.32: resolution: {integrity: sha512-o19bhlxuUgjUElm6i+QhXgZ0vD6BebiB/gQpK3en5aAwhOvinwr4sah3GqFXsQzz/prKVDuMkj9SW6F/Ug5hgg==} engines: {node: '>=10'} @@ -3390,12 +4144,25 @@ packages: tslib: 2.5.0 dev: false + /@swc/helpers/0.4.11: + resolution: {integrity: sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw==} + dependencies: + tslib: 2.5.0 + dev: false + /@swc/helpers/0.4.14: resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} dependencies: tslib: 2.5.0 dev: false + /@szmarczak/http-timer/1.1.2: + resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} + engines: {node: '>=6'} + dependencies: + defer-to-connect: 1.1.3 + dev: true + /@tanstack/query-core/4.24.4: resolution: {integrity: sha512-9dqjv9eeB6VHN7lD3cLo16ZAjfjCsdXetSAD5+VyKqLUvcKTL0CklGQRJu+bWzdrS69R6Ea4UZo8obHYZnG6aA==} dev: false @@ -3614,6 +4381,16 @@ packages: '@types/node': 18.13.0 dev: true + /@types/keyv/3.1.4: + resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} + dependencies: + '@types/node': 18.13.0 + dev: true + + /@types/minimatch/3.0.5: + resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} + dev: true + /@types/minimatch/5.1.2: resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} dev: true @@ -3634,6 +4411,10 @@ packages: resolution: {integrity: sha512-FXKWbsJ6a1hIrRxv+FoukuHnGTgEzKYGi7kilfMae96AL9UNkPFNWJEEYWzdRI9ooIkbr4AKldyuSTLql06vLQ==} dev: false + /@types/node/18.0.1: + resolution: {integrity: sha512-CmR8+Tsy95hhwtZBKJBs0/FFq4XX7sDZHlGGf+0q+BRZfMbOTkzkj0AFAuTyXbObDIoanaBBW0+KEW+m3N16Wg==} + dev: true + /@types/node/18.13.0: resolution: {integrity: sha512-gC3TazRzGoOnoKAhUx+Q0t8S9Tzs74z7m0ipwGpSqQrleP14hKxP4/JUeEQcD3W1/aIpnWl8pHowI7WokuZpXg==} @@ -3663,12 +4444,25 @@ packages: '@types/react': 18.0.27 dev: true + /@types/react-dom/18.0.6: + resolution: {integrity: sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==} + dependencies: + '@types/react': 18.0.27 + dev: true + /@types/react-transition-group/4.4.5: resolution: {integrity: sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==} dependencies: '@types/react': 18.0.27 dev: false + /@types/react/18.0.14: + resolution: {integrity: sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==} + dependencies: + '@types/prop-types': 15.7.5 + '@types/scheduler': 0.16.2 + csstype: 3.1.1 + /@types/react/18.0.27: resolution: {integrity: sha512-3vtRKHgVxu3Jp9t718R9BuzoD4NcQ8YJ5XRzsSKxNDiDonD2MXIT1TmSkenxuCycZJoQT5d2vE8LwWJxBC1gmA==} dependencies: @@ -3676,6 +4470,12 @@ packages: '@types/scheduler': 0.16.2 csstype: 3.1.1 + /@types/responselike/1.0.0: + resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} + dependencies: + '@types/node': 18.13.0 + dev: true + /@types/rimraf/3.0.2: resolution: {integrity: sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==} dependencies: @@ -3823,6 +4623,14 @@ packages: wonka: 6.1.2 dev: false + /@urql/introspection/0.3.1_graphql@16.6.0: + resolution: {integrity: sha512-4Srr45lA00cVlfRGtGJqYlc2vcPN6BZwFW9EVY20yROaoADCGNxm6xmScZhxuCRQPhOB9DXtuYs2KNrOo84ZeA==} + peerDependencies: + graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + graphql: 16.6.0 + dev: true + /@urql/introspection/0.3.3_graphql@16.6.0: resolution: {integrity: sha512-tekSLLqWnusfV6V7xaEnLJQSdXOD/lWy7f8JYQwrX+88Md+voGSCSx5WJXI7KLBN3Tat2OV08tAr8UROykls4Q==} peerDependencies: @@ -3934,6 +4742,18 @@ packages: - encoding dev: true + /@whatwg-node/fetch/0.7.0_@types+node@18.0.1: + resolution: {integrity: sha512-0nmiUgHA9lSBcPQS0Eq9DACsdGa2W9gJUnN+Ul1vVhQsL3dnOAIGTs4uTiVC/W7bcfxTMP+TRFxngxS40aO5Nw==} + dependencies: + '@peculiar/webcrypto': 1.4.1 + '@whatwg-node/node-fetch': 0.0.6_@types+node@18.0.1 + busboy: 1.6.0 + urlpattern-polyfill: 6.0.2 + web-streams-polyfill: 3.2.1 + transitivePeerDependencies: + - '@types/node' + dev: true + /@whatwg-node/fetch/0.7.0_@types+node@18.13.0: resolution: {integrity: sha512-0nmiUgHA9lSBcPQS0Eq9DACsdGa2W9gJUnN+Ul1vVhQsL3dnOAIGTs4uTiVC/W7bcfxTMP+TRFxngxS40aO5Nw==} dependencies: @@ -3946,6 +4766,17 @@ packages: - '@types/node' dev: true + /@whatwg-node/node-fetch/0.0.6_@types+node@18.0.1: + resolution: {integrity: sha512-pFEN2DNk1ZJZjdX9O7FG9qBZ7oIaB8JzOpAUCUditZ25kOSJb0qylq5uR2XUnzngBQCBwT/MHnKq2sXQZp1BUQ==} + peerDependencies: + '@types/node': ^18.0.6 + dependencies: + '@types/node': 18.0.1 + '@whatwg-node/events': 0.0.2 + busboy: 1.6.0 + tslib: 2.5.0 + dev: true + /@whatwg-node/node-fetch/0.0.6_@types+node@18.13.0: resolution: {integrity: sha512-pFEN2DNk1ZJZjdX9O7FG9qBZ7oIaB8JzOpAUCUditZ25kOSJb0qylq5uR2XUnzngBQCBwT/MHnKq2sXQZp1BUQ==} peerDependencies: @@ -4066,6 +4897,11 @@ packages: engines: {node: '>=6'} dev: true + /ansi-escapes/3.2.0: + resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==} + engines: {node: '>=4'} + dev: true + /ansi-escapes/4.3.2: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} @@ -4076,7 +4912,11 @@ packages: /ansi-regex/2.1.1: resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} engines: {node: '>=0.10.0'} - dev: false + + /ansi-regex/3.0.1: + resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} + engines: {node: '>=4'} + dev: true /ansi-regex/5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} @@ -4086,6 +4926,11 @@ packages: resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} engines: {node: '>=12'} + /ansi-styles/2.2.1: + resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} + engines: {node: '>=0.10.0'} + dev: true + /ansi-styles/3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} engines: {node: '>=4'} @@ -4106,6 +4951,21 @@ packages: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} + /any-observable/0.3.0_rxjs@6.6.7: + resolution: {integrity: sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==} + engines: {node: '>=6'} + peerDependencies: + rxjs: '*' + zenObservable: '*' + peerDependenciesMeta: + rxjs: + optional: true + zenObservable: + optional: true + dependencies: + rxjs: 6.6.7 + dev: true + /anymatch/3.1.3: resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} @@ -4183,11 +5043,31 @@ packages: tslib: 2.5.0 dev: false + /aria-hidden/1.2.2_luyos4mouogwq6z3wafb3re4ce: + resolution: {integrity: sha512-6y/ogyDTk/7YAe91T3E2PR1ALVKyM2QbTio5HwM+N1Q6CMlCKhvClyIjkckBswa0f2xJhjsfzIGa1yVSe1UMVA==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 + react: ^16.9.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@types/react': 18.0.14 + react: 18.2.0 + tslib: 2.5.0 + dev: false + /aria-query/5.1.3: resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} dependencies: deep-equal: 2.2.0 + /array-differ/3.0.0: + resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} + engines: {node: '>=8'} + dev: true + /array-includes/3.1.6: resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} engines: {node: '>= 0.4'} @@ -4234,6 +5114,11 @@ packages: engines: {node: '>=0.10.0'} dev: true + /arrify/2.0.1: + resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} + engines: {node: '>=8'} + dev: true + /asap/2.0.6: resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} dev: true @@ -4280,6 +5165,22 @@ packages: engines: {node: '>=8'} dev: true + /autoprefixer/10.4.13_postcss@8.4.21: + resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + dependencies: + browserslist: 4.21.5 + caniuse-lite: 1.0.30001450 + fraction.js: 4.2.0 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + /available-typed-arrays/1.0.5: resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} engines: {node: '>= 0.4'} @@ -4536,6 +5437,19 @@ packages: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} + /cacheable-request/6.1.0: + resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} + engines: {node: '>=8'} + dependencies: + clone-response: 1.0.3 + get-stream: 5.2.0 + http-cache-semantics: 4.1.1 + keyv: 3.1.0 + lowercase-keys: 2.0.0 + normalize-url: 4.5.1 + responselike: 1.0.2 + dev: true + /call-bind/1.0.2: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} dependencies: @@ -4608,6 +5522,17 @@ packages: traverse: 0.3.9 dev: false + /chalk/1.1.3: + resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} + engines: {node: '>=0.10.0'} + dependencies: + ansi-styles: 2.2.1 + escape-string-regexp: 1.0.5 + has-ansi: 2.0.0 + strip-ansi: 3.0.1 + supports-color: 2.0.0 + dev: true + /chalk/2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} @@ -4622,7 +5547,6 @@ packages: dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - dev: false /chalk/4.1.2: resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} @@ -4717,11 +5641,29 @@ packages: engines: {node: '>=8'} dev: true + /clean-publish/4.1.1: + resolution: {integrity: sha512-111O3MNk6x/dAbHZwG+iRZ4AYwpKqc7Qp1MarFhE1KtQIp9m9TkDuI+hedn7qgeFnLgSw3ItgEnHNwvhc7SmGg==} + engines: {node: '>= 16.0.0'} + hasBin: true + dependencies: + cross-spawn: 7.0.3 + fast-glob: 3.2.12 + lilconfig: 2.0.6 + micromatch: 4.0.5 + dev: true + /clean-stack/2.2.0: resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} engines: {node: '>=6'} dev: true + /cli-cursor/2.1.0: + resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==} + engines: {node: '>=4'} + dependencies: + restore-cursor: 2.0.0 + dev: true + /cli-cursor/3.1.0: resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} engines: {node: '>=8'} @@ -4734,6 +5676,14 @@ packages: engines: {node: '>=6'} dev: true + /cli-truncate/0.2.1: + resolution: {integrity: sha512-f4r4yJnbT++qUPI9NR4XLDLq41gQ+uqnPItWG0F5ZkehuNiTTa3EY0S4AqTSUOeJ7/zU41oWPQSNkW5BqPL9bg==} + engines: {node: '>=0.10.0'} + dependencies: + slice-ansi: 0.0.4 + string-width: 1.0.2 + dev: true + /cli-truncate/2.1.0: resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} engines: {node: '>=8'} @@ -4782,6 +5732,12 @@ packages: wrap-ansi: 7.0.0 dev: true + /clone-response/1.0.3: + resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + dependencies: + mimic-response: 1.0.1 + dev: true + /clone/1.0.4: resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} engines: {node: '>=0.8'} @@ -4800,7 +5756,6 @@ packages: /code-point-at/1.1.0: resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==} engines: {node: '>=0.10.0'} - dev: false /codepage/1.15.0: resolution: {integrity: sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==} @@ -5105,6 +6060,11 @@ packages: /damerau-levenshtein/1.0.8: resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + /data-uri-to-buffer/4.0.1: + resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} + engines: {node: '>= 12'} + dev: false + /data-urls/3.0.2: resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} engines: {node: '>=12'} @@ -5117,6 +6077,10 @@ packages: resolution: {integrity: sha512-Zn+tVZo1RKu120rgoe0JsRk56UiKdefPSH47QROJsMHrX8/S9UJvi5A/A6+Sbuk6rE88z5JoM/wIJ09Z7BTfYA==} dev: true + /date-fns/1.30.1: + resolution: {integrity: sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==} + dev: true + /date-fns/2.29.3: resolution: {integrity: sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==} engines: {node: '>=0.11'} @@ -5171,6 +6135,13 @@ packages: /decimal.js/10.4.3: resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + /decompress-response/3.3.0: + resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} + engines: {node: '>=4'} + dependencies: + mimic-response: 1.0.1 + dev: true + /deep-eql/4.1.3: resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} engines: {node: '>=6'} @@ -5198,6 +6169,11 @@ packages: which-collection: 1.0.1 which-typed-array: 1.1.9 + /deep-extend/0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + dev: true + /deep-is/0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} @@ -5207,6 +6183,10 @@ packages: clone: 1.0.4 dev: true + /defer-to-connect/1.1.3: + resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} + dev: true + /define-lazy-prop/2.0.0: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} engines: {node: '>=8'} @@ -5343,6 +6323,10 @@ packages: readable-stream: 2.3.7 dev: false + /duplexer3/0.1.5: + resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} + dev: true + /eastasianwidth/0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} @@ -5355,6 +6339,11 @@ packages: /electron-to-chromium/1.4.288: resolution: {integrity: sha512-8s9aJf3YiokIrR+HOQzNOGmEHFXVUQzXM/JaViVvKdCkNUjS+lEa/uT7xw3nDVG/IgfxiIwUGkwJ6AR1pTpYsQ==} + /elegant-spinner/1.0.1: + resolution: {integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==} + engines: {node: '>=0.10.0'} + dev: true + /emoji-regex/8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -5365,7 +6354,6 @@ packages: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} dependencies: once: 1.4.0 - dev: false /enhanced-resolve/5.12.0: resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==} @@ -5912,6 +6900,16 @@ packages: estraverse: 5.3.0 dev: true + /eslint-utils/3.0.0_eslint@8.15.0: + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' + dependencies: + eslint: 8.15.0 + eslint-visitor-keys: 2.1.0 + dev: true + /eslint-utils/3.0.0_eslint@8.27.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} @@ -5941,6 +6939,50 @@ packages: resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /eslint/8.15.0: + resolution: {integrity: sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + dependencies: + '@eslint/eslintrc': 1.4.1 + '@humanwhocodes/config-array': 0.9.5 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.1.1 + eslint-utils: 3.0.0_eslint@8.15.0 + eslint-visitor-keys: 3.3.0 + espree: 9.4.1 + esquery: 1.4.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + functional-red-black-tree: 1.0.1 + glob-parent: 6.0.2 + globals: 13.20.0 + ignore: 5.2.4 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.1 + regexpp: 3.2.0 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + text-table: 0.2.0 + v8-compile-cache: 2.3.0 + transitivePeerDependencies: + - supports-color + dev: true + /eslint/8.27.0: resolution: {integrity: sha512-0y1bfG2ho7mty+SiILVf9PfuRA49ek4Nc60Wmmu62QlobNR+CeXa4xXIJgcuwSQgZiWaPH+5BDsctpIW0PR/wQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -6090,6 +7132,21 @@ packages: engines: {node: '>=0.8.x'} dev: false + /execa/4.1.0: + resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} + engines: {node: '>=10'} + dependencies: + cross-spawn: 7.0.3 + get-stream: 5.2.0 + human-signals: 1.1.1 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + /exenv/1.2.2: resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} dev: false @@ -6205,6 +7262,29 @@ packages: - encoding dev: true + /fetch-blob/3.2.0: + resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} + engines: {node: ^12.20 || >= 14.13} + dependencies: + node-domexception: 1.0.0 + web-streams-polyfill: 3.2.1 + dev: false + + /figures/1.7.0: + resolution: {integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==} + engines: {node: '>=0.10.0'} + dependencies: + escape-string-regexp: 1.0.5 + object-assign: 4.1.1 + dev: true + + /figures/2.0.0: + resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==} + engines: {node: '>=4'} + dependencies: + escape-string-regexp: 1.0.5 + dev: true + /figures/3.2.0: resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} engines: {node: '>=8'} @@ -6355,11 +7435,22 @@ packages: web-streams-polyfill: 4.0.0-beta.3 dev: true + /formdata-polyfill/4.0.10: + resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} + engines: {node: '>=12.20.0'} + dependencies: + fetch-blob: 3.2.0 + dev: false + /frac/1.1.2: resolution: {integrity: sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==} engines: {node: '>=0.8'} dev: false + /fraction.js/4.2.0: + resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} + dev: true + /fs-constants/1.0.0: resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} dev: false @@ -6414,6 +7505,10 @@ packages: es-abstract: 1.21.1 functions-have-names: 1.2.3 + /functional-red-black-tree/1.0.1: + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + dev: true + /functions-have-names/1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} @@ -6448,6 +7543,20 @@ packages: has: 1.0.3 has-symbols: 1.0.3 + /get-stream/4.1.0: + resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} + engines: {node: '>=6'} + dependencies: + pump: 3.0.0 + dev: true + + /get-stream/5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + dependencies: + pump: 3.0.0 + dev: true + /get-symbol-description/1.0.0: resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} engines: {node: '>= 0.4'} @@ -6555,6 +7664,25 @@ packages: dependencies: get-intrinsic: 1.2.0 + /got/9.6.0: + resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} + engines: {node: '>=8.6'} + dependencies: + '@sindresorhus/is': 0.14.0 + '@szmarczak/http-timer': 1.1.2 + '@types/keyv': 3.1.4 + '@types/responselike': 1.0.0 + cacheable-request: 6.1.0 + decompress-response: 3.3.0 + duplexer3: 0.1.5 + get-stream: 4.1.0 + lowercase-keys: 1.0.1 + mimic-response: 1.0.1 + p-cancelable: 1.1.0 + to-readable-stream: 1.0.0 + url-parse-lax: 3.0.0 + dev: true + /graceful-fs/4.2.10: resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} @@ -6592,6 +7720,37 @@ packages: - utf-8-validate dev: true + /graphql-config/4.4.1_74lnzcgk6cgqsdyscb5kbgak6q: + resolution: {integrity: sha512-B8wlvfBHZ5WnI4IiuQZRqql6s+CKz7S+xpUeTb28Z8nRBi8tH9ChEBgT5FnTyE05PUhHlrS2jK9ICJ4YBl9OtQ==} + engines: {node: '>= 10.0.0'} + peerDependencies: + cosmiconfig-toml-loader: ^1.0.0 + cosmiconfig-typescript-loader: ^4.0.0 + graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + peerDependenciesMeta: + cosmiconfig-toml-loader: + optional: true + cosmiconfig-typescript-loader: + optional: true + dependencies: + '@graphql-tools/graphql-file-loader': 7.5.16_graphql@16.6.0 + '@graphql-tools/json-file-loader': 7.4.17_graphql@16.6.0 + '@graphql-tools/load': 7.8.12_graphql@16.6.0 + '@graphql-tools/merge': 8.3.18_graphql@16.6.0 + '@graphql-tools/url-loader': 7.17.11_74lnzcgk6cgqsdyscb5kbgak6q + '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + cosmiconfig: 8.0.0 + graphql: 16.6.0 + minimatch: 4.2.1 + string-env-interpolation: 1.0.1 + tslib: 2.5.0 + transitivePeerDependencies: + - '@types/node' + - bufferutil + - encoding + - utf-8-validate + dev: true + /graphql-config/4.4.1_d3dx4krdt4fsynqrp5lqxelwe4: resolution: {integrity: sha512-B8wlvfBHZ5WnI4IiuQZRqql6s+CKz7S+xpUeTb28Z8nRBi8tH9ChEBgT5FnTyE05PUhHlrS2jK9ICJ4YBl9OtQ==} engines: {node: '>= 10.0.0'} @@ -6682,6 +7841,13 @@ packages: engines: {node: '>=6'} dev: true + /has-ansi/2.0.0: + resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} + engines: {node: '>=0.10.0'} + dependencies: + ansi-regex: 2.1.1 + dev: true + /has-bigints/1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} @@ -6774,6 +7940,10 @@ packages: void-elements: 3.1.0 dev: false + /http-cache-semantics/4.1.1: + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + dev: true + /http-errors/2.0.0: resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} engines: {node: '>= 0.8'} @@ -6808,6 +7978,17 @@ packages: resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} dev: true + /human-signals/1.1.1: + resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} + engines: {node: '>=8.12.0'} + dev: true + + /husky/8.0.3: + resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} + engines: {node: '>=14'} + hasBin: true + dev: true + /hyperformula/2.3.0: resolution: {integrity: sha512-23hP3/+jq8PzEqcu94JYRugaPU2VGSg2OOuYKeVTiPh7c6JYw71wWteXr2Q3CbSiccmtjfF3EqaA8NrmkJyA1w==} requiresBuild: true @@ -6873,6 +8054,11 @@ packages: engines: {node: '>=0.8.19'} dev: true + /indent-string/3.2.0: + resolution: {integrity: sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==} + engines: {node: '>=4'} + dev: true + /indent-string/4.0.0: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} @@ -6887,6 +8073,10 @@ packages: /inherits/2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + /ini/1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + dev: true + /inline-style-prefixer/6.0.4: resolution: {integrity: sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==} dependencies: @@ -7035,7 +8225,11 @@ packages: engines: {node: '>=0.10.0'} dependencies: number-is-nan: 1.0.1 - dev: false + + /is-fullwidth-code-point/2.0.0: + resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} + engines: {node: '>=4'} + dev: true /is-fullwidth-code-point/3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} @@ -7090,6 +8284,13 @@ packages: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} + /is-observable/1.1.0: + resolution: {integrity: sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==} + engines: {node: '>=4'} + dependencies: + symbol-observable: 1.2.0 + dev: true + /is-path-inside/3.0.3: resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} engines: {node: '>=8'} @@ -7103,6 +8304,10 @@ packages: /is-potential-custom-element-name/1.0.1: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + /is-promise/2.2.2: + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + dev: true + /is-promise/4.0.0: resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==} dev: false @@ -7135,6 +8340,16 @@ packages: dependencies: call-bind: 1.0.2 + /is-stream/1.1.0: + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} + dev: true + + /is-stream/2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + dev: true + /is-string/1.0.7: resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} engines: {node: '>= 0.4'} @@ -7345,6 +8560,10 @@ packages: engines: {node: '>=4'} hasBin: true + /json-buffer/3.0.0: + resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} + dev: true + /json-parse-even-better-errors/2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} @@ -7497,6 +8716,12 @@ packages: safe-buffer: 5.2.1 dev: true + /keyv/3.1.0: + resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} + dependencies: + json-buffer: 3.0.0 + dev: true + /kind-of/6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} @@ -7515,6 +8740,13 @@ packages: dependencies: language-subtag-registry: 0.3.22 + /latest-version/5.1.0: + resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} + engines: {node: '>=8'} + dependencies: + package-json: 6.5.0 + dev: true + /lazystream/1.0.1: resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} engines: {node: '>= 0.6.3'} @@ -7549,6 +8781,11 @@ packages: immediate: 3.0.6 dev: false + /lilconfig/2.0.6: + resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==} + engines: {node: '>=10'} + dev: true + /line-height/0.3.1: resolution: {integrity: sha512-YExecgqPwnp5gplD2+Y8e8A5+jKpr25+DzMbFdI1/1UAr0FJrTFv4VkHLf8/6B590i1wUPJWMKKldkd/bdQ//w==} engines: {node: '>= 4.0.0'} @@ -7570,6 +8807,56 @@ packages: resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==} dev: false + /listr-silent-renderer/1.1.1: + resolution: {integrity: sha512-L26cIFm7/oZeSNVhWB6faeorXhMg4HNlb/dS/7jHhr708jxlXrtrBWo4YUxZQkc6dGoxEAe6J/D3juTRBUzjtA==} + engines: {node: '>=4'} + dev: true + + /listr-update-renderer/0.5.0_listr@0.14.3: + resolution: {integrity: sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==} + engines: {node: '>=6'} + peerDependencies: + listr: ^0.14.2 + dependencies: + chalk: 1.1.3 + cli-truncate: 0.2.1 + elegant-spinner: 1.0.1 + figures: 1.7.0 + indent-string: 3.2.0 + listr: 0.14.3 + log-symbols: 1.0.2 + log-update: 2.3.0 + strip-ansi: 3.0.1 + dev: true + + /listr-verbose-renderer/0.5.0: + resolution: {integrity: sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==} + engines: {node: '>=4'} + dependencies: + chalk: 2.4.2 + cli-cursor: 2.1.0 + date-fns: 1.30.1 + figures: 2.0.0 + dev: true + + /listr/0.14.3: + resolution: {integrity: sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==} + engines: {node: '>=6'} + dependencies: + '@samverschueren/stream-to-observable': 0.3.1_rxjs@6.6.7 + is-observable: 1.1.0 + is-promise: 2.2.2 + is-stream: 1.1.0 + listr-silent-renderer: 1.1.1 + listr-update-renderer: 0.5.0_listr@0.14.3 + listr-verbose-renderer: 0.5.0 + p-map: 2.1.0 + rxjs: 6.6.7 + transitivePeerDependencies: + - zen-observable + - zenObservable + dev: true + /listr2/4.0.5: resolution: {integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==} engines: {node: '>=12'} @@ -7701,6 +8988,13 @@ packages: /lodash/4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + /log-symbols/1.0.2: + resolution: {integrity: sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ==} + engines: {node: '>=0.10.0'} + dependencies: + chalk: 1.1.3 + dev: true + /log-symbols/4.1.0: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} @@ -7709,6 +9003,15 @@ packages: is-unicode-supported: 0.1.0 dev: true + /log-update/2.3.0: + resolution: {integrity: sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==} + engines: {node: '>=4'} + dependencies: + ansi-escapes: 3.2.0 + cli-cursor: 2.1.0 + wrap-ansi: 3.0.1 + dev: true + /log-update/4.0.0: resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} engines: {node: '>=10'} @@ -7757,6 +9060,16 @@ packages: tslib: 2.5.0 dev: true + /lowercase-keys/1.0.1: + resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} + engines: {node: '>=0.10.0'} + dev: true + + /lowercase-keys/2.0.0: + resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} + engines: {node: '>=8'} + dev: true + /lru-cache/4.1.5: resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} dependencies: @@ -7854,10 +9167,26 @@ packages: yargs-parser: 18.1.3 dev: true + /merge-stream/2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + dev: true + /merge2/1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} + /meros/1.2.1_@types+node@18.0.1: + resolution: {integrity: sha512-R2f/jxYqCAGI19KhAvaxSOxALBMkaXWH2a7rOyqQw+ZmizX5bKkEYWLzdhC+U82ZVVPVp6MCXe3EkVligh+12g==} + engines: {node: '>=13'} + peerDependencies: + '@types/node': '>=13' + peerDependenciesMeta: + '@types/node': + optional: true + dependencies: + '@types/node': 18.0.1 + dev: true + /meros/1.2.1_@types+node@18.13.0: resolution: {integrity: sha512-R2f/jxYqCAGI19KhAvaxSOxALBMkaXWH2a7rOyqQw+ZmizX5bKkEYWLzdhC+U82ZVVPVp6MCXe3EkVligh+12g==} engines: {node: '>=13'} @@ -7900,11 +9229,21 @@ packages: dependencies: mime-db: 1.52.0 + /mimic-fn/1.2.0: + resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==} + engines: {node: '>=4'} + dev: true + /mimic-fn/2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} dev: true + /mimic-response/1.0.1: + resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} + engines: {node: '>=4'} + dev: true + /min-indent/1.0.1: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} @@ -7976,12 +9315,28 @@ packages: resolution: {integrity: sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==} dev: false + /mri/1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + dev: true + /ms/2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} /ms/2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + /multimatch/4.0.0: + resolution: {integrity: sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==} + engines: {node: '>=8'} + dependencies: + '@types/minimatch': 3.0.5 + array-differ: 3.0.0 + array-union: 2.1.0 + arrify: 2.0.1 + minimatch: 3.1.2 + dev: true + /mute-stream/0.0.8: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} dev: true @@ -8030,6 +9385,51 @@ packages: urql: 3.0.3_onqnqwb3ubg5opvemcqf7c2qhy dev: false + /next/12.3.1_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-l7bvmSeIwX5lp07WtIiP9u2ytZMv7jIeB8iacR28PuUEFG5j0HGAPnMqyG5kbZNBG2H7tRsrQ4HCjuMOPnANZw==} + engines: {node: '>=12.22.0'} + hasBin: true + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^6.0.0 || ^7.0.0 + react: ^17.0.2 || ^18.0.0-0 + react-dom: ^17.0.2 || ^18.0.0-0 + sass: ^1.3.0 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + dependencies: + '@next/env': 12.3.1 + '@swc/helpers': 0.4.11 + caniuse-lite: 1.0.30001450 + postcss: 8.4.14 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + styled-jsx: 5.0.7_react@18.2.0 + use-sync-external-store: 1.2.0_react@18.2.0 + optionalDependencies: + '@next/swc-android-arm-eabi': 12.3.1 + '@next/swc-android-arm64': 12.3.1 + '@next/swc-darwin-arm64': 12.3.1 + '@next/swc-darwin-x64': 12.3.1 + '@next/swc-freebsd-x64': 12.3.1 + '@next/swc-linux-arm-gnueabihf': 12.3.1 + '@next/swc-linux-arm64-gnu': 12.3.1 + '@next/swc-linux-arm64-musl': 12.3.1 + '@next/swc-linux-x64-gnu': 12.3.1 + '@next/swc-linux-x64-musl': 12.3.1 + '@next/swc-win32-arm64-msvc': 12.3.1 + '@next/swc-win32-ia32-msvc': 12.3.1 + '@next/swc-win32-x64-msvc': 12.3.1 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + dev: false + /next/13.1.2_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-Rdnnb2YH///w78FEOR/IQ6TXga+qpth4OqFSem48ng1PYYKr6XBsIk1XVaRcIGM3o6iiHnun0nJvkJHDf+ICyQ==} engines: {node: '>=14.6.0'} @@ -8128,7 +9528,6 @@ packages: /node-domexception/1.0.0: resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} engines: {node: '>=10.5.0'} - dev: true /node-fetch/2.6.7: resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} @@ -8153,6 +9552,15 @@ packages: dependencies: whatwg-url: 5.0.0 + /node-fetch/3.3.0: + resolution: {integrity: sha512-BKwRP/O0UvoMKp7GNdwPlObhYGB5DQqwhEDQlNKuoqwVYSxkSZCSbHjnFFmUEtwSKRPU4kNK8PbDYYitwaE3QA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + data-uri-to-buffer: 4.0.1 + fetch-blob: 3.2.0 + formdata-polyfill: 4.0.10 + dev: false + /node-int64/0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} dev: true @@ -8187,6 +9595,23 @@ packages: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} + /normalize-range/0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + dev: true + + /normalize-url/4.5.1: + resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} + engines: {node: '>=8'} + dev: true + + /npm-run-path/4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + dependencies: + path-key: 3.1.1 + dev: true + /npmlog/4.1.2: resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==} dependencies: @@ -8203,7 +9628,6 @@ packages: /number-is-nan/1.0.1: resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==} engines: {node: '>=0.10.0'} - dev: false /numbro/2.1.2: resolution: {integrity: sha512-7w833BxZmKGLE9HI0aREtNVRVH6WTYUUlWf4qgA5gKNhPQ4F/MRZ14sc0v8eoLORprk9ZTVwYaLwj8N3Zgxwiw==} @@ -8345,6 +9769,13 @@ packages: dependencies: wrappy: 1.0.2 + /onetime/2.0.1: + resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==} + engines: {node: '>=4'} + dependencies: + mimic-fn: 1.2.0 + dev: true + /onetime/5.1.2: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} @@ -8408,6 +9839,11 @@ packages: resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} dev: true + /p-cancelable/1.1.0: + resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} + engines: {node: '>=6'} + dev: true + /p-filter/2.1.0: resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} engines: {node: '>=8'} @@ -8466,6 +9902,16 @@ packages: engines: {node: '>=6'} dev: true + /package-json/6.5.0: + resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} + engines: {node: '>=8'} + dependencies: + got: 9.6.0 + registry-auth-token: 4.2.2 + registry-url: 5.1.0 + semver: 6.3.0 + dev: true + /pako/0.2.9: resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} dev: false @@ -8657,6 +10103,10 @@ packages: resolution: {integrity: sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==} dev: false + /postcss-value-parser/4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + dev: true + /postcss/8.4.14: resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} engines: {node: ^10 || ^12 || >=14} @@ -8697,6 +10147,11 @@ packages: engines: {node: '>= 0.8.0'} dev: true + /prepend-http/2.0.0: + resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} + engines: {node: '>=4'} + dev: true + /prettier/2.8.3: resolution: {integrity: sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==} engines: {node: '>=10.13.0'} @@ -8711,6 +10166,22 @@ packages: ansi-styles: 5.2.0 react-is: 17.0.2 + /pretty-quick/3.1.3_prettier@2.8.3: + resolution: {integrity: sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==} + engines: {node: '>=10.13'} + hasBin: true + peerDependencies: + prettier: '>=2.0.0' + dependencies: + chalk: 3.0.0 + execa: 4.1.0 + find-up: 4.1.0 + ignore: 5.2.4 + mri: 1.2.0 + multimatch: 4.0.0 + prettier: 2.8.3 + dev: true + /process-nextick-args/2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} dev: false @@ -8758,7 +10229,6 @@ packages: dependencies: end-of-stream: 1.4.4 once: 1.4.0 - dev: false /punycode/2.3.0: resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} @@ -8805,6 +10275,16 @@ packages: unpipe: 1.0.0 dev: false + /rc/1.2.8: + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + hasBin: true + dependencies: + deep-extend: 0.6.0 + ini: 1.3.8 + minimist: 1.2.7 + strip-json-comments: 2.0.1 + dev: true + /react-device-detect/2.2.2_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-zSN1gIAztUekp5qUT/ybHwQ9fmOqVT1psxpSlTn1pe0CO+fnJHKRLOWWac5nKxOxvOpD/w84hk1I+EydrJp7SA==} peerDependencies: @@ -9275,6 +10755,20 @@ packages: engines: {node: '>=8'} dev: true + /registry-auth-token/4.2.2: + resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} + engines: {node: '>=6.0.0'} + dependencies: + rc: 1.2.8 + dev: true + + /registry-url/5.1.0: + resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} + engines: {node: '>=8'} + dependencies: + rc: 1.2.8 + dev: true + /relay-runtime/12.0.0: resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==} dependencies: @@ -9341,6 +10835,20 @@ packages: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 + /responselike/1.0.2: + resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} + dependencies: + lowercase-keys: 1.0.1 + dev: true + + /restore-cursor/2.0.0: + resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==} + engines: {node: '>=4'} + dependencies: + onetime: 2.0.1 + signal-exit: 3.0.7 + dev: true + /restore-cursor/3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} engines: {node: '>=8'} @@ -9412,6 +10920,13 @@ packages: dependencies: queue-microtask: 1.2.3 + /rxjs/6.6.7: + resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} + engines: {npm: '>=2.0.0'} + dependencies: + tslib: 1.14.1 + dev: true + /rxjs/7.8.0: resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} dependencies: @@ -9593,6 +11108,11 @@ packages: engines: {node: '>=12'} dev: false + /slice-ansi/0.0.4: + resolution: {integrity: sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw==} + engines: {node: '>=0.10.0'} + dev: true + /slice-ansi/3.0.0: resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} engines: {node: '>=8'} @@ -9787,7 +11307,14 @@ packages: code-point-at: 1.1.0 is-fullwidth-code-point: 1.0.0 strip-ansi: 3.0.1 - dev: false + + /string-width/2.1.1: + resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==} + engines: {node: '>=4'} + dependencies: + is-fullwidth-code-point: 2.0.0 + strip-ansi: 4.0.0 + dev: true /string-width/4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} @@ -9847,7 +11374,13 @@ packages: engines: {node: '>=0.10.0'} dependencies: ansi-regex: 2.1.1 - dev: false + + /strip-ansi/4.0.0: + resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} + engines: {node: '>=4'} + dependencies: + ansi-regex: 3.0.1 + dev: true /strip-ansi/6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} @@ -9872,6 +11405,11 @@ packages: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} engines: {node: '>=4'} + /strip-final-newline/2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + dev: true + /strip-indent/3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} engines: {node: '>=8'} @@ -9879,6 +11417,11 @@ packages: min-indent: 1.0.1 dev: true + /strip-json-comments/2.0.1: + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} + dev: true + /strip-json-comments/3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} @@ -9892,6 +11435,22 @@ packages: resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} dev: false + /styled-jsx/5.0.7_react@18.2.0: + resolution: {integrity: sha512-b3sUzamS086YLRuvnaDigdAewz1/EFYlHpYBP5mZovKEdQQOIIYq8lApylub3HHZ6xFjV051kkGU7cudJmrXEA==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' + peerDependenciesMeta: + '@babel/core': + optional: true + babel-plugin-macros: + optional: true + dependencies: + react: 18.2.0 + dev: false + /styled-jsx/5.1.1_react@18.2.0: resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} engines: {node: '>= 12.0.0'} @@ -9913,6 +11472,11 @@ packages: resolution: {integrity: sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==} dev: false + /supports-color/2.0.0: + resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} + engines: {node: '>=0.8.0'} + dev: true + /supports-color/5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} @@ -9935,6 +11499,11 @@ packages: tslib: 2.5.0 dev: true + /symbol-observable/1.2.0: + resolution: {integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==} + engines: {node: '>=0.10.0'} + dev: true + /symbol-tree/3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} @@ -10054,6 +11623,11 @@ packages: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} + /to-readable-stream/1.0.0: + resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} + engines: {node: '>=6'} + dev: true + /to-regex-range/5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} @@ -10154,6 +11728,10 @@ packages: /tslib/1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + /tslib/2.3.1: + resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} + dev: true + /tslib/2.4.1: resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} dev: true @@ -10443,6 +12021,13 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: false + /url-parse-lax/3.0.0: + resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} + engines: {node: '>=4'} + dependencies: + prepend-http: 2.0.0 + dev: true + /url-parse/1.5.10: resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} dependencies: @@ -10480,6 +12065,19 @@ packages: react: 18.2.0 dev: false + /use-isomorphic-layout-effect/1.1.2_luyos4mouogwq6z3wafb3re4ce: + resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@types/react': 18.0.14 + react: 18.2.0 + dev: false + /use-sync-external-store/1.2.0_react@18.2.0: resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} peerDependencies: @@ -10521,6 +12119,10 @@ packages: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} dev: true + /v8-compile-cache/2.3.0: + resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + dev: true + /v8-to-istanbul/9.0.1: resolution: {integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==} engines: {node: '>=10.12.0'} @@ -10832,6 +12434,14 @@ packages: engines: {node: '>=0.8'} dev: false + /wrap-ansi/3.0.1: + resolution: {integrity: sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==} + engines: {node: '>=4'} + dependencies: + string-width: 2.1.1 + strip-ansi: 4.0.0 + dev: true + /wrap-ansi/6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} engines: {node: '>=8'} diff --git a/turbo.json b/turbo.json index 61b4d88..b5244e7 100644 --- a/turbo.json +++ b/turbo.json @@ -32,6 +32,23 @@ "REST_APL_TOKEN" ] }, + "build#saleor-app-klaviyo": { + "env": [ + "APL", + "APP_DEBUG", + "NODE_ENV", + "SECRET_KEY", + "ALLOWED_DOMAIN_PATTERN", + "REST_APL_ENDPOINT", + "REST_APL_TOKEN", + "NEXT_PUBLIC_SENTRY_DSN", + "SENTRY_DSN", + "NEXT_PUBLIC_SENTRY_DSN", + "SENTRY_ORG", + "SENTRY_PROJECT", + "SENTRY_AUTH_TOKEN" + ] + }, "lint": { "outputs": [] },