diff --git a/.changeset/hot-clouds-applaud.md b/.changeset/hot-clouds-applaud.md new file mode 100644 index 0000000..a6253a9 --- /dev/null +++ b/.changeset/hot-clouds-applaud.md @@ -0,0 +1,5 @@ +--- +"saleor-app-search": minor +--- + +Removed search index preview page. It can be easily accessed at Algolia itself. diff --git a/.changeset/new-mice-remember.md b/.changeset/new-mice-remember.md new file mode 100644 index 0000000..b798432 --- /dev/null +++ b/.changeset/new-mice-remember.md @@ -0,0 +1,5 @@ +--- +"saleor-app-search": patch +--- + +Update Next and Sentry diff --git a/.changeset/thick-dots-live.md b/.changeset/thick-dots-live.md new file mode 100644 index 0000000..14b505f --- /dev/null +++ b/.changeset/thick-dots-live.md @@ -0,0 +1,14 @@ +--- +"eslint-config-saleor": patch +"saleor-app-emails-and-messages": patch +"saleor-app-data-importer": patch +"saleor-app-products-feed": patch +"saleor-app-monitoring": patch +"saleor-app-klaviyo": patch +"saleor-app-search": patch +"saleor-app-slack": patch +"saleor-app-taxes": patch +"saleor-app-cms": patch +--- + +Replace "export default" with named exports diff --git a/.changeset/twenty-crews-battle.md b/.changeset/twenty-crews-battle.md new file mode 100644 index 0000000..5f38a92 --- /dev/null +++ b/.changeset/twenty-crews-battle.md @@ -0,0 +1,5 @@ +--- +"eslint-config-saleor": minor +--- + +Added "no-default-export" eslint rule (except Next.js page) diff --git a/apps/cms/src/lib/cms/client/clients-operations.ts b/apps/cms/src/lib/cms/client/clients-operations.ts index 46e6697..e51a173 100644 --- a/apps/cms/src/lib/cms/client/clients-operations.ts +++ b/apps/cms/src/lib/cms/client/clients-operations.ts @@ -8,7 +8,7 @@ import { getProductVariantProviderInstancesToAlter, } from "./settings"; import { providersSchemaSet } from "../config"; -import cmsProviders, { CMSProvider } from "../providers"; +import { cmsProviders, CMSProvider } from "../providers"; import { CmsClientOperations } from "../types"; import { logger as pinoLogger } from "../../logger"; import { getCmsIdFromSaleorItemKey } from "./metadata"; diff --git a/apps/cms/src/lib/cms/index.ts b/apps/cms/src/lib/cms/index.ts index fd37b44..ca2b142 100644 --- a/apps/cms/src/lib/cms/index.ts +++ b/apps/cms/src/lib/cms/index.ts @@ -1,4 +1,3 @@ export * from "./config"; export * from "./client"; export * from "./providers"; -export { default as cmsProviders } from "./providers"; diff --git a/apps/cms/src/lib/cms/providers/contentful.ts b/apps/cms/src/lib/cms/providers/contentful.ts index c9f9128..b76537d 100644 --- a/apps/cms/src/lib/cms/providers/contentful.ts +++ b/apps/cms/src/lib/cms/providers/contentful.ts @@ -156,4 +156,4 @@ const contentfulOperations: CreateOperations = (config) => { }; }; -export default createProvider(contentfulOperations, contentfulConfigSchema); +export const contentfulProvider = createProvider(contentfulOperations, contentfulConfigSchema); diff --git a/apps/cms/src/lib/cms/providers/datocms.ts b/apps/cms/src/lib/cms/providers/datocms.ts index 52c0f61..5bfaacf 100644 --- a/apps/cms/src/lib/cms/providers/datocms.ts +++ b/apps/cms/src/lib/cms/providers/datocms.ts @@ -90,4 +90,4 @@ const datocmsOperations: CreateOperations = (config) => { }; }; -export default createProvider(datocmsOperations, datocmsConfigSchema); +export const datoCmsProvider = createProvider(datocmsOperations, datocmsConfigSchema); diff --git a/apps/cms/src/lib/cms/providers/index.ts b/apps/cms/src/lib/cms/providers/index.ts index 0681727..f7d4596 100644 --- a/apps/cms/src/lib/cms/providers/index.ts +++ b/apps/cms/src/lib/cms/providers/index.ts @@ -1,13 +1,11 @@ -import contentful from "./contentful"; -import strapi from "./strapi"; -import datocms from "./datocms"; +import { contentfulProvider } from "./contentful"; +import { strapiProvider } from "./strapi"; +import { datoCmsProvider } from "./datocms"; -const cmsProviders = { - contentful, - strapi, - datocms, +export const cmsProviders = { + contentful: contentfulProvider, + strapi: strapiProvider, + datocms: datoCmsProvider, }; export type CMSProvider = keyof typeof cmsProviders; - -export default cmsProviders; diff --git a/apps/cms/src/lib/cms/providers/strapi.ts b/apps/cms/src/lib/cms/providers/strapi.ts index 9a684ce..8d82231 100644 --- a/apps/cms/src/lib/cms/providers/strapi.ts +++ b/apps/cms/src/lib/cms/providers/strapi.ts @@ -111,4 +111,4 @@ export const strapiOperations: CreateStrapiOperations = (config): CmsOperations }; }; -export default createProvider(strapiOperations, strapiConfigSchema); +export const strapiProvider = createProvider(strapiOperations, strapiConfigSchema); diff --git a/apps/cms/src/modules/channels/ui/channel-configuration-form.tsx b/apps/cms/src/modules/channels/ui/channel-configuration-form.tsx index d489001..de94fad 100644 --- a/apps/cms/src/modules/channels/ui/channel-configuration-form.tsx +++ b/apps/cms/src/modules/channels/ui/channel-configuration-form.tsx @@ -20,7 +20,7 @@ import { SingleChannelSchema, SingleProviderSchema, } from "../../../lib/cms/config"; -import ProviderIcon from "../../provider-instances/ui/provider-icon"; +import { ProviderIcon } from "../../provider-instances/ui/provider-icon"; const useStyles = makeStyles((theme) => { return { @@ -49,7 +49,7 @@ interface ChannelConfigurationFormProps { onSubmit: (channel: SingleChannelSchema) => any; } -const ChannelConfigurationForm = ({ +export const ChannelConfigurationForm = ({ channel, providerInstances, loading, @@ -150,5 +150,3 @@ const ChannelConfigurationForm = ({ ); }; - -export default ChannelConfigurationForm; diff --git a/apps/cms/src/modules/channels/ui/channel-configuration.tsx b/apps/cms/src/modules/channels/ui/channel-configuration.tsx index 406f2f7..6d1b4fd 100644 --- a/apps/cms/src/modules/channels/ui/channel-configuration.tsx +++ b/apps/cms/src/modules/channels/ui/channel-configuration.tsx @@ -1,7 +1,7 @@ import { AppPaper } from "../../ui/app-paper"; import { FormControlLabel, Grid, Paper, Radio, RadioGroup, Typography } from "@material-ui/core"; import { Skeleton } from "@material-ui/lab"; -import ChannelConfigurationForm from "./channel-configuration-form"; +import { ChannelConfigurationForm } from "./channel-configuration-form"; import { MergedChannelSchema, ProvidersSchema, @@ -60,7 +60,7 @@ interface ChannelConfigurationProps { errors: ChannelsErrors; } -const ChannelConfiguration = ({ +export const ChannelConfiguration = ({ activeChannel, providerInstances, saveChannel, @@ -117,5 +117,3 @@ const ChannelConfiguration = ({ ); }; - -export default ChannelConfiguration; diff --git a/apps/cms/src/modules/channels/ui/channels-list-items.tsx b/apps/cms/src/modules/channels/ui/channels-list-items.tsx index 167d231..cac565d 100644 --- a/apps/cms/src/modules/channels/ui/channels-list-items.tsx +++ b/apps/cms/src/modules/channels/ui/channels-list-items.tsx @@ -9,7 +9,7 @@ import { import clsx from "clsx"; import { ChannelFragment } from "../../../../generated/graphql"; import { MergedChannelSchema, SingleChannelSchema } from "../../../lib/cms/config"; -import ProviderIcon from "../../provider-instances/ui/provider-icon"; +import { ProviderIcon } from "../../provider-instances/ui/provider-icon"; const useStyles = makeStyles((theme) => { return { @@ -40,7 +40,7 @@ interface ChannelsListItemsProps { setActiveChannel: (channel: MergedChannelSchema | null) => void; } -const ChannelsListItems = ({ +export const ChannelsListItems = ({ channels, activeChannel, setActiveChannel, @@ -72,5 +72,3 @@ const ChannelsListItems = ({ ); }; - -export default ChannelsListItems; diff --git a/apps/cms/src/modules/channels/ui/channels-list.tsx b/apps/cms/src/modules/channels/ui/channels-list.tsx index b26f34d..91b4834 100644 --- a/apps/cms/src/modules/channels/ui/channels-list.tsx +++ b/apps/cms/src/modules/channels/ui/channels-list.tsx @@ -3,7 +3,7 @@ import { Skeleton } from "@material-ui/lab"; import { ChannelFragment } from "../../../../generated/graphql"; import { MergedChannelSchema, SingleChannelSchema } from "../../../lib/cms"; import { AppPaper } from "../../ui/app-paper"; -import ChannelsListItems from "./channels-list-items"; +import { ChannelsListItems } from "./channels-list-items"; import { ChannelsErrors, ChannelsLoading } from "./types"; const ChannelsListSkeleton = () => { @@ -32,7 +32,7 @@ interface ChannelsListProps { errors: ChannelsErrors; } -const ChannelsList = ({ +export const ChannelsList = ({ channels, activeChannel, setActiveChannel, @@ -55,5 +55,3 @@ const ChannelsList = ({ /> ); }; - -export default ChannelsList; diff --git a/apps/cms/src/modules/channels/ui/channels.tsx b/apps/cms/src/modules/channels/ui/channels.tsx index 70f223e..f99ea6e 100644 --- a/apps/cms/src/modules/channels/ui/channels.tsx +++ b/apps/cms/src/modules/channels/ui/channels.tsx @@ -1,13 +1,12 @@ -import { useEffect, useState } from "react"; -import { MergedChannelSchema, SingleChannelSchema } from "../../../lib/cms/config"; -import useProviderInstances from "../../provider-instances/ui/hooks/useProviderInstances"; +import { useState } from "react"; +import { MergedChannelSchema } from "../../../lib/cms/config"; +import { useProviderInstances } from "../../provider-instances/ui/hooks/useProviderInstances"; import { Instructions } from "../../ui/instructions"; -import ChannelConfiguration from "./channel-configuration"; -import ChannelsList from "./channels-list"; -import useChannels from "./hooks/useChannels"; -import useSaveChannels from "./hooks/useChannelsFetch"; +import { ChannelConfiguration } from "./channel-configuration"; +import { ChannelsList } from "./channels-list"; +import { useChannels } from "./hooks/useChannels"; -const Channels = () => { +export const Channels = () => { const { channels, saveChannel, loading, errors } = useChannels(); const { providerInstances } = useProviderInstances(); @@ -41,4 +40,3 @@ const Channels = () => { ); }; -export default Channels; diff --git a/apps/cms/src/modules/channels/ui/hooks/useChannels.ts b/apps/cms/src/modules/channels/ui/hooks/useChannels.ts index fd87c69..79f3381 100644 --- a/apps/cms/src/modules/channels/ui/hooks/useChannels.ts +++ b/apps/cms/src/modules/channels/ui/hooks/useChannels.ts @@ -1,10 +1,10 @@ -import useChannelsFetch from "./useChannelsFetch"; +import { useChannelsFetch } from "./useChannelsFetch"; import { MergedChannelSchema, SingleChannelSchema } from "../../../../lib/cms/config"; import { ChannelsErrors, ChannelsLoading } from "../types"; import { useChannelsQuery } from "../../../../../generated/graphql"; import { useIsMounted } from "usehooks-ts"; -const useChannels = () => { +export const useChannels = () => { const isMounted = useIsMounted(); const [channelsQueryData, channelsQueryOpts] = useChannelsQuery({ pause: !isMounted, @@ -47,5 +47,3 @@ const useChannels = () => { return { channels, saveChannel, loading, errors }; }; - -export default useChannels; diff --git a/apps/cms/src/modules/channels/ui/hooks/useChannelsFetch.ts b/apps/cms/src/modules/channels/ui/hooks/useChannelsFetch.ts index 87ec4ae..fde5f62 100644 --- a/apps/cms/src/modules/channels/ui/hooks/useChannelsFetch.ts +++ b/apps/cms/src/modules/channels/ui/hooks/useChannelsFetch.ts @@ -8,7 +8,7 @@ import { import { SALEOR_API_URL_HEADER, SALEOR_AUTHORIZATION_BEARER_HEADER } from "@saleor/app-sdk/const"; import { ChannelsApiResponse } from "../../../../pages/api/channels"; -const useChannelsFetch = () => { +export const useChannelsFetch = () => { const { appBridgeState } = useAppBridge(); const [isSaving, setIsSaving] = React.useState(false); const [isFetching, setIsFetching] = React.useState(false); @@ -80,5 +80,3 @@ const useChannelsFetch = () => { return { saveChannel, isSaving, data: config, isFetching, error: validationError }; }; - -export default useChannelsFetch; diff --git a/apps/cms/src/modules/provider-instances/ui/hooks/useProviderInstances.ts b/apps/cms/src/modules/provider-instances/ui/hooks/useProviderInstances.ts index e451870..ffada21 100644 --- a/apps/cms/src/modules/provider-instances/ui/hooks/useProviderInstances.ts +++ b/apps/cms/src/modules/provider-instances/ui/hooks/useProviderInstances.ts @@ -1,8 +1,8 @@ -import useProviderInstancesFetch from "./useProviderInstancesFetch"; +import { useProviderInstancesFetch } from "./useProviderInstancesFetch"; import { SingleProviderSchema } from "../../../../lib/cms/config"; import { ProvidersErrors, ProvidersLoading } from "../types"; -const useProviderInstances = () => { +export const useProviderInstances = () => { const { saveProviderInstance: saveProviderInstanceFetch, deleteProviderInstance: deleteProviderInstanceFetch, @@ -43,5 +43,3 @@ const useProviderInstances = () => { return { providerInstances, saveProviderInstance, deleteProviderInstance, loading, errors }; }; - -export default useProviderInstances; diff --git a/apps/cms/src/modules/provider-instances/ui/hooks/useProviderInstancesFetch.ts b/apps/cms/src/modules/provider-instances/ui/hooks/useProviderInstancesFetch.ts index b9ba8d4..eeaee43 100644 --- a/apps/cms/src/modules/provider-instances/ui/hooks/useProviderInstancesFetch.ts +++ b/apps/cms/src/modules/provider-instances/ui/hooks/useProviderInstancesFetch.ts @@ -4,7 +4,7 @@ import { CMSSchemaProviderInstances, SingleProviderSchema } from "../../../../li import { SALEOR_API_URL_HEADER, SALEOR_AUTHORIZATION_BEARER_HEADER } from "@saleor/app-sdk/const"; import { ProviderInstancesApiResponse } from "../../../../pages/api/provider-instances"; -const useProviderInstancesFetch = () => { +export const useProviderInstancesFetch = () => { const { appBridgeState } = useAppBridge(); const [isSaving, setIsSaving] = React.useState(false); const [isFetching, setIsFetching] = React.useState(false); @@ -130,5 +130,3 @@ const useProviderInstancesFetch = () => { error: validationError, }; }; - -export default useProviderInstancesFetch; diff --git a/apps/cms/src/modules/provider-instances/ui/provider-icon.tsx b/apps/cms/src/modules/provider-instances/ui/provider-icon.tsx index b875e7e..0ecd1bf 100644 --- a/apps/cms/src/modules/provider-instances/ui/provider-icon.tsx +++ b/apps/cms/src/modules/provider-instances/ui/provider-icon.tsx @@ -5,10 +5,8 @@ interface ProviderIconProps { providerName: string; } -const ProviderIcon = ({ providerName }: ProviderIconProps) => { +export const ProviderIcon = ({ providerName }: ProviderIconProps) => { const provider = getProviderByName(providerName); return provider ? {`${provider.label} : null; }; - -export default ProviderIcon; diff --git a/apps/cms/src/modules/provider-instances/ui/provider-instance-configuration-form.tsx b/apps/cms/src/modules/provider-instances/ui/provider-instance-configuration-form.tsx index 97dcf59..ee567d9 100644 --- a/apps/cms/src/modules/provider-instances/ui/provider-instance-configuration-form.tsx +++ b/apps/cms/src/modules/provider-instances/ui/provider-instance-configuration-form.tsx @@ -35,7 +35,7 @@ interface ProviderInstanceConfigurationFormProps({ +export const ProviderInstanceConfigurationForm = ({ provider, providerInstance, onSubmit, @@ -165,5 +165,3 @@ const ProviderInstanceConfigurationForm = ( ); }; - -export default ProviderInstanceConfigurationForm; diff --git a/apps/cms/src/modules/provider-instances/ui/provider-instance-configuration.tsx b/apps/cms/src/modules/provider-instances/ui/provider-instance-configuration.tsx index f08716c..5607e04 100644 --- a/apps/cms/src/modules/provider-instances/ui/provider-instance-configuration.tsx +++ b/apps/cms/src/modules/provider-instances/ui/provider-instance-configuration.tsx @@ -4,7 +4,7 @@ import Image from "next/image"; import React from "react"; import { CMSProviderSchema, providersConfig, SingleProviderSchema } from "../../../lib/cms/config"; import { AppPaper } from "../../ui/app-paper"; -import ProviderInstanceConfigurationForm from "./provider-instance-configuration-form"; +import { ProviderInstanceConfigurationForm } from "./provider-instance-configuration-form"; import { Skeleton } from "@material-ui/lab"; import { ProvidersErrors, ProvidersLoading } from "./types"; import { getProviderByName, Provider } from "../../providers/config"; @@ -84,7 +84,7 @@ interface ProviderInstanceConfigurationProps { errors: ProvidersErrors; } -const ProviderInstanceConfiguration = ({ +export const ProviderInstanceConfiguration = ({ activeProviderInstance, newProviderInstance, saveProviderInstance, @@ -187,5 +187,3 @@ const ProviderInstanceConfiguration = ({ ); }; - -export default ProviderInstanceConfiguration; diff --git a/apps/cms/src/modules/provider-instances/ui/provider-instances-list-items.tsx b/apps/cms/src/modules/provider-instances/ui/provider-instances-list-items.tsx index 15dccb2..e7738c9 100644 --- a/apps/cms/src/modules/provider-instances/ui/provider-instances-list-items.tsx +++ b/apps/cms/src/modules/provider-instances/ui/provider-instances-list-items.tsx @@ -11,7 +11,7 @@ import clsx from "clsx"; import React from "react"; import { SingleProviderSchema } from "../../../lib/cms/config"; import { getProviderByName } from "../../providers/config"; -import ProviderIcon from "./provider-icon"; +import { ProviderIcon } from "./provider-icon"; const useStyles = makeStyles((theme) => { return { @@ -59,7 +59,7 @@ interface ProviderInstancesListItemsProps { setActiveProviderInstance: (provider: SingleProviderSchema) => void; } -const ProviderInstancesListItems = ({ +export const ProviderInstancesListItems = ({ providerInstances, activeProviderInstance, setActiveProviderInstance, @@ -92,5 +92,3 @@ const ProviderInstancesListItems = ({ ); }; - -export default ProviderInstancesListItems; diff --git a/apps/cms/src/modules/provider-instances/ui/provider-instances-list.tsx b/apps/cms/src/modules/provider-instances/ui/provider-instances-list.tsx index bcfeebb..2a14e4f 100644 --- a/apps/cms/src/modules/provider-instances/ui/provider-instances-list.tsx +++ b/apps/cms/src/modules/provider-instances/ui/provider-instances-list.tsx @@ -4,7 +4,7 @@ import { Skeleton } from "@material-ui/lab"; import { Button, makeStyles } from "@saleor/macaw-ui"; import { SingleProviderSchema } from "../../../lib/cms/config"; import { AppPaper } from "../../ui/app-paper"; -import ProviderInstancesListItems, { ProviderItem } from "./provider-instances-list-items"; +import { ProviderInstancesListItems, ProviderItem } from "./provider-instances-list-items"; import { ProvidersErrors, ProvidersLoading } from "./types"; const useStyles = makeStyles((theme) => { @@ -44,7 +44,7 @@ interface ProviderInstancesListProps { errors: ProvidersErrors; } -const ProviderInstancesList = ({ +export const ProviderInstancesList = ({ providerInstances, activeProviderInstance, newProviderInstance, @@ -91,5 +91,3 @@ const ProviderInstancesList = ({ ); }; - -export default ProviderInstancesList; diff --git a/apps/cms/src/modules/provider-instances/ui/provider-instances.tsx b/apps/cms/src/modules/provider-instances/ui/provider-instances.tsx index 7ef52fe..4620133 100644 --- a/apps/cms/src/modules/provider-instances/ui/provider-instances.tsx +++ b/apps/cms/src/modules/provider-instances/ui/provider-instances.tsx @@ -1,11 +1,11 @@ -import ProviderInstancesList from "./provider-instances-list"; +import { ProviderInstancesList } from "./provider-instances-list"; import { Instructions } from "../../ui/instructions"; -import ProviderInstanceConfiguration from "./provider-instance-configuration"; +import { ProviderInstanceConfiguration } from "./provider-instance-configuration"; import { providersConfig, ProvidersSchema, SingleProviderSchema } from "../../../lib/cms/config"; import { useEffect, useState } from "react"; -import useProviderInstances from "./hooks/useProviderInstances"; +import { useProviderInstances } from "./hooks/useProviderInstances"; -const ProviderInstances = () => { +export const ProviderInstances = () => { const { providerInstances, saveProviderInstance, deleteProviderInstance, loading, errors } = useProviderInstances(); @@ -73,5 +73,3 @@ const ProviderInstances = () => { ); }; - -export default ProviderInstances; diff --git a/apps/cms/src/modules/ui/app-tabs.tsx b/apps/cms/src/modules/ui/app-tabs.tsx index 5e50061..2f59cef 100644 --- a/apps/cms/src/modules/ui/app-tabs.tsx +++ b/apps/cms/src/modules/ui/app-tabs.tsx @@ -22,7 +22,7 @@ interface AppTabsProps { activeTab: keyof typeof tabs; } -const AppTabs = ({ activeTab }: AppTabsProps) => { +export const AppTabs = ({ activeTab }: AppTabsProps) => { const styles = useStyles(); const router = useRouter(); @@ -40,4 +40,3 @@ const AppTabs = ({ activeTab }: AppTabsProps) => { ); }; -export default AppTabs; diff --git a/apps/cms/src/pages/_app.tsx b/apps/cms/src/pages/_app.tsx index 482b6f7..2026d97 100644 --- a/apps/cms/src/pages/_app.tsx +++ b/apps/cms/src/pages/_app.tsx @@ -10,7 +10,7 @@ import { } from "@saleor/macaw-ui"; import React, { PropsWithChildren, ReactElement, ReactNode, useEffect } from "react"; import { AppProps } from "next/app"; -import GraphQLProvider from "../providers/GraphQLProvider"; +import { GraphQLProvider } from "../providers/GraphQLProvider"; import { ThemeSynchronizer } from "../lib/theme-synchronizer"; import { RoutePropagator } from "@saleor/app-sdk/app-bridge/next"; import { NoSSRWrapper } from "../lib/no-ssr-wrapper"; diff --git a/apps/cms/src/pages/channels.tsx b/apps/cms/src/pages/channels.tsx index 91b3c36..6690562 100644 --- a/apps/cms/src/pages/channels.tsx +++ b/apps/cms/src/pages/channels.tsx @@ -1,5 +1,5 @@ -import AppTabs from "../modules/ui/app-tabs"; -import Channels from "../modules/channels/ui/channels"; +import { AppTabs } from "../modules/ui/app-tabs"; +import { Channels } from "../modules/channels/ui/channels"; import { AppContainer } from "../modules/ui/app-container"; import { AppLayout } from "../modules/ui/app-layout"; import { NextPageWithLayout } from "./_app"; diff --git a/apps/cms/src/pages/providers.tsx b/apps/cms/src/pages/providers.tsx index a86b101..6bfc120 100644 --- a/apps/cms/src/pages/providers.tsx +++ b/apps/cms/src/pages/providers.tsx @@ -1,7 +1,7 @@ import { AppContainer } from "../modules/ui/app-container"; import { AppLayout } from "../modules/ui/app-layout"; -import AppTabs from "../modules/ui/app-tabs"; -import ProviderInstances from "../modules/provider-instances/ui/provider-instances"; +import { AppTabs } from "../modules/ui/app-tabs"; +import { ProviderInstances } from "../modules/provider-instances/ui/provider-instances"; import { NextPageWithLayout } from "./_app"; import { ReactElement } from "react"; diff --git a/apps/cms/src/providers/GraphQLProvider.tsx b/apps/cms/src/providers/GraphQLProvider.tsx index d3aab3b..7cfe6ea 100644 --- a/apps/cms/src/providers/GraphQLProvider.tsx +++ b/apps/cms/src/providers/GraphQLProvider.tsx @@ -4,7 +4,7 @@ import { Provider } from "urql"; import { createClient } from "../lib/graphql"; -function GraphQLProvider(props: PropsWithChildren<{}>) { +export function GraphQLProvider(props: PropsWithChildren<{}>) { const { appBridgeState } = useAppBridge(); const saleorApiUrl = appBridgeState?.saleorApiUrl!; @@ -14,5 +14,3 @@ function GraphQLProvider(props: PropsWithChildren<{}>) { return ; } - -export default GraphQLProvider; diff --git a/apps/data-importer/src/pages/importer.tsx b/apps/data-importer/src/pages/importer.tsx index 4bc84db..b52b06e 100644 --- a/apps/data-importer/src/pages/importer.tsx +++ b/apps/data-importer/src/pages/importer.tsx @@ -3,7 +3,7 @@ import React, { ComponentProps } from "react"; import { Container, Divider } from "@material-ui/core"; import { Button, makeStyles, PageTab, PageTabs, SaleorTheme } from "@saleor/macaw-ui"; import { CustomersImporterView } from "../modules/customers/customers-importer-nuvo/customers-importer-view"; -import GraphQLProvider from "../providers/GraphQLProvider"; +import { GraphQLProvider } from "../providers/GraphQLProvider"; import { actions, useAppBridge } from "@saleor/app-sdk/app-bridge"; type Tab = "customers"; diff --git a/apps/data-importer/src/providers/GraphQLProvider.tsx b/apps/data-importer/src/providers/GraphQLProvider.tsx index 0e71e19..769d264 100644 --- a/apps/data-importer/src/providers/GraphQLProvider.tsx +++ b/apps/data-importer/src/providers/GraphQLProvider.tsx @@ -4,7 +4,7 @@ import { Provider } from "urql"; import { createClient } from "../lib/graphql"; -function GraphQLProvider(props: PropsWithChildren<{}>) { +export function GraphQLProvider(props: PropsWithChildren<{}>) { const { appBridgeState } = useAppBridge(); const client = createClient(appBridgeState?.saleorApiUrl!, async () => @@ -13,5 +13,3 @@ function GraphQLProvider(props: PropsWithChildren<{}>) { return ; } - -export default GraphQLProvider; diff --git a/apps/emails-and-messages/graphql/schema.graphql b/apps/emails-and-messages/graphql/schema.graphql index ff12b99..3b704aa 100644 --- a/apps/emails-and-messages/graphql/schema.graphql +++ b/apps/emails-and-messages/graphql/schema.graphql @@ -9,37 +9,46 @@ type Query { Look up a webhook by ID. Requires one of the following permissions: MANAGE_APPS, OWNER. """ webhook( - """ID of the 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.") + 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.""" + """ + 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 of a warehouse. + """ id: ID """ - External ID of a warehouse. - + External ID of a warehouse. + Added in Saleor 3.10. """ externalReference: String @@ -47,151 +56,201 @@ type Query { """ 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 of objects to retrieve. + """ kind: TranslatableKinds! - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 of the object to retrieve. + """ id: ID! - """Kind of the object to retrieve.""" + """ + 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 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.""" + """ + Filtering options for tax configurations. + """ filter: TaxConfigurationFilterInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 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.""" + """ + Sort tax classes. + """ sortBy: TaxClassSortingInput - """Filtering options for tax classes.""" + """ + Filtering options for tax classes. + """ filter: TaxClassFilterInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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.""" + """ + Country for which to return tax class rates. + """ countryCode: CountryCode! ): TaxCountryConfiguration @@ -200,149 +259,209 @@ type Query { """ Look up a stock by ID - + Requires one of the following permissions: MANAGE_PRODUCTS. """ stock( - """ID of an warehouse""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): StockCountableConnection - """Return information about the shop.""" + """ + 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 of the shipping zone. + """ id: ID! - """Slug of a channel for which the data should be returned.""" + """ + 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.""" + """ + Filtering options for shipping zones. + """ filter: ShippingZoneFilterInput - """Slug of a channel for which the data should be returned.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): DigitalContentCountableConnection - """List of the shop's categories.""" + """ + List of the shop's categories. + """ categories( - """Filtering options for categories.""" + """ + Filtering options for categories. + """ filter: CategoryFilterInput - """Sort categories.""" + """ + Sort categories. + """ sortBy: CategorySortingInput - """Filter categories by the nesting level in the category tree.""" + """ + Filter categories by the nesting level in the category tree. + """ level: Int - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): CategoryCountableConnection - """Look up a category by ID or slug.""" + """ + Look up a category by ID or slug. + """ category( - """ID of the category.""" + """ + ID of the category. + """ id: ID - """Slug of the category""" + """ + Slug of the category + """ slug: String ): Category @@ -350,13 +469,19 @@ type Query { 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 of the collection. + """ id: ID - """Slug of the category""" + """ + Slug of the category + """ slug: String - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Collection @@ -364,25 +489,39 @@ type Query { 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.""" + """ + Filtering options for collections. + """ filter: CollectionFilterInput - """Sort collections.""" + """ + Sort collections. + """ sortBy: CollectionSortingInput - """Slug of a channel for which the data should be returned.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): CollectionCountableConnection @@ -390,20 +529,26 @@ type Query { 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 of the product. + """ id: ID - """Slug of the product.""" + """ + Slug of the product. + """ slug: String """ - External ID of the product. - + External ID of the product. + Added in Saleor 3.10. """ externalReference: String - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Product @@ -411,52 +556,84 @@ type Query { 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.""" + """ + Filtering options for products. + """ filter: ProductFilterInput - """Sort products.""" + """ + Sort products. + """ sortBy: ProductOrder - """Slug of a channel for which the data should be returned.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): ProductCountableConnection - """Look up a product type by ID.""" + """ + Look up a product type by ID. + """ productType( - """ID of the product type.""" + """ + ID of the product type. + """ id: ID! ): ProductType - """List of the shop's product types.""" + """ + List of the shop's product types. + """ productTypes( - """Filtering options for product types.""" + """ + Filtering options for product types. + """ filter: ProductTypeFilterInput - """Sort product types.""" + """ + Sort product types. + """ sortBy: ProductTypeSortingInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): ProductTypeCountableConnection @@ -464,20 +641,26 @@ type Query { 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 of the product variant. + """ id: ID - """Sku of the product variant.""" + """ + Sku of the product variant. + """ sku: String """ - External ID of the product. - + External ID of the product. + Added in Saleor 3.10. """ externalReference: String - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ProductVariant @@ -485,186 +668,278 @@ type Query { 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.""" + """ + Filter product variants by given IDs. + """ ids: [ID!] - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String - """Filtering options for product variant.""" + """ + Filtering options for product variant. + """ filter: ProductVariantFilterInput - """Sort products variants.""" + """ + Sort products variants. + """ sortBy: ProductVariantSortingInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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.""" + """ + Span of time. + """ period: ReportingPeriod! - """Slug of a channel for which the data should be returned.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 of the payment. + """ id: ID! ): Payment """ List of payments. - + Requires one of the following permissions: MANAGE_ORDERS. """ payments( - """Filtering options for payments.""" + """ + Filtering options for payments. + """ filter: PaymentFilterInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 of a transaction. + """ id: ID! ): TransactionItem - """Look up a page by ID or slug.""" + """ + Look up a page by ID or slug. + """ page( - """ID of the page.""" + """ + ID of the page. + """ id: ID - """The slug of the page.""" + """ + The slug of the page. + """ slug: String ): Page - """List of the shop's pages.""" + """ + List of the shop's pages. + """ pages( - """Sort pages.""" + """ + Sort pages. + """ sortBy: PageSortingInput - """Filtering options for pages.""" + """ + Filtering options for pages. + """ filter: PageFilterInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): PageCountableConnection - """Look up a page type by ID.""" + """ + Look up a page type by ID. + """ pageType( - """ID of the page type.""" + """ + ID of the page type. + """ id: ID! ): PageType - """List of the page types.""" + """ + List of the page types. + """ pageTypes( - """Sort page types.""" + """ + Sort page types. + """ sortBy: PageTypeSortingInput - """Filtering options for page types.""" + """ + Filtering options for page types. + """ filter: PageTypeFilterInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): OrderEventCountableConnection - """Look up an order by ID or external reference.""" + """ + Look up an order by ID or external reference. + """ order( - """ID of an order.""" + """ + ID of an order. + """ id: ID """ - External ID of an order. - + External ID of an order. + Added in Saleor 3.10. """ externalReference: String @@ -672,417 +947,585 @@ type Query { """ List of orders. - + Requires one of the following permissions: MANAGE_ORDERS. """ orders( - """Sort orders.""" + """ + Sort orders. + """ sortBy: OrderSortingInput - """Filtering options for orders.""" + """ + Filtering options for orders. + """ filter: OrderFilterInput - """Slug of a channel for which the data should be returned.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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.""" + """ + Sort draft orders. + """ sortBy: OrderSortingInput - """Filtering options for draft orders.""" + """ + Filtering options for draft orders. + """ filter: OrderDraftFilterInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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.""" + """ + A period of time. + """ period: ReportingPeriod - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): TaxedMoney - """Look up an order by token.""" + """ + Look up an order by token. + """ orderByToken( - """The order's token.""" + """ + 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.""" + """ + Look up a navigation menu by ID or name. + """ menu( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String - """ID of the menu.""" + """ + ID of the menu. + """ id: ID - """The menu's name.""" + """ + The menu's name. + """ name: String - """The menu's slug.""" + """ + The menu's slug. + """ slug: String ): Menu - """List of the storefront's menus.""" + """ + List of the storefront's menus. + """ menus( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String - """Sort menus.""" + """ + Sort menus. + """ sortBy: MenuSortingInput """ - Filtering options for menus. - + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): MenuCountableConnection - """Look up a menu item by ID.""" + """ + Look up a menu item by ID. + """ menuItem( - """ID of the menu item.""" + """ + ID of the menu item. + """ id: ID! - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): MenuItem - """List of the storefronts's menu items.""" + """ + List of the storefronts's menu items. + """ menuItems( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String - """Sort menus items.""" + """ + Sort menus items. + """ sortBy: MenuItemSortingInput - """Filtering options for menu items.""" + """ + Filtering options for menu items. + """ filter: MenuItemFilterInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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.""" + """ + Filtering options for gift card tags. + """ filter: GiftCardTagFilterInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 of the plugin. + """ id: ID! ): Plugin """ List of plugins. - + Requires one of the following permissions: MANAGE_PLUGINS. """ plugins( - """Filtering options for plugins.""" + """ + Filtering options for plugins. + """ filter: PluginFilterInput - """Sort plugins.""" + """ + Sort plugins. + """ sortBy: PluginSortingInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 of the sale. + """ id: ID! - """Slug of a channel for which the data should be returned.""" + """ + 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.""" + """ + Filtering options for sales. + """ filter: SaleFilterInput - """Sort sales.""" + """ + Sort sales. + """ sortBy: SaleSortingInput """ - Search sales by name, value or type. - + 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.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 of the voucher. + """ id: ID! - """Slug of a channel for which the data should be returned.""" + """ + 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.""" + """ + Filtering options for vouchers. + """ filter: VoucherFilterInput - """Sort voucher.""" + """ + Sort voucher. + """ sortBy: VoucherSortingInput """ - Search vouchers by name or code. - + 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.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 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.""" + """ + Filtering options for export files. + """ filter: ExportFileFilterInput - """Sort export files.""" + """ + Sort export files. + """ sortBy: ExportFileSortingInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): ExportFileCountableConnection - """List of all tax rates available from tax gateway.""" + """ + List of all tax rates available from tax gateway. + """ taxTypes: [TaxType!] - """Look up a checkout by token and slug of 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 @@ -1090,69 +1533,91 @@ type Query { """ 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.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): CheckoutLineCountableConnection - """Look up a channel by ID or slug.""" + """ + Look up a channel by ID or slug. + """ channel( - """ID of the 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 @@ -1160,64 +1625,86 @@ type Query { """ List of all channels. - + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. """ channels: [Channel!] - """List of the shop's attributes.""" + """ + List of the shop's attributes. + """ attributes( - """Filtering options for attributes.""" + """ + Filtering options for attributes. + """ filter: AttributeFilterInput """ Filtering options for attributes. - + Added in Saleor 3.11. - + Note: this API is currently in Feature Preview and can be subject to changes at later point. """ where: AttributeWhereInput """ Search attributes. - + Added in Saleor 3.11. - + Note: this API is currently in Feature Preview and can be subject to changes at later point. """ search: String - """Sorting options for attributes.""" + """ + Sorting options for attributes. + """ sortBy: AttributeSortingInput - """Slug of a channel for which the data should be returned.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): AttributeCountableConnection - """Look up an attribute by ID, slug or external reference.""" + """ + Look up an attribute by ID, slug or external reference. + """ attribute( - """ID of the attribute.""" + """ + ID of the attribute. + """ id: ID - """Slug of the attribute.""" + """ + Slug of the attribute. + """ slug: String """ - External ID of the attribute. - + External ID of the attribute. + Added in Saleor 3.10. """ externalReference: String @@ -1225,210 +1712,294 @@ type Query { """ 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.""" + """ + Filtering options for apps. + """ filter: AppFilterInput - """Sort apps.""" + """ + Sort apps. + """ sortBy: AppSortingInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 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.""" + """ + Filtering options for apps extensions. + """ filter: AppExtensionFilterInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 of the app extension. + """ id: ID! ): AppExtension - """Returns address validation rules.""" + """ + Returns address validation rules. + """ addressValidationRules( - """Two-letter ISO 3166-1 country code.""" + """ + Two-letter ISO 3166-1 country code. + """ countryCode: CountryCode! - """Designation of a region, province or state.""" + """ + Designation of a region, province or state. + """ countryArea: String - """City or a town name.""" + """ + City or a town name. + """ city: String - """Sublocality like a district.""" + """ + Sublocality like a district. + """ cityArea: String ): AddressValidationData - """Look up an address by ID.""" + """ + Look up an address by ID. + """ address( - """ID of an 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.""" + """ + Filtering options for customers. + """ filter: CustomerFilterInput - """Sort customers.""" + """ + Sort customers. + """ sortBy: UserSortingInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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.""" + """ + Filtering options for permission groups. + """ filter: PermissionGroupFilterInput - """Sort permission groups.""" + """ + Sort permission groups. + """ sortBy: PermissionGroupSortingInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 of the group. + """ id: ID! ): Group - """Return the currently authenticated user.""" + """ + 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.""" + """ + Filtering options for staff users. + """ filter: StaffUserInput - """Sort staff users.""" + """ + Sort staff users. + """ sortBy: UserSortingInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 of the user. + """ id: ID - """Email address of the user.""" + """ + Email address of the user. + """ email: String """ - External ID of the user. - + External ID of the user. + Added in Saleor 3.10. """ externalReference: String @@ -1437,175 +2008,287 @@ type Query { _service: _Service } -"""Webhook.""" +""" +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 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.""" + """ + List of synchronous webhook events. + """ syncEvents: [WebhookEventSync!]! - """List of asynchronous webhook events.""" + """ + List of asynchronous webhook events. + """ asyncEvents: [WebhookEventAsync!]! app: App! - """Event deliveries.""" + """ + Event deliveries. + """ eventDeliveries( - """Event delivery sorter.""" + """ + Event delivery sorter. + """ sortBy: EventDeliverySortingInput - """Event delivery filter options.""" + """ + Event delivery filter options. + """ filter: EventDeliveryFilterInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): EventDeliveryCountableConnection - """Target URL for webhook.""" + """ + Target URL for webhook. + """ targetUrl: String! - """Informs if webhook is activated.""" + """ + 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 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.""" + """ + Used to define payloads for specific events. + """ subscriptionQuery: String } -"""An object with an ID""" +""" +An object with an ID +""" interface Node { - """The ID of the object.""" + """ + The ID of the object. + """ id: ID! } -"""Webhook event.""" +""" +Webhook event. +""" type WebhookEvent { - """Display name of the event.""" + """ + Display name of the event. + """ name: String! - """Internal name of the event type.""" + """ + Internal name of the event type. + """ eventType: WebhookEventTypeEnum! } -"""Enum determining type of webhook.""" +""" +Enum determining type of webhook. +""" enum WebhookEventTypeEnum { - """All the events.""" + """ + All the events. + """ ANY_EVENTS - """A new address created.""" + """ + A new address created. + """ ADDRESS_CREATED - """An address updated.""" + """ + An address updated. + """ ADDRESS_UPDATED - """An address deleted.""" + """ + An address deleted. + """ ADDRESS_DELETED - """A new app installed.""" + """ + A new app installed. + """ APP_INSTALLED - """An app updated.""" + """ + An app updated. + """ APP_UPDATED - """An app deleted.""" + """ + An app deleted. + """ APP_DELETED - """An app status is changed.""" + """ + An app status is changed. + """ APP_STATUS_CHANGED - """A new attribute is created.""" + """ + A new attribute is created. + """ ATTRIBUTE_CREATED - """An attribute is updated.""" + """ + An attribute is updated. + """ ATTRIBUTE_UPDATED - """An attribute is deleted.""" + """ + An attribute is deleted. + """ ATTRIBUTE_DELETED - """A new attribute value is created.""" + """ + A new attribute value is created. + """ ATTRIBUTE_VALUE_CREATED - """An attribute value is updated.""" + """ + An attribute value is updated. + """ ATTRIBUTE_VALUE_UPDATED - """An attribute value is deleted.""" + """ + An attribute value is deleted. + """ ATTRIBUTE_VALUE_DELETED - """A new category created.""" + """ + A new category created. + """ CATEGORY_CREATED - """A category is updated.""" + """ + A category is updated. + """ CATEGORY_UPDATED - """A category is deleted.""" + """ + A category is deleted. + """ CATEGORY_DELETED - """A new channel created.""" + """ + A new channel created. + """ CHANNEL_CREATED - """A channel is updated.""" + """ + A channel is updated. + """ CHANNEL_UPDATED - """A channel is deleted.""" + """ + A channel is deleted. + """ CHANNEL_DELETED - """A channel status is changed.""" + """ + A channel status is changed. + """ CHANNEL_STATUS_CHANGED - """A new gift card created.""" + """ + A new gift card created. + """ GIFT_CARD_CREATED - """A gift card is updated.""" + """ + A gift card is updated. + """ GIFT_CARD_UPDATED - """A gift card is deleted.""" + """ + A gift card is deleted. + """ GIFT_CARD_DELETED - """A gift card status is changed.""" + """ + 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.""" + """ + A new menu created. + """ MENU_CREATED - """A menu is updated.""" + """ + A menu is updated. + """ MENU_UPDATED - """A menu is deleted.""" + """ + A menu is deleted. + """ MENU_DELETED - """A new menu item created.""" + """ + A new menu item created. + """ MENU_ITEM_CREATED - """A menu item is updated.""" + """ + A menu item is updated. + """ MENU_ITEM_UPDATED - """A menu item is deleted.""" + """ + A menu item is deleted. + """ MENU_ITEM_DELETED - """A new order is placed.""" + """ + A new order is placed. + """ ORDER_CREATED """ @@ -1613,7 +2296,9 @@ enum WebhookEventTypeEnum { """ ORDER_CONFIRMED - """Payment is made and an order is fully paid.""" + """ + Payment is made and an order is fully paid. + """ ORDER_FULLY_PAID """ @@ -1621,133 +2306,189 @@ enum WebhookEventTypeEnum { """ ORDER_UPDATED - """An order is cancelled.""" + """ + An order is cancelled. + """ ORDER_CANCELLED - """An order is fulfilled.""" + """ + 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.""" + """ + A draft order is created. + """ DRAFT_ORDER_CREATED - """A draft order is updated.""" + """ + A draft order is updated. + """ DRAFT_ORDER_UPDATED - """A draft order is deleted.""" + """ + A draft order is deleted. + """ DRAFT_ORDER_DELETED - """A sale is created.""" + """ + A sale is created. + """ SALE_CREATED - """A sale is updated.""" + """ + A sale is updated. + """ SALE_UPDATED - """A sale is deleted.""" + """ + A sale is deleted. + """ SALE_DELETED - """A sale is activated or deactivated.""" + """ + A sale is activated or deactivated. + """ SALE_TOGGLE - """An invoice for order requested.""" + """ + An invoice for order requested. + """ INVOICE_REQUESTED - """An invoice is deleted.""" + """ + An invoice is deleted. + """ INVOICE_DELETED - """Invoice has been sent.""" + """ + Invoice has been sent. + """ INVOICE_SENT - """A new customer account is created.""" + """ + A new customer account is created. + """ CUSTOMER_CREATED - """A customer account is updated.""" + """ + A customer account is updated. + """ CUSTOMER_UPDATED - """A customer account is deleted.""" + """ + 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.""" + """ + A new collection is created. + """ COLLECTION_CREATED - """A collection is updated.""" + """ + A collection is updated. + """ COLLECTION_UPDATED - """A collection is deleted.""" + """ + 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.""" + """ + A new product is created. + """ PRODUCT_CREATED - """A product is updated.""" + """ + A product is updated. + """ PRODUCT_UPDATED - """A product is deleted.""" + """ + 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.""" + """ + A new product variant is created. + """ PRODUCT_VARIANT_CREATED - """A product variant is updated.""" + """ + A product variant is updated. + """ PRODUCT_VARIANT_UPDATED - """A product variant is deleted.""" + """ + A product variant is deleted. + """ PRODUCT_VARIANT_DELETED - """A product variant is out of stock.""" + """ + A product variant is out of stock. + """ PRODUCT_VARIANT_OUT_OF_STOCK - """A product variant is back in stock.""" + """ + A product variant is back in stock. + """ PRODUCT_VARIANT_BACK_IN_STOCK - """A product variant stock is updated""" + """ + A product variant stock is updated + """ PRODUCT_VARIANT_STOCK_UPDATED """ 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.""" + """ + A new checkout is created. + """ CHECKOUT_CREATED """ @@ -1757,377 +2498,561 @@ enum WebhookEventTypeEnum { """ 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.""" + """ + A new fulfillment is created. + """ FULFILLMENT_CREATED - """A fulfillment is cancelled.""" + """ + A fulfillment is cancelled. + """ FULFILLMENT_CANCELED - """A fulfillment is approved.""" + """ + 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.""" + """ + User notification triggered. + """ NOTIFY_USER - """A new page is created.""" + """ + A new page is created. + """ PAGE_CREATED - """A page is updated.""" + """ + A page is updated. + """ PAGE_UPDATED - """A page is deleted.""" + """ + A page is deleted. + """ PAGE_DELETED - """A new page type is created.""" + """ + A new page type is created. + """ PAGE_TYPE_CREATED - """A page type is updated.""" + """ + A page type is updated. + """ PAGE_TYPE_UPDATED - """A page type is deleted.""" + """ + A page type is deleted. + """ PAGE_TYPE_DELETED - """A new permission group is created.""" + """ + A new permission group is created. + """ PERMISSION_GROUP_CREATED - """A permission group is updated.""" + """ + A permission group is updated. + """ PERMISSION_GROUP_UPDATED - """A permission group is deleted.""" + """ + A permission group is deleted. + """ PERMISSION_GROUP_DELETED - """A new shipping price is created.""" + """ + A new shipping price is created. + """ SHIPPING_PRICE_CREATED - """A shipping price is updated.""" + """ + A shipping price is updated. + """ SHIPPING_PRICE_UPDATED - """A shipping price is deleted.""" + """ + A shipping price is deleted. + """ SHIPPING_PRICE_DELETED - """A new shipping zone is created.""" + """ + A new shipping zone is created. + """ SHIPPING_ZONE_CREATED - """A shipping zone is updated.""" + """ + A shipping zone is updated. + """ SHIPPING_ZONE_UPDATED - """A shipping zone is deleted.""" + """ + 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.""" + """ + A new staff user is created. + """ STAFF_CREATED - """A staff user is updated.""" + """ + A staff user is updated. + """ STAFF_UPDATED - """A staff user is deleted.""" + """ + A staff user is deleted. + """ STAFF_DELETED - """An action requested for transaction.""" + """ + 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.""" + """ + A new translation is created. + """ TRANSLATION_CREATED - """A translation is updated.""" + """ + A translation is updated. + """ TRANSLATION_UPDATED - """A new warehouse created.""" + """ + A new warehouse created. + """ WAREHOUSE_CREATED - """A warehouse is updated.""" + """ + A warehouse is updated. + """ WAREHOUSE_UPDATED - """A warehouse is deleted.""" + """ + 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.""" + """ + A new voucher created. + """ VOUCHER_CREATED - """A voucher is updated.""" + """ + A voucher is updated. + """ VOUCHER_UPDATED - """A voucher is deleted.""" + """ + 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.""" + """ + An observability event is created. + """ OBSERVABILITY - """Authorize payment.""" + """ + Authorize payment. + """ PAYMENT_AUTHORIZE - """Capture payment.""" + """ + Capture payment. + """ PAYMENT_CAPTURE - """Confirm payment.""" + """ + Confirm payment. + """ PAYMENT_CONFIRM - """Listing available payment gateways.""" + """ + Listing available payment gateways. + """ PAYMENT_LIST_GATEWAYS - """Process payment.""" + """ + Process payment. + """ PAYMENT_PROCESS - """Refund payment.""" + """ + Refund payment. + """ PAYMENT_REFUND - """Void payment.""" + """ + 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.""" + """ + Fetch external shipping methods for checkout. + """ SHIPPING_LIST_METHODS_FOR_CHECKOUT - """Filter shipping methods for order.""" + """ + Filter shipping methods for order. + """ ORDER_FILTER_SHIPPING_METHODS - """Filter shipping methods for checkout.""" + """ + Filter shipping methods for checkout. + """ CHECKOUT_FILTER_SHIPPING_METHODS } -"""Synchronous webhook event.""" +""" +Synchronous webhook event. +""" type WebhookEventSync { - """Display name of the event.""" + """ + Display name of the event. + """ name: String! - """Internal name of the event type.""" + """ + Internal name of the event type. + """ eventType: WebhookEventTypeSyncEnum! } -"""Enum determining type of webhook.""" +""" +Enum determining type of webhook. +""" enum WebhookEventTypeSyncEnum { - """Authorize payment.""" + """ + Authorize payment. + """ PAYMENT_AUTHORIZE - """Capture payment.""" + """ + Capture payment. + """ PAYMENT_CAPTURE - """Confirm payment.""" + """ + Confirm payment. + """ PAYMENT_CONFIRM - """Listing available payment gateways.""" + """ + Listing available payment gateways. + """ PAYMENT_LIST_GATEWAYS - """Process payment.""" + """ + Process payment. + """ PAYMENT_PROCESS - """Refund payment.""" + """ + Refund payment. + """ PAYMENT_REFUND - """Void payment.""" + """ + 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.""" + """ + Fetch external shipping methods for checkout. + """ SHIPPING_LIST_METHODS_FOR_CHECKOUT - """Filter shipping methods for order.""" + """ + Filter shipping methods for order. + """ ORDER_FILTER_SHIPPING_METHODS - """Filter shipping methods for checkout.""" + """ + Filter shipping methods for checkout. + """ CHECKOUT_FILTER_SHIPPING_METHODS } -"""Asynchronous webhook event.""" +""" +Asynchronous webhook event. +""" type WebhookEventAsync { - """Display name of the event.""" + """ + Display name of the event. + """ name: String! - """Internal name of the event type.""" + """ + Internal name of the event type. + """ eventType: WebhookEventTypeAsyncEnum! } -"""Enum determining type of webhook.""" +""" +Enum determining type of webhook. +""" enum WebhookEventTypeAsyncEnum { - """All the events.""" + """ + All the events. + """ ANY_EVENTS - """A new address created.""" + """ + A new address created. + """ ADDRESS_CREATED - """An address updated.""" + """ + An address updated. + """ ADDRESS_UPDATED - """An address deleted.""" + """ + An address deleted. + """ ADDRESS_DELETED - """A new app installed.""" + """ + A new app installed. + """ APP_INSTALLED - """An app updated.""" + """ + An app updated. + """ APP_UPDATED - """An app deleted.""" + """ + An app deleted. + """ APP_DELETED - """An app status is changed.""" + """ + An app status is changed. + """ APP_STATUS_CHANGED - """A new attribute is created.""" + """ + A new attribute is created. + """ ATTRIBUTE_CREATED - """An attribute is updated.""" + """ + An attribute is updated. + """ ATTRIBUTE_UPDATED - """An attribute is deleted.""" + """ + An attribute is deleted. + """ ATTRIBUTE_DELETED - """A new attribute value is created.""" + """ + A new attribute value is created. + """ ATTRIBUTE_VALUE_CREATED - """An attribute value is updated.""" + """ + An attribute value is updated. + """ ATTRIBUTE_VALUE_UPDATED - """An attribute value is deleted.""" + """ + An attribute value is deleted. + """ ATTRIBUTE_VALUE_DELETED - """A new category created.""" + """ + A new category created. + """ CATEGORY_CREATED - """A category is updated.""" + """ + A category is updated. + """ CATEGORY_UPDATED - """A category is deleted.""" + """ + A category is deleted. + """ CATEGORY_DELETED - """A new channel created.""" + """ + A new channel created. + """ CHANNEL_CREATED - """A channel is updated.""" + """ + A channel is updated. + """ CHANNEL_UPDATED - """A channel is deleted.""" + """ + A channel is deleted. + """ CHANNEL_DELETED - """A channel status is changed.""" + """ + A channel status is changed. + """ CHANNEL_STATUS_CHANGED - """A new gift card created.""" + """ + A new gift card created. + """ GIFT_CARD_CREATED - """A gift card is updated.""" + """ + A gift card is updated. + """ GIFT_CARD_UPDATED - """A gift card is deleted.""" + """ + A gift card is deleted. + """ GIFT_CARD_DELETED - """A gift card status is changed.""" + """ + 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.""" + """ + A new menu created. + """ MENU_CREATED - """A menu is updated.""" + """ + A menu is updated. + """ MENU_UPDATED - """A menu is deleted.""" + """ + A menu is deleted. + """ MENU_DELETED - """A new menu item created.""" + """ + A new menu item created. + """ MENU_ITEM_CREATED - """A menu item is updated.""" + """ + A menu item is updated. + """ MENU_ITEM_UPDATED - """A menu item is deleted.""" + """ + A menu item is deleted. + """ MENU_ITEM_DELETED - """A new order is placed.""" + """ + A new order is placed. + """ ORDER_CREATED """ @@ -2135,7 +3060,9 @@ enum WebhookEventTypeAsyncEnum { """ ORDER_CONFIRMED - """Payment is made and an order is fully paid.""" + """ + Payment is made and an order is fully paid. + """ ORDER_FULLY_PAID """ @@ -2143,133 +3070,189 @@ enum WebhookEventTypeAsyncEnum { """ ORDER_UPDATED - """An order is cancelled.""" + """ + An order is cancelled. + """ ORDER_CANCELLED - """An order is fulfilled.""" + """ + 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.""" + """ + A draft order is created. + """ DRAFT_ORDER_CREATED - """A draft order is updated.""" + """ + A draft order is updated. + """ DRAFT_ORDER_UPDATED - """A draft order is deleted.""" + """ + A draft order is deleted. + """ DRAFT_ORDER_DELETED - """A sale is created.""" + """ + A sale is created. + """ SALE_CREATED - """A sale is updated.""" + """ + A sale is updated. + """ SALE_UPDATED - """A sale is deleted.""" + """ + A sale is deleted. + """ SALE_DELETED - """A sale is activated or deactivated.""" + """ + A sale is activated or deactivated. + """ SALE_TOGGLE - """An invoice for order requested.""" + """ + An invoice for order requested. + """ INVOICE_REQUESTED - """An invoice is deleted.""" + """ + An invoice is deleted. + """ INVOICE_DELETED - """Invoice has been sent.""" + """ + Invoice has been sent. + """ INVOICE_SENT - """A new customer account is created.""" + """ + A new customer account is created. + """ CUSTOMER_CREATED - """A customer account is updated.""" + """ + A customer account is updated. + """ CUSTOMER_UPDATED - """A customer account is deleted.""" + """ + 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.""" + """ + A new collection is created. + """ COLLECTION_CREATED - """A collection is updated.""" + """ + A collection is updated. + """ COLLECTION_UPDATED - """A collection is deleted.""" + """ + 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.""" + """ + A new product is created. + """ PRODUCT_CREATED - """A product is updated.""" + """ + A product is updated. + """ PRODUCT_UPDATED - """A product is deleted.""" + """ + 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.""" + """ + A new product variant is created. + """ PRODUCT_VARIANT_CREATED - """A product variant is updated.""" + """ + A product variant is updated. + """ PRODUCT_VARIANT_UPDATED - """A product variant is deleted.""" + """ + A product variant is deleted. + """ PRODUCT_VARIANT_DELETED - """A product variant is out of stock.""" + """ + A product variant is out of stock. + """ PRODUCT_VARIANT_OUT_OF_STOCK - """A product variant is back in stock.""" + """ + A product variant is back in stock. + """ PRODUCT_VARIANT_BACK_IN_STOCK - """A product variant stock is updated""" + """ + A product variant stock is updated + """ PRODUCT_VARIANT_STOCK_UPDATED """ 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.""" + """ + A new checkout is created. + """ CHECKOUT_CREATED """ @@ -2279,285 +3262,387 @@ enum WebhookEventTypeAsyncEnum { """ 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.""" + """ + A new fulfillment is created. + """ FULFILLMENT_CREATED - """A fulfillment is cancelled.""" + """ + A fulfillment is cancelled. + """ FULFILLMENT_CANCELED - """A fulfillment is approved.""" + """ + 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.""" + """ + User notification triggered. + """ NOTIFY_USER - """A new page is created.""" + """ + A new page is created. + """ PAGE_CREATED - """A page is updated.""" + """ + A page is updated. + """ PAGE_UPDATED - """A page is deleted.""" + """ + A page is deleted. + """ PAGE_DELETED - """A new page type is created.""" + """ + A new page type is created. + """ PAGE_TYPE_CREATED - """A page type is updated.""" + """ + A page type is updated. + """ PAGE_TYPE_UPDATED - """A page type is deleted.""" + """ + A page type is deleted. + """ PAGE_TYPE_DELETED - """A new permission group is created.""" + """ + A new permission group is created. + """ PERMISSION_GROUP_CREATED - """A permission group is updated.""" + """ + A permission group is updated. + """ PERMISSION_GROUP_UPDATED - """A permission group is deleted.""" + """ + A permission group is deleted. + """ PERMISSION_GROUP_DELETED - """A new shipping price is created.""" + """ + A new shipping price is created. + """ SHIPPING_PRICE_CREATED - """A shipping price is updated.""" + """ + A shipping price is updated. + """ SHIPPING_PRICE_UPDATED - """A shipping price is deleted.""" + """ + A shipping price is deleted. + """ SHIPPING_PRICE_DELETED - """A new shipping zone is created.""" + """ + A new shipping zone is created. + """ SHIPPING_ZONE_CREATED - """A shipping zone is updated.""" + """ + A shipping zone is updated. + """ SHIPPING_ZONE_UPDATED - """A shipping zone is deleted.""" + """ + 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.""" + """ + A new staff user is created. + """ STAFF_CREATED - """A staff user is updated.""" + """ + A staff user is updated. + """ STAFF_UPDATED - """A staff user is deleted.""" + """ + A staff user is deleted. + """ STAFF_DELETED - """An action requested for transaction.""" + """ + 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.""" + """ + A new translation is created. + """ TRANSLATION_CREATED - """A translation is updated.""" + """ + A translation is updated. + """ TRANSLATION_UPDATED - """A new warehouse created.""" + """ + A new warehouse created. + """ WAREHOUSE_CREATED - """A warehouse is updated.""" + """ + A warehouse is updated. + """ WAREHOUSE_UPDATED - """A warehouse is deleted.""" + """ + 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.""" + """ + A new voucher created. + """ VOUCHER_CREATED - """A voucher is updated.""" + """ + A voucher is updated. + """ VOUCHER_UPDATED - """A voucher is deleted.""" + """ + 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.""" + """ + An observability event is created. + """ OBSERVABILITY } -"""Represents app data.""" +""" +Represents app data. +""" type App implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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.""" + """ + List of the app's permissions. + """ permissions: [Permission!] - """The date and time when the app was created.""" + """ + The date and time when the app was created. + """ created: DateTime - """Determine if app will be set active or not.""" + """ + Determine if app will be set active or not. + """ isActive: Boolean - """Name of the app.""" + """ + Name of the app. + """ name: String - """Type of the app.""" + """ + 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.""" + """ + 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.") + """ + 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.""" + """ + URL to details about the privacy policy on the app owner page. + """ dataPrivacyUrl: String - """Homepage of the app.""" + """ + Homepage of the app. + """ homepageUrl: String - """Support page for the app.""" + """ + 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 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.""" + """ + 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 number of the app. + """ version: String - """JWT token used to authenticate by thridparty app.""" + """ + 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.""" + """ + 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. """ privateMetafield(key: String!): String @@ -2567,12 +3652,14 @@ interface ObjectWithMetadata { """ privateMetafields(keys: [String!]): Metadata - """List of public metadata items. Can be accessed without permissions.""" + """ + 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. """ metafield(key: String!): String @@ -2584,10 +3671,14 @@ interface ObjectWithMetadata { } type MetadataItem { - """Key of a metadata item.""" + """ + Key of a metadata item. + """ key: String! - """Value of a metadata item.""" + """ + Value of a metadata item. + """ value: String! } @@ -2604,16 +3695,24 @@ Example: """ scalar Metadata -"""Represents a permission object in a friendly form.""" +""" +Represents a permission object in a friendly form. +""" type Permission { - """Internal code for permission.""" + """ + Internal code for permission. + """ code: PermissionEnum! - """Describe action(s) allowed to do by permission.""" + """ + Describe action(s) allowed to do by permission. + """ name: String! } -"""An enumeration.""" +""" +An enumeration. +""" enum PermissionEnum { MANAGE_USERS MANAGE_STAFF @@ -2647,7 +3746,9 @@ value as specified by """ scalar DateTime -"""Enum determining type of your App.""" +""" +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 @@ -2660,42 +3761,64 @@ enum AppTypeEnum { THIRDPARTY } -"""Represents token data.""" +""" +Represents token data. +""" type AppToken implements Node { id: ID! - """Name of the authenticated token.""" + """ + Name of the authenticated token. + """ name: String - """Last 4 characters of the token.""" + """ + Last 4 characters of the token. + """ authToken: String } -"""Represents app data.""" +""" +Represents app data. +""" type AppExtension implements Node { id: ID! - """List of the app extension's permissions.""" + """ + List of the app extension's permissions. + """ permissions: [Permission!]! - """Label of the extension to show in the dashboard.""" + """ + Label of the extension to show in the dashboard. + """ label: String! - """URL of a view where extension's iframe is placed.""" + """ + URL of a view where extension's iframe is placed. + """ url: String! - """Place where given extension will be mounted.""" + """ + Place where given extension will be mounted. + """ mount: AppExtensionMountEnum! - """Type of way how app extension will be opened.""" + """ + Type of way how app extension will be opened. + """ target: AppExtensionTargetEnum! app: App! - """JWT token used to authenticate by thridparty app extension.""" + """ + JWT token used to authenticate by thridparty app extension. + """ accessToken: String } -"""All places where app extension can be mounted.""" +""" +All places where app extension can be mounted. +""" enum AppExtensionMountEnum { CUSTOMER_OVERVIEW_CREATE CUSTOMER_OVERVIEW_MORE_ACTIONS @@ -2726,11 +3849,15 @@ enum AppExtensionTargetEnum { } type EventDeliveryCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [EventDeliveryCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } @@ -2738,57 +3865,89 @@ type EventDeliveryCountableConnection { The Relay compliant `PageInfo` type, containing data necessary to paginate this connection. """ type PageInfo { - """When paginating forwards, are there more items?""" + """ + When paginating forwards, are there more items? + """ hasNextPage: Boolean! - """When paginating backwards, are there more items?""" + """ + When paginating backwards, are there more items? + """ hasPreviousPage: Boolean! - """When paginating backwards, the cursor to continue.""" + """ + When paginating backwards, the cursor to continue. + """ startCursor: String - """When paginating forwards, the cursor to continue.""" + """ + When paginating forwards, the cursor to continue. + """ endCursor: String } type EventDeliveryCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: EventDelivery! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } -"""Event delivery.""" +""" +Event delivery. +""" type EventDelivery implements Node { id: ID! createdAt: DateTime! - """Event delivery status.""" + """ + Event delivery status. + """ status: EventDeliveryStatusEnum! - """Webhook event type.""" + """ + Webhook event type. + """ eventType: WebhookEventTypeEnum! - """Event delivery attempts.""" + """ + Event delivery attempts. + """ attempts( - """Event delivery sorter""" + """ + Event delivery sorter + """ sortBy: EventDeliveryAttemptSortingInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): EventDeliveryAttemptCountableConnection - """Event payload.""" + """ + Event payload. + """ payload: String } @@ -2799,82 +3958,124 @@ enum EventDeliveryStatusEnum { } type EventDeliveryAttemptCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [EventDeliveryAttemptCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type EventDeliveryAttemptCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: EventDeliveryAttempt! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } -"""Event delivery attempts.""" +""" +Event delivery attempts. +""" type EventDeliveryAttempt implements Node { id: ID! - """Event delivery creation date and time.""" + """ + Event delivery creation date and time. + """ createdAt: DateTime! - """Task id for delivery attempt.""" + """ + Task id for delivery attempt. + """ taskId: String - """Delivery attempt duration.""" + """ + Delivery attempt duration. + """ duration: Float - """Delivery attempt response content.""" + """ + Delivery attempt response content. + """ response: String - """Response headers for delivery attempt.""" + """ + Response headers for delivery attempt. + """ responseHeaders: String - """Delivery attempt response status code.""" + """ + Delivery attempt response status code. + """ responseStatusCode: Int - """Request headers for delivery attempt.""" + """ + Request headers for delivery attempt. + """ requestHeaders: String - """Event delivery status.""" + """ + Event delivery status. + """ status: EventDeliveryStatusEnum! } input EventDeliveryAttemptSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort attempts by the selected field.""" + """ + Sort attempts by the selected field. + """ field: EventDeliveryAttemptSortField! } enum OrderDirection { - """Specifies an ascending sort order.""" + """ + Specifies an ascending sort order. + """ ASC - """Specifies a descending sort order.""" + """ + Specifies a descending sort order. + """ DESC } enum EventDeliveryAttemptSortField { - """Sort event delivery attempts by created at.""" + """ + Sort event delivery attempts by created at. + """ CREATED_AT } input EventDeliverySortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort deliveries by the selected field.""" + """ + Sort deliveries by the selected field. + """ field: EventDeliverySortField! } enum EventDeliverySortField { - """Sort event deliveries by created at.""" + """ + Sort event deliveries by created at. + """ CREATED_AT } @@ -2885,7 +4086,9 @@ input EventDeliveryFilterInput { scalar JSONString -"""An enumeration.""" +""" +An enumeration. +""" enum WebhookSampleEventTypeEnum { ADDRESS_CREATED ADDRESS_UPDATED @@ -2996,52 +4199,58 @@ enum WebhookSampleEventTypeEnum { OBSERVABILITY } -"""Represents warehouse.""" +""" +Represents warehouse. +""" type Warehouse implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -3051,97 +4260,112 @@ type Warehouse implements Node & ObjectWithMetadata { isPrivate: Boolean! address: Address! - """Warehouse company name.""" - companyName: String! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `Address.companyName` instead.") + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): ShippingZoneCountableConnection! """ - External ID of this warehouse. - + External ID of this warehouse. + Added in Saleor 3.10. """ externalReference: String } -"""Represents user address data.""" +""" +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 @@ -3154,51 +4378,82 @@ type Address implements Node & ObjectWithMetadata { cityArea: String! postalCode: String! - """Shop's default country.""" + """ + Shop's default country. + """ country: CountryDisplay! countryArea: String! phone: String - """Address is user's default shipping address.""" + """ + Address is user's default shipping address. + """ isDefaultShippingAddress: Boolean - """Address is user's default billing address.""" + """ + Address is user's default billing address. + """ isDefaultBillingAddress: Boolean } type CountryDisplay { - """Country code.""" + """ + Country code. + """ code: String! - """Country name.""" + """ + 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.") + """ + 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.""" +""" +Represents a VAT rate for a country. +""" type VAT { - """Country code.""" + """ + Country code. + """ countryCode: String! - """Standard VAT rate in percent.""" + """ + Standard VAT rate in percent. + """ standardRate: Float - """Country's VAT rate exceptions for specific types of goods.""" + """ + Country's VAT rate exceptions for specific types of goods. + """ reducedRates: [ReducedRate!]! } -"""Represents a reduced VAT rate for a particular type of goods.""" +""" +Represents a reduced VAT rate for a particular type of goods. +""" type ReducedRate { - """Reduced VAT rate in percent.""" + """ + Reduced VAT rate in percent. + """ rate: Float! - """A type of goods.""" + """ + A type of goods. + """ rateType: String! } -"""An enumeration.""" +""" +An enumeration. +""" enum WarehouseClickAndCollectOptionEnum { DISABLED LOCAL @@ -3206,19 +4461,27 @@ enum WarehouseClickAndCollectOptionEnum { } type ShippingZoneCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [ShippingZoneCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type ShippingZoneCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: ShippingZone! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -3228,58 +4491,66 @@ Represents a shipping zone in the shop. Zones are the concept used only for grou type ShippingZone implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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.""" + """ + Lowest and highest prices for the shipping. + """ priceRange: MoneyRange - """List of countries available for the method.""" + """ + List of countries available for the method. + """ countries: [CountryDisplay!]! """ @@ -3287,31 +4558,49 @@ type ShippingZone implements Node & ObjectWithMetadata { """ shippingMethods: [ShippingMethodType!] - """List of warehouses for shipping zone.""" + """ + List of warehouses for shipping zone. + """ warehouses: [Warehouse!]! - """List of channels for shipping zone.""" + """ + List of channels for shipping zone. + """ channels: [Channel!]! - """Description of a shipping zone.""" + """ + Description of a shipping zone. + """ description: String } -"""Represents a range of amounts of money.""" +""" +Represents a range of amounts of money. +""" type MoneyRange { - """Lower bound of a price range.""" + """ + Lower bound of a price range. + """ start: Money - """Upper bound of a price range.""" + """ + Upper bound of a price range. + """ stop: Money } -"""Represents amount of money in specific currency.""" +""" +Represents amount of money in specific currency. +""" type Money { - """Currency code.""" + """ + Currency code. + """ currency: String! - """Amount of money.""" + """ + Amount of money. + """ amount: Float! } @@ -3319,85 +4608,103 @@ type Money { 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.""" + """ + Shipping method ID. + """ id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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.""" + """ + 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 of the shipping method. + """ type: ShippingMethodTypeEnum - """Returns translated shipping method fields for the given language code.""" + """ + Returns translated shipping method fields for the given language code. + """ translation( - """A language code to return the translation for shipping method.""" + """ + 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).""" + """ + The price of the cheapest variant (including discounts). + """ maximumOrderPrice: Money - """The price of the cheapest variant (including discounts).""" + """ + The price of the cheapest variant (including discounts). + """ minimumOrderPrice: Money """ @@ -3407,44 +4714,62 @@ type ShippingMethodType implements Node & ObjectWithMetadata { """ 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): ProductCountableConnection - """Minimum order weight to use this shipping method.""" + """ + Minimum order weight to use this shipping method. + """ minimumOrderWeight: Weight - """Maximum order weight to use this shipping method.""" + """ + Maximum order weight to use this shipping method. + """ maximumOrderWeight: Weight - """Maximum number of days for delivery.""" + """ + Maximum number of days for delivery. + """ maximumDeliveryDays: Int - """Minimal number of days for delivery.""" + """ + 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.""" +""" +An enumeration. +""" enum ShippingMethodTypeEnum { PRICE WEIGHT @@ -3453,27 +4778,35 @@ enum ShippingMethodTypeEnum { type ShippingMethodTranslation implements Node { id: ID! - """Translation language.""" + """ + 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.""" + """ + ISO 639 representation of the language name. + """ code: LanguageCodeEnum! - """Full name of the language.""" + """ + Full name of the language. + """ language: String! } -"""An enumeration.""" +""" +An enumeration. +""" enum LanguageCodeEnum { AF AF_NA @@ -4256,7 +5589,9 @@ enum LanguageCodeEnum { ZU_ZA } -"""Represents shipping method channel listing.""" +""" +Represents shipping method channel listing. +""" type ShippingMethodChannelListing implements Node { id: ID! channel: Channel! @@ -4265,86 +5600,90 @@ type ShippingMethodChannelListing implements Node { price: Money } -"""Represents channel.""" +""" +Represents channel. +""" type Channel implements Node { id: ID! - """Slug of the channel.""" + """ + 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! @@ -4358,14 +5697,20 @@ 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.""" + """ + The country code. + """ countryCode: CountryCode! - """List of available shipping methods.""" + """ + List of available shipping methods. + """ shippingMethods: [ShippingMethod!] } -"""An enumeration.""" +""" +An enumeration. +""" enum CountryCode { AF AX @@ -4623,15 +5968,19 @@ enum CountryCode { 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.""" + """ + Unique ID of ShippingMethod available for Order. + """ id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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. """ privateMetafield(key: String!): String @@ -4641,12 +5990,14 @@ type ShippingMethod implements Node & ObjectWithMetadata { """ privateMetafields(keys: [String!]): Metadata - """List of public metadata items. Can be accessed without permissions.""" + """ + 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. """ metafield(key: String!): String @@ -4656,63 +6007,97 @@ type ShippingMethod implements Node & ObjectWithMetadata { """ metafields(keys: [String!]): Metadata - """Type of the shipping method.""" + """ + Type of the shipping method. + """ type: ShippingMethodTypeEnum @deprecated(reason: "This field will be removed in Saleor 4.0.") - """Shipping method name.""" + """ + 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.""" + """ + Maximum delivery days for this shipping method. + """ maximumDeliveryDays: Int - """Minimum delivery days for this shipping method.""" + """ + Minimum delivery days for this shipping method. + """ minimumDeliveryDays: Int - """Maximum order weight for this shipping method.""" + """ + 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.""" + """ + 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.""" + """ + Returns translated shipping method fields for the given language code. + """ translation( - """A language code to return the translation for shipping method.""" + """ + A language code to return the translation for shipping method. + """ languageCode: LanguageCodeEnum! ): ShippingMethodTranslation - """The price of selected shipping method.""" + """ + The price of selected shipping method. + """ price: Money! - """Maximum order price for this shipping method.""" + """ + Maximum order price for this shipping method. + """ maximumOrderPrice: Money - """Minimal order price for this shipping method.""" + """ + Minimal order price for this shipping method. + """ minimumOrderPrice: Money - """Describes if this shipping method is active and can be selected.""" + """ + Describes if this shipping method is active and can be selected. + """ active: Boolean! - """Message connected to this shipping method.""" + """ + Message connected to this shipping method. + """ message: String } -"""Represents weight value in a specific weight unit.""" +""" +Represents weight value in a specific weight unit. +""" type Weight { - """Weight unit.""" + """ + Weight unit. + """ unit: WeightUnitsEnum! - """Weight value.""" + """ + Weight value. + """ value: Float! } -"""An enumeration.""" +""" +An enumeration. +""" enum WeightUnitsEnum { G LB @@ -4748,90 +6133,116 @@ enum AllocationStrategyEnum { PRIORITIZE_HIGH_STOCK } -"""Represents shipping method postal code rule.""" +""" +Represents shipping method postal code rule. +""" type ShippingMethodPostalCodeRule implements Node { - """The ID of the object.""" + """ + The ID of the object. + """ id: ID! - """Start address range.""" + """ + Start address range. + """ start: String - """End address range.""" + """ + End address range. + """ end: String - """Inclusion type of the postal code rule.""" + """ + Inclusion type of the postal code rule. + """ inclusionType: PostalCodeRuleInclusionTypeEnum } -"""An enumeration.""" +""" +An enumeration. +""" enum PostalCodeRuleInclusionTypeEnum { INCLUDE EXCLUDE } type ProductCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [ProductCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type ProductCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: Product! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } -"""Represents an individual item for sale in the storefront.""" +""" +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.""" + """ + 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.""" + """ + 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 @@ -4841,7 +6252,7 @@ type Product implements Node & ObjectWithMetadata { """ Description of the product. - + Rich text format. For reference see https://editorjs.io/ """ description: JSONString @@ -4850,7 +6261,10 @@ type Product implements Node & ObjectWithMetadata { 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.") + 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 @@ -4862,10 +6276,13 @@ type Product implements Node & ObjectWithMetadata { """ 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.") + 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. @@ -4874,9 +6291,9 @@ type Product implements Node & ObjectWithMetadata { """ 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 @@ -4892,7 +6309,9 @@ type Product implements Node & ObjectWithMetadata { address: AddressInput ): ProductPricingInfo - """Whether the product is in stock and visible or not.""" + """ + 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. @@ -4900,102 +6319,143 @@ type Product implements Node & ObjectWithMetadata { 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.") + """ + 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 of the attribute + """ slug: String! ): SelectedAttribute - """List of attributes assigned to this product.""" + """ + 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.""" + """ + Get a single product media by ID. + """ mediaById( - """ID of a product media.""" + """ + ID of a product media. + """ id: ID ): ProductMedia - """Get a single product image by ID.""" + """ + Get a single product image by ID. + """ imageById( - """ID of a product image.""" + """ + ID of a product image. + """ id: ID - ): ProductImage @deprecated(reason: "This field will be removed in Saleor 4.0. Use the `mediaById` field instead.") + ): 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. - + Get a single variant by SKU or ID. + Added in Saleor 3.9. """ variant( - """ID of the variant.""" + """ + ID of the variant. + """ id: ID - """SKU of the variant.""" + """ + SKU of the variant. + """ sku: String - ): ProductVariant @deprecated(reason: "This field will be removed in Saleor 4.0. Use top-level `variant` query.") + ): ProductVariant + @deprecated(reason: "This field will be removed in Saleor 4.0. Use top-level `variant` query.") """ 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.""" + """ + List of media for the product. + """ media( """ - Sort 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 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.""" + """ + Returns translated product fields for the given language code. + """ translation( - """A language code to return the translation for product.""" + """ + 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. + """ + 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.""" + """ + Date when product is available for purchase. + """ availableForPurchaseAt: DateTime - """Whether the product is available for purchase.""" + """ + 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. - + External ID of this product. + Added in Saleor 3.10. """ externalReference: String @@ -5007,48 +6467,52 @@ Represents a type of product. It defines what attributes are available to produc type ProductType implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -5059,91 +6523,138 @@ type ProductType implements Node & ObjectWithMetadata { isDigital: Boolean! weight: Weight - """The product type kind.""" + """ + The product type kind. + """ kind: ProductTypeKindEnum! - """List of products of this type.""" + """ + List of products of this type. + """ products( - """Slug of a channel for which the data should be returned.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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.") + ): 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.") + """ + 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.""" + """ + Variant attributes of that product type. + """ variantAttributes( - """Define scope of returned attributes.""" + """ + Define scope of returned attributes. + """ variantSelection: VariantAttributeScope - ): [Attribute!] @deprecated(reason: "This field will be removed in Saleor 4.0. Use `assignedVariantAttributes` instead.") + ): [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.""" + """ + Define scope of returned attributes. + """ variantSelection: VariantAttributeScope ): [AssignedVariantAttribute!] - """Product attributes of that product type.""" + """ + 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 where: AttributeWhereInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): AttributeCountableConnection } -"""An enumeration.""" +""" +An enumeration. +""" enum ProductTypeKindEnum { NORMAL GIFT_CARD } -"""Representation of tax types fetched from tax gateway.""" +""" +Representation of tax types fetched from tax gateway. +""" type TaxType { - """Description of the tax type.""" + """ + Description of the tax type. + """ description: String - """External tax code used to identify given tax group.""" + """ + External tax code used to identify given tax group. + """ taxCode: String } @@ -5155,59 +6666,69 @@ 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.""" + """ + The ID of the object. + """ id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 of the tax class. + """ name: String! - """Country-specific tax rates for this tax class.""" + """ + Country-specific tax rates for this tax class. + """ countries: [TaxClassCountryRate!]! } @@ -5219,13 +6740,19 @@ 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 in which this tax rate applies. + """ country: CountryDisplay! - """Tax rate value.""" + """ + Tax rate value. + """ rate: Float! - """Related tax class.""" + """ + Related tax class. + """ taxClass: TaxClass } @@ -5235,88 +6762,118 @@ Custom attribute of a product. Attributes can be assigned to products and varian type Attribute implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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.""" + """ + The input type to use for entering attribute values in the dashboard. + """ inputType: AttributeInputTypeEnum - """The entity type which can be used as a reference.""" + """ + The entity type which can be used as a reference. + """ entityType: AttributeEntityTypeEnum - """Name of an attribute displayed in the interface.""" + """ + Name of an attribute displayed in the interface. + """ name: String - """Internal representation of an attribute name.""" + """ + Internal representation of an attribute name. + """ slug: String - """The attribute type.""" + """ + The attribute type. + """ type: AttributeTypeEnum - """The unit of attribute values.""" + """ + The unit of attribute values. + """ unit: MeasurementUnitsEnum - """List of attribute's values.""" + """ + List of attribute's values. + """ choices( - """Sort attribute choices.""" + """ + Sort attribute choices. + """ sortBy: AttributeChoicesSortingInput - """Filtering options for attribute choices.""" + """ + Filtering options for attribute choices. + """ filter: AttributeValueFilterInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): AttributeValueCountableConnection @@ -5350,50 +6907,74 @@ type Attribute implements Node & ObjectWithMetadata { """ storefrontSearchPosition: Int! @deprecated(reason: "This field will be removed in Saleor 4.0.") - """Returns translated attribute fields for the given language code.""" + """ + Returns translated attribute fields for the given language code. + """ translation( - """A language code to return the translation for attribute.""" + """ + A language code to return the translation for attribute. + """ languageCode: LanguageCodeEnum! ): AttributeTranslation - """Flag indicating that attribute has predefined choices.""" + """ + Flag indicating that attribute has predefined choices. + """ withChoices: Boolean! productTypes( - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): ProductTypeCountableConnection! productVariantTypes( - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): ProductTypeCountableConnection! """ - External ID of this attribute. - + External ID of this attribute. + Added in Saleor 3.10. """ externalReference: String } -"""An enumeration.""" +""" +An enumeration. +""" enum AttributeInputTypeEnum { DROPDOWN MULTISELECT @@ -5408,20 +6989,26 @@ enum AttributeInputTypeEnum { DATE_TIME } -"""An enumeration.""" +""" +An enumeration. +""" enum AttributeEntityTypeEnum { PAGE PRODUCT PRODUCT_VARIANT } -"""An enumeration.""" +""" +An enumeration. +""" enum AttributeTypeEnum { PRODUCT_TYPE PAGE_TYPE } -"""An enumeration.""" +""" +An enumeration. +""" enum MeasurementUnitsEnum { CM M @@ -5456,30 +7043,44 @@ enum MeasurementUnitsEnum { } type AttributeValueCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [AttributeValueCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type AttributeValueCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: AttributeValue! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } -"""Represents a value of an attribute.""" +""" +Represents a value of an attribute. +""" type AttributeValue implements Node { id: ID! - """Name of a value displayed in the interface.""" + """ + Name of a value displayed in the interface. + """ name: String - """Internal representation of a value (unique per attribute).""" + """ + Internal representation of a value (unique per attribute). + """ slug: String """ @@ -5487,24 +7088,34 @@ type AttributeValue implements Node { """ value: String - """Returns translated attribute value fields for the given language code.""" + """ + Returns translated attribute value fields for the given language code. + """ translation( - """A language code to return the translation for attribute value.""" + """ + 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.""" + """ + The input type to use for entering attribute values in the dashboard. + """ inputType: AttributeInputTypeEnum - """The ID of the attribute reference.""" + """ + The ID of the attribute reference. + """ reference: ID - """Represents file URL and content type (if attribute value is a file).""" + """ + 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 @@ -5514,18 +7125,24 @@ type AttributeValue implements Node { """ plainText: String - """Represents the boolean value of the attribute value.""" + """ + Represents the boolean value of the attribute value. + """ boolean: Boolean - """Represents the date value of the attribute value.""" + """ + Represents the date value of the attribute value. + """ date: Date - """Represents the date/time value of the attribute value.""" + """ + Represents the date/time value of the attribute value. + """ dateTime: DateTime """ - External ID of this attribute value. - + External ID of this attribute value. + Added in Saleor 3.10. """ externalReference: String @@ -5534,26 +7151,34 @@ type AttributeValue implements Node { type AttributeValueTranslation implements Node { id: ID! - """Translation language.""" + """ + Translation language. + """ language: LanguageDisplay! name: String! """ Attribute value. - + Rich text format. For reference see https://editorjs.io/ """ richText: JSONString - """Attribute plain text value.""" + """ + Attribute plain text value. + """ plainText: String } type File { - """The URL of the file.""" + """ + The URL of the file. + """ url: String! - """Content type of the file.""" + """ + Content type of the file. + """ contentType: String } @@ -5565,18 +7190,26 @@ value as specified by scalar Date input AttributeChoicesSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort attribute choices by the selected field.""" + """ + Sort attribute choices by the selected field. + """ field: AttributeChoicesSortField! } enum AttributeChoicesSortField { - """Sort attribute choice by name.""" + """ + Sort attribute choice by name. + """ NAME - """Sort attribute choice by slug.""" + """ + Sort attribute choice by slug. + """ SLUG } @@ -5588,25 +7221,35 @@ input AttributeValueFilterInput { type AttributeTranslation implements Node { id: ID! - """Translation language.""" + """ + Translation language. + """ language: LanguageDisplay! name: String! } type ProductTypeCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [ProductTypeCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type ProductTypeCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: ProductType! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -5622,7 +7265,9 @@ Represents assigned attribute to variant with variant selection attached. Added in Saleor 3.1. """ type AssignedVariantAttribute { - """Attribute assigned to variant.""" + """ + Attribute assigned to variant. + """ attribute: Attribute! """ @@ -5632,19 +7277,27 @@ type AssignedVariantAttribute { } type AttributeCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [AttributeCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type AttributeCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: Attribute! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -5664,18 +7317,22 @@ input AttributeFilterInput { slugs: [String!] """ - Specifies the channel by which the data should be filtered. - + 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 of a metadata item. + """ key: String! - """Value of a metadata item.""" + """ + Value of a metadata item. + """ value: String } @@ -5702,10 +7359,14 @@ input AttributeWhereInput { inCollection: ID inCategory: ID - """List of conditions that must be met.""" + """ + List of conditions that must be met. + """ AND: [AttributeWhereInput!] - """A list of conditions of which at least one must be met.""" + """ + A list of conditions of which at least one must be met. + """ OR: [AttributeWhereInput!] } @@ -5717,42 +7378,62 @@ Added in Saleor 3.11. Note: this API is currently in Feature Preview and can be subject to changes at later point. """ input StringFilterInput { - """The value equal to.""" + """ + The value equal to. + """ eq: String - """The value included in.""" + """ + The value included in. + """ oneOf: [String!] } input AttributeInputTypeEnumFilterInput { - """The value equal to.""" + """ + The value equal to. + """ eq: AttributeInputTypeEnum - """The value included in.""" + """ + The value included in. + """ oneOf: [AttributeInputTypeEnum!] } input AttributeEntityTypeEnumFilterInput { - """The value equal to.""" + """ + The value equal to. + """ eq: AttributeEntityTypeEnum - """The value included in.""" + """ + The value included in. + """ oneOf: [AttributeEntityTypeEnum!] } input AttributeTypeEnumFilterInput { - """The value equal to.""" + """ + The value equal to. + """ eq: AttributeTypeEnum - """The value included in.""" + """ + The value included in. + """ oneOf: [AttributeTypeEnum!] } input MeasurementUnitsEnumFilterInput { - """The value equal to.""" + """ + The value equal to. + """ eq: MeasurementUnitsEnum - """The value included in.""" + """ + The value included in. + """ oneOf: [MeasurementUnitsEnum!] } @@ -5762,48 +7443,52 @@ Represents a single category of products. Categories allow to organize products type Category implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -5813,7 +7498,7 @@ type Category implements Node & ObjectWithMetadata { """ Description of the category. - + Rich text format. For reference see https://editorjs.io/ """ description: JSONString @@ -5823,23 +7508,36 @@ type Category implements Node & ObjectWithMetadata { """ 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.") + descriptionJson: JSONString + @deprecated( + reason: "This field will be removed in Saleor 4.0. Use the `description` field instead." + ) - """List of ancestors of the category.""" + """ + List of ancestors of the category. + """ ancestors( - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): CategoryCountableConnection @@ -5849,46 +7547,66 @@ type Category implements Node & ObjectWithMetadata { 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.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): ProductCountableConnection - """List of children of the category.""" + """ + List of children of the category. + """ children( - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): CategoryCountableConnection backgroundImage( @@ -5899,35 +7617,47 @@ type Category implements Node & ObjectWithMetadata { """ 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.""" + """ + Returns translated category fields for the given language code. + """ translation( - """A language code to return the translation for category.""" + """ + A language code to return the translation for category. + """ languageCode: LanguageCodeEnum! ): CategoryTranslation } type CategoryCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [CategoryCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type CategoryCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: Category! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -5938,73 +7668,89 @@ input ProductFilterInput { hasCategory: Boolean attributes: [AttributeInput!] - """Filter by variants having specific stock status.""" + """ + Filter by variants having specific stock status. + """ stockAvailability: StockAvailability stocks: ProductStockFilterInput search: String metadata: [MetadataFilter!] """ - Filter by the publication date. - + Filter by the publication date. + Added in Saleor 3.8. """ publishedFrom: DateTime """ - Filter by availability for purchase. - + Filter by availability for purchase. + Added in Saleor 3.8. """ isAvailable: Boolean """ - Filter by the date of availability for purchase. - + Filter by the date of availability for purchase. + Added in Saleor 3.8. """ availableFrom: DateTime """ - Filter by visibility in product listings. - + Filter by visibility in product listings. + Added in Saleor 3.8. """ isVisibleInListing: Boolean price: PriceRangeInput - """Filter by the lowest variant price after discounts.""" + """ + Filter by the lowest variant price after discounts. + """ minimalPrice: PriceRangeInput - """Filter by when was the most recent update.""" + """ + Filter by when was the most recent update. + """ updatedAt: DateTimeRangeInput productTypes: [ID!] - """Filter on whether product is a gift card or not.""" + """ + 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. - + 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.""" + """ + Internal representation of an attribute name. + """ slug: String! - """Internal representation of a value (unique per attribute).""" + """ + Internal representation of a value (unique per attribute). + """ values: [String!] - """The range that the returned values should be in.""" + """ + The range that the returned values should be in. + """ valuesRange: IntRangeInput - """The date/time range that the returned values should be in.""" + """ + The date/time range that the returned values should be in. + """ dateTime: DateTimeRangeInput """ @@ -6012,31 +7758,45 @@ input AttributeInput { """ date: DateRangeInput - """The boolean value of the attribute.""" + """ + The boolean value of the attribute. + """ boolean: Boolean } input IntRangeInput { - """Value greater than or equal to.""" + """ + Value greater than or equal to. + """ gte: Int - """Value less than or equal to.""" + """ + Value less than or equal to. + """ lte: Int } input DateTimeRangeInput { - """Start date.""" + """ + Start date. + """ gte: DateTime - """End date.""" + """ + End date. + """ lte: DateTime } input DateRangeInput { - """Start date.""" + """ + Start date. + """ gte: Date - """End date.""" + """ + End date. + """ lte: Date } @@ -6051,20 +7811,26 @@ input ProductStockFilterInput { } input PriceRangeInput { - """Price greater than or equal to.""" + """ + Price greater than or equal to. + """ gte: Float - """Price less than or equal to.""" + """ + Price less than or equal to. + """ lte: Float } input ProductOrder { - """Specifies the direction in which to sort products.""" + """ + 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 @@ -6075,12 +7841,16 @@ input ProductOrder { """ attributeId: ID - """Sort products by the selected field.""" + """ + Sort products by the selected field. + """ field: ProductOrderField } enum ProductOrderField { - """Sort products by name.""" + """ + Sort products by name. + """ NAME """ @@ -6090,79 +7860,97 @@ enum ProductOrderField { """ 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.""" + """ + Sort products by update date. + """ LAST_MODIFIED - """Sort products by update date.""" + """ + Sort products by update date. + """ DATE - """Sort products by type.""" + """ + 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.""" + """ + 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.""" + """ + Sort products by rating. + """ RATING """ Sort products by creation date. - + Added in Saleor 3.8. """ CREATED_AT } -"""Represents an image.""" +""" +Represents an image. +""" type Image { - """The URL of the image.""" + """ + The URL of the image. + """ url: String! - """Alt text for an image.""" + """ + Alt text for an image. + """ alt: String } -"""An enumeration.""" +""" +An enumeration. +""" enum ThumbnailFormatEnum { WEBP } @@ -6170,7 +7958,9 @@ enum ThumbnailFormatEnum { type CategoryTranslation implements Node { id: ID! - """Translation language.""" + """ + Translation language. + """ language: LanguageDisplay! seoTitle: String seoDescription: String @@ -6178,65 +7968,74 @@ 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.") + 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.""" +""" +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.""" + """ + 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.""" + """ + 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 @@ -6254,7 +8053,7 @@ type ProductVariant implements Node & ObjectWithMetadata { """ List of price information in channels for the product. - + Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_STAFF_USER. """ channelListings: [ProductVariantChannelListing!] @@ -6269,51 +8068,66 @@ type ProductVariant implements Node & ObjectWithMetadata { address: AddressInput ): VariantPricingInfo - """List of attributes assigned to this variant.""" + """ + List of attributes assigned to this variant. + """ attributes( - """Define scope of returned attributes.""" + """ + Define scope of returned attributes. + """ variantSelection: VariantAttributeScope ): [SelectedAttribute!]! - """Gross margin percentage value.""" + """ + 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 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.""" + """ + List of media for the product variant. + """ media: [ProductMedia!] - """Returns translated product variant fields for the given language code.""" + """ + Returns translated product variant fields for the given language code. + """ translation( - """A language code to return the translation for product variant.""" + """ + 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( @@ -6323,8 +8137,8 @@ type ProductVariant implements Node & ObjectWithMetadata { address: AddressInput """ - Two-letter ISO 3166-1 country code. - + Two-letter ISO 3166-1 country code. + DEPRECATED: this field will be removed in Saleor 4.0. Use `address` argument instead. """ countryCode: CountryCode @@ -6340,8 +8154,8 @@ type ProductVariant implements Node & ObjectWithMetadata { 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. - + 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 @@ -6349,9 +8163,9 @@ type ProductVariant implements Node & ObjectWithMetadata { """ 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 @@ -6359,66 +8173,90 @@ type ProductVariant implements Node & ObjectWithMetadata { updatedAt: DateTime! """ - External ID of this product. - + External ID of this product. + Added in Saleor 3.10. """ externalReference: String } -"""Represents product varaint channel listing.""" +""" +Represents product varaint channel listing. +""" type ProductVariantChannelListing implements Node { id: ID! channel: Channel! price: Money - """Cost price of the variant.""" + """ + 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.""" +""" +Represents preorder variant data for channel. +""" type PreorderThreshold { - """Preorder threshold for product variant in this channel.""" + """ + Preorder threshold for product variant in this channel. + """ quantity: Int - """Number of sold product variant in this channel.""" + """ + Number of sold product variant in this channel. + """ soldUnits: Int! } -"""Represents availability of a variant in the storefront.""" +""" +Represents availability of a variant in the storefront. +""" type VariantPricingInfo { - """Whether it is in sale or not.""" + """ + Whether it is in sale or not. + """ onSale: Boolean - """The discount amount if in sale (null otherwise).""" + """ + The discount amount if in sale (null otherwise). + """ discount: TaxedMoney - """The discount amount in the local currency.""" + """ + The discount amount in the local currency. + """ discountLocalCurrency: TaxedMoney - """The price, with any discount subtracted.""" + """ + The price, with any discount subtracted. + """ price: TaxedMoney - """The price without any discount.""" + """ + The price without any discount. + """ priceUndiscounted: TaxedMoney - """The discounted price in the local currency.""" + """ + The discounted price in the local currency. + """ priceLocalCurrency: TaxedMoney } @@ -6426,60 +8264,96 @@ type VariantPricingInfo { 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 code. + """ currency: String! - """Amount of money including taxes.""" + """ + Amount of money including taxes. + """ gross: Money! - """Amount of money without taxes.""" + """ + Amount of money without taxes. + """ net: Money! - """Amount of taxes.""" + """ + Amount of taxes. + """ tax: Money! } input AddressInput { - """Given name.""" + """ + Given name. + """ firstName: String - """Family name.""" + """ + Family name. + """ lastName: String - """Company or organization.""" + """ + Company or organization. + """ companyName: String - """Address.""" + """ + Address. + """ streetAddress1: String - """Address.""" + """ + Address. + """ streetAddress2: String - """City.""" + """ + City. + """ city: String - """District.""" + """ + District. + """ cityArea: String - """Postal code.""" + """ + Postal code. + """ postalCode: String - """Country.""" + """ + Country. + """ country: CountryCode - """State or province.""" + """ + State or province. + """ countryArea: String - """Phone number.""" + """ + Phone number. + """ phone: String } -"""Represents a custom attribute.""" +""" +Represents a custom attribute. +""" type SelectedAttribute { - """Name of an attribute displayed in the interface.""" + """ + Name of an attribute displayed in the interface. + """ attribute: Attribute! - """Values of an attribute.""" + """ + Values of an attribute. + """ values: [AttributeValue!]! } @@ -6488,12 +8362,18 @@ enum ReportingPeriod { THIS_MONTH } -"""Represents a product image.""" +""" +Represents a product image. +""" type ProductImage { - """The ID of the image.""" + """ + The ID of the image. + """ id: ID! - """The alt text of the image.""" + """ + The alt text of the image. + """ alt: String """ @@ -6508,16 +8388,18 @@ type ProductImage { """ 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.""" +""" +Represents a product media. +""" type ProductMedia implements Node { id: ID! sortOrder: Int @@ -6532,16 +8414,18 @@ type ProductMedia implements Node { """ 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.""" +""" +An enumeration. +""" enum ProductMediaType { IMAGE VIDEO @@ -6550,7 +8434,9 @@ enum ProductMediaType { type ProductVariantTranslation implements Node { id: ID! - """Translation language.""" + """ + Translation language. + """ language: LanguageDisplay! name: String! } @@ -6558,48 +8444,52 @@ type ProductVariantTranslation implements Node { type DigitalContent implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -6609,10 +8499,14 @@ type DigitalContent implements Node & ObjectWithMetadata { maxDownloads: Int urlValidDays: Int - """List of URLs for the digital variant.""" + """ + List of URLs for the digital variant. + """ urls: [DigitalContentUrl!] - """Product variant assigned to digital content.""" + """ + Product variant assigned to digital content. + """ productVariant: ProductVariant! } @@ -6622,16 +8516,22 @@ type DigitalContentUrl implements Node { created: DateTime! downloadNum: Int! - """URL for digital content.""" + """ + URL for digital content. + """ url: String - """UUID of digital content.""" + """ + UUID of digital content. + """ token: UUID! } scalar UUID -"""Represents stock.""" +""" +Represents stock. +""" type Stock implements Node { id: ID! warehouse: Warehouse! @@ -6639,61 +8539,77 @@ type Stock implements Node { """ 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.""" +""" +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.""" + """ + Preorder end date. + """ endDate: DateTime } -"""Represents availability of a product in the storefront.""" +""" +Represents availability of a product in the storefront. +""" type ProductPricingInfo { - """Whether it is in sale or not.""" + """ + Whether it is in sale or not. + """ onSale: Boolean - """The discount amount if in sale (null otherwise).""" + """ + The discount amount if in sale (null otherwise). + """ discount: TaxedMoney - """The discount amount in the local currency.""" + """ + The discount amount in the local currency. + """ discountLocalCurrency: TaxedMoney - """The discounted price range of the product variants.""" + """ + The discounted price range of the product variants. + """ priceRange: TaxedMoneyRange - """The undiscounted price range of the product variants.""" + """ + The undiscounted price range of the product variants. + """ priceRangeUndiscounted: TaxedMoneyRange """ @@ -6703,64 +8619,82 @@ type ProductPricingInfo { """ 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.""" +""" +Represents a range of monetary values. +""" type TaxedMoneyRange { - """Lower bound of a price range.""" + """ + Lower bound of a price range. + """ start: TaxedMoney - """Upper bound of a price range.""" + """ + Upper bound of a price range. + """ stop: TaxedMoney } -"""Represents product channel listing.""" +""" +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.") + 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.") + 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).""" + """ + 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.""" + """ + Whether the product is available for purchase. + """ isAvailableForPurchase: Boolean """ @@ -6780,64 +8714,76 @@ type Margin { } input MediaSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort media by the selected field.""" + """ + Sort media by the selected field. + """ field: MediaChoicesSortField! } enum MediaChoicesSortField { - """Sort media by ID.""" + """ + Sort media by ID. + """ ID } -"""Represents a collection of products.""" +""" +Represents a collection of products. +""" type Collection implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -6847,7 +8793,7 @@ type Collection implements Node & ObjectWithMetadata { """ Description of the collection. - + Rich text format. For reference see https://editorjs.io/ """ description: JSONString @@ -6860,29 +8806,46 @@ type Collection implements Node & ObjectWithMetadata { """ 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.") + descriptionJson: JSONString + @deprecated( + reason: "This field will be removed in Saleor 4.0. Use the `description` field instead." + ) - """List of products in this collection.""" + """ + List of products in this collection. + """ products( - """Filtering options for products.""" + """ + Filtering options for products. + """ filter: ProductFilterInput - """Sort products.""" + """ + Sort products. + """ sortBy: ProductOrder - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): ProductCountableConnection backgroundImage( @@ -6893,23 +8856,27 @@ type Collection implements Node & ObjectWithMetadata { """ 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.""" + """ + Returns translated collection fields for the given language code. + """ translation( - """A language code to return the translation for collection.""" + """ + 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!] @@ -6918,7 +8885,9 @@ type Collection implements Node & ObjectWithMetadata { type CollectionTranslation implements Node { id: ID! - """Translation language.""" + """ + Translation language. + """ language: LanguageDisplay! seoTitle: String seoDescription: String @@ -6926,27 +8895,35 @@ 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.") + descriptionJson: JSONString + @deprecated( + reason: "This field will be removed in Saleor 4.0. Use the `description` field instead." + ) } -"""Represents collection channel listing.""" +""" +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.") + 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 @@ -6957,7 +8934,9 @@ type CollectionChannelListing implements Node { type ProductTranslation implements Node { id: ID! - """Translation language.""" + """ + Translation language. + """ language: LanguageDisplay! seoTitle: String seoDescription: String @@ -6965,33 +8944,44 @@ 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.") + 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.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [WarehouseCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type WarehouseCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: Warehouse! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -7005,36 +8995,61 @@ input WarehouseFilterInput { } input WarehouseSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort warehouses by the selected field.""" + """ + Sort warehouses by the selected field. + """ field: WarehouseSortField! } enum WarehouseSortField { - """Sort warehouses by name.""" + """ + Sort warehouses by name. + """ NAME } type TranslatableItemConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [TranslatableItemEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type TranslatableItemEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: TranslatableItem! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } -union TranslatableItem = ProductTranslatableContent | CollectionTranslatableContent | CategoryTranslatableContent | AttributeTranslatableContent | AttributeValueTranslatableContent | ProductVariantTranslatableContent | PageTranslatableContent | ShippingMethodTranslatableContent | SaleTranslatableContent | VoucherTranslatableContent | MenuItemTranslatableContent +union TranslatableItem = + ProductTranslatableContent + | CollectionTranslatableContent + | CategoryTranslatableContent + | AttributeTranslatableContent + | AttributeValueTranslatableContent + | ProductVariantTranslatableContent + | PageTranslatableContent + | ShippingMethodTranslatableContent + | SaleTranslatableContent + | VoucherTranslatableContent + | MenuItemTranslatableContent type ProductTranslatableContent implements Node { id: ID! @@ -7044,28 +9059,42 @@ type ProductTranslatableContent implements Node { """ 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.") + 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.""" + """ + Returns translated product fields for the given language code. + """ translation( - """A language code to return the translation for product.""" + """ + 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.") + """ + 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.""" + """ + List of product attribute values that can be translated. + """ attributeValues: [AttributeValueTranslatableContent!]! } @@ -7075,26 +9104,37 @@ type AttributeValueTranslatableContent implements Node { """ Attribute value. - + Rich text format. For reference see https://editorjs.io/ """ richText: JSONString - """Attribute plain text value.""" + """ + Attribute plain text value. + """ plainText: String - """Returns translated attribute value fields for the given language code.""" + """ + Returns translated attribute value fields for the given language code. + """ translation( - """A language code to return the translation for attribute value.""" + """ + 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.") + """ + 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 @@ -7104,14 +9144,23 @@ type AttributeTranslatableContent implements Node { id: ID! name: String! - """Returns translated attribute fields for the given language code.""" + """ + Returns translated attribute fields for the given language code. + """ translation( - """A language code to return the translation for attribute.""" + """ + 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.") + """ + 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 { @@ -7122,26 +9171,38 @@ type CollectionTranslatableContent implements Node { """ 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.") + 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.""" + """ + Returns translated collection fields for the given language code. + """ translation( - """A language code to return the translation for collection.""" + """ + 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.") + """ + 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 { @@ -7152,42 +9213,65 @@ type CategoryTranslatableContent implements Node { """ 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.") + 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.""" + """ + Returns translated category fields for the given language code. + """ translation( - """A language code to return the translation for category.""" + """ + 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.") + """ + 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.""" + """ + Returns translated product variant fields for the given language code. + """ translation( - """A language code to return the translation for product variant.""" + """ + 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.") + """ + 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.""" + """ + List of product variant attribute values that can be translated. + """ attributeValues: [AttributeValueTranslatableContent!]! } @@ -7199,37 +9283,51 @@ type PageTranslatableContent implements Node { """ 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.") + 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.""" + """ + Returns translated page fields for the given language code. + """ translation( - """A language code to return the translation for page.""" + """ + 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.") + 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.""" + """ + List of page content attribute values that can be translated. + """ attributeValues: [AttributeValueTranslatableContent!]! } type PageTranslation implements Node { id: ID! - """Translation language.""" + """ + Translation language. + """ language: LanguageDisplay! seoTitle: String seoDescription: String @@ -7237,17 +9335,20 @@ 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.") + contentJson: JSONString + @deprecated( + reason: "This field will be removed in Saleor 4.0. Use the `content` field instead." + ) } """ @@ -7256,48 +9357,52 @@ A static page that can be manually added by a shop operator through the dashboar type Page implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -7307,15 +9412,18 @@ type Page implements Node & ObjectWithMetadata { """ 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.") + 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 @@ -7326,18 +9434,27 @@ type Page implements Node & ObjectWithMetadata { """ 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.") + 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.""" + """ + Returns translated page fields for the given language code. + """ translation( - """A language code to return the translation for page.""" + """ + A language code to return the translation for page. + """ languageCode: LanguageCodeEnum! ): PageTranslation - """List of attributes assigned to this product.""" + """ + List of attributes assigned to this product. + """ attributes: [SelectedAttribute!]! } @@ -7347,82 +9464,96 @@ Represents a type of page. It defines what attributes are available to pages of type PageType implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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.""" + """ + 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 where: AttributeWhereInput - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 @@ -7434,47 +9565,63 @@ type ShippingMethodTranslatableContent implements Node { """ 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.""" + """ + Returns translated shipping method fields for the given language code. + """ translation( - """A language code to return the translation for shipping method.""" + """ + 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.") + 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.""" + """ + Returns translated sale fields for the given language code. + """ translation( - """A language code to return the translation for sale.""" + """ + 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.") + 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.""" + """ + Translation language. + """ language: LanguageDisplay! name: String } @@ -7485,48 +9632,52 @@ Sales allow creating discounts for categories, collections or products and are v type Sale implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -7537,97 +9688,139 @@ type Sale implements Node & ObjectWithMetadata { created: DateTime! updatedAt: DateTime! - """List of categories this sale applies to.""" + """ + List of categories this sale applies to. + """ categories( - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): ProductVariantCountableConnection - """Returns translated sale fields for the given language code.""" + """ + Returns translated sale fields for the given language code. + """ translation( - """A language code to return the translation for sale.""" + """ + 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.""" + """ + Sale value. + """ discountValue: Float - """Currency code for sale.""" + """ + Currency code for sale. + """ currency: String } @@ -7637,40 +9830,58 @@ enum SaleType { } type CollectionCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [CollectionCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type CollectionCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: Collection! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } type ProductVariantCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [ProductVariantCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type ProductVariantCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: ProductVariant! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } -"""Represents sale channel listing.""" +""" +Represents sale channel listing. +""" type SaleChannelListing implements Node { id: ID! channel: Channel! @@ -7682,24 +9893,33 @@ type VoucherTranslatableContent implements Node { id: ID! name: String - """Returns translated voucher fields for the given language code.""" + """ + Returns translated voucher fields for the given language code. + """ translation( - """A language code to return the translation for voucher.""" + """ + 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.") + 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.""" + """ + Translation language. + """ language: LanguageDisplay! name: String } @@ -7710,48 +9930,52 @@ Vouchers allow giving discounts to particular customers on categories, collectio type Voucher implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -7766,107 +9990,157 @@ type Voucher implements Node & ObjectWithMetadata { onlyForStaff: Boolean! minCheckoutItemsQuantity: Int - """List of categories this voucher applies to.""" + """ + List of categories this voucher applies to. + """ categories( - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): ProductVariantCountableConnection - """List of countries available for the shipping voucher.""" + """ + List of countries available for the shipping voucher. + """ countries: [CountryDisplay!] - """Returns translated voucher fields for the given language code.""" + """ + Returns translated voucher fields for the given language code. + """ translation( - """A language code to return the translation for voucher.""" + """ + A language code to return the translation for voucher. + """ languageCode: LanguageCodeEnum! ): VoucherTranslation - """Determines a type of discount for voucher - value or percentage""" + """ + Determines a type of discount for voucher - value or percentage + """ discountValueType: DiscountValueTypeEnum! - """Voucher value.""" + """ + Voucher value. + """ discountValue: Float - """Currency code for voucher.""" + """ + Currency code for voucher. + """ currency: String - """Minimum order value to apply voucher.""" + """ + Minimum order value to apply voucher. + """ minSpent: Money - """Determines a type of voucher.""" + """ + 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!] @@ -7883,7 +10157,9 @@ enum VoucherTypeEnum { SPECIFIC_PRODUCT } -"""Represents voucher channel listing.""" +""" +Represents voucher channel listing. +""" type VoucherChannelListing implements Node { id: ID! channel: Channel! @@ -7896,22 +10172,31 @@ type MenuItemTranslatableContent implements Node { id: ID! name: String! - """Returns translated menu item fields for the given language code.""" + """ + Returns translated menu item fields for the given language code. + """ translation( - """A language code to return the translation for menu item.""" + """ + 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.") + 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.""" + """ + Translation language. + """ language: LanguageDisplay! name: String! } @@ -7922,48 +10207,52 @@ Represents a single item of the related menu. Can store categories, collection o type MenuItem implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -7984,12 +10273,18 @@ type MenuItem implements Node & ObjectWithMetadata { level: Int! children: [MenuItem!] - """URL to the menu item.""" + """ + URL to the menu item. + """ url: String - """Returns translated menu item fields for the given language code.""" + """ + Returns translated menu item fields for the given language code. + """ translation( - """A language code to return the translation for menu item.""" + """ + A language code to return the translation for menu item. + """ languageCode: LanguageCodeEnum! ): MenuItemTranslation } @@ -8000,48 +10295,52 @@ Represents a single menu - an object that is used to help navigate through the s type Menu implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -8072,59 +10371,69 @@ 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.""" + """ + The ID of the object. + """ id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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.""" + """ + A channel to which the tax configuration applies to. + """ channel: Channel! - """Determines whether taxes are charged in the given channel.""" + """ + Determines whether taxes are charged in the given channel. + """ chargeTaxes: Boolean! """ @@ -8137,10 +10446,14 @@ type TaxConfiguration implements Node & ObjectWithMetadata { """ displayGrossPrices: Boolean! - """Determines whether prices are entered with the tax included.""" + """ + Determines whether prices are entered with the tax included. + """ pricesEnteredWithTax: Boolean! - """List of country-specific exceptions in tax configuration.""" + """ + List of country-specific exceptions in tax configuration. + """ countries: [TaxConfigurationPerCountry!]! } @@ -8157,10 +10470,14 @@ 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 in which this configuration applies. + """ country: CountryDisplay! - """Determines whether taxes are charged in this country.""" + """ + Determines whether taxes are charged in this country. + """ chargeTaxes: Boolean! """ @@ -8175,19 +10492,27 @@ type TaxConfigurationPerCountry { } type TaxConfigurationCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [TaxConfigurationCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type TaxConfigurationCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: TaxConfiguration! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -8197,32 +10522,46 @@ input TaxConfigurationFilterInput { } type TaxClassCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [TaxClassCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type TaxClassCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: TaxClass! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } input TaxClassSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort tax classes by the selected field.""" + """ + Sort tax classes by the selected field. + """ field: TaxClassSortField! } enum TaxClassSortField { - """Sort tax classes by name.""" + """ + Sort tax classes by name. + """ NAME } @@ -8240,27 +10579,39 @@ 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.""" + """ + A country for which tax class rates are grouped. + """ country: CountryDisplay! - """List of tax class rates.""" + """ + List of tax class rates. + """ taxClassCountryRates: [TaxClassCountryRate!]! } type StockCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [StockCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type StockCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: Stock! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -8273,242 +10624,319 @@ input StockFilterInput { Represents a shop resource containing general shop data and configuration. """ type Shop { - """List of available payment gateways.""" + """ + List of available payment gateways. + """ availablePaymentGateways( """ - A currency for which gateways will be returned. - + 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.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): [PaymentGateway!]! - """List of available external authentications.""" + """ + List of available external authentications. + """ availableExternalAuthentications: [ExternalAuthentication!]! - """Shipping methods that are available for the shop.""" + """ + Shipping methods that are available for the shop. + """ availableShippingMethods( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String! - """Address for which available shipping methods should be returned.""" + """ + 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.""" + """ + List of countries available in the shop. + """ countries( """ - A language code to return the translation for. - + A language code to return the translation for. + DEPRECATED: this field will be removed in Saleor 4.0. """ languageCode: LanguageCodeEnum - """Filtering options for countries""" + """ + Filtering options for countries + """ filter: CountryFilterInput ): [CountryDisplay!]! - """Shop's default country.""" + """ + 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.""" + """ + Shop's description. + """ description: String - """Shop's domain data.""" + """ + Shop's domain data. + """ domain: Domain! - """List of the shops's supported languages.""" + """ + List of the shops's supported languages. + """ languages: [LanguageDisplay!]! - """Shop's name.""" + """ + Shop's name. + """ name: String! - """List of available permissions.""" + """ + List of available permissions. + """ permissions: [Permission!]! - """List of possible phone prefixes.""" + """ + List of possible phone prefixes. + """ phonePrefixes: [String!]! - """Header text.""" + """ + 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.""" + """ + Enable inventory tracking. + """ trackInventoryByDefault: Boolean - """Default weight unit.""" + """ + Default weight unit. + """ defaultWeightUnit: WeightUnitsEnum - """Returns translated shop fields for the given language code.""" + """ + Returns translated shop fields for the given language code. + """ translation( - """A language code to return the translation for shop.""" + """ + 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.""" + """ + Company address. + """ companyAddress: Address - """URL of a view where customers can set their password.""" + """ + 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.") + """ + 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.") + """ + 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.") + """ + 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.""" + """ + Payment gateway name. + """ name: String! - """Payment gateway ID.""" + """ + Payment gateway ID. + """ id: ID! - """Payment gateway client configuration.""" + """ + Payment gateway client configuration. + """ config: [GatewayConfigLine!]! - """Payment gateway supported currencies.""" + """ + Payment gateway supported currencies. + """ currencies: [String!]! } -"""Payment gateway client configuration key and value pair.""" +""" +Payment gateway client configuration key and value pair. +""" type GatewayConfigLine { - """Gateway config key.""" + """ + Gateway config key. + """ field: String! - """Gateway config value for key.""" + """ + Gateway config value for key. + """ value: String } type ExternalAuthentication { - """ID of external authentication plugin.""" + """ + ID of external authentication plugin. + """ id: String! - """Name of external authentication plugin.""" + """ + Name of external authentication plugin. + """ name: String } @@ -8519,22 +10947,32 @@ input CountryFilterInput { attachedToShippingZones: Boolean } -"""Represents shop's domain.""" +""" +Represents shop's domain. +""" type Domain { - """The host name of the domain.""" + """ + The host name of the domain. + """ host: String! - """Inform if SSL is enabled.""" + """ + Inform if SSL is enabled. + """ sslEnabled: Boolean! - """Shop's absolute URL.""" + """ + Shop's absolute URL. + """ url: String! } type ShopTranslation implements Node { id: ID! - """Translation language.""" + """ + Translation language. + """ language: LanguageDisplay! headerText: String! description: String! @@ -8546,62 +10984,74 @@ Represents a recipient of email notifications send by Saleor, such as notificati type StaffNotificationRecipient implements Node { id: ID! - """Returns a user subscribed to email notifications.""" + """ + Returns a user subscribed to email notifications. + """ user: User - """Returns email address of a user subscribed to email notifications.""" + """ + Returns email address of a user subscribed to email notifications. + """ email: String - """Determines if a notification active.""" + """ + Determines if a notification active. + """ active: Boolean } -"""Represents user data.""" +""" +Represents user data. +""" type User implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -8611,64 +11061,100 @@ type User implements Node & ObjectWithMetadata { isStaff: Boolean! isActive: Boolean! - """List of all user's addresses.""" + """ + 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 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.""" + """ + Returns the checkout UUID's assigned to this user. + """ checkoutTokens( - """Slug of a channel for which the data should be returned.""" + """ + 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.") + ): [UUID!] + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `checkoutIds` instead.") - """Returns the checkout ID's assigned to this user.""" + """ + Returns the checkout ID's assigned to this user. + """ checkoutIds( - """Slug of a channel for which the data should be returned.""" + """ + 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.""" + """ + 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): CheckoutCountableConnection - """List of the user gift cards.""" + """ + List of the user gift cards. + """ giftCards( - """Return the elements in the list that come before the specified cursor.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + 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 @@ -8677,26 +11163,40 @@ type User implements Node & ObjectWithMetadata { 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.""" + """ + 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.""" + """ + Return the elements in the list that come after the specified cursor. + """ after: String - """Return the first n elements from the list.""" + """ + Return the first n elements from the list. + """ first: Int - """Return the last n elements from the list.""" + """ + Return the last n elements from the list. + """ last: Int ): OrderCountableConnection - """List of user's permissions.""" + """ + List of user's permissions. + """ userPermissions: [UserPermission!] - """List of user's permission groups.""" + """ + List of user's permission groups. + """ permissionGroups: [Group!] - """List of user's permission groups which user can manage.""" + """ + List of user's permission groups which user can manage. + """ editableGroups: [Group!] avatar( """ @@ -8706,9 +11206,9 @@ type User implements Node & ObjectWithMetadata { """ 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 @@ -8716,25 +11216,31 @@ type User implements Node & ObjectWithMetadata { """ List of events associated with the user. - + Requires one of the following permissions: MANAGE_USERS, MANAGE_STAFF. """ events: [CustomerEvent!] - """List of stored payment sources.""" + """ + List of stored payment sources. + """ storedPaymentSources( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): [PaymentSource!] - """User language code.""" + """ + User language code. + """ languageCode: LanguageCodeEnum! defaultShippingAddress: Address defaultBillingAddress: Address """ - External ID of this user. - + External ID of this user. + Added in Saleor 3.10. """ externalReference: String @@ -8743,52 +11249,58 @@ type User implements Node & ObjectWithMetadata { updatedAt: DateTime! } -"""Checkout object.""" +""" +Checkout object. +""" type Checkout implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -8804,39 +11316,54 @@ type Checkout implements Node & ObjectWithMetadata { 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. + """ + 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.""" + """ + 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.""" + """ + List of available payment gateways. + """ availablePaymentGateways: [PaymentGateway!]! - """Email of a customer.""" + """ + Email of a customer. + """ email: String - """List of gift cards associated with this checkout.""" + """ + List of gift cards associated with this checkout. + """ giftCards: [GiftCard!]! - """Returns True, if checkout requires shipping.""" + """ + Returns True, if checkout requires shipping. + """ isShippingRequired: Boolean! - """The number of items purchased.""" + """ + 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 @@ -8846,34 +11373,43 @@ type Checkout implements Node & ObjectWithMetadata { """ lines: [CheckoutLine!]! - """The price of the shipping, with all the taxes included.""" + """ + 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 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.""" + """ + 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.""" + """ + The checkout's token. + """ token: UUID! """ @@ -8881,23 +11417,25 @@ type Checkout implements Node & ObjectWithMetadata { """ totalPrice: TaxedMoney! - """Checkout language code.""" + """ + 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! @@ -8909,56 +11447,64 @@ A gift card is a prepaid electronic payment card accepted in stores. They can be type GiftCard implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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.""" + """ + Code in format which allows displaying in a user interface. + """ displayCode: String! - """Last 4 characters of gift card code.""" + """ + Last 4 characters of gift card code. + """ last4CodeChars: String! """ @@ -8969,38 +11515,38 @@ type GiftCard implements Node & ObjectWithMetadata { """ 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 @@ -9009,54 +11555,56 @@ 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 """ 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.""" + """ + 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 @@ -9064,13 +11612,21 @@ type GiftCard implements Node & ObjectWithMetadata { 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.") + """ + 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.") + """ + 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.""" + """ + Start date of gift card. + """ startDate: DateTime @deprecated(reason: "This field will be removed in Saleor 4.0.") } @@ -9084,10 +11640,14 @@ Note: this API is currently in Feature Preview and can be subject to changes at type GiftCardEvent implements Node { id: ID! - """Date when event happened at in ISO 8601 format.""" + """ + Date when event happened at in ISO 8601 format. + """ date: DateTime - """Gift card event type.""" + """ + Gift card event type. + """ type: GiftCardEventsEnum """ @@ -9100,35 +11660,55 @@ type GiftCardEvent implements Node { """ app: App - """Content of the event.""" + """ + Content of the event. + """ message: String - """Email of the customer.""" + """ + Email of the customer. + """ email: String - """The order ID where gift card was used or bought.""" + """ + 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.""" + """ + User-friendly number of an order where gift card was used or bought. + """ orderNumber: String - """The list of gift card tags.""" + """ + The list of gift card tags. + """ tags: [String!] - """The list of old gift card tags.""" + """ + The list of old gift card tags. + """ oldTags: [String!] - """The gift card balance.""" + """ + The gift card balance. + """ balance: GiftCardEventBalance - """The gift card expiry date.""" + """ + The gift card expiry date. + """ expiryDate: Date - """Previous gift card expiry date.""" + """ + Previous gift card expiry date. + """ oldExpiryDate: Date } -"""An enumeration.""" +""" +An enumeration. +""" enum GiftCardEventsEnum { ISSUED BOUGHT @@ -9145,16 +11725,24 @@ enum GiftCardEventsEnum { } type GiftCardEventBalance { - """Initial balance of the gift card.""" + """ + Initial balance of the gift card. + """ initialBalance: Money - """Current balance of the gift card.""" + """ + Current balance of the gift card. + """ currentBalance: Money! - """Previous initial balance of the gift card.""" + """ + Previous initial balance of the gift card. + """ oldInitialBalance: Money - """Previous current balance of the gift card.""" + """ + Previous current balance of the gift card. + """ oldCurrentBalance: Money } @@ -9175,83 +11763,95 @@ type GiftCardTag implements Node { name: String! } -"""Represents an item in the checkout.""" +""" +Represents an item in the checkout. +""" type CheckoutLine implements Node & ObjectWithMetadata { id: ID! """ List of private metadata items. Requires staff permissions to access. - + Added in Saleor 3.5. - + 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.5. - + 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.5. - + 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.5. - + 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.5. - + 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.5. - + 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.""" + """ + The unit price of the checkout line, with taxes and discounts. + """ unitPrice: TaxedMoney! - """The unit price of the checkout line, without discounts.""" + """ + The unit price of the checkout line, without discounts. + """ undiscountedUnitPrice: Money! - """The sum of the checkout line price, taxes and discounts.""" + """ + The sum of the checkout line price, taxes and discounts. + """ totalPrice: TaxedMoney! - """The sum of the checkout line price, without discounts.""" + """ + The sum of the checkout line price, without discounts. + """ undiscountedTotalPrice: Money! - """Indicates whether the item need to be delivered.""" + """ + Indicates whether the item need to be delivered. + """ requiresShipping: Boolean! } @@ -9272,51 +11872,57 @@ 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.""" + """ + The ID of the object. + """ id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -9328,35 +11934,51 @@ type TransactionItem implements Node & ObjectWithMetadata { """ actions: [TransactionActionEnum!]! - """Total amount authorized for this payment.""" + """ + Total amount authorized for this payment. + """ authorizedAmount: Money! - """Total amount refunded for this payment.""" + """ + Total amount refunded for this payment. + """ refundedAmount: Money! - """Total amount voided for this payment.""" + """ + Total amount voided for this payment. + """ voidedAmount: Money! - """Total amount charged for this payment.""" + """ + Total amount charged for this payment. + """ chargedAmount: Money! - """Status of transaction.""" + """ + Status of transaction. + """ status: String! - """Type of transaction.""" + """ + Type of transaction. + """ type: String! - """Reference of transaction.""" + """ + Reference of transaction. + """ reference: String! """ The related order. - + Added in Saleor 3.6. """ order: Order - """List of all transaction's events.""" + """ + List of all transaction's events. + """ events: [TransactionEvent!]! } @@ -9374,52 +11996,58 @@ enum TransactionActionEnum { VOID } -"""Represents an order in the shop.""" +""" +Represents an order in the shop. +""" type Order implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -9446,10 +12074,14 @@ type Order implements Node & ObjectWithMetadata { collectionPointName: String channel: Channel! - """List of shipments for the order.""" + """ + List of shipments for the order. + """ fulfillments: [Fulfillment!]! - """List of order lines.""" + """ + List of order lines. + """ lines: [OrderLine!]! """ @@ -9457,17 +12089,22 @@ type Order implements Node & ObjectWithMetadata { """ 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 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.""" + """ + 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!]! @@ -9477,128 +12114,159 @@ type Order implements Node & ObjectWithMetadata { """ invoices: [Invoice!]! - """User-friendly number of an order.""" + """ + User-friendly number of an order. + """ number: String! - """The ID of the order that was the base for this order.""" + """ + The ID of the order that was the base for this order. + """ original: ID - """The order origin.""" + """ + The order origin. + """ origin: OrderOriginEnum! - """Informs if an order is fully paid.""" + """ + Informs if an order is fully paid. + """ isPaid: Boolean! - """Internal payment status.""" + """ + Internal payment status. + """ paymentStatus: PaymentChargeStatusEnum! - """User-friendly payment status.""" + """ + 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.""" + """ + List of payments for the order. + """ payments: [Payment!]! - """Total amount of the order.""" + """ + Total amount of the order. + """ total: TaxedMoney! - """Undiscounted total amount of the order.""" + """ + 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.") + """ + 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.""" + """ + Total price of shipping. + """ shippingPrice: TaxedMoney! - """The shipping tax rate value.""" + """ + 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.""" + """ + List of user gift cards. + """ giftCards: [GiftCard!]! customerNote: String! weight: Weight! redirectUrl: String - """The sum of line prices not including shipping.""" + """ + The sum of line prices not including shipping. + """ subtotal: TaxedMoney! - """User-friendly order status.""" + """ + User-friendly order status. + """ statusDisplay: String! """ @@ -9606,20 +12274,26 @@ type Order implements Node & ObjectWithMetadata { """ canFinalize: Boolean! - """Amount authorized for the order.""" + """ + Amount authorized for the order. + """ totalAuthorized: Money! - """Amount captured by payment.""" + """ + 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.""" + """ + The difference between the paid and the order total amount. + """ totalBalance: Money! """ @@ -9627,62 +12301,90 @@ type Order implements Node & ObjectWithMetadata { """ userEmail: String - """Returns True, if order requires shipping.""" + """ + 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. ") + 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.""" + """ + 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.") + """ + 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.") + """ + 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. ") + """ + 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.""" + """ + List of all discounts assigned to the order. + """ discounts: [OrderDiscount!]! - """List of errors that occurred during order validation.""" + """ + 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. - + External ID of this order. + Added in Saleor 3.10. """ externalReference: String """ - ID of the checkout that the order was created from. - + ID of the checkout that the order was created from. + Added in Saleor 3.11. """ checkoutId: ID } -"""An enumeration.""" +""" +An enumeration. +""" enum OrderStatus { DRAFT UNCONFIRMED @@ -9694,52 +12396,58 @@ enum OrderStatus { CANCELED } -"""Represents order fulfillment.""" +""" +Represents order fulfillment. +""" type Fulfillment implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -9748,17 +12456,25 @@ type Fulfillment implements Node & ObjectWithMetadata { trackingNumber: String! created: DateTime! - """List of lines for the fulfillment.""" + """ + List of lines for the fulfillment. + """ lines: [FulfillmentLine!] - """User-friendly fulfillment status.""" + """ + User-friendly fulfillment status. + """ statusDisplay: String - """Warehouse from fulfillment was fulfilled.""" + """ + Warehouse from fulfillment was fulfilled. + """ warehouse: Warehouse } -"""An enumeration.""" +""" +An enumeration. +""" enum FulfillmentStatus { FULFILLED REFUNDED @@ -9769,71 +12485,75 @@ enum FulfillmentStatus { WAITING_FOR_APPROVAL } -"""Represents line of the fulfillment.""" +""" +Represents line of the fulfillment. +""" type FulfillmentLine implements Node { id: ID! quantity: Int! orderLine: OrderLine } -"""Represents order line of particular order.""" +""" +Represents order line of particular order. +""" type OrderLine implements Node & ObjectWithMetadata { id: ID! """ List of private metadata items. Requires staff permissions to access. - + Added in Saleor 3.5. - + 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.5. - + 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.5. - + 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.5. - + 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.5. - + 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.5. - + Note: this API is currently in Feature Preview and can be subject to changes at later point. """ metafields(keys: [String!]): Metadata @@ -9855,15 +12575,17 @@ type OrderLine implements Node & ObjectWithMetadata { """ 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.""" + """ + Price of the single item in the order line. + """ unitPrice: TaxedMoney! """ @@ -9871,13 +12593,19 @@ type OrderLine implements Node & ObjectWithMetadata { """ undiscountedUnitPrice: TaxedMoney! - """The discount applied to the single order line.""" + """ + The discount applied to the single order line. + """ unitDiscount: Money! - """Value of the discount. Can store fixed value or percent value""" + """ + Value of the discount. Can store fixed value or percent value + """ unitDiscountValue: PositiveDecimal! - """Price of the order line.""" + """ + Price of the order line. + """ totalPrice: TaxedMoney! """ @@ -9885,63 +12613,69 @@ type OrderLine implements Node & ObjectWithMetadata { """ variant: ProductVariant - """Product name in the customer's language""" + """ + Product name in the customer's language + """ translatedProductName: String! - """Variant name in the customer's language""" + """ + 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""" + """ + 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!]! @@ -9954,124 +12688,156 @@ Should be used in places where value must be positive. """ scalar PositiveDecimal -"""Represents allocation.""" +""" +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.""" + """ + Represents the capture action. + """ CAPTURE - """Represents a mark-as-paid action.""" + """ + Represents a mark-as-paid action. + """ MARK_AS_PAID - """Represents a refund action.""" + """ + Represents a refund action. + """ REFUND - """Represents a void action.""" + """ + Represents a void action. + """ VOID } -"""Represents an Invoice.""" +""" +Represents an Invoice. +""" type Invoice implements ObjectWithMetadata & Job & Node { - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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.""" + """ + Job status. + """ status: JobStatusEnum! createdAt: DateTime! updatedAt: DateTime! message: String - """The ID of the object.""" + """ + The ID of the object. + """ id: ID! number: String externalUrl: String - """URL to download an invoice.""" + """ + URL to download an invoice. + """ url: String """ Order related to the invoice. - + Added in Saleor 3.10. """ order: Order } interface Job { - """Job status.""" + """ + Job status. + """ status: JobStatusEnum! - """Created date time of job in ISO 8601 format.""" + """ + Created date time of job in ISO 8601 format. + """ createdAt: DateTime! - """Date time of job last update in ISO 8601 format.""" + """ + Date time of job last update in ISO 8601 format. + """ updatedAt: DateTime! - """Job message.""" + """ + Job message. + """ message: String } -"""An enumeration.""" +""" +An enumeration. +""" enum JobStatusEnum { PENDING SUCCESS @@ -10079,14 +12845,18 @@ enum JobStatusEnum { DELETED } -"""An enumeration.""" +""" +An enumeration. +""" enum OrderOriginEnum { CHECKOUT DRAFT REISSUE } -"""An enumeration.""" +""" +An enumeration. +""" enum PaymentChargeStatusEnum { NOT_CHARGED PENDING @@ -10139,52 +12909,58 @@ enum OrderChargeStatusEnum { OVERCHARGED } -"""Represents a payment of a given type.""" +""" +Represents a payment of a given type. +""" type Payment implements Node & ObjectWithMetadata { id: ID! - """List of private metadata items. Requires staff permissions to access.""" + """ + 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.""" + """ + 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 @@ -10199,53 +12975,63 @@ type Payment implements Node & ObjectWithMetadata { """ IP address of the user who created the payment. - + Requires one of the following permissions: MANAGE_ORDERS. """ customerIpAddress: String - """Internal payment status.""" + """ + 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 amount of the payment. + """ total: Money - """Total amount captured for this payment.""" + """ + 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.""" + """ + The details of the card used for this payment. + """ creditCard: CreditCard } -"""An object representing a single payment.""" +""" +An object representing a single payment. +""" type Transaction implements Node { id: ID! created: DateTime! @@ -10256,11 +13042,15 @@ type Transaction implements Node { error: String gatewayResponse: JSONString! - """Total amount of the transaction.""" + """ + Total amount of the transaction. + """ amount: Money } -"""An enumeration.""" +""" +An enumeration. +""" enum TransactionKind { EXTERNAL AUTH @@ -10275,33 +13065,51 @@ enum TransactionKind { } type CreditCard { - """Card brand.""" + """ + Card brand. + """ brand: String! - """First 4 digits of the card number.""" + """ + First 4 digits of the card number. + """ firstDigits: String - """Last 4 digits of the card number.""" + """ + Last 4 digits of the card number. + """ lastDigits: String! - """Two-digit number representing the card’s expiration month.""" + """ + Two-digit number representing the card’s expiration month. + """ expMonth: Int - """Four-digit number representing the card’s expiration year.""" + """ + Four-digit number representing the card’s expiration year. + """ expYear: Int } -"""History log of the order.""" +""" +History log of the order. +""" type OrderEvent implements Node { id: ID! - """Date when event happened at in ISO 8601 format.""" + """ + Date when event happened at in ISO 8601 format. + """ date: DateTime - """Order event type.""" + """ + Order event type. + """ type: OrderEventsEnum - """User who performed the action.""" + """ + User who performed the action. + """ user: User """ @@ -10309,68 +13117,110 @@ type OrderEvent implements Node { """ app: App - """Content of the event.""" + """ + Content of the event. + """ message: String - """Email of the customer.""" + """ + Email of the customer. + """ email: String - """Type of an email sent to the customer.""" + """ + Type of an email sent to the customer. + """ emailType: OrderEventsEmailsEnum - """Amount of money.""" + """ + Amount of money. + """ amount: Float - """The payment reference from the payment provider.""" + """ + The payment reference from the payment provider. + """ paymentId: String - """The payment gateway of the payment.""" + """ + The payment gateway of the payment. + """ paymentGateway: String - """Number of items.""" + """ + Number of items. + """ quantity: Int - """Composed ID of the Fulfillment.""" + """ + Composed ID of the Fulfillment. + """ composedId: String - """User-friendly number of an order.""" + """ + User-friendly number of an order. + """ orderNumber: String - """Number of an invoice related to the order.""" + """ + Number of an invoice related to the order. + """ invoiceNumber: String - """List of oversold lines names.""" + """ + List of oversold lines names. + """ oversoldItems: [String!] - """The concerned lines.""" + """ + The concerned lines. + """ lines: [OrderEventOrderLineObject!] - """The lines fulfilled.""" + """ + The lines fulfilled. + """ fulfilledItems: [FulfillmentLine!] - """The warehouse were items were restocked.""" + """ + The warehouse were items were restocked. + """ warehouse: Warehouse - """The transaction reference of captured payment.""" + """ + The transaction reference of captured payment. + """ transactionReference: String - """Define if shipping costs were included to the refund.""" + """ + Define if shipping costs were included to the refund. + """ shippingCostsIncluded: Boolean - """The order which is related to this order.""" + """ + The order which is related to this order. + """ relatedOrder: Order - """The discount applied to the order.""" + """ + The discount applied to the order. + """ discount: OrderEventDiscountObject - """The status of payment's transaction.""" + """ + The status of payment's transaction. + """ status: TransactionStatus - """The reference of payment's transaction.""" + """ + The reference of payment's transaction. + """ reference: String } -"""An enumeration.""" +""" +An enumeration. +""" enum OrderEventsEnum { DRAFT_CREATED DRAFT_CREATED_FROM_REPLACE @@ -10420,7 +13270,9 @@ enum OrderEventsEnum { OTHER } -"""An enumeration.""" +""" +An enumeration. +""" enum OrderEventsEmailsEnum { PAYMENT_CONFIRMATION CONFIRMED @@ -10434,74 +13286,108 @@ enum OrderEventsEmailsEnum { } type OrderEventOrderLineObject { - """The variant quantity.""" + """ + The variant quantity. + """ quantity: Int - """The order line.""" + """ + The order line. + """ orderLine: OrderLine - """The variant name.""" + """ + The variant name. + """ itemName: String - """The discount applied to the order line.""" + """ + The discount applied to the order line. + """ discount: OrderEventDiscountObject } type OrderEventDiscountObject { - """Type of the discount: fixed or percent.""" + """ + Type of the discount: fixed or percent. + """ valueType: DiscountValueTypeEnum! - """Value of the discount. Can store fixed value or percent value.""" + """ + Value of the discount. Can store fixed value or percent value. + """ value: PositiveDecimal! - """Explanation for the applied discount.""" + """ + Explanation for the applied discount. + """ reason: String - """Returns amount of discount.""" + """ + Returns amount of discount. + """ amount: Money - """Type of the discount: fixed or percent.""" + """ + Type of the discount: fixed or percent. + """ oldValueType: DiscountValueTypeEnum - """Value of the discount. Can store fixed value or percent value.""" + """ + Value of the discount. Can store fixed value or percent value. + """ oldValue: PositiveDecimal - """Returns amount of discount.""" + """ + Returns amount of discount. + """ oldAmount: Money } -"""An enumeration.""" +""" +An enumeration. +""" enum TransactionStatus { PENDING SUCCESS FAILURE } -"""Contains all details related to the applied discount to the order.""" +""" +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""" + """ + Type of the discount: fixed or percent + """ valueType: DiscountValueTypeEnum! - """Value of the discount. Can store fixed value or percent value""" + """ + 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.""" + """ + Returns amount of discount. + """ amount: Money! } -"""An enumeration.""" +""" +An enumeration. +""" enum OrderDiscountType { VOUCHER MANUAL @@ -10513,26 +13399,40 @@ type OrderError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: OrderErrorCode! - """Warehouse ID which causes the error.""" + """ + Warehouse ID which causes the error. + """ warehouse: ID - """List of order line IDs that cause the error.""" + """ + List of order line IDs that cause the error. + """ orderLines: [ID!] - """List of product variants that are associated with the error""" + """ + List of product variants that are associated with the error + """ variants: [ID!] - """A type of address that causes the error.""" + """ + A type of address that causes the error. + """ addressType: AddressTypeEnum } -"""An enumeration.""" +""" +An enumeration. +""" enum OrderErrorCode { BILLING_ADDRESS_NOT_SET CANNOT_CANCEL_FULFILLMENT @@ -10568,106 +13468,154 @@ enum OrderErrorCode { MISSING_TRANSACTION_ACTION_REQUEST_WEBHOOK } -"""An enumeration.""" +""" +An enumeration. +""" enum AddressTypeEnum { BILLING SHIPPING } -"""Represents transaction's event.""" +""" +Represents transaction's event. +""" type TransactionEvent implements Node { - """The ID of the object.""" + """ + The ID of the object. + """ id: ID! createdAt: DateTime! - """Status of transaction's event.""" + """ + Status of transaction's event. + """ status: TransactionStatus! - """Reference of transaction's event.""" + """ + Reference of transaction's event. + """ reference: String! - """Name of the transaction's event.""" + """ + Name of the transaction's event. + """ name: String } type CheckoutCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [CheckoutCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type CheckoutCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: Checkout! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } type GiftCardCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [GiftCardCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type GiftCardCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: GiftCard! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } type OrderCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [OrderCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type OrderCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: Order! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } type UserPermission { - """Internal code for permission.""" + """ + Internal code for permission. + """ code: PermissionEnum! - """Describe action(s) allowed to do by permission.""" + """ + Describe action(s) allowed to do by permission. + """ name: String! - """List of user permission groups which contains this permission.""" + """ + List of user permission groups which contains this permission. + """ sourcePermissionGroups( - """ID of user whose groups should be returned.""" + """ + ID of user whose groups should be returned. + """ userId: ID! ): [Group!] } -"""Represents permission group data.""" +""" +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""" + """ + List of group permissions + """ permissions: [Permission!] """ @@ -10676,36 +13624,56 @@ type Group implements Node { userCanManage: Boolean! } -"""History log of the customer.""" +""" +History log of the customer. +""" type CustomerEvent implements Node { id: ID! - """Date when event happened at in ISO 8601 format.""" + """ + Date when event happened at in ISO 8601 format. + """ date: DateTime - """Customer event type.""" + """ + Customer event type. + """ type: CustomerEventsEnum - """User who performed the action.""" + """ + User who performed the action. + """ user: User - """App that performed the action.""" + """ + App that performed the action. + """ app: App - """Content of the event.""" + """ + Content of the event. + """ message: String - """Number of objects concerned by the event.""" + """ + Number of objects concerned by the event. + """ count: Int - """The concerned order.""" + """ + The concerned order. + """ order: Order - """The concerned order line.""" + """ + The concerned order line. + """ orderLine: OrderLine } -"""An enumeration.""" +""" +An enumeration. +""" enum CustomerEventsEnum { ACCOUNT_CREATED ACCOUNT_ACTIVATED @@ -10728,30 +13696,40 @@ enum CustomerEventsEnum { Represents a payment source stored for user in payment gateway, such as credit card. """ type PaymentSource { - """Payment gateway name.""" + """ + Payment gateway name. + """ gateway: String! - """ID of stored payment method.""" + """ + ID of stored payment method. + """ paymentMethodId: String - """Stored credit card details if available.""" + """ + 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.""" + """ + Defines the current resource usage. + """ currentUsage: Limits! - """Defines the allowed maximum resource usage, null means unlimited.""" + """ + Defines the allowed maximum resource usage, null means unlimited. + """ allowedUsage: Limits! } @@ -10763,36 +13741,52 @@ type Limits { warehouses: Int } -"""Order related settings from site settings.""" +""" +Order related settings from site settings. +""" type OrderSettings { automaticallyConfirmAllNewOrders: Boolean! automaticallyFulfillNonShippableGiftCard: Boolean! } -"""Gift card related settings from site settings.""" +""" +Gift card related settings from site settings. +""" type GiftCardSettings { - """The gift card expiry type settings.""" + """ + The gift card expiry type settings. + """ expiryType: GiftCardSettingsExpiryTypeEnum! - """The gift card expiry period settings.""" + """ + The gift card expiry period settings. + """ expiryPeriod: TimePeriod } -"""An enumeration.""" +""" +An enumeration. +""" enum GiftCardSettingsExpiryTypeEnum { NEVER_EXPIRE EXPIRY_PERIOD } type TimePeriod { - """The length of the period.""" + """ + The length of the period. + """ amount: Int! - """The type of the period.""" + """ + The type of the period. + """ type: TimePeriodTypeEnum! } -"""An enumeration.""" +""" +An enumeration. +""" enum TimePeriodTypeEnum { DAY WEEK @@ -10806,19 +13800,27 @@ input ShippingZoneFilterInput { } type DigitalContentCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [DigitalContentCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type DigitalContentCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: DigitalContent! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -10830,28 +13832,38 @@ input CategoryFilterInput { } input CategorySortingInput { - """Specifies the direction in which to sort products.""" + """ + 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.""" + """ + Sort categories by the selected field. + """ field: CategorySortField! } enum CategorySortField { - """Sort categories by name.""" + """ + Sort categories by name. + """ NAME - """Sort categories by product count.""" + """ + Sort categories by product count. + """ PRODUCT_COUNT - """Sort categories by subcategory count.""" + """ + Sort categories by subcategory count. + """ SUBCATEGORY_COUNT } @@ -10863,8 +13875,8 @@ input CollectionFilterInput { slugs: [String!] """ - Specifies the channel by which the data should be filtered. - + 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 @@ -10876,44 +13888,52 @@ enum CollectionPublished { } input CollectionSortingInput { - """Specifies the direction in which to sort products.""" + """ + 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.""" + """ + Sort collections by the selected field. + """ field: CollectionSortField! } enum CollectionSortField { - """Sort collections by name.""" + """ + 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.""" + """ + 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 @@ -10940,21 +13960,31 @@ enum ProductTypeEnum { } input ProductTypeSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort product types by the selected field.""" + """ + Sort product types by the selected field. + """ field: ProductTypeSortField! } enum ProductTypeSortField { - """Sort products by name.""" + """ + Sort products by name. + """ NAME - """Sort products by type.""" + """ + Sort products by type. + """ DIGITAL - """Sort products by shipping.""" + """ + Sort products by shipping. + """ SHIPPING_REQUIRED } @@ -10967,39 +13997,53 @@ input ProductVariantFilterInput { } input ProductVariantSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort productVariants by the selected field.""" + """ + Sort productVariants by the selected field. + """ field: ProductVariantSortField! } enum ProductVariantSortField { - """Sort products variants by last modified at.""" + """ + Sort products variants by last modified at. + """ LAST_MODIFIED_AT } type PaymentCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [PaymentCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type PaymentCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: Payment! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } input PaymentFilterInput { """ - Filter by ids. - + Filter by ids. + Added in Saleor 3.8. """ ids: [ID!] @@ -11007,64 +14051,82 @@ input PaymentFilterInput { } type PageCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [PageCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type PageCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: Page! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } input PageSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort pages by the selected field.""" + """ + Sort pages by the selected field. + """ field: PageSortField! } enum PageSortField { - """Sort pages by title.""" + """ + Sort pages by title. + """ TITLE - """Sort pages by slug.""" + """ + Sort pages by slug. + """ SLUG - """Sort pages by visibility.""" + """ + 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 @@ -11079,35 +14141,51 @@ input PageFilterInput { } type PageTypeCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [PageTypeCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type PageTypeCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: PageType! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } input PageTypeSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort page types by the selected field.""" + """ + Sort page types by the selected field. + """ field: PageTypeSortField! } enum PageTypeSortField { - """Sort page types by name.""" + """ + Sort page types by name. + """ NAME - """Sort page types by slug.""" + """ + Sort page types by slug. + """ SLUG } @@ -11117,32 +14195,46 @@ input PageTypeFilterInput { } type OrderEventCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [OrderEventCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type OrderEventCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: OrderEvent! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } input OrderSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort orders by the selected field.""" + """ + Sort orders by the selected field. + """ field: OrderSortField! } enum OrderSortField { - """Sort orders by number.""" + """ + Sort orders by number. + """ NUMBER """ @@ -11151,29 +14243,37 @@ enum OrderSortField { RANK """ - Sort orders by creation date. - + Sort orders by creation date. + DEPRECATED: this field will be removed in Saleor 4.0. """ CREATION_DATE """ - Sort orders by 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.""" + """ + Sort orders by last modified at. + """ LAST_MODIFIED_AT - """Sort orders by customer.""" + """ + Sort orders by customer. + """ CUSTOMER - """Sort orders by payment.""" + """ + Sort orders by payment. + """ PAYMENT - """Sort orders by fulfillment status.""" + """ + Sort orders by fulfillment status. + """ FULFILLMENT_STATUS } @@ -11216,35 +14316,51 @@ input OrderDraftFilterInput { } type MenuCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [MenuCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type MenuCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: Menu! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } input MenuSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort menus by the selected field.""" + """ + Sort menus by the selected field. + """ field: MenuSortField! } enum MenuSortField { - """Sort menus by name.""" + """ + Sort menus by name. + """ NAME - """Sort menus by items count.""" + """ + Sort menus by items count. + """ ITEMS_COUNT } @@ -11256,32 +14372,46 @@ input MenuFilterInput { } type MenuItemCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [MenuItemCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type MenuItemCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: MenuItem! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } input MenuItemSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort menu items by the selected field.""" + """ + Sort menu items by the selected field. + """ field: MenuItemsSortField! } enum MenuItemsSortField { - """Sort menu items by name.""" + """ + Sort menu items by name. + """ NAME } @@ -11291,26 +14421,36 @@ input MenuItemFilterInput { } input GiftCardSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort gift cards by the selected field.""" + """ + Sort gift cards by the selected field. + """ field: GiftCardSortField! } enum GiftCardSortField { - """Sort gift cards by product.""" + """ + Sort gift cards by product. + """ PRODUCT - """Sort gift cards by used by.""" + """ + Sort gift cards by used by. + """ USED_BY - """Sort gift cards by current balance.""" + """ + Sort gift cards by current balance. + """ CURRENT_BALANCE """ Sort gift cards by created at. - + Added in Saleor 3.8. """ CREATED_AT @@ -11330,19 +14470,27 @@ input GiftCardFilterInput { } type GiftCardTagCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [GiftCardTagCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type GiftCardTagCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: GiftCardTag! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -11350,55 +14498,89 @@ input GiftCardTagFilterInput { search: String } -"""Plugin.""" +""" +Plugin. +""" type Plugin { - """Identifier of the plugin.""" + """ + Identifier of the plugin. + """ id: ID! - """Name of the plugin.""" + """ + Name of the plugin. + """ name: String! - """Description of the plugin.""" + """ + Description of the plugin. + """ description: String! - """Global configuration of the plugin (not channel-specific).""" + """ + Global configuration of the plugin (not channel-specific). + """ globalConfiguration: PluginConfiguration - """Channel-specific plugin configuration.""" + """ + Channel-specific plugin configuration. + """ channelConfigurations: [PluginConfiguration!]! } -"""Stores information about a configuration of plugin.""" +""" +Stores information about a configuration of plugin. +""" type PluginConfiguration { - """Determines if plugin is active or not.""" + """ + Determines if plugin is active or not. + """ active: Boolean! - """The channel to which the plugin configuration is assigned to.""" + """ + The channel to which the plugin configuration is assigned to. + """ channel: Channel - """Configuration of the plugin.""" + """ + Configuration of the plugin. + """ configuration: [ConfigurationItem!] } -"""Stores information about a single configuration field.""" +""" +Stores information about a single configuration field. +""" type ConfigurationItem { - """Name of the field.""" + """ + Name of the field. + """ name: String! - """Current value of the field.""" + """ + Current value of the field. + """ value: String - """Type of the field.""" + """ + Type of the field. + """ type: ConfigurationTypeFieldEnum - """Help text for the field.""" + """ + Help text for the field. + """ helpText: String - """Label for the field.""" + """ + Label for the field. + """ label: String } -"""An enumeration.""" +""" +An enumeration. +""" enum ConfigurationTypeFieldEnum { STRING MULTILINE @@ -11410,19 +14592,27 @@ enum ConfigurationTypeFieldEnum { } type PluginCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [PluginCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type PluginCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: Plugin! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -11443,10 +14633,14 @@ enum PluginConfigurationType { } input PluginSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort plugins by the selected field.""" + """ + Sort plugins by the selected field. + """ field: PluginSortField! } @@ -11456,19 +14650,27 @@ enum PluginSortField { } type SaleCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [SaleCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type SaleCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: Sale! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -11488,61 +14690,85 @@ enum DiscountStatusEnum { } input SaleSortingInput { - """Specifies the direction in which to sort products.""" + """ + 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.""" + """ + Sort sales by the selected field. + """ field: SaleSortField! } enum SaleSortField { - """Sort sales by name.""" + """ + Sort sales by name. + """ NAME - """Sort sales by start date.""" + """ + Sort sales by start date. + """ START_DATE - """Sort sales by end 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.""" + """ + Sort sales by type. + """ TYPE - """Sort sales by created at.""" + """ + Sort sales by created at. + """ CREATED_AT - """Sort sales by last modified at.""" + """ + Sort sales by last modified at. + """ LAST_MODIFIED_AT } type VoucherCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [VoucherCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type VoucherCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: Voucher! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -11563,85 +14789,121 @@ enum VoucherDiscountType { } input VoucherSortingInput { - """Specifies the direction in which to sort products.""" + """ + 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.""" + """ + Sort vouchers by the selected field. + """ field: VoucherSortField! } enum VoucherSortField { - """Sort vouchers by code.""" + """ + Sort vouchers by code. + """ CODE - """Sort vouchers by start date.""" + """ + Sort vouchers by start date. + """ START_DATE - """Sort vouchers by end 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.""" + """ + Sort vouchers by type. + """ TYPE - """Sort vouchers by usage limit.""" + """ + 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.""" +""" +Represents a job data of exported file. +""" type ExportFile implements Node & Job { id: ID! - """Job status.""" + """ + Job status. + """ status: JobStatusEnum! - """Created date time of job in ISO 8601 format.""" + """ + Created date time of job in ISO 8601 format. + """ createdAt: DateTime! - """Date time of job last update in ISO 8601 format.""" + """ + Date time of job last update in ISO 8601 format. + """ updatedAt: DateTime! - """Job message.""" + """ + Job message. + """ message: String - """The URL of field to download.""" + """ + The URL of field to download. + """ url: String - """List of events associated with the export.""" + """ + List of events associated with the export. + """ events: [ExportEvent!] user: User app: App } -"""History log of export file.""" +""" +History log of export file. +""" type ExportEvent implements Node { - """The ID of the object.""" + """ + The ID of the object. + """ id: ID! - """Date when event happened at in ISO 8601 format.""" + """ + Date when event happened at in ISO 8601 format. + """ date: DateTime! - """Export event type.""" + """ + Export event type. + """ type: ExportEventsEnum! """ @@ -11654,11 +14916,15 @@ type ExportEvent implements Node { """ app: App - """Content of the event.""" + """ + Content of the event. + """ message: String! } -"""An enumeration.""" +""" +An enumeration. +""" enum ExportEventsEnum { EXPORT_PENDING EXPORT_SUCCESS @@ -11669,19 +14935,27 @@ enum ExportEventsEnum { } type ExportFileCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [ExportFileCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type ExportFileCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: ExportFile! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -11694,10 +14968,14 @@ input ExportFileFilterInput { } input ExportFileSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort export file by the selected field.""" + """ + Sort export file by the selected field. + """ field: ExportFileSortField! } @@ -11709,21 +14987,31 @@ enum ExportFileSortField { } input CheckoutSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort checkouts by the selected field.""" + """ + Sort checkouts by the selected field. + """ field: CheckoutSortField! } enum CheckoutSortField { - """Sort checkouts by creation date.""" + """ + Sort checkouts by creation date. + """ CREATION_DATE - """Sort checkouts by customer.""" + """ + Sort checkouts by customer. + """ CUSTOMER - """Sort checkouts by payment.""" + """ + Sort checkouts by payment. + """ PAYMENT } @@ -11736,53 +15024,81 @@ input CheckoutFilterInput { } type CheckoutLineCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [CheckoutLineCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type CheckoutLineCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: CheckoutLine! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } input AttributeSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort attributes by the selected field.""" + """ + Sort attributes by the selected field. + """ field: AttributeSortField! } enum AttributeSortField { - """Sort attributes by name""" + """ + Sort attributes by name + """ NAME - """Sort attributes by slug""" + """ + Sort attributes by slug + """ SLUG - """Sort attributes by the value required flag""" + """ + Sort attributes by the value required flag + """ VALUE_REQUIRED - """Sort attributes by the variant only flag""" + """ + Sort attributes by the variant only flag + """ IS_VARIANT_ONLY - """Sort attributes by visibility in the storefront""" + """ + Sort attributes by visibility in the storefront + """ VISIBLE_IN_STOREFRONT - """Sort attributes by the filterable in storefront flag""" + """ + Sort attributes by the filterable in storefront flag + """ FILTERABLE_IN_STOREFRONT - """Sort attributes by the filterable in dashboard flag""" + """ + Sort attributes by the filterable in dashboard flag + """ FILTERABLE_IN_DASHBOARD - """Sort attributes by their position in storefront""" + """ + Sort attributes by their position in storefront + """ STOREFRONT_SEARCH_POSITION """ @@ -11791,39 +15107,57 @@ enum AttributeSortField { AVAILABLE_IN_GRID } -"""Represents ongoing installation of app.""" +""" +Represents ongoing installation of app. +""" type AppInstallation implements Node & Job { id: ID! - """Job status.""" + """ + Job status. + """ status: JobStatusEnum! - """Created date time of job in ISO 8601 format.""" + """ + Created date time of job in ISO 8601 format. + """ createdAt: DateTime! - """Date time of job last update in ISO 8601 format.""" + """ + Date time of job last update in ISO 8601 format. + """ updatedAt: DateTime! - """Job message.""" + """ + Job message. + """ message: String appName: String! manifestUrl: String! } type AppCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [AppCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type AppCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: App! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -11834,35 +15168,51 @@ input AppFilterInput { } input AppSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort apps by the selected field.""" + """ + Sort apps by the selected field. + """ field: AppSortField! } enum AppSortField { - """Sort apps by name.""" + """ + Sort apps by name. + """ NAME - """Sort apps by creation date.""" + """ + Sort apps by creation date. + """ CREATION_DATE } type AppExtensionCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [AppExtensionCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type AppExtensionCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: AppExtension! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -11897,19 +15247,27 @@ type ChoiceValue { } type UserCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [UserCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type UserCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: User! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -11921,8 +15279,8 @@ input CustomerFilterInput { metadata: [MetadataFilter!] """ - Filter by ids. - + Filter by ids. + Added in Saleor 3.8. """ ids: [ID!] @@ -11930,47 +15288,71 @@ input CustomerFilterInput { } input UserSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort users by the selected field.""" + """ + Sort users by the selected field. + """ field: UserSortField! } enum UserSortField { - """Sort users by first name.""" + """ + Sort users by first name. + """ FIRST_NAME - """Sort users by last name.""" + """ + Sort users by last name. + """ LAST_NAME - """Sort users by email.""" + """ + Sort users by email. + """ EMAIL - """Sort users by order count.""" + """ + Sort users by order count. + """ ORDER_COUNT - """Sort users by created at.""" + """ + Sort users by created at. + """ CREATED_AT - """Sort users by last modified at.""" + """ + Sort users by last modified at. + """ LAST_MODIFIED_AT } type GroupCountableConnection { - """Pagination data for this connection.""" + """ + Pagination data for this connection. + """ pageInfo: PageInfo! edges: [GroupCountableEdge!]! - """A total count of items in the collection.""" + """ + A total count of items in the collection. + """ totalCount: Int } type GroupCountableEdge { - """The item at the end of the edge.""" + """ + The item at the end of the edge. + """ node: Group! - """A cursor for use in pagination.""" + """ + A cursor for use in pagination. + """ cursor: String! } @@ -11980,15 +15362,21 @@ input PermissionGroupFilterInput { } input PermissionGroupSortingInput { - """Specifies the direction in which to sort products.""" + """ + Specifies the direction in which to sort products. + """ direction: OrderDirection! - """Sort permission group by the selected field.""" + """ + Sort permission group by the selected field. + """ field: PermissionGroupSortField! } enum PermissionGroupSortField { - """Sort permission group accounts by name.""" + """ + Sort permission group accounts by name. + """ NAME } @@ -11999,223 +15387,275 @@ input StaffUserInput { } enum StaffMemberStatus { - """User account has been activated.""" + """ + User account has been activated. + """ ACTIVE - """User account has not been activated yet.""" + """ + User account has not been activated yet. + """ DEACTIVATED } type Mutation { """ - Creates a new webhook subscription. - + Creates a new webhook subscription. + Requires one of the following permissions: MANAGE_APPS, AUTHENTICATED_APP. """ webhookCreate( - """Fields required to create a webhook.""" + """ + 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. - + 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 of a webhook to delete. + """ id: ID! ): WebhookDelete """ - Updates a webhook subscription. - + Updates a webhook subscription. + Requires one of the following permissions: MANAGE_APPS. """ webhookUpdate( - """ID of a webhook to update.""" + """ + ID of a webhook to update. + """ id: ID! - """Fields required to update a webhook.""" + """ + Fields required to update a webhook. + """ input: WebhookUpdateInput! ): WebhookUpdate """ - Retries event delivery. - + Retries event delivery. + Requires one of the following permissions: MANAGE_APPS. """ eventDeliveryRetry( - """ID of the event delivery to retry.""" + """ + ID of the event delivery to retry. + """ id: ID! ): EventDeliveryRetry """ Performs a dry run of a webhook event. Supports a single event (the first, if multiple provided in the `query`). Requires permission relevant to processed event. - + Added in Saleor 3.11. - - Note: this API is currently in Feature Preview and can be subject to changes at later point. - + + 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. """ webhookDryRun( - """The ID of an object to serialize.""" + """ + The ID of an object to serialize. + """ objectId: ID! - """The subscription query that defines the webhook event and its payload.""" + """ + The subscription query that defines the webhook event and its payload. + """ query: String! ): WebhookDryRun """ Trigger a webhook event. Supports a single event (the first, if multiple provided in the `webhook.subscription_query`). Requires permission relevant to processed event. Successfully delivered webhook returns `delivery` with status='PENDING' and empty payload. - + Added in Saleor 3.11. - - Note: this API is currently in Feature Preview and can be subject to changes at later point. - + + 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. """ webhookTrigger( - """The ID of an object to serialize.""" + """ + The ID of an object to serialize. + """ objectId: ID! - """The ID of the webhook.""" + """ + The ID of the webhook. + """ webhookId: ID! ): WebhookTrigger """ - Creates new warehouse. - + Creates new warehouse. + Requires one of the following permissions: MANAGE_PRODUCTS. """ createWarehouse( - """Fields required to create warehouse.""" + """ + Fields required to create warehouse. + """ input: WarehouseCreateInput! ): WarehouseCreate """ - Updates given warehouse. - + Updates given warehouse. + Requires one of the following permissions: MANAGE_PRODUCTS. """ updateWarehouse( - """ID of a warehouse to update.""" + """ + ID of a warehouse to update. + """ id: ID! - """Fields required to update warehouse.""" + """ + Fields required to update warehouse. + """ input: WarehouseUpdateInput! ): WarehouseUpdate """ - Deletes selected warehouse. - + Deletes selected warehouse. + Requires one of the following permissions: MANAGE_PRODUCTS. """ deleteWarehouse( - """ID of a warehouse to delete.""" + """ + ID of a warehouse to delete. + """ id: ID! ): WarehouseDelete """ - Add shipping zone to given warehouse. - + Add shipping zone to given warehouse. + Requires one of the following permissions: MANAGE_PRODUCTS. """ assignWarehouseShippingZone( - """ID of a warehouse to update.""" + """ + ID of a warehouse to update. + """ id: ID! - """List of shipping zone IDs.""" + """ + List of shipping zone IDs. + """ shippingZoneIds: [ID!]! ): WarehouseShippingZoneAssign """ - Remove shipping zone from given warehouse. - + Remove shipping zone from given warehouse. + Requires one of the following permissions: MANAGE_PRODUCTS. """ unassignWarehouseShippingZone( - """ID of a warehouse to update.""" + """ + ID of a warehouse to update. + """ id: ID! - """List of shipping zone IDs.""" + """ + 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. - + + 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.""" + """ + 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. - + + 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 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. - + + 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 of the tax class. + """ id: ID! - """Fields required to update a tax class.""" + """ + 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. - + + 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 of the tax configuration. + """ id: ID! - """Fields required to update the tax configuration.""" + """ + 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. - + + 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.""" + """ + Country in which to update the tax class rates. + """ countryCode: CountryCode! """ @@ -12226,325 +15666,404 @@ type Mutation { """ 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. - + + 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.""" + """ + 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. - + + 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 of the Checkout or Order object. + """ id: ID! - """Determines if a taxes should be exempt.""" + """ + Determines if a taxes should be exempt. + """ taxExemption: Boolean! ): TaxExemptionManage """ - Creates a new staff notification recipient. - + Creates a new staff notification recipient. + Requires one of the following permissions: MANAGE_SETTINGS. """ staffNotificationRecipientCreate( - """Fields required to create a staff notification recipient.""" + """ + Fields required to create a staff notification recipient. + """ input: StaffNotificationRecipientInput! ): StaffNotificationRecipientCreate """ - Updates a staff notification recipient. - + Updates a staff notification recipient. + Requires one of the following permissions: MANAGE_SETTINGS. """ staffNotificationRecipientUpdate( - """ID of a staff notification recipient to update.""" + """ + ID of a staff notification recipient to update. + """ id: ID! - """Fields required to update a staff notification recipient.""" + """ + Fields required to update a staff notification recipient. + """ input: StaffNotificationRecipientInput! ): StaffNotificationRecipientUpdate """ - Delete staff notification recipient. - + Delete staff notification recipient. + Requires one of the following permissions: MANAGE_SETTINGS. """ staffNotificationRecipientDelete( - """ID of a staff notification recipient to delete.""" + """ + ID of a staff notification recipient to delete. + """ id: ID! ): StaffNotificationRecipientDelete """ - Updates site domain of the shop. - + Updates site domain of the shop. + Requires one of the following permissions: MANAGE_SETTINGS. """ shopDomainUpdate( - """Fields required to update site.""" + """ + Fields required to update site. + """ input: SiteDomainInput ): ShopDomainUpdate """ - Updates shop settings. - + Updates shop settings. + Requires one of the following permissions: MANAGE_SETTINGS. """ shopSettingsUpdate( - """Fields required to update shop settings.""" + """ + Fields required to update shop settings. + """ input: ShopSettingsInput! ): ShopSettingsUpdate """ - Fetch tax rates. - + 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.") + shopFetchTaxRates: ShopFetchTaxRates + @deprecated(reason: "\\n\\nDEPRECATED: this mutation will be removed in Saleor 4.0.") """ - Creates/updates translations for shop settings. - + Creates/updates translations for shop settings. + Requires one of the following permissions: MANAGE_TRANSLATIONS. """ shopSettingsTranslate( - """Fields required to update shop settings translations.""" + """ + Fields required to update shop settings translations. + """ input: ShopSettingsTranslationInput! - """Translation language code.""" + """ + Translation language code. + """ languageCode: LanguageCodeEnum! ): ShopSettingsTranslate """ - Update the shop's address. If the `null` value is passed, the currently selected address will be deleted. - + 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.""" + """ + Fields required to update shop address. + """ input: AddressInput ): ShopAddressUpdate """ - Update shop order settings. - + Update shop order settings. + Requires one of the following permissions: MANAGE_ORDERS. """ orderSettingsUpdate( - """Fields required to update shop order settings.""" + """ + Fields required to update shop order settings. + """ input: OrderSettingsUpdateInput! ): OrderSettingsUpdate """ - Update gift card settings. - + Update gift card settings. + Requires one of the following permissions: MANAGE_GIFT_CARD. """ giftCardSettingsUpdate( - """Fields required to update gift card settings.""" + """ + Fields required to update gift card settings. + """ input: GiftCardSettingsUpdateInput! ): GiftCardSettingsUpdate """ - Manage shipping method's availability in channels. - + Manage shipping method's availability in channels. + Requires one of the following permissions: MANAGE_SHIPPING. """ shippingMethodChannelListingUpdate( - """ID of a shipping method to update.""" + """ + ID of a shipping method to update. + """ id: ID! - """Fields required to update shipping method channel listings.""" + """ + Fields required to update shipping method channel listings. + """ input: ShippingMethodChannelListingInput! ): ShippingMethodChannelListingUpdate """ - Creates a new shipping price. - + Creates a new shipping price. + Requires one of the following permissions: MANAGE_SHIPPING. """ shippingPriceCreate( - """Fields required to create a shipping price.""" + """ + Fields required to create a shipping price. + """ input: ShippingPriceInput! ): ShippingPriceCreate """ - Deletes a shipping price. - + Deletes a shipping price. + Requires one of the following permissions: MANAGE_SHIPPING. """ shippingPriceDelete( - """ID of a shipping price to delete.""" + """ + ID of a shipping price to delete. + """ id: ID! ): ShippingPriceDelete """ - Deletes shipping prices. - + Deletes shipping prices. + Requires one of the following permissions: MANAGE_SHIPPING. """ shippingPriceBulkDelete( - """List of shipping price IDs to delete.""" + """ + List of shipping price IDs to delete. + """ ids: [ID!]! ): ShippingPriceBulkDelete """ - Updates a new shipping price. - + Updates a new shipping price. + Requires one of the following permissions: MANAGE_SHIPPING. """ shippingPriceUpdate( - """ID of a shipping price to update.""" + """ + ID of a shipping price to update. + """ id: ID! - """Fields required to update a shipping price.""" + """ + Fields required to update a shipping price. + """ input: ShippingPriceInput! ): ShippingPriceUpdate """ - Creates/updates translations for a shipping method. - + Creates/updates translations for a shipping method. + Requires one of the following permissions: MANAGE_TRANSLATIONS. """ shippingPriceTranslate( - """ShippingMethodType ID or ShippingMethodTranslatableContent ID.""" + """ + ShippingMethodType ID or ShippingMethodTranslatableContent ID. + """ id: ID! input: ShippingPriceTranslationInput! - """Translation language code.""" + """ + Translation language code. + """ languageCode: LanguageCodeEnum! ): ShippingPriceTranslate """ - Exclude products from shipping price. - + Exclude products from shipping price. + Requires one of the following permissions: MANAGE_SHIPPING. """ shippingPriceExcludeProducts( - """ID of a shipping price.""" + """ + ID of a shipping price. + """ id: ID! - """Exclude products input.""" + """ + Exclude products input. + """ input: ShippingPriceExcludeProductsInput! ): ShippingPriceExcludeProducts """ - Remove product from excluded list for shipping price. - + Remove product from excluded list for shipping price. + Requires one of the following permissions: MANAGE_SHIPPING. """ shippingPriceRemoveProductFromExclude( - """ID of a shipping price.""" + """ + ID of a shipping price. + """ id: ID! - """List of products which will be removed from excluded list.""" + """ + List of products which will be removed from excluded list. + """ products: [ID!]! ): ShippingPriceRemoveProductFromExclude """ - Creates a new shipping zone. - + Creates a new shipping zone. + Requires one of the following permissions: MANAGE_SHIPPING. """ shippingZoneCreate( - """Fields required to create a shipping zone.""" + """ + Fields required to create a shipping zone. + """ input: ShippingZoneCreateInput! ): ShippingZoneCreate """ - Deletes a shipping zone. - + Deletes a shipping zone. + Requires one of the following permissions: MANAGE_SHIPPING. """ shippingZoneDelete( - """ID of a shipping zone to delete.""" + """ + ID of a shipping zone to delete. + """ id: ID! ): ShippingZoneDelete """ - Deletes shipping zones. - + Deletes shipping zones. + Requires one of the following permissions: MANAGE_SHIPPING. """ shippingZoneBulkDelete( - """List of shipping zone IDs to delete.""" + """ + List of shipping zone IDs to delete. + """ ids: [ID!]! ): ShippingZoneBulkDelete """ - Updates a new shipping zone. - + Updates a new shipping zone. + Requires one of the following permissions: MANAGE_SHIPPING. """ shippingZoneUpdate( - """ID of a shipping zone to update.""" + """ + ID of a shipping zone to update. + """ id: ID! - """Fields required to update a shipping zone.""" + """ + Fields required to update a shipping zone. + """ input: ShippingZoneUpdateInput! ): ShippingZoneUpdate """ - Assign attributes to a given product type. - + Assign attributes to a given product type. + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. """ productAttributeAssign( - """The operations to perform.""" + """ + The operations to perform. + """ operations: [ProductAttributeAssignInput!]! - """ID of the product type to assign the attributes into.""" + """ + 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. - + + Added in Saleor 3.1. + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. """ productAttributeAssignmentUpdate( - """The operations to perform.""" + """ + The operations to perform. + """ operations: [ProductAttributeAssignmentUpdateInput!]! - """ID of the product type to assign the attributes into.""" + """ + ID of the product type to assign the attributes into. + """ productTypeId: ID! ): ProductAttributeAssignmentUpdate """ - Un-assign attributes from a given product type. - + 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.""" + """ + The IDs of the attributes to unassign. + """ attributeIds: [ID!]! - """ID of the product type from which the attributes should be unassigned.""" + """ + ID of the product type from which the attributes should be unassigned. + """ productTypeId: ID! ): ProductAttributeUnassign """ - Creates a new category. - + Creates a new category. + Requires one of the following permissions: MANAGE_PRODUCTS. """ categoryCreate( - """Fields required to create a category.""" + """ + Fields required to create a category. + """ input: CategoryInput! """ @@ -12554,634 +16073,792 @@ type Mutation { ): CategoryCreate """ - Deletes a category. - + Deletes a category. + Requires one of the following permissions: MANAGE_PRODUCTS. """ categoryDelete( - """ID of a category to delete.""" + """ + ID of a category to delete. + """ id: ID! ): CategoryDelete """ - Deletes categories. - + Deletes categories. + Requires one of the following permissions: MANAGE_PRODUCTS. """ categoryBulkDelete( - """List of category IDs to delete.""" + """ + List of category IDs to delete. + """ ids: [ID!]! ): CategoryBulkDelete """ - Updates a category. - + Updates a category. + Requires one of the following permissions: MANAGE_PRODUCTS. """ categoryUpdate( - """ID of a category to update.""" + """ + ID of a category to update. + """ id: ID! - """Fields required to update a category.""" + """ + Fields required to update a category. + """ input: CategoryInput! ): CategoryUpdate """ - Creates/updates translations for a category. - + Creates/updates translations for a category. + Requires one of the following permissions: MANAGE_TRANSLATIONS. """ categoryTranslate( - """Category ID or CategoryTranslatableContent ID.""" + """ + Category ID or CategoryTranslatableContent ID. + """ id: ID! input: TranslationInput! - """Translation language code.""" + """ + Translation language code. + """ languageCode: LanguageCodeEnum! ): CategoryTranslate """ - Adds products to a collection. - + Adds products to a collection. + Requires one of the following permissions: MANAGE_PRODUCTS. """ collectionAddProducts( - """ID of a collection.""" + """ + ID of a collection. + """ collectionId: ID! - """List of product IDs.""" + """ + List of product IDs. + """ products: [ID!]! ): CollectionAddProducts """ - Creates a new collection. - + Creates a new collection. + Requires one of the following permissions: MANAGE_PRODUCTS. """ collectionCreate( - """Fields required to create a collection.""" + """ + Fields required to create a collection. + """ input: CollectionCreateInput! ): CollectionCreate """ - Deletes a collection. - + Deletes a collection. + Requires one of the following permissions: MANAGE_PRODUCTS. """ collectionDelete( - """ID of a collection to delete.""" + """ + ID of a collection to delete. + """ id: ID! ): CollectionDelete """ - Reorder the products of a collection. - + Reorder the products of a collection. + Requires one of the following permissions: MANAGE_PRODUCTS. """ collectionReorderProducts( - """ID of a collection.""" + """ + ID of a collection. + """ collectionId: ID! - """The collection products position operations.""" + """ + The collection products position operations. + """ moves: [MoveProductInput!]! ): CollectionReorderProducts """ - Deletes collections. - + Deletes collections. + Requires one of the following permissions: MANAGE_PRODUCTS. """ collectionBulkDelete( - """List of collection IDs to delete.""" + """ + List of collection IDs to delete. + """ ids: [ID!]! ): CollectionBulkDelete """ - Remove products from a collection. - + Remove products from a collection. + Requires one of the following permissions: MANAGE_PRODUCTS. """ collectionRemoveProducts( - """ID of a collection.""" + """ + ID of a collection. + """ collectionId: ID! - """List of product IDs.""" + """ + List of product IDs. + """ products: [ID!]! ): CollectionRemoveProducts """ - Updates a collection. - + Updates a collection. + Requires one of the following permissions: MANAGE_PRODUCTS. """ collectionUpdate( - """ID of a collection to update.""" + """ + ID of a collection to update. + """ id: ID! - """Fields required to update a collection.""" + """ + Fields required to update a collection. + """ input: CollectionInput! ): CollectionUpdate """ - Creates/updates translations for a collection. - + Creates/updates translations for a collection. + Requires one of the following permissions: MANAGE_TRANSLATIONS. """ collectionTranslate( - """Collection ID or CollectionTranslatableContent ID.""" + """ + Collection ID or CollectionTranslatableContent ID. + """ id: ID! input: TranslationInput! - """Translation language code.""" + """ + Translation language code. + """ languageCode: LanguageCodeEnum! ): CollectionTranslate """ - Manage collection's availability in channels. - + Manage collection's availability in channels. + Requires one of the following permissions: MANAGE_PRODUCTS. """ collectionChannelListingUpdate( - """ID of a collection to update.""" + """ + ID of a collection to update. + """ id: ID! - """Fields required to create or update collection channel listings.""" + """ + Fields required to create or update collection channel listings. + """ input: CollectionChannelListingUpdateInput! ): CollectionChannelListingUpdate """ - Creates a new product. - + Creates a new product. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productCreate( - """Fields required to create a product.""" + """ + Fields required to create a product. + """ input: ProductCreateInput! ): ProductCreate """ - Deletes a product. - + Deletes a product. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productDelete( """ - External ID of a product to delete. - + External ID of a product to delete. + Added in Saleor 3.10. """ externalReference: String - """ID of a product to delete.""" + """ + ID of a product to delete. + """ id: ID ): ProductDelete """ - Deletes products. - + Deletes products. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productBulkDelete( - """List of product IDs to delete.""" + """ + List of product IDs to delete. + """ ids: [ID!]! ): ProductBulkDelete """ - Updates an existing product. - + Updates an existing product. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productUpdate( """ - External ID of a product to update. - + External ID of a product to update. + Added in Saleor 3.10. """ externalReference: String - """ID of a product to update.""" + """ + ID of a product to update. + """ id: ID - """Fields required to update a product.""" + """ + Fields required to update a product. + """ input: ProductInput! ): ProductUpdate """ - Creates/updates translations for a product. - + Creates/updates translations for a product. + Requires one of the following permissions: MANAGE_TRANSLATIONS. """ productTranslate( - """Product ID or ProductTranslatableContent ID.""" + """ + Product ID or ProductTranslatableContent ID. + """ id: ID! input: TranslationInput! - """Translation language code.""" + """ + Translation language code. + """ languageCode: LanguageCodeEnum! ): ProductTranslate """ - Manage product's availability in channels. - + Manage product's availability in channels. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productChannelListingUpdate( - """ID of a product to update.""" + """ + ID of a product to update. + """ id: ID! - """Fields required to create or update product channel listings.""" + """ + 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 - + 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.""" + """ + 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. - + 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.""" + """ + The list of variant reordering operations. + """ moves: [ReorderInput!]! - """Id of product that variants order will be altered.""" + """ + Id of product that variants order will be altered. + """ productId: ID! ): ProductVariantReorder """ - Deletes a product media. - + Deletes a product media. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productMediaDelete( - """ID of a product media to delete.""" + """ + ID of a product media to delete. + """ id: ID! ): ProductMediaDelete """ - Deletes product media. - + Deletes product media. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productMediaBulkDelete( - """List of product media IDs to delete.""" + """ + List of product media IDs to delete. + """ ids: [ID!]! ): ProductMediaBulkDelete """ - Changes ordering of the product media. - + Changes ordering of the product media. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productMediaReorder( - """IDs of a product media in the desired order.""" + """ + IDs of a product media in the desired order. + """ mediaIds: [ID!]! - """ID of product that media order will be altered.""" + """ + ID of product that media order will be altered. + """ productId: ID! ): ProductMediaReorder """ - Updates a product media. - + Updates a product media. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productMediaUpdate( - """ID of a product media to update.""" + """ + ID of a product media to update. + """ id: ID! - """Fields required to update a product media.""" + """ + Fields required to update a product media. + """ input: ProductMediaUpdateInput! ): ProductMediaUpdate """ - Creates a new product type. - + Creates a new product type. + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. """ productTypeCreate( - """Fields required to create a product type.""" + """ + Fields required to create a product type. + """ input: ProductTypeInput! ): ProductTypeCreate """ - Deletes a product type. - + Deletes a product type. + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. """ productTypeDelete( - """ID of a product type to delete.""" + """ + ID of a product type to delete. + """ id: ID! ): ProductTypeDelete """ - Deletes product types. - + Deletes product types. + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. """ productTypeBulkDelete( - """List of product type IDs to delete.""" + """ + List of product type IDs to delete. + """ ids: [ID!]! ): ProductTypeBulkDelete """ - Updates an existing product type. - + 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 of a product type to update. + """ id: ID! - """Fields required to update a product type.""" + """ + Fields required to update a product type. + """ input: ProductTypeInput! ): ProductTypeUpdate """ - Reorder the attributes of a product type. - + 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.""" + """ + The list of attribute reordering operations. + """ moves: [ReorderInput!]! - """ID of a product type.""" + """ + ID of a product type. + """ productTypeId: ID! - """The attribute type to reorder.""" + """ + The attribute type to reorder. + """ type: ProductAttributeType! ): ProductTypeReorderAttributes """ - Reorder product attribute values. - + Reorder product attribute values. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productReorderAttributeValues( - """ID of an attribute.""" + """ + ID of an attribute. + """ attributeId: ID! - """The list of reordering operations for given attribute values.""" + """ + The list of reordering operations for given attribute values. + """ moves: [ReorderInput!]! - """ID of a product.""" + """ + 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 - + 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.""" + """ + Fields required to create a digital content. + """ input: DigitalContentUploadInput! - """ID of a product variant to upload digital content.""" + """ + ID of a product variant to upload digital content. + """ variantId: ID! ): DigitalContentCreate """ - Remove digital content assigned to given variant. - + 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.""" + """ + ID of a product variant with digital content to remove. + """ variantId: ID! ): DigitalContentDelete """ - Update digital content. - + Update digital content. + Requires one of the following permissions: MANAGE_PRODUCTS. """ digitalContentUpdate( - """Fields required to update a digital content.""" + """ + Fields required to update a digital content. + """ input: DigitalContentInput! - """ID of a product variant with digital content to update.""" + """ + ID of a product variant with digital content to update. + """ variantId: ID! ): DigitalContentUpdate """ - Generate new URL to digital content. - + Generate new URL to digital content. + Requires one of the following permissions: MANAGE_PRODUCTS. """ digitalContentUrlCreate( - """Fields required to create a new url.""" + """ + Fields required to create a new url. + """ input: DigitalContentUrlCreateInput! ): DigitalContentUrlCreate """ - Creates a new variant for a product. - + Creates a new variant for a product. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productVariantCreate( - """Fields required to create a product variant.""" + """ + Fields required to create a product variant. + """ input: ProductVariantCreateInput! ): ProductVariantCreate """ - Deletes a product variant. - + Deletes a product variant. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productVariantDelete( """ - External ID of a product variant to update. - + External ID of a product variant to update. + Added in Saleor 3.10. """ externalReference: String - """ID of a product variant to delete.""" + """ + 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. - + Creates product variants for a given product. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productVariantBulkCreate( """ Policies of error handling. DEFAULT: REJECT_EVERYTHING - + Added in Saleor 3.11. - + Note: this API is currently in Feature Preview and can be subject to changes at later point. """ errorPolicy: ErrorPolicyEnum = reject_everything - """ID of the product to create the variants for.""" + """ + ID of the product to create the variants for. + """ product: ID! - """Input list of product variants to create.""" + """ + Input list of product variants to create. + """ variants: [ProductVariantBulkCreateInput!]! ): ProductVariantBulkCreate """ Update multiple product variants. - + Added in Saleor 3.11. - - Note: this API is currently in Feature Preview and can be subject to changes at later point. - + + 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. """ productVariantBulkUpdate( - """Policies of error handling. DEFAULT: REJECT_EVERYTHING""" + """ + Policies of error handling. DEFAULT: REJECT_EVERYTHING + """ errorPolicy: ErrorPolicyEnum = reject_everything - """ID of the product to update the variants for.""" + """ + ID of the product to update the variants for. + """ product: ID! - """Input list of product variants to update.""" + """ + Input list of product variants to update. + """ variants: [ProductVariantBulkUpdateInput!]! ): ProductVariantBulkUpdate """ - Deletes product variants. - + Deletes product variants. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productVariantBulkDelete( - """List of product variant IDs to delete.""" + """ + 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. - + Creates stocks for product variant. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productVariantStocksCreate( - """Input list of stocks to create.""" + """ + Input list of stocks to create. + """ stocks: [StockInput!]! - """ID of a product variant for which stocks will be created.""" + """ + ID of a product variant for which stocks will be created. + """ variantId: ID! ): ProductVariantStocksCreate """ - Delete stocks from product variant. - + 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 of product variant for which stocks will be deleted. + """ sku: String - """ID of product variant for which stocks will be deleted.""" + """ + ID of product variant for which stocks will be deleted. + """ variantId: ID - """Input list of warehouse IDs.""" + """ + Input list of warehouse IDs. + """ warehouseIds: [ID!] ): ProductVariantStocksDelete """ - Update stocks for product variant. - + 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 of product variant for which stocks will be updated. + """ sku: String - """Input list of stocks to create or update.""" + """ + Input list of stocks to create or update. + """ stocks: [StockInput!]! - """ID of a product variant for which stocks will be updated.""" + """ + ID of a product variant for which stocks will be updated. + """ variantId: ID ): ProductVariantStocksUpdate """ - Updates an existing variant for product. - + Updates an existing variant for product. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productVariantUpdate( """ - External ID of a product variant to update. - + External ID of a product variant to update. + Added in Saleor 3.10. """ externalReference: String - """ID of a product to update.""" + """ + ID of a product to update. + """ id: ID - """Fields required to update a product variant.""" + """ + 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. - + 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.""" + """ + Id of a product that will have the default variant set. + """ productId: ID! - """Id of a variant that will be set as default.""" + """ + Id of a variant that will be set as default. + """ variantId: ID! ): ProductVariantSetDefault """ - Creates/updates translations for a product variant. - + Creates/updates translations for a product variant. + Requires one of the following permissions: MANAGE_TRANSLATIONS. """ productVariantTranslate( - """ProductVariant ID or ProductVariantTranslatableContent ID.""" + """ + ProductVariant ID or ProductVariantTranslatableContent ID. + """ id: ID! input: NameTranslationInput! - """Translation language code.""" + """ + Translation language code. + """ languageCode: LanguageCodeEnum! ): ProductVariantTranslate """ - Manage product variant prices in channels. - + Manage product variant prices in channels. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productVariantChannelListingUpdate( - """ID of a product variant to update.""" + """ + ID of a product variant to update. + """ id: ID """ @@ -13191,169 +16868,221 @@ type Mutation { """ SKU of a product variant to update. - + Added in Saleor 3.8. """ sku: String ): ProductVariantChannelListingUpdate """ - Reorder product variant attribute values. - + Reorder product variant attribute values. + Requires one of the following permissions: MANAGE_PRODUCTS. """ productVariantReorderAttributeValues( - """ID of an attribute.""" + """ + ID of an attribute. + """ attributeId: ID! - """The list of reordering operations for given attribute values.""" + """ + The list of reordering operations for given attribute values. + """ moves: [ReorderInput!]! - """ID of a product variant.""" + """ + 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. - + + 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 of a variant which preorder should be deactivated. + """ id: ID! ): ProductVariantPreorderDeactivate """ - Assign an media to a product variant. - + 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.""" + """ + ID of a product media to assign to a variant. + """ mediaId: ID! - """ID of a product variant.""" + """ + ID of a product variant. + """ variantId: ID! ): VariantMediaAssign """ - Unassign an media from a product variant. - + 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.""" + """ + ID of a product media to unassign from a variant. + """ mediaId: ID! - """ID of a product variant.""" + """ + ID of a product variant. + """ variantId: ID! ): VariantMediaUnassign """ - Captures the authorized payment amount. - + Captures the authorized payment amount. + Requires one of the following permissions: MANAGE_ORDERS. """ paymentCapture( - """Transaction amount.""" + """ + Transaction amount. + """ amount: PositiveDecimal - """Payment ID.""" + """ + Payment ID. + """ paymentId: ID! ): PaymentCapture """ - Refunds the captured payment amount. - + Refunds the captured payment amount. + Requires one of the following permissions: MANAGE_ORDERS. """ paymentRefund( - """Transaction amount.""" + """ + Transaction amount. + """ amount: PositiveDecimal - """Payment ID.""" + """ + Payment ID. + """ paymentId: ID! ): PaymentRefund """ - Voids the authorized payment. - + Voids the authorized payment. + Requires one of the following permissions: MANAGE_ORDERS. """ paymentVoid( - """Payment ID.""" + """ + Payment ID. + """ paymentId: ID! ): PaymentVoid - """Initializes payment process when it is required by gateway.""" + """ + Initializes payment process when it is required by gateway. + """ paymentInitialize( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String - """A gateway name used to initialize the payment.""" + """ + A gateway name used to initialize the payment. + """ gateway: String! - """Client-side generated data required to initialize the payment.""" + """ + Client-side generated data required to initialize the payment. + """ paymentData: JSONString ): PaymentInitialize - """Check payment balance.""" + """ + Check payment balance. + """ paymentCheckBalance( - """Fields required to check payment balance.""" + """ + 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.""" + """ + The ID of the checkout or order. + """ id: ID! - """Input data required to create a new transaction object.""" + """ + Input data required to create a new transaction object. + """ transaction: TransactionCreateInput! - """Data that defines a transaction event.""" + """ + 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.""" + """ + The ID of the transaction. + """ id: ID! - """Input data required to create a new transaction object.""" + """ + Input data required to create a new transaction object. + """ transaction: TransactionUpdateInput - """Data that defines a transaction transaction.""" + """ + 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. - + + 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.""" + """ + Determines the action type. + """ actionType: TransactionActionEnum! """ @@ -13361,555 +17090,701 @@ type Mutation { """ amount: PositiveDecimal - """The ID of the transaction.""" + """ + The ID of the transaction. + """ id: ID! ): TransactionRequestAction """ - Creates a new page. - + Creates a new page. + Requires one of the following permissions: MANAGE_PAGES. """ pageCreate( - """Fields required to create a page.""" + """ + Fields required to create a page. + """ input: PageCreateInput! ): PageCreate """ - Deletes a page. - + Deletes a page. + Requires one of the following permissions: MANAGE_PAGES. """ pageDelete( - """ID of a page to delete.""" + """ + ID of a page to delete. + """ id: ID! ): PageDelete """ - Deletes pages. - + Deletes pages. + Requires one of the following permissions: MANAGE_PAGES. """ pageBulkDelete( - """List of page IDs to delete.""" + """ + List of page IDs to delete. + """ ids: [ID!]! ): PageBulkDelete """ - Publish pages. - + Publish pages. + Requires one of the following permissions: MANAGE_PAGES. """ pageBulkPublish( - """List of page IDs to (un)publish.""" + """ + List of page IDs to (un)publish. + """ ids: [ID!]! - """Determine if pages will be published or not.""" + """ + Determine if pages will be published or not. + """ isPublished: Boolean! ): PageBulkPublish """ - Updates an existing page. - + Updates an existing page. + Requires one of the following permissions: MANAGE_PAGES. """ pageUpdate( - """ID of a page to update.""" + """ + ID of a page to update. + """ id: ID! - """Fields required to update a page.""" + """ + Fields required to update a page. + """ input: PageInput! ): PageUpdate """ - Creates/updates translations for a page. - + Creates/updates translations for a page. + Requires one of the following permissions: MANAGE_TRANSLATIONS. """ pageTranslate( - """Page ID or PageTranslatableContent ID.""" + """ + Page ID or PageTranslatableContent ID. + """ id: ID! input: PageTranslationInput! - """Translation language code.""" + """ + Translation language code. + """ languageCode: LanguageCodeEnum! ): PageTranslate """ - Create a new page type. - + Create a new page type. + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. """ pageTypeCreate( - """Fields required to create page type.""" + """ + Fields required to create page type. + """ input: PageTypeCreateInput! ): PageTypeCreate """ - Update page type. - + Update page type. + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. """ pageTypeUpdate( - """ID of the page type to update.""" + """ + ID of the page type to update. + """ id: ID - """Fields required to update page type.""" + """ + Fields required to update page type. + """ input: PageTypeUpdateInput! ): PageTypeUpdate """ - Delete a page type. - + Delete a page type. + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. """ pageTypeDelete( - """ID of the page type to delete.""" + """ + ID of the page type to delete. + """ id: ID! ): PageTypeDelete """ - Delete page types. - + Delete page types. + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. """ pageTypeBulkDelete( - """List of page type IDs to delete""" + """ + List of page type IDs to delete + """ ids: [ID!]! ): PageTypeBulkDelete """ - Assign attributes to a given page type. - + 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.""" + """ + The IDs of the attributes to assign. + """ attributeIds: [ID!]! - """ID of the page type to assign the attributes into.""" + """ + ID of the page type to assign the attributes into. + """ pageTypeId: ID! ): PageAttributeAssign """ - Unassign attributes from a given page type. - + 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.""" + """ + The IDs of the attributes to unassign. + """ attributeIds: [ID!]! - """ID of the page type from which the attributes should be unassign.""" + """ + ID of the page type from which the attributes should be unassign. + """ pageTypeId: ID! ): PageAttributeUnassign """ - Reorder the attributes of a page type. - + 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.""" + """ + The list of attribute reordering operations. + """ moves: [ReorderInput!]! - """ID of a page type.""" + """ + ID of a page type. + """ pageTypeId: ID! ): PageTypeReorderAttributes """ - Reorder page attribute values. - + Reorder page attribute values. + Requires one of the following permissions: MANAGE_PAGES. """ pageReorderAttributeValues( - """ID of an attribute.""" + """ + ID of an attribute. + """ attributeId: ID! - """The list of reordering operations for given attribute values.""" + """ + The list of reordering operations for given attribute values. + """ moves: [ReorderInput!]! - """ID of a page.""" + """ + ID of a page. + """ pageId: ID! ): PageReorderAttributeValues """ - Completes creating an order. - + Completes creating an order. + Requires one of the following permissions: MANAGE_ORDERS. """ draftOrderComplete( - """ID of the order that will be completed.""" + """ + ID of the order that will be completed. + """ id: ID! ): DraftOrderComplete """ - Creates a new draft order. - + Creates a new draft order. + Requires one of the following permissions: MANAGE_ORDERS. """ draftOrderCreate( - """Fields required to create an order.""" + """ + Fields required to create an order. + """ input: DraftOrderCreateInput! ): DraftOrderCreate """ - Deletes a draft order. - + Deletes a draft order. + Requires one of the following permissions: MANAGE_ORDERS. """ draftOrderDelete( """ - External ID of a product to delete. - + External ID of a product to delete. + Added in Saleor 3.10. """ externalReference: String - """ID of a product to delete.""" + """ + ID of a product to delete. + """ id: ID ): DraftOrderDelete """ - Deletes draft orders. - + Deletes draft orders. + Requires one of the following permissions: MANAGE_ORDERS. """ draftOrderBulkDelete( - """List of draft order IDs to delete.""" + """ + List of draft order IDs to delete. + """ ids: [ID!]! ): DraftOrderBulkDelete """ - Deletes order lines. - + Deletes order lines. + Requires one of the following permissions: MANAGE_ORDERS. """ draftOrderLinesBulkDelete( - """List of order lines IDs to delete.""" + """ + 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. - + Updates a draft order. + Requires one of the following permissions: MANAGE_ORDERS. """ draftOrderUpdate( """ - External ID of a draft order to update. - + External ID of a draft order to update. + Added in Saleor 3.10. """ externalReference: String - """ID of a draft order to update.""" + """ + ID of a draft order to update. + """ id: ID - """Fields required to update an order.""" + """ + Fields required to update an order. + """ input: DraftOrderInput! ): DraftOrderUpdate """ - Adds note to the order. - + Adds note to the order. + Requires one of the following permissions: MANAGE_ORDERS. """ orderAddNote( - """ID of the order to add a note for.""" + """ + ID of the order to add a note for. + """ order: ID! - """Fields required to create a note for the order.""" + """ + Fields required to create a note for the order. + """ input: OrderAddNoteInput! ): OrderAddNote """ - Cancel an order. - + Cancel an order. + Requires one of the following permissions: MANAGE_ORDERS. """ orderCancel( - """ID of the order to cancel.""" + """ + ID of the order to cancel. + """ id: ID! ): OrderCancel """ - Capture an order. - + Capture an order. + Requires one of the following permissions: MANAGE_ORDERS. """ orderCapture( - """Amount of money to capture.""" + """ + Amount of money to capture. + """ amount: PositiveDecimal! - """ID of the order to capture.""" + """ + ID of the order to capture. + """ id: ID! ): OrderCapture """ - Confirms an unconfirmed order by changing status to unfulfilled. - + 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 of an order to confirm. + """ id: ID! ): OrderConfirm """ - Creates new fulfillments for an order. - + Creates new fulfillments for an order. + Requires one of the following permissions: MANAGE_ORDERS. """ orderFulfill( - """Fields required to create a fulfillment.""" + """ + Fields required to create a fulfillment. + """ input: OrderFulfillInput! - """ID of the order to be fulfilled.""" + """ + ID of the order to be fulfilled. + """ order: ID ): OrderFulfill """ - Cancels existing fulfillment and optionally restocks items. - + Cancels existing fulfillment and optionally restocks items. + Requires one of the following permissions: MANAGE_ORDERS. """ orderFulfillmentCancel( - """ID of a fulfillment to cancel.""" + """ + ID of a fulfillment to cancel. + """ id: ID! - """Fields required to cancel a fulfillment.""" + """ + Fields required to cancel a fulfillment. + """ input: FulfillmentCancelInput ): FulfillmentCancel """ Approve existing fulfillment. - - Added in Saleor 3.1. - + + Added in Saleor 3.1. + Requires one of the following permissions: MANAGE_ORDERS. """ orderFulfillmentApprove( - """True if stock could be exceeded.""" + """ + True if stock could be exceeded. + """ allowStockToBeExceeded: Boolean = false - """ID of a fulfillment to approve.""" + """ + ID of a fulfillment to approve. + """ id: ID! - """True if confirmation email should be send.""" + """ + True if confirmation email should be send. + """ notifyCustomer: Boolean! ): FulfillmentApprove """ - Updates a fulfillment for an order. - + Updates a fulfillment for an order. + Requires one of the following permissions: MANAGE_ORDERS. """ orderFulfillmentUpdateTracking( - """ID of a fulfillment to update.""" + """ + ID of a fulfillment to update. + """ id: ID! - """Fields required to update a fulfillment.""" + """ + Fields required to update a fulfillment. + """ input: FulfillmentUpdateTrackingInput! ): FulfillmentUpdateTracking """ - Refund products. - + Refund products. + Requires one of the following permissions: MANAGE_ORDERS. """ orderFulfillmentRefundProducts( - """Fields required to create an refund fulfillment.""" + """ + Fields required to create an refund fulfillment. + """ input: OrderRefundProductsInput! - """ID of the order to be refunded.""" + """ + ID of the order to be refunded. + """ order: ID! ): FulfillmentRefundProducts """ - Return products. - + Return products. + Requires one of the following permissions: MANAGE_ORDERS. """ orderFulfillmentReturnProducts( - """Fields required to return products.""" + """ + Fields required to return products. + """ input: OrderReturnProductsInput! - """ID of the order to be returned.""" + """ + ID of the order to be returned. + """ order: ID! ): FulfillmentReturnProducts """ - Create order lines for an order. - + 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 of the order to add the lines to. + """ id: ID! - """Fields required to add order lines.""" + """ + Fields required to add order lines. + """ input: [OrderLineCreateInput!]! ): OrderLinesCreate """ - Deletes an order line from an order. - + Deletes an order line from an order. + Requires one of the following permissions: MANAGE_ORDERS. """ orderLineDelete( - """ID of the order line to delete.""" + """ + ID of the order line to delete. + """ id: ID! ): OrderLineDelete """ - Updates an order line of an order. - + Updates an order line of an order. + Requires one of the following permissions: MANAGE_ORDERS. """ orderLineUpdate( - """ID of the order line to update.""" + """ + ID of the order line to update. + """ id: ID! - """Fields required to update an order line.""" + """ + Fields required to update an order line. + """ input: OrderLineInput! ): OrderLineUpdate """ - Adds discount to the order. - + Adds discount to the order. + Requires one of the following permissions: MANAGE_ORDERS. """ orderDiscountAdd( - """Fields required to create a discount for the order.""" + """ + Fields required to create a discount for the order. + """ input: OrderDiscountCommonInput! - """ID of an order to discount.""" + """ + ID of an order to discount. + """ orderId: ID! ): OrderDiscountAdd """ - Update discount for the order. - + Update discount for the order. + Requires one of the following permissions: MANAGE_ORDERS. """ orderDiscountUpdate( - """ID of a discount to update.""" + """ + ID of a discount to update. + """ discountId: ID! - """Fields required to update a discount for the order.""" + """ + Fields required to update a discount for the order. + """ input: OrderDiscountCommonInput! ): OrderDiscountUpdate """ - Remove discount from the order. - + Remove discount from the order. + Requires one of the following permissions: MANAGE_ORDERS. """ orderDiscountDelete( - """ID of a discount to remove.""" + """ + ID of a discount to remove. + """ discountId: ID! ): OrderDiscountDelete """ - Update discount for the order line. - + Update discount for the order line. + Requires one of the following permissions: MANAGE_ORDERS. """ orderLineDiscountUpdate( - """Fields required to update price for the order line.""" + """ + Fields required to update price for the order line. + """ input: OrderDiscountCommonInput! - """ID of a order line to update price""" + """ + ID of a order line to update price + """ orderLineId: ID! ): OrderLineDiscountUpdate """ - Remove discount applied to the order line. - + 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""" + """ + ID of a order line to remove its discount + """ orderLineId: ID! ): OrderLineDiscountRemove """ - Mark order as manually paid. - + Mark order as manually paid. + Requires one of the following permissions: MANAGE_ORDERS. """ orderMarkAsPaid( - """ID of the order to mark paid.""" + """ + ID of the order to mark paid. + """ id: ID! - """The external transaction reference.""" + """ + The external transaction reference. + """ transactionReference: String ): OrderMarkAsPaid """ - Refund an order. - + Refund an order. + Requires one of the following permissions: MANAGE_ORDERS. """ orderRefund( - """Amount of money to refund.""" + """ + Amount of money to refund. + """ amount: PositiveDecimal! - """ID of the order to refund.""" + """ + ID of the order to refund. + """ id: ID! ): OrderRefund """ - Updates an order. - + Updates an order. + Requires one of the following permissions: MANAGE_ORDERS. """ orderUpdate( """ - External ID of an order to update. - + External ID of an order to update. + Added in Saleor 3.10. """ externalReference: String - """ID of an order to update.""" + """ + ID of an order to update. + """ id: ID - """Fields required to update an order.""" + """ + 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. - + 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.""" + """ + ID of the order to update a shipping method. + """ order: ID! - """Fields required to change shipping method of the order.""" + """ + Fields required to change shipping method of the order. + """ input: OrderUpdateShippingInput! ): OrderUpdateShipping """ - Void an order. - + Void an order. + Requires one of the following permissions: MANAGE_ORDERS. """ orderVoid( - """ID of the order to void.""" + """ + ID of the order to void. + """ id: ID! ): OrderVoid """ - Cancels orders. - + Cancels orders. + Requires one of the following permissions: MANAGE_ORDERS. """ orderBulkCancel( - """List of orders IDs to cancel.""" + """ + List of orders IDs to cancel. + """ ids: [ID!]! ): OrderBulkCancel @@ -13917,10 +17792,14 @@ type Mutation { 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 or token (for Order and Checkout) of an object to update. + """ id: ID! - """Metadata keys to delete.""" + """ + Metadata keys to delete. + """ keys: [String!]! ): DeleteMetadata @@ -13928,10 +17807,14 @@ type Mutation { 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 or token (for Order and Checkout) of an object to update. + """ id: ID! - """Metadata keys to delete.""" + """ + Metadata keys to delete. + """ keys: [String!]! ): DeletePrivateMetadata @@ -13939,10 +17822,14 @@ type Mutation { 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 or token (for Order and Checkout) of an object to update. + """ id: ID! - """Fields required to update the object's metadata.""" + """ + Fields required to update the object's metadata. + """ input: [MetadataInput!]! ): UpdateMetadata @@ -13950,72 +17837,90 @@ type Mutation { 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 or token (for Order and Checkout) of an object to update. + """ id: ID! - """Fields required to update the object's metadata.""" + """ + Fields required to update the object's metadata. + """ input: [MetadataInput!]! ): UpdatePrivateMetadata """ - Assigns storefront's navigation menus. - + Assigns storefront's navigation menus. + Requires one of the following permissions: MANAGE_MENUS, MANAGE_SETTINGS. """ assignNavigation( - """ID of the menu.""" + """ + ID of the menu. + """ menu: ID - """Type of the navigation bar to assign the menu to.""" + """ + Type of the navigation bar to assign the menu to. + """ navigationType: NavigationType! ): AssignNavigation """ - Creates a new Menu. - + Creates a new Menu. + Requires one of the following permissions: MANAGE_MENUS. """ menuCreate( - """Fields required to create a menu.""" + """ + Fields required to create a menu. + """ input: MenuCreateInput! ): MenuCreate """ - Deletes a menu. - + Deletes a menu. + Requires one of the following permissions: MANAGE_MENUS. """ menuDelete( - """ID of a menu to delete.""" + """ + ID of a menu to delete. + """ id: ID! ): MenuDelete """ - Deletes menus. - + Deletes menus. + Requires one of the following permissions: MANAGE_MENUS. """ menuBulkDelete( - """List of menu IDs to delete.""" + """ + List of menu IDs to delete. + """ ids: [ID!]! ): MenuBulkDelete """ - Updates a menu. - + Updates a menu. + Requires one of the following permissions: MANAGE_MENUS. """ menuUpdate( - """ID of a menu to update.""" + """ + ID of a menu to update. + """ id: ID! - """Fields required to update a menu.""" + """ + Fields required to update a menu. + """ input: MenuInput! ): MenuUpdate """ - Creates a new menu item. - + Creates a new menu item. + Requires one of the following permissions: MANAGE_MENUS. """ menuItemCreate( @@ -14026,32 +17931,38 @@ type Mutation { ): MenuItemCreate """ - Deletes a menu item. - + Deletes a menu item. + Requires one of the following permissions: MANAGE_MENUS. """ menuItemDelete( - """ID of a menu item to delete.""" + """ + ID of a menu item to delete. + """ id: ID! ): MenuItemDelete """ - Deletes menu items. - + Deletes menu items. + Requires one of the following permissions: MANAGE_MENUS. """ menuItemBulkDelete( - """List of menu item IDs to delete.""" + """ + List of menu item IDs to delete. + """ ids: [ID!]! ): MenuItemBulkDelete """ - Updates a menu item. - + Updates a menu item. + Requires one of the following permissions: MANAGE_MENUS. """ menuItemUpdate( - """ID of a menu item to update.""" + """ + ID of a menu item to update. + """ id: ID! """ @@ -14061,264 +17972,322 @@ type Mutation { ): MenuItemUpdate """ - Creates/updates translations for a menu item. - + Creates/updates translations for a menu item. + Requires one of the following permissions: MANAGE_TRANSLATIONS. """ menuItemTranslate( - """MenuItem ID or MenuItemTranslatableContent ID.""" + """ + MenuItem ID or MenuItemTranslatableContent ID. + """ id: ID! input: NameTranslationInput! - """Translation language code.""" + """ + Translation language code. + """ languageCode: LanguageCodeEnum! ): MenuItemTranslate """ - Moves items of menus. - + Moves items of menus. + Requires one of the following permissions: MANAGE_MENUS. """ menuItemMove( - """ID of the menu.""" + """ + ID of the menu. + """ menu: ID! - """The menu position data.""" + """ + The menu position data. + """ moves: [MenuItemMoveInput!]! ): MenuItemMove """ - Request an invoice for the order using plugin. - + 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.""" + """ + Invoice number, if not provided it will be generated. + """ number: String - """ID of the order related to invoice.""" + """ + ID of the order related to invoice. + """ orderId: ID! ): InvoiceRequest """ - Requests deletion of an invoice. - + Requests deletion of an invoice. + Requires one of the following permissions: MANAGE_ORDERS. """ invoiceRequestDelete( - """ID of an invoice to request the deletion.""" + """ + ID of an invoice to request the deletion. + """ id: ID! ): InvoiceRequestDelete """ - Creates a ready to send invoice. - + Creates a ready to send invoice. + Requires one of the following permissions: MANAGE_ORDERS. """ invoiceCreate( - """Fields required when creating an invoice.""" + """ + Fields required when creating an invoice. + """ input: InvoiceCreateInput! - """ID of the order related to invoice.""" + """ + ID of the order related to invoice. + """ orderId: ID! ): InvoiceCreate """ - Deletes an invoice. - + Deletes an invoice. + Requires one of the following permissions: MANAGE_ORDERS. """ invoiceDelete( - """ID of an invoice to delete.""" + """ + ID of an invoice to delete. + """ id: ID! ): InvoiceDelete """ - Updates an invoice. - + Updates an invoice. + Requires one of the following permissions: MANAGE_ORDERS. """ invoiceUpdate( - """ID of an invoice to update.""" + """ + ID of an invoice to update. + """ id: ID! - """Fields to use when updating an invoice.""" + """ + Fields to use when updating an invoice. + """ input: UpdateInvoiceInput! ): InvoiceUpdate """ - Send an invoice notification to the customer. - + Send an invoice notification to the customer. + Requires one of the following permissions: MANAGE_ORDERS. """ invoiceSendNotification( - """ID of an invoice to be sent.""" + """ + ID of an invoice to be sent. + """ id: ID! ): InvoiceSendNotification """ - Activate a gift card. - + Activate a gift card. + Requires one of the following permissions: MANAGE_GIFT_CARD. """ giftCardActivate( - """ID of a gift card to activate.""" + """ + ID of a gift card to activate. + """ id: ID! ): GiftCardActivate """ - Creates a new gift card. - + Creates a new gift card. + Requires one of the following permissions: MANAGE_GIFT_CARD. """ giftCardCreate( - """Fields required to create a gift card.""" + """ + 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. - + + 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 of the gift card to delete. + """ id: ID! ): GiftCardDelete """ - Deactivate a gift card. - + Deactivate a gift card. + Requires one of the following permissions: MANAGE_GIFT_CARD. """ giftCardDeactivate( - """ID of a gift card to deactivate.""" + """ + ID of a gift card to deactivate. + """ id: ID! ): GiftCardDeactivate """ - Update a gift card. - + Update a gift card. + Requires one of the following permissions: MANAGE_GIFT_CARD. """ giftCardUpdate( - """ID of a gift card to update.""" + """ + ID of a gift card to update. + """ id: ID! - """Fields required to update a gift card.""" + """ + 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. - + + 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.""" + """ + 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. - + + 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 of the gift card to add a note for. + """ id: ID! - """Fields required to create a note for the gift card.""" + """ + 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. - + + 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.""" + """ + 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. - + + 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.""" + """ + 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. - + + 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.""" + """ + 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. - + + 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.""" + """ + List of gift card IDs to deactivate. + """ ids: [ID!]! ): GiftCardBulkDeactivate """ - Update plugin configuration. - + Update plugin configuration. + Requires one of the following permissions: MANAGE_PLUGINS. """ pluginUpdate( - """ID of a channel for which the data should be modified.""" + """ + ID of a channel for which the data should be modified. + """ channelId: ID - """ID of plugin to update.""" + """ + ID of plugin to update. + """ id: ID! - """Fields required to update a plugin configuration.""" + """ + 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( @@ -14327,297 +18296,367 @@ type Mutation { """ channel: String! - """Input for External Notification Trigger.""" + """ + Input for External Notification Trigger. + """ input: ExternalNotificationTriggerInput! - """The ID of notification plugin.""" + """ + The ID of notification plugin. + """ pluginId: String ): ExternalNotificationTrigger """ - Creates a new sale. - + Creates a new sale. + Requires one of the following permissions: MANAGE_DISCOUNTS. """ saleCreate( - """Fields required to create a sale.""" + """ + Fields required to create a sale. + """ input: SaleInput! ): SaleCreate """ - Deletes a sale. - + Deletes a sale. + Requires one of the following permissions: MANAGE_DISCOUNTS. """ saleDelete( - """ID of a sale to delete.""" + """ + ID of a sale to delete. + """ id: ID! ): SaleDelete """ - Deletes sales. - + Deletes sales. + Requires one of the following permissions: MANAGE_DISCOUNTS. """ saleBulkDelete( - """List of sale IDs to delete.""" + """ + List of sale IDs to delete. + """ ids: [ID!]! ): SaleBulkDelete """ - Updates a sale. - + Updates a sale. + Requires one of the following permissions: MANAGE_DISCOUNTS. """ saleUpdate( - """ID of a sale to update.""" + """ + ID of a sale to update. + """ id: ID! - """Fields required to update a sale.""" + """ + Fields required to update a sale. + """ input: SaleInput! ): SaleUpdate """ - Adds products, categories, collections to a voucher. - + Adds products, categories, collections to a voucher. + Requires one of the following permissions: MANAGE_DISCOUNTS. """ saleCataloguesAdd( - """ID of a sale.""" + """ + ID of a sale. + """ id: ID! - """Fields required to modify catalogue IDs of sale.""" + """ + Fields required to modify catalogue IDs of sale. + """ input: CatalogueInput! ): SaleAddCatalogues """ - Removes products, categories, collections from a sale. - + Removes products, categories, collections from a sale. + Requires one of the following permissions: MANAGE_DISCOUNTS. """ saleCataloguesRemove( - """ID of a sale.""" + """ + ID of a sale. + """ id: ID! - """Fields required to modify catalogue IDs of sale.""" + """ + Fields required to modify catalogue IDs of sale. + """ input: CatalogueInput! ): SaleRemoveCatalogues """ - Creates/updates translations for a sale. - + Creates/updates translations for a sale. + Requires one of the following permissions: MANAGE_TRANSLATIONS. """ saleTranslate( - """Sale ID or SaleTranslatableContent ID.""" + """ + Sale ID or SaleTranslatableContent ID. + """ id: ID! input: NameTranslationInput! - """Translation language code.""" + """ + Translation language code. + """ languageCode: LanguageCodeEnum! ): SaleTranslate """ - Manage sale's availability in channels. - + Manage sale's availability in channels. + Requires one of the following permissions: MANAGE_DISCOUNTS. """ saleChannelListingUpdate( - """ID of a sale to update.""" + """ + ID of a sale to update. + """ id: ID! - """Fields required to update sale channel listings.""" + """ + Fields required to update sale channel listings. + """ input: SaleChannelListingInput! ): SaleChannelListingUpdate """ - Creates a new voucher. - + Creates a new voucher. + Requires one of the following permissions: MANAGE_DISCOUNTS. """ voucherCreate( - """Fields required to create a voucher.""" + """ + Fields required to create a voucher. + """ input: VoucherInput! ): VoucherCreate """ - Deletes a voucher. - + Deletes a voucher. + Requires one of the following permissions: MANAGE_DISCOUNTS. """ voucherDelete( - """ID of a voucher to delete.""" + """ + ID of a voucher to delete. + """ id: ID! ): VoucherDelete """ - Deletes vouchers. - + Deletes vouchers. + Requires one of the following permissions: MANAGE_DISCOUNTS. """ voucherBulkDelete( - """List of voucher IDs to delete.""" + """ + List of voucher IDs to delete. + """ ids: [ID!]! ): VoucherBulkDelete """ - Updates a voucher. - + Updates a voucher. + Requires one of the following permissions: MANAGE_DISCOUNTS. """ voucherUpdate( - """ID of a voucher to update.""" + """ + ID of a voucher to update. + """ id: ID! - """Fields required to update a voucher.""" + """ + Fields required to update a voucher. + """ input: VoucherInput! ): VoucherUpdate """ - Adds products, categories, collections to a voucher. - + Adds products, categories, collections to a voucher. + Requires one of the following permissions: MANAGE_DISCOUNTS. """ voucherCataloguesAdd( - """ID of a voucher.""" + """ + ID of a voucher. + """ id: ID! - """Fields required to modify catalogue IDs of voucher.""" + """ + Fields required to modify catalogue IDs of voucher. + """ input: CatalogueInput! ): VoucherAddCatalogues """ - Removes products, categories, collections from a voucher. - + Removes products, categories, collections from a voucher. + Requires one of the following permissions: MANAGE_DISCOUNTS. """ voucherCataloguesRemove( - """ID of a voucher.""" + """ + ID of a voucher. + """ id: ID! - """Fields required to modify catalogue IDs of voucher.""" + """ + Fields required to modify catalogue IDs of voucher. + """ input: CatalogueInput! ): VoucherRemoveCatalogues """ - Creates/updates translations for a voucher. - + Creates/updates translations for a voucher. + Requires one of the following permissions: MANAGE_TRANSLATIONS. """ voucherTranslate( - """Voucher ID or VoucherTranslatableContent ID.""" + """ + Voucher ID or VoucherTranslatableContent ID. + """ id: ID! input: NameTranslationInput! - """Translation language code.""" + """ + Translation language code. + """ languageCode: LanguageCodeEnum! ): VoucherTranslate """ - Manage voucher's availability in channels. - + Manage voucher's availability in channels. + Requires one of the following permissions: MANAGE_DISCOUNTS. """ voucherChannelListingUpdate( - """ID of a voucher to update.""" + """ + ID of a voucher to update. + """ id: ID! - """Fields required to update voucher channel listings.""" + """ + Fields required to update voucher channel listings. + """ input: VoucherChannelListingInput! ): VoucherChannelListingUpdate """ - Export products to csv file. - + Export products to csv file. + Requires one of the following permissions: MANAGE_PRODUCTS. """ exportProducts( - """Fields required to export product data.""" + """ + 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. - + + 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.""" + """ + 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 - + 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.""" + """ + Represents a file in a multipart request. + """ file: Upload! ): FileUpload - """Adds a gift card or a voucher to a checkout.""" + """ + 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.""" + """ + 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.""" + """ + Update billing address in the existing checkout. + """ checkoutBillingAddressUpdate( - """The billing address of the checkout.""" + """ + The billing address of the checkout. + """ billingAddress: AddressInput! """ - The ID of the checkout. - + 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 @@ -14628,27 +18667,29 @@ type Mutation { """ checkoutComplete( """ - The ID of the checkout. - + 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.""" + """ + Client-side generated data required to finalize the payment. + """ paymentData: JSONString """ @@ -14657,35 +18698,39 @@ type Mutation { redirectUrl: String """ - Determines whether to store the payment source for future usage. - + 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.""" + """ + Create a new checkout. + """ checkoutCreate( - """Fields required to create checkout.""" + """ + Fields required to create checkout. + """ input: CheckoutCreateInput! ): CheckoutCreate """ - Sets the customer as the owner of the checkout. - + 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. - + The ID of the checkout. + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. """ checkoutId: ID @@ -14697,116 +18742,131 @@ type Mutation { """ 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. - + 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. - + 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.""" + """ + Updates email address in the existing checkout object. + """ checkoutEmailUpdate( """ - The ID of the checkout. - + The ID of the checkout. + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. """ checkoutId: ID - """email.""" + """ + 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.""" + """ + Deletes a CheckoutLine. + """ checkoutLineDelete( """ - The ID of the checkout. - + 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.""" + """ + 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.") + ): CheckoutLineDelete + @deprecated( + reason: "This field will be removed in Saleor 4.0. Use `checkoutLinesDelete` instead." + ) - """Deletes checkout lines.""" + """ + Deletes checkout lines. + """ checkoutLinesDelete( """ The checkout's ID. - + Added in Saleor 3.4. """ id: ID - """A list of checkout lines.""" + """ + A list of checkout lines. + """ linesIds: [ID!]! """ Checkout token. - + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. """ token: UUID @@ -14817,15 +18877,15 @@ type Mutation { """ checkoutLinesAdd( """ - The ID of the checkout. - + 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 @@ -14837,24 +18897,26 @@ type Mutation { """ 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.""" + """ + Updates checkout line in the existing checkout. + """ checkoutLinesUpdate( """ - The ID of the checkout. - + 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 @@ -14866,180 +18928,207 @@ type Mutation { """ 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.""" + """ + Remove a gift card or a voucher from a checkout. + """ checkoutRemovePromoCode( """ - The ID of the checkout. - + 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.""" + """ + Gift card code or voucher code. + """ promoCode: String - """Gift card or voucher ID.""" + """ + 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.""" + """ + Create a new payment for given checkout. + """ checkoutPaymentCreate( """ - The ID of the checkout. - + 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.""" + """ + 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.""" + """ + Update shipping address in the existing checkout. + """ checkoutShippingAddressUpdate( """ - The ID of the checkout. - + 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.""" + """ + 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.""" + """ + Updates the shipping method of the checkout. + """ checkoutShippingMethodUpdate( """ - The ID of the checkout. - + 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.""" + """ + 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.") + ): 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).""" + """ + 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.""" + """ + Update language code in the existing checkout. + """ checkoutLanguageCodeUpdate( """ - The ID of the checkout. - + 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.""" + """ + New language code. + """ languageCode: LanguageCodeEnum! """ Checkout token. - + DEPRECATED: this field will be removed in Saleor 4.0. Use `id` instead. """ token: UUID @@ -15047,25 +19136,27 @@ type Mutation { """ 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 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!] @@ -15077,229 +19168,283 @@ type Mutation { ): OrderCreateFromCheckout """ - Creates new channel. - + Creates new channel. + Requires one of the following permissions: MANAGE_CHANNELS. """ channelCreate( - """Fields required to create channel.""" + """ + Fields required to create channel. + """ input: ChannelCreateInput! ): ChannelCreate """ - Update a channel. - + Update a channel. + Requires one of the following permissions: MANAGE_CHANNELS. """ channelUpdate( - """ID of a channel to update.""" + """ + ID of a channel to update. + """ id: ID! - """Fields required to update a channel.""" + """ + 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. - + 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 of a channel to delete. + """ id: ID! - """Fields required to delete a channel.""" + """ + Fields required to delete a channel. + """ input: ChannelDeleteInput ): ChannelDelete """ - Activate a channel. - + Activate a channel. + Requires one of the following permissions: MANAGE_CHANNELS. """ channelActivate( - """ID of the channel to activate.""" + """ + ID of the channel to activate. + """ id: ID! ): ChannelActivate """ - Deactivate a channel. - + Deactivate a channel. + Requires one of the following permissions: MANAGE_CHANNELS. """ channelDeactivate( - """ID of the channel to deactivate.""" + """ + 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. - + + 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.""" + """ + ID of a channel. + """ channelId: ID! - """The list of reordering operations for the given channel warehouses.""" + """ + The list of reordering operations for the given channel warehouses. + """ moves: [ReorderInput!]! ): ChannelReorderWarehouses - """Creates an attribute.""" + """ + Creates an attribute. + """ attributeCreate( - """Fields required to create an attribute.""" + """ + Fields required to create an attribute. + """ input: AttributeCreateInput! ): AttributeCreate """ - Deletes an attribute. - + Deletes an attribute. + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. """ attributeDelete( """ - External ID of an attribute to delete. - + External ID of an attribute to delete. + Added in Saleor 3.10. """ externalReference: String - """ID of an attribute to delete.""" + """ + ID of an attribute to delete. + """ id: ID ): AttributeDelete """ - Updates attribute. - + Updates attribute. + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. """ attributeUpdate( """ - External ID of an attribute to update. - + External ID of an attribute to update. + Added in Saleor 3.10. """ externalReference: String - """ID of an attribute to update.""" + """ + ID of an attribute to update. + """ id: ID - """Fields required to update an attribute.""" + """ + Fields required to update an attribute. + """ input: AttributeUpdateInput! ): AttributeUpdate """ - Creates/updates translations for an attribute. - + Creates/updates translations for an attribute. + Requires one of the following permissions: MANAGE_TRANSLATIONS. """ attributeTranslate( - """Attribute ID or AttributeTranslatableContent ID.""" + """ + Attribute ID or AttributeTranslatableContent ID. + """ id: ID! input: NameTranslationInput! - """Translation language code.""" + """ + Translation language code. + """ languageCode: LanguageCodeEnum! ): AttributeTranslate """ - Deletes attributes. - + Deletes attributes. + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. """ attributeBulkDelete( - """List of attribute IDs to delete.""" + """ + List of attribute IDs to delete. + """ ids: [ID!]! ): AttributeBulkDelete """ - Deletes values of attributes. - + Deletes values of attributes. + Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. """ attributeValueBulkDelete( - """List of attribute value IDs to delete.""" + """ + List of attribute value IDs to delete. + """ ids: [ID!]! ): AttributeValueBulkDelete """ - Creates a value for an attribute. - + Creates a value for an attribute. + Requires one of the following permissions: MANAGE_PRODUCTS. """ attributeValueCreate( - """Attribute to which value will be assigned.""" + """ + Attribute to which value will be assigned. + """ attribute: ID! - """Fields required to create an AttributeValue.""" + """ + Fields required to create an AttributeValue. + """ input: AttributeValueCreateInput! ): AttributeValueCreate """ - Deletes a value of an attribute. - + 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. - + External ID of a value to delete. + Added in Saleor 3.10. """ externalReference: String - """ID of a value to delete.""" + """ + ID of a value to delete. + """ id: ID ): AttributeValueDelete """ - Updates value of an attribute. - + Updates value of an attribute. + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. """ attributeValueUpdate( """ - External ID of an AttributeValue to update. - + External ID of an AttributeValue to update. + Added in Saleor 3.10. """ externalReference: String - """ID of an AttributeValue to update.""" + """ + ID of an AttributeValue to update. + """ id: ID - """Fields required to update an AttributeValue.""" + """ + Fields required to update an AttributeValue. + """ input: AttributeValueUpdateInput! ): AttributeValueUpdate """ - Creates/updates translations for an attribute value. - + Creates/updates translations for an attribute value. + Requires one of the following permissions: MANAGE_TRANSLATIONS. """ attributeValueTranslate( - """AttributeValue ID or AttributeValueTranslatableContent ID.""" + """ + AttributeValue ID or AttributeValueTranslatableContent ID. + """ id: ID! input: AttributeValueTranslationInput! - """Translation language code.""" + """ + Translation language code. + """ languageCode: LanguageCodeEnum! ): AttributeValueTranslate """ - Reorder the values of an attribute. - + Reorder the values of an attribute. + Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. """ attributeReorderValues( - """ID of an attribute.""" + """ + ID of an attribute. + """ attributeId: ID! - """The list of reordering operations for given attribute values.""" + """ + The list of reordering operations for given attribute values. + """ moves: [ReorderInput!]! ): AttributeReorderValues @@ -15307,56 +19452,72 @@ type Mutation { Creates a new app. Requires the following permissions: AUTHENTICATED_STAFF_USER and MANAGE_APPS. """ appCreate( - """Fields required to create a new app.""" + """ + Fields required to create a new app. + """ input: AppInput! ): AppCreate """ - Updates an existing app. - + Updates an existing app. + Requires one of the following permissions: MANAGE_APPS. """ appUpdate( - """ID of an app to update.""" + """ + ID of an app to update. + """ id: ID! - """Fields required to update an existing app.""" + """ + Fields required to update an existing app. + """ input: AppInput! ): AppUpdate """ - Deletes an app. - + Deletes an app. + Requires one of the following permissions: MANAGE_APPS. """ appDelete( - """ID of an app to delete.""" + """ + ID of an app to delete. + """ id: ID! ): AppDelete """ - Creates a new token. - + Creates a new token. + Requires one of the following permissions: MANAGE_APPS. """ appTokenCreate( - """Fields required to create a new auth token.""" + """ + Fields required to create a new auth token. + """ input: AppTokenInput! ): AppTokenCreate """ - Deletes an authentication token assigned to app. - + Deletes an authentication token assigned to app. + Requires one of the following permissions: MANAGE_APPS. """ appTokenDelete( - """ID of an auth token to delete.""" + """ + ID of an auth token to delete. + """ id: ID! ): AppTokenDelete - """Verify provided app token.""" + """ + Verify provided app token. + """ appTokenVerify( - """App token to verify.""" + """ + App token to verify. + """ token: String! ): AppTokenVerify @@ -15364,75 +19525,93 @@ type Mutation { 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.""" + """ + Fields required to install a new app. + """ input: AppInstallInput! ): AppInstall """ - Retry failed installation of new app. - + Retry failed installation of new app. + Requires one of the following permissions: MANAGE_APPS. """ appRetryInstall( - """Determine if app will be set active or not.""" + """ + Determine if app will be set active or not. + """ activateAfterInstallation: Boolean = true - """ID of failed installation.""" + """ + ID of failed installation. + """ id: ID! ): AppRetryInstall """ - Delete failed installation. - + Delete failed installation. + Requires one of the following permissions: MANAGE_APPS. """ appDeleteFailedInstallation( - """ID of failed installation to delete.""" + """ + ID of failed installation to delete. + """ id: ID! ): AppDeleteFailedInstallation """ - Fetch and validate manifest. - + Fetch and validate manifest. + Requires one of the following permissions: MANAGE_APPS. """ appFetchManifest(manifestUrl: String!): AppFetchManifest """ - Activate the app. - + Activate the app. + Requires one of the following permissions: MANAGE_APPS. """ appActivate( - """ID of app to activate.""" + """ + ID of app to activate. + """ id: ID! ): AppActivate """ - Deactivate the app. - + Deactivate the app. + Requires one of the following permissions: MANAGE_APPS. """ appDeactivate( - """ID of app to deactivate.""" + """ + ID of app to deactivate. + """ id: ID! ): AppDeactivate - """Create JWT token.""" + """ + 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 of a user. + """ email: String! - """Password of a user.""" + """ + Password of a user. + """ password: String! ): CreateToken @@ -15445,76 +19624,116 @@ type Mutation { """ csrfToken: String - """Refresh token.""" + """ + Refresh token. + """ refreshToken: String ): RefreshToken - """Verify JWT token.""" + """ + Verify JWT token. + """ tokenVerify( - """JWT token to validate.""" + """ + JWT token to validate. + """ token: String! ): VerifyToken """ - Deactivate all JWT tokens of the currently authenticated user. - + 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.""" + """ + Prepare external authentication url for user by custom plugin. + """ externalAuthenticationUrl( - """The data required by plugin to create external authentication url.""" + """ + The data required by plugin to create external authentication url. + """ input: JSONString! - """The ID of the authentication plugin.""" + """ + The ID of the authentication plugin. + """ pluginId: String! ): ExternalAuthenticationUrl - """Obtain external access tokens for user by custom plugin.""" + """ + Obtain external access tokens for user by custom plugin. + """ externalObtainAccessTokens( - """The data required by plugin to create authentication data.""" + """ + The data required by plugin to create authentication data. + """ input: JSONString! - """The ID of the authentication plugin.""" + """ + The ID of the authentication plugin. + """ pluginId: String! ): ExternalObtainAccessTokens - """Refresh user's access by custom plugin.""" + """ + Refresh user's access by custom plugin. + """ externalRefresh( - """The data required by plugin to proceed the refresh process.""" + """ + The data required by plugin to proceed the refresh process. + """ input: JSONString! - """The ID of the authentication plugin.""" + """ + The ID of the authentication plugin. + """ pluginId: String! ): ExternalRefresh - """Logout user by custom plugin.""" + """ + Logout user by custom plugin. + """ externalLogout( - """The data required by plugin to proceed the logout process.""" + """ + The data required by plugin to proceed the logout process. + """ input: JSONString! - """The ID of the authentication plugin.""" + """ + The ID of the authentication plugin. + """ pluginId: String! ): ExternalLogout - """Verify external authentication data by plugin.""" + """ + Verify external authentication data by plugin. + """ externalVerify( - """The data required by plugin to proceed the verification.""" + """ + The data required by plugin to proceed the verification. + """ input: JSONString! - """The ID of the authentication plugin.""" + """ + The ID of the authentication plugin. + """ pluginId: String! ): ExternalVerify - """Sends an email with the account password modification link.""" + """ + 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 of the user that will be used for password recovery. + """ email: String! """ @@ -15523,12 +19742,18 @@ type Mutation { redirectUrl: String! ): RequestPasswordReset - """Confirm user account with token sent by email during registration.""" + """ + Confirm user account with token sent by email during registration. + """ confirmAccount( - """E-mail of the user performing account confirmation.""" + """ + E-mail of the user performing account confirmation. + """ email: String! - """A one-time token required to confirm the account.""" + """ + A one-time token required to confirm the account. + """ token: String! ): ConfirmAccount @@ -15536,32 +19761,42 @@ type Mutation { Sets the user's password from the token sent by email using the RequestPasswordReset mutation. """ setPassword( - """Email of a user.""" + """ + Email of a user. + """ email: String! - """Password of a user.""" + """ + Password of a user. + """ password: String! - """A one-time token required to set the password.""" + """ + A one-time token required to set the password. + """ token: String! ): SetPassword """ - Change the password of the logged in user. - + Change the password of the logged in user. + Requires one of the following permissions: AUTHENTICATED_USER. """ passwordChange( - """New user password.""" + """ + New user password. + """ newPassword: String! - """Current user password.""" + """ + Current user password. + """ oldPassword: String! ): PasswordChange """ - Request email change of the logged in user. - + Request email change of the logged in user. + Requires one of the following permissions: AUTHENTICATED_USER. """ requestEmailChange( @@ -15570,10 +19805,14 @@ type Mutation { """ channel: String - """New user email.""" + """ + New user email. + """ newEmail: String! - """User password.""" + """ + User password. + """ password: String! """ @@ -15583,8 +19822,8 @@ type Mutation { ): RequestEmailChange """ - Confirm the email change of the logged-in user. - + Confirm the email change of the logged-in user. + Requires one of the following permissions: AUTHENTICATED_USER. """ confirmEmailChange( @@ -15593,17 +19832,21 @@ type Mutation { """ channel: String - """A one-time token required to change the email.""" + """ + A one-time token required to change the email. + """ token: String! ): ConfirmEmailChange """ - Create a new address for the customer. - + Create a new address for the customer. + Requires one of the following permissions: AUTHENTICATED_USER. """ accountAddressCreate( - """Fields required to create address.""" + """ + Fields required to create address. + """ input: AddressInput! """ @@ -15616,10 +19859,14 @@ type Mutation { 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 of the address to update. + """ id: ID! - """Fields required to update the address.""" + """ + Fields required to update the address. + """ input: AddressInput! ): AccountAddressUpdate @@ -15627,42 +19874,54 @@ type Mutation { 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 of the address to delete. + """ id: ID! ): AccountAddressDelete """ - Sets a default address for the authenticated user. - + 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 of the address to set as default. + """ id: ID! - """The type of address.""" + """ + The type of address. + """ type: AddressTypeEnum! ): AccountSetDefaultAddress - """Register a new user.""" + """ + Register a new user. + """ accountRegister( - """Fields required to create a user.""" + """ + Fields required to create a user. + """ input: AccountRegisterInput! ): AccountRegister """ - Updates the account of the logged-in user. - + 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.""" + """ + 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. - + Sends an email with the account removal link for the logged-in user. + Requires one of the following permissions: AUTHENTICATED_USER. """ accountRequestDeletion( @@ -15678,8 +19937,8 @@ type Mutation { ): AccountRequestDeletion """ - Remove user account. - + Remove user account. + Requires one of the following permissions: AUTHENTICATED_USER. """ accountDelete( @@ -15690,228 +19949,279 @@ type Mutation { ): AccountDelete """ - Creates user address. - + Creates user address. + Requires one of the following permissions: MANAGE_USERS. """ addressCreate( - """Fields required to create address.""" + """ + Fields required to create address. + """ input: AddressInput! - """ID of a user to create address for.""" + """ + ID of a user to create address for. + """ userId: ID! ): AddressCreate """ - Updates an address. - + Updates an address. + Requires one of the following permissions: MANAGE_USERS. """ addressUpdate( - """ID of the address to update.""" + """ + ID of the address to update. + """ id: ID! - """Fields required to update the address.""" + """ + Fields required to update the address. + """ input: AddressInput! ): AddressUpdate """ - Deletes an address. - + Deletes an address. + Requires one of the following permissions: MANAGE_USERS. """ addressDelete( - """ID of the address to delete.""" + """ + ID of the address to delete. + """ id: ID! ): AddressDelete """ - Sets a default address for the given user. - + Sets a default address for the given user. + Requires one of the following permissions: MANAGE_USERS. """ addressSetDefault( - """ID of the address.""" + """ + ID of the address. + """ addressId: ID! - """The type of address.""" + """ + The type of address. + """ type: AddressTypeEnum! - """ID of the user to change the address for.""" + """ + ID of the user to change the address for. + """ userId: ID! ): AddressSetDefault """ - Creates a new customer. - + Creates a new customer. + Requires one of the following permissions: MANAGE_USERS. """ customerCreate( - """Fields required to create a customer.""" + """ + Fields required to create a customer. + """ input: UserCreateInput! ): CustomerCreate """ - Updates an existing customer. - + Updates an existing customer. + Requires one of the following permissions: MANAGE_USERS. """ customerUpdate( """ - External ID of a customer to update. - + External ID of a customer to update. + Added in Saleor 3.10. """ externalReference: String - """ID of a customer to update.""" + """ + ID of a customer to update. + """ id: ID - """Fields required to update a customer.""" + """ + Fields required to update a customer. + """ input: CustomerInput! ): CustomerUpdate """ - Deletes a customer. - + Deletes a customer. + Requires one of the following permissions: MANAGE_USERS. """ customerDelete( """ - External ID of a customer to update. - + External ID of a customer to update. + Added in Saleor 3.10. """ externalReference: String - """ID of a customer to delete.""" + """ + ID of a customer to delete. + """ id: ID ): CustomerDelete """ - Deletes customers. - + Deletes customers. + Requires one of the following permissions: MANAGE_USERS. """ customerBulkDelete( - """List of user IDs to delete.""" + """ + List of user IDs to delete. + """ ids: [ID!]! ): CustomerBulkDelete """ - Creates a new staff user. Apps are not allowed to perform this mutation. - + 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.""" + """ + Fields required to create a staff user. + """ input: StaffCreateInput! ): StaffCreate """ - Updates an existing staff user. Apps are not allowed to perform this mutation. - + 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 of a staff user to update. + """ id: ID! - """Fields required to update a staff user.""" + """ + Fields required to update a staff user. + """ input: StaffUpdateInput! ): StaffUpdate """ - Deletes a staff user. Apps are not allowed to perform this mutation. - + 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 of a staff user to delete. + """ id: ID! ): StaffDelete """ - Deletes staff users. Apps are not allowed to perform this mutation. - + 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.""" + """ + 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 - + 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.""" + """ + Represents an image file in a multipart request. + """ image: Upload! ): UserAvatarUpdate """ - Deletes a user avatar. Only for staff members. - + Deletes a user avatar. Only for staff members. + Requires one of the following permissions: AUTHENTICATED_STAFF_USER. """ userAvatarDelete: UserAvatarDelete """ - Activate or deactivate users. - + Activate or deactivate users. + Requires one of the following permissions: MANAGE_USERS. """ userBulkSetActive( - """List of user IDs to (de)activate).""" + """ + List of user IDs to (de)activate). + """ ids: [ID!]! - """Determine if users will be set active or not.""" + """ + Determine if users will be set active or not. + """ isActive: Boolean! ): UserBulkSetActive """ - Create new permission group. Apps are not allowed to perform this mutation. - + 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 fields to create permission group. + """ input: PermissionGroupCreateInput! ): PermissionGroupCreate """ - Update permission group. Apps are not allowed to perform this mutation. - + 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 of the group to update. + """ id: ID! - """Input fields to create permission group.""" + """ + Input fields to create permission group. + """ input: PermissionGroupUpdateInput! ): PermissionGroupUpdate """ - Delete permission group. Apps are not allowed to perform this mutation. - + 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 of the group to delete. + """ id: ID! ): PermissionGroupDelete } """ -Creates a new webhook subscription. +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.") + webhookErrors: [WebhookError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [WebhookError!]! webhook: Webhook } @@ -15922,14 +20232,20 @@ type WebhookError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: WebhookErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum WebhookErrorCode { GRAPHQL_ERROR INVALID @@ -15940,120 +20256,148 @@ enum WebhookErrorCode { } input WebhookCreateInput { - """The name of the webhook.""" + """ + The name of the webhook. + """ name: String - """The url to receive the payload.""" + """ + The url to receive the payload. + """ targetUrl: String """ - The events that webhook wants to subscribe. - + 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.""" + """ + The asynchronous events that webhook wants to subscribe. + """ asyncEvents: [WebhookEventTypeAsyncEnum!] - """The synchronous events that webhook wants to subscribe.""" + """ + The synchronous events that webhook wants to subscribe. + """ syncEvents: [WebhookEventTypeSyncEnum!] - """ID of the app to which webhook belongs.""" + """ + ID of the app to which webhook belongs. + """ app: ID - """Determine if webhook will be set active or not.""" + """ + 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. +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.") + 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. +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.") + 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.""" + """ + The new name of the webhook. + """ name: String - """The url to receive the payload.""" + """ + The url to receive the payload. + """ targetUrl: String """ - The events that webhook wants to subscribe. - + 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.""" + """ + The asynchronous events that webhook wants to subscribe. + """ asyncEvents: [WebhookEventTypeAsyncEnum!] - """The synchronous events that webhook wants to subscribe.""" + """ + The synchronous events that webhook wants to subscribe. + """ syncEvents: [WebhookEventTypeSyncEnum!] - """ID of the app to which webhook belongs.""" + """ + ID of the app to which webhook belongs. + """ app: ID - """Determine if webhook will be set active or not.""" + """ + 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. +Retries event delivery. Requires one of the following permissions: MANAGE_APPS. """ type EventDeliveryRetry { - """Event delivery.""" + """ + Event delivery. + """ delivery: EventDelivery errors: [WebhookError!]! } @@ -16063,12 +20407,14 @@ Performs a dry run of a webhook event. Supports a single event (the first, if mu Added in Saleor 3.11. -Note: this API is currently in Feature Preview and can be subject to changes at later point. +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. """ type WebhookDryRun { - """JSON payload, that would be sent out to webhook's target URL.""" + """ + JSON payload, that would be sent out to webhook's target URL. + """ payload: JSONString errors: [WebhookDryRunError!]! } @@ -16079,14 +20425,20 @@ type WebhookDryRunError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: WebhookDryRunErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum WebhookDryRunErrorCode { GRAPHQL_ERROR UNABLE_TO_PARSE @@ -16101,7 +20453,7 @@ Trigger a webhook event. Supports a single event (the first, if multiple provide Added in Saleor 3.11. -Note: this API is currently in Feature Preview and can be subject to changes at later point. +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. """ @@ -16116,14 +20468,20 @@ type WebhookTriggerError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: WebhookTriggerErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum WebhookTriggerErrorCode { GRAPHQL_ERROR NOT_FOUND @@ -16135,12 +20493,13 @@ enum WebhookTriggerErrorCode { } """ -Creates new warehouse. +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.") + warehouseErrors: [WarehouseError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [WarehouseError!]! warehouse: Warehouse } @@ -16151,17 +20510,25 @@ type WarehouseError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: WarehouseErrorCode! - """List of shipping zones IDs which causes the error.""" + """ + List of shipping zones IDs which causes the error. + """ shippingZones: [ID!] } -"""An enumeration.""" +""" +An enumeration. +""" enum WarehouseErrorCode { ALREADY_EXISTS GRAPHQL_ERROR @@ -16172,112 +20539,132 @@ enum WarehouseErrorCode { } input WarehouseCreateInput { - """Warehouse slug.""" + """ + Warehouse slug. + """ slug: String - """The email address of the warehouse.""" + """ + The email address of the warehouse. + """ email: String """ External ID of the warehouse. - + Added in Saleor 3.10. """ externalReference: String - """Warehouse name.""" + """ + Warehouse name. + """ name: String! - """Address of the warehouse.""" + """ + 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. +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.") + 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.""" + """ + Warehouse slug. + """ slug: String - """The email address of the warehouse.""" + """ + The email address of the warehouse. + """ email: String """ External ID of the warehouse. - + Added in Saleor 3.10. """ externalReference: String - """Warehouse name.""" + """ + Warehouse name. + """ name: String - """Address of the warehouse.""" + """ + 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. +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.") + 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. +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.") + 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. +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.") + warehouseErrors: [WarehouseError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [WarehouseError!]! warehouse: Warehouse } @@ -16287,7 +20674,7 @@ 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. +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. """ @@ -16302,17 +20689,25 @@ type TaxClassCreateError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: TaxClassCreateErrorCode! - """List of country codes for which the configuration is invalid.""" + """ + List of country codes for which the configuration is invalid. + """ countryCodes: [String!]! } -"""An enumeration.""" +""" +An enumeration. +""" enum TaxClassCreateErrorCode { GRAPHQL_ERROR INVALID @@ -16320,15 +20715,21 @@ enum TaxClassCreateErrorCode { } input TaxClassCreateInput { - """Name of the tax class.""" + """ + Name of the tax class. + """ name: String! - """List of country-specific tax rates to create for this tax class.""" + """ + List of country-specific tax rates to create for this tax class. + """ createCountryRates: [CountryRateInput!] } input CountryRateInput { - """Country in which this rate applies.""" + """ + Country in which this rate applies. + """ countryCode: CountryCode! """ @@ -16342,7 +20743,7 @@ Delete a tax class. After deleting the tax class any products, product types or Added in Saleor 3.9. -Note: this API is currently in Feature Preview and can be subject to changes at later point. +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. """ @@ -16357,14 +20758,20 @@ type TaxClassDeleteError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: TaxClassDeleteErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum TaxClassDeleteErrorCode { GRAPHQL_ERROR INVALID @@ -16376,7 +20783,7 @@ 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. +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. """ @@ -16391,17 +20798,25 @@ type TaxClassUpdateError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: TaxClassUpdateErrorCode! - """List of country codes for which the configuration is invalid.""" + """ + List of country codes for which the configuration is invalid. + """ countryCodes: [String!]! } -"""An enumeration.""" +""" +An enumeration. +""" enum TaxClassUpdateErrorCode { DUPLICATED_INPUT_ITEM GRAPHQL_ERROR @@ -16410,7 +20825,9 @@ enum TaxClassUpdateErrorCode { } input TaxClassUpdateInput { - """Name of the tax class.""" + """ + Name of the tax class. + """ name: String """ @@ -16425,7 +20842,9 @@ input TaxClassUpdateInput { } input CountryRateUpdateInput { - """Country in which this rate applies.""" + """ + Country in which this rate applies. + """ countryCode: CountryCode! """ @@ -16439,7 +20858,7 @@ 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. +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. """ @@ -16454,17 +20873,25 @@ type TaxConfigurationUpdateError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: TaxConfigurationUpdateErrorCode! - """List of country codes for which the configuration is invalid.""" + """ + List of country codes for which the configuration is invalid. + """ countryCodes: [String!]! } -"""An enumeration.""" +""" +An enumeration. +""" enum TaxConfigurationUpdateErrorCode { DUPLICATED_INPUT_ITEM GRAPHQL_ERROR @@ -16473,7 +20900,9 @@ enum TaxConfigurationUpdateErrorCode { } input TaxConfigurationUpdateInput { - """Determines whether taxes are charged in the given channel.""" + """ + Determines whether taxes are charged in the given channel. + """ chargeTaxes: Boolean """ @@ -16486,7 +20915,9 @@ input TaxConfigurationUpdateInput { """ displayGrossPrices: Boolean - """Determines whether prices are entered with the tax included.""" + """ + Determines whether prices are entered with the tax included. + """ pricesEnteredWithTax: Boolean """ @@ -16494,15 +20925,21 @@ input TaxConfigurationUpdateInput { """ updateCountriesConfiguration: [TaxConfigurationPerCountryInput!] - """List of country codes for which to remove the tax configuration.""" + """ + List of country codes for which to remove the tax configuration. + """ removeCountriesConfiguration: [CountryCode!] } input TaxConfigurationPerCountryInput { - """Country in which this configuration applies.""" + """ + Country in which this configuration applies. + """ countryCode: CountryCode! - """Determines whether taxes are charged in this country.""" + """ + Determines whether taxes are charged in this country. + """ chargeTaxes: Boolean! """ @@ -16521,12 +20958,14 @@ 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. +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.""" + """ + Updated tax class rates grouped by a country. + """ taxCountryConfiguration: TaxCountryConfiguration errors: [TaxCountryConfigurationUpdateError!]! } @@ -16537,17 +20976,25 @@ type TaxCountryConfigurationUpdateError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: TaxCountryConfigurationUpdateErrorCode! - """List of tax class IDs for which the update failed.""" + """ + List of tax class IDs for which the update failed. + """ taxClassIds: [String!]! } -"""An enumeration.""" +""" +An enumeration. +""" enum TaxCountryConfigurationUpdateErrorCode { GRAPHQL_ERROR INVALID @@ -16557,10 +21004,14 @@ enum TaxCountryConfigurationUpdateErrorCode { } input TaxClassRateInput { - """ID of a tax class for which to update the tax rate""" + """ + ID of a tax class for which to update the tax rate + """ taxClassId: ID - """Tax rate value.""" + """ + Tax rate value. + """ rate: Float } @@ -16569,12 +21020,14 @@ 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. +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.""" + """ + Updated tax class rates grouped by a country. + """ taxCountryConfiguration: TaxCountryConfiguration errors: [TaxCountryConfigurationDeleteError!]! } @@ -16585,14 +21038,20 @@ type TaxCountryConfigurationDeleteError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: TaxCountryConfigurationDeleteErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum TaxCountryConfigurationDeleteErrorCode { GRAPHQL_ERROR INVALID @@ -16604,7 +21063,7 @@ Exempt checkout or order from charging the taxes. When tax exemption is enabled, Added in Saleor 3.8. -Note: this API is currently in Feature Preview and can be subject to changes at later point. +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. """ @@ -16621,14 +21080,20 @@ type TaxExemptionManageError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: TaxExemptionManageErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum TaxExemptionManageErrorCode { GRAPHQL_ERROR INVALID @@ -16637,12 +21102,13 @@ enum TaxExemptionManageErrorCode { } """ -Creates a new staff notification recipient. +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.") + shopErrors: [ShopError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ShopError!]! staffNotificationRecipient: StaffNotificationRecipient } @@ -16653,14 +21119,20 @@ type ShopError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: ShopErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum ShopErrorCode { ALREADY_EXISTS CANNOT_FETCH_TAX_RATES @@ -16672,181 +21144,225 @@ enum ShopErrorCode { } input StaffNotificationRecipientInput { - """The ID of the user subscribed to email notifications..""" + """ + The ID of the user subscribed to email notifications.. + """ user: ID - """Email address of a user subscribed to email notifications.""" + """ + Email address of a user subscribed to email notifications. + """ email: String - """Determines if a notification active.""" + """ + Determines if a notification active. + """ active: Boolean } """ -Updates a staff notification recipient. +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.") + 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. +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.") + 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. +Updates site domain of the shop. Requires one of the following permissions: MANAGE_SETTINGS. """ type ShopDomainUpdate { - """Updated shop.""" + """ + Updated shop. + """ shop: Shop - shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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 name for shop. + """ domain: String - """Shop site name.""" + """ + Shop site name. + """ name: String } """ -Updates shop settings. +Updates shop settings. Requires one of the following permissions: MANAGE_SETTINGS. """ type ShopSettingsUpdate { - """Updated shop.""" + """ + Updated shop. + """ shop: Shop - shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + shopErrors: [ShopError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ShopError!]! } input ShopSettingsInput { - """Header text.""" + """ + Header text. + """ headerText: String - """SEO description.""" + """ + SEO description. + """ description: String - """Enable inventory tracking.""" + """ + Enable inventory tracking. + """ trackInventoryByDefault: Boolean - """Default weight unit.""" + """ + Default weight unit. + """ defaultWeightUnit: WeightUnitsEnum - """Enable automatic fulfillment for all digital products.""" + """ + 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.""" + """ + Default number of max downloads per digital content URL. + """ defaultDigitalMaxDownloads: Int - """Default number of days which digital content URL will be valid.""" + """ + Default number of days which digital content URL will be valid. + """ defaultDigitalUrlValidDays: Int - """Default email sender's name.""" + """ + Default email sender's name. + """ defaultMailSenderName: String - """Default email sender's address.""" + """ + Default email sender's address. + """ defaultMailSenderAddress: String - """URL of a view where customers can set their password.""" + """ + 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. - + 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. - + 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. - + 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. +Fetch tax rates. Requires one of the following permissions: MANAGE_SETTINGS. """ type ShopFetchTaxRates { - """Updated shop.""" + """ + Updated shop. + """ shop: Shop - shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +Creates/updates translations for shop settings. Requires one of the following permissions: MANAGE_TRANSLATIONS. """ type ShopSettingsTranslate { - """Updated shop settings.""" + """ + Updated shop settings. + """ shop: Shop - translationErrors: [TranslationError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + translationErrors: [TranslationError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [TranslationError!]! } @@ -16856,14 +21372,20 @@ type TranslationError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: TranslationErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum TranslationErrorCode { GRAPHQL_ERROR INVALID @@ -16877,26 +21399,32 @@ input ShopSettingsTranslationInput { } """ -Update the shop's address. If the `null` value is passed, the currently selected address will be deleted. +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.""" + """ + Updated shop. + """ shop: Shop - shopErrors: [ShopError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + shopErrors: [ShopError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ShopError!]! } """ -Update shop order settings. +Update shop order settings. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderSettingsUpdate { - """Order settings.""" + """ + Order settings. + """ orderSettings: OrderSettings - orderSettingsErrors: [OrderSettingsError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + orderSettingsErrors: [OrderSettingsError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderSettingsError!]! } @@ -16906,14 +21434,20 @@ type OrderSettingsError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: OrderSettingsErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum OrderSettingsErrorCode { INVALID } @@ -16931,12 +21465,14 @@ input OrderSettingsUpdateInput { } """ -Update gift card settings. +Update gift card settings. Requires one of the following permissions: MANAGE_GIFT_CARD. """ type GiftCardSettingsUpdate { - """Gift card settings.""" + """ + Gift card settings. + """ giftCardSettings: GiftCardSettings errors: [GiftCardSettingsError!]! } @@ -16947,14 +21483,20 @@ type GiftCardSettingsError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: GiftCardSettingsErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum GiftCardSettingsErrorCode { INVALID REQUIRED @@ -16962,30 +21504,41 @@ enum GiftCardSettingsErrorCode { } input GiftCardSettingsUpdateInput { - """Defines gift card default expiry settings.""" + """ + Defines gift card default expiry settings. + """ expiryType: GiftCardSettingsExpiryTypeEnum - """Defines gift card expiry period.""" + """ + Defines gift card expiry period. + """ expiryPeriod: TimePeriodInputType } input TimePeriodInputType { - """The length of the period.""" + """ + The length of the period. + """ amount: Int! - """The type of the period.""" + """ + The type of the period. + """ type: TimePeriodTypeEnum! } """ -Manage shipping method's availability in channels. +Manage shipping method's availability in channels. Requires one of the following permissions: MANAGE_SHIPPING. """ type ShippingMethodChannelListingUpdate { - """An updated shipping method instance.""" + """ + An updated shipping method instance. + """ shippingMethod: ShippingMethodType - shippingErrors: [ShippingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + shippingErrors: [ShippingError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ShippingError!]! } @@ -16995,20 +21548,30 @@ type ShippingError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: ShippingErrorCode! - """List of warehouse IDs which causes the error.""" + """ + List of warehouse IDs which causes the error. + """ warehouses: [ID!] - """List of channels IDs which causes the error.""" + """ + List of channels IDs which causes the error. + """ channels: [ID!] } -"""An enumeration.""" +""" +An enumeration. +""" enum ShippingErrorCode { ALREADY_EXISTS GRAPHQL_ERROR @@ -17021,72 +21584,109 @@ enum ShippingErrorCode { } input ShippingMethodChannelListingInput { - """List of channels to which the shipping method should be assigned.""" + """ + List of channels to which the shipping method should be assigned. + """ addChannels: [ShippingMethodChannelListingAddInput!] - """List of channels from which the shipping method should be unassigned.""" + """ + List of channels from which the shipping method should be unassigned. + """ removeChannels: [ID!] } input ShippingMethodChannelListingAddInput { - """ID of a channel.""" + """ + ID of a channel. + """ channelId: ID! - """Shipping price of the shipping method in this channel.""" + """ + Shipping price of the shipping method in this channel. + """ price: PositiveDecimal - """Minimum order price to use this shipping method.""" + """ + Minimum order price to use this shipping method. + """ minimumOrderPrice: PositiveDecimal - """Maximum order price to use this shipping method.""" + """ + Maximum order price to use this shipping method. + """ maximumOrderPrice: PositiveDecimal } """ -Creates a new shipping price. +Creates a new shipping price. Requires one of the following permissions: MANAGE_SHIPPING. """ type ShippingPriceCreate { - """A shipping zone to which the shipping method belongs.""" + """ + 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.") + 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 of the shipping method. + """ name: String - """Shipping method description.""" + """ + Shipping method description. + """ description: JSONString - """Minimum order weight to use this shipping method.""" + """ + Minimum order weight to use this shipping method. + """ minimumOrderWeight: WeightScalar - """Maximum order weight to use this shipping method.""" + """ + Maximum order weight to use this shipping method. + """ maximumOrderWeight: WeightScalar - """Maximum number of days for delivery.""" + """ + Maximum number of days for delivery. + """ maximumDeliveryDays: Int - """Minimal number of days for delivery.""" + """ + Minimal number of days for delivery. + """ minimumDeliveryDays: Int - """Shipping type: price or weight based.""" + """ + Shipping type: price or weight based. + """ type: ShippingMethodTypeEnum - """Shipping zone this method belongs to.""" + """ + Shipping zone this method belongs to. + """ shippingZone: ID - """Postal code rules to add.""" + """ + Postal code rules to add. + """ addPostalCodeRules: [ShippingPostalCodeRulesCreateInputRange!] - """Postal code rules to delete.""" + """ + Postal code rules to delete. + """ deletePostalCodeRules: [ID!] - """Inclusion type for currently assigned postal code rules.""" + """ + Inclusion type for currently assigned postal code rules. + """ inclusionType: PostalCodeRuleInclusionTypeEnum """ @@ -17098,60 +21698,76 @@ input ShippingPriceInput { scalar WeightScalar input ShippingPostalCodeRulesCreateInputRange { - """Start range of the postal code.""" + """ + Start range of the postal code. + """ start: String! - """End range of the postal code.""" + """ + End range of the postal code. + """ end: String } """ -Deletes a shipping price. +Deletes a shipping price. Requires one of the following permissions: MANAGE_SHIPPING. """ type ShippingPriceDelete { - """A shipping method to delete.""" + """ + A shipping method to delete. + """ shippingMethod: ShippingMethodType - """A shipping zone to which the shipping method belongs.""" + """ + 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.") + shippingErrors: [ShippingError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ShippingError!]! } """ -Deletes shipping prices. +Deletes shipping prices. Requires one of the following permissions: MANAGE_SHIPPING. """ type ShippingPriceBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + shippingErrors: [ShippingError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ShippingError!]! } """ -Updates a new shipping price. +Updates a new shipping price. Requires one of the following permissions: MANAGE_SHIPPING. """ type ShippingPriceUpdate { - """A shipping zone to which the shipping method belongs.""" + """ + 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.") + 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. +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.") + translationErrors: [TranslationError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [TranslationError!]! shippingMethod: ShippingMethodType } @@ -17161,60 +21777,75 @@ input ShippingPriceTranslationInput { """ Translated shipping method description. - + Rich text format. For reference see https://editorjs.io/ """ description: JSONString } """ -Exclude products from shipping price. +Exclude products from shipping price. Requires one of the following permissions: MANAGE_SHIPPING. """ type ShippingPriceExcludeProducts { - """A shipping method with new list of excluded products.""" + """ + 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.") + 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.""" + """ + List of products which will be excluded. + """ products: [ID!]! } """ -Remove product from excluded list for shipping price. +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.""" + """ + 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.") + shippingErrors: [ShippingError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ShippingError!]! } """ -Creates a new shipping zone. +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.") + 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.""" + """ + Shipping zone's name. Visible only to the staff. + """ name: String - """Description of the shipping zone.""" + """ + Description of the shipping zone. + """ description: String - """List of countries in this shipping zone.""" + """ + List of countries in this shipping zone. + """ countries: [String!] """ @@ -17222,55 +21853,70 @@ input ShippingZoneCreateInput { """ default: Boolean - """List of warehouses to assign to a shipping zone""" + """ + List of warehouses to assign to a shipping zone + """ addWarehouses: [ID!] - """List of channels to assign to the shipping zone.""" + """ + List of channels to assign to the shipping zone. + """ addChannels: [ID!] } """ -Deletes a shipping zone. +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.") + shippingErrors: [ShippingError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ShippingError!]! shippingZone: ShippingZone } """ -Deletes shipping zones. +Deletes shipping zones. Requires one of the following permissions: MANAGE_SHIPPING. """ type ShippingZoneBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + shippingErrors: [ShippingError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ShippingError!]! } """ -Updates a new shipping zone. +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.") + 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.""" + """ + Shipping zone's name. Visible only to the staff. + """ name: String - """Description of the shipping zone.""" + """ + Description of the shipping zone. + """ description: String - """List of countries in this shipping zone.""" + """ + List of countries in this shipping zone. + """ countries: [String!] """ @@ -17278,28 +21924,39 @@ input ShippingZoneUpdateInput { """ default: Boolean - """List of warehouses to assign to a shipping zone""" + """ + List of warehouses to assign to a shipping zone + """ addWarehouses: [ID!] - """List of channels to assign to the shipping zone.""" + """ + List of channels to assign to the shipping zone. + """ addChannels: [ID!] - """List of warehouses to unassign from a shipping zone""" + """ + List of warehouses to unassign from a shipping zone + """ removeWarehouses: [ID!] - """List of channels to unassign from the shipping zone.""" + """ + List of channels to unassign from the shipping zone. + """ removeChannels: [ID!] } """ -Assign attributes to a given product type. +Assign attributes to a given product type. Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. """ type ProductAttributeAssign { - """The updated product type.""" + """ + The updated product type. + """ productType: ProductType - productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! } @@ -17309,20 +21966,30 @@ type ProductError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: ProductErrorCode! - """List of attributes IDs which causes the error.""" + """ + List of attributes IDs which causes the error. + """ attributes: [ID!] - """List of attribute values IDs which causes the error.""" + """ + List of attribute values IDs which causes the error. + """ values: [ID!] } -"""An enumeration.""" +""" +An enumeration. +""" enum ProductErrorCode { ALREADY_EXISTS ATTRIBUTE_ALREADY_ASSIGNED @@ -17347,15 +22014,19 @@ enum ProductErrorCode { } input ProductAttributeAssignInput { - """The ID of the attribute to assign.""" + """ + The ID of the attribute to assign. + """ id: ID! - """The attribute type to be assigned as.""" + """ + 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 @@ -17369,48 +22040,57 @@ enum ProductAttributeType { """ Update attributes assigned to product variant for given product type. -Added in Saleor 3.1. +Added in Saleor 3.1. Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. """ type ProductAttributeAssignmentUpdate { - """The updated product type.""" + """ + The updated product type. + """ productType: ProductType - productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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.""" + """ + 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. +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.""" + """ + The updated product type. + """ productType: ProductType - productErrors: [ProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! } """ -Creates a new category. +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.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! category: Category } @@ -17418,46 +22098,60 @@ type CategoryCreate { input CategoryInput { """ Category description. - + Rich text format. For reference see https://editorjs.io/ """ description: JSONString - """Category name.""" + """ + Category name. + """ name: String - """Category slug.""" + """ + Category slug. + """ slug: String - """Search engine optimization fields.""" + """ + Search engine optimization fields. + """ seo: SeoInput - """Background image file.""" + """ + Background image file. + """ backgroundImage: Upload - """Alt text for a product media.""" + """ + 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.""" + """ + SEO title. + """ title: String - """SEO description.""" + """ + SEO description. + """ description: String } @@ -17467,54 +22161,64 @@ Variables of this type must be set to null in mutations. They will be replaced w scalar Upload input MetadataInput { - """Key of a metadata item.""" + """ + Key of a metadata item. + """ key: String! - """Value of a metadata item.""" + """ + Value of a metadata item. + """ value: String! } """ -Deletes a category. +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.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! category: Category } """ -Deletes categories. +Deletes categories. Requires one of the following permissions: MANAGE_PRODUCTS. """ type CategoryBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! } """ -Updates a category. +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.") + 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. +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.") + translationErrors: [TranslationError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [TranslationError!]! category: Category } @@ -17526,21 +22230,24 @@ input TranslationInput { """ Translated description. - + Rich text format. For reference see https://editorjs.io/ """ description: JSONString } """ -Adds products to a collection. +Adds products to a collection. Requires one of the following permissions: MANAGE_PRODUCTS. """ type CollectionAddProducts { - """Collection to which products will be added.""" + """ + 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.") + collectionErrors: [CollectionError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [CollectionError!]! } @@ -17550,17 +22257,25 @@ type CollectionError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """List of products IDs which causes the error.""" + """ + List of products IDs which causes the error. + """ products: [ID!] - """The error code.""" + """ + The error code. + """ code: CollectionErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum CollectionErrorCode { DUPLICATED_INPUT_ITEM GRAPHQL_ERROR @@ -17572,92 +22287,113 @@ enum CollectionErrorCode { } """ -Creates a new collection. +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.") + 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.""" + """ + Informs whether a collection is published. + """ isPublished: Boolean - """Name of the collection.""" + """ + Name of the collection. + """ name: String - """Slug of the collection.""" + """ + Slug of the collection. + """ slug: String """ Description of the collection. - + Rich text format. For reference see https://editorjs.io/ """ description: JSONString - """Background image file.""" + """ + Background image file. + """ backgroundImage: Upload - """Alt text for an image.""" + """ + Alt text for an image. + """ backgroundImageAlt: String - """Search engine optimization fields.""" + """ + Search engine optimization fields. + """ seo: SeoInput """ - Publication date. ISO 8601 standard. - + 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.""" + """ + List of products to be added to the collection. + """ products: [ID!] } """ -Deletes a collection. +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.") + 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. +Reorder the products of a collection. Requires one of the following permissions: MANAGE_PRODUCTS. """ type CollectionReorderProducts { - """Collection from which products are reordered.""" + """ + 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.") + 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.""" + """ + The ID of the product to move. + """ productId: ID! """ @@ -17667,108 +22403,131 @@ input MoveProductInput { } """ -Deletes collections. +Deletes collections. Requires one of the following permissions: MANAGE_PRODUCTS. """ type CollectionBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + collectionErrors: [CollectionError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [CollectionError!]! } """ -Remove products from a collection. +Remove products from a collection. Requires one of the following permissions: MANAGE_PRODUCTS. """ type CollectionRemoveProducts { - """Collection from which products will be removed.""" + """ + 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.") + collectionErrors: [CollectionError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [CollectionError!]! } """ -Updates a collection. +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.") + 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.""" + """ + Informs whether a collection is published. + """ isPublished: Boolean - """Name of the collection.""" + """ + Name of the collection. + """ name: String - """Slug of the collection.""" + """ + Slug of the collection. + """ slug: String """ Description of the collection. - + Rich text format. For reference see https://editorjs.io/ """ description: JSONString - """Background image file.""" + """ + Background image file. + """ backgroundImage: Upload - """Alt text for an image.""" + """ + Alt text for an image. + """ backgroundImageAlt: String - """Search engine optimization fields.""" + """ + Search engine optimization fields. + """ seo: SeoInput """ - Publication date. ISO 8601 standard. - + 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. +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.") + 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. +Manage collection's availability in channels. Requires one of the following permissions: MANAGE_PRODUCTS. """ type CollectionChannelListingUpdate { - """An updated collection instance.""" + """ + An updated collection instance. + """ collection: Collection - collectionChannelListingErrors: [CollectionChannelListingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + collectionChannelListingErrors: [CollectionChannelListingError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [CollectionChannelListingError!]! } @@ -17778,91 +22537,120 @@ type CollectionChannelListingError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: ProductErrorCode! - """List of attributes IDs which causes the error.""" + """ + List of attributes IDs which causes the error. + """ attributes: [ID!] - """List of attribute values IDs which causes the error.""" + """ + List of attribute values IDs which causes the error. + """ values: [ID!] - """List of channels IDs which causes the error.""" + """ + List of channels IDs which causes the error. + """ channels: [ID!] } input CollectionChannelListingUpdateInput { - """List of channels to which the collection should be assigned.""" + """ + List of channels to which the collection should be assigned. + """ addChannels: [PublishableChannelListingInput!] - """List of channels from which the collection should be unassigned.""" + """ + List of channels from which the collection should be unassigned. + """ removeChannels: [ID!] } input PublishableChannelListingInput { - """ID of a channel.""" + """ + ID of a channel. + """ channelId: ID! - """Determines if object is visible to customers.""" + """ + Determines if object is visible to customers. + """ isPublished: Boolean """ - Publication date. ISO 8601 standard. - + 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. +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.") + 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.""" + """ + List of attributes. + """ attributes: [AttributeValueInput!] - """ID of the product's category.""" + """ + ID of the product's category. + """ category: ID """ - Determine if taxes are being charged for the product. - + 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.""" + """ + 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.""" + """ + Product name. + """ name: String - """Product slug.""" + """ + Product slug. + """ slug: String """ @@ -17871,48 +22659,58 @@ input ProductCreateInput { taxClass: ID """ - Tax rate for enabled tax gateway. - + 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.""" + """ + Search engine optimization fields. + """ seo: SeoInput - """Weight of the Product.""" + """ + Weight of the Product. + """ weight: WeightScalar - """Defines the product rating value.""" + """ + 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.""" + """ + ID of the type that product belongs to. + """ productType: ID! } input AttributeValueInput { - """ID of the selected attribute.""" + """ + ID of the selected attribute. + """ id: ID """ @@ -17922,64 +22720,82 @@ input AttributeValueInput { """ 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.""" + """ + URL of the file attribute. Every time, a new value is created. + """ file: String - """File content type.""" + """ + File content type. + """ contentType: String - """List of entity IDs that will be used as references.""" + """ + List of entity IDs that will be used as references. + """ references: [ID!] - """Text content in JSON format.""" + """ + Text content in JSON format. + """ richText: JSONString - """Plain text content.""" + """ + Plain text content. + """ plainText: String - """Represents the boolean value of the attribute value.""" + """ + Represents the boolean value of the attribute value. + """ boolean: Boolean - """Represents the date value of the attribute value.""" + """ + Represents the date value of the attribute value. + """ date: Date - """Represents the date/time value of the attribute value.""" + """ + Represents the date/time value of the attribute value. + """ dateTime: DateTime } """ -Represents attribute value. If no ID provided, value will be resolved. +Represents attribute value. If no ID provided, value will be resolved. Added in Saleor 3.9. """ input AttributeValueSelectableTypeInput { - """ID of an attribute value.""" + """ + ID of an attribute value. + """ id: ID """ @@ -17989,67 +22805,82 @@ input AttributeValueSelectableTypeInput { } """ -Deletes a product. +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.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! product: Product } """ -Deletes products. +Deletes products. Requires one of the following permissions: MANAGE_PRODUCTS. """ type ProductBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! } """ -Updates an existing product. +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.") + 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.""" + """ + List of attributes. + """ attributes: [AttributeValueInput!] - """ID of the product's category.""" + """ + ID of the product's category. + """ category: ID """ - Determine if taxes are being charged for the product. - + 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.""" + """ + 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.""" + """ + Product name. + """ name: String - """Product slug.""" + """ + Product slug. + """ slug: String """ @@ -18058,63 +22889,73 @@ input ProductInput { taxClass: ID """ - Tax rate for enabled tax gateway. - + 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.""" + """ + Search engine optimization fields. + """ seo: SeoInput - """Weight of the Product.""" + """ + Weight of the Product. + """ weight: WeightScalar - """Defines the product rating value.""" + """ + 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. +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.") + 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. +Manage product's availability in channels. Requires one of the following permissions: MANAGE_PRODUCTS. """ type ProductChannelListingUpdate { - """An updated product instance.""" + """ + An updated product instance. + """ product: Product - productChannelListingErrors: [ProductChannelListingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + productChannelListingErrors: [ProductChannelListingError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductChannelListingError!]! } @@ -18124,50 +22965,70 @@ type ProductChannelListingError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: ProductErrorCode! - """List of attributes IDs which causes the error.""" + """ + List of attributes IDs which causes the error. + """ attributes: [ID!] - """List of attribute values IDs which causes the error.""" + """ + List of attribute values IDs which causes the error. + """ values: [ID!] - """List of channels IDs which causes the error.""" + """ + List of channels IDs which causes the error. + """ channels: [ID!] - """List of variants IDs which causes the error.""" + """ + List of variants IDs which causes the error. + """ variants: [ID!] } input ProductChannelListingUpdateInput { - """List of channels to which the product should be assigned or updated.""" + """ + List of channels to which the product should be assigned or updated. + """ updateChannels: [ProductChannelListingAddInput!] - """List of channels from which the product should be unassigned.""" + """ + List of channels from which the product should be unassigned. + """ removeChannels: [ID!] } input ProductChannelListingAddInput { - """ID of a channel.""" + """ + ID of a channel. + """ channelId: ID! - """Determines if object is visible to customers.""" + """ + Determines if object is visible to customers. + """ isPublished: Boolean """ - Publication date. ISO 8601 standard. - + 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 @@ -18177,69 +23038,87 @@ input ProductChannelListingAddInput { """ visibleInListings: Boolean - """Determine if product should be available for purchase.""" + """ + 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. - + 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.""" + """ + List of variants to which the channel should be assigned. + """ addVariants: [ID!] - """List of variants from which the channel should be unassigned.""" + """ + 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 +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.") + 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 text for a product media. + """ alt: String - """Represents an image file in a multipart request.""" + """ + Represents an image file in a multipart request. + """ image: Upload - """ID of an product.""" + """ + ID of an product. + """ product: ID! - """Represents an URL to an external media.""" + """ + 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. +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.") + 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.""" + """ + The ID of the item to move. + """ id: ID! """ @@ -18249,77 +23128,92 @@ input ReorderInput { } """ -Deletes a product media. +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.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! } """ -Deletes product media. +Deletes product media. Requires one of the following permissions: MANAGE_PRODUCTS. """ type ProductMediaBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + 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. +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.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! } """ -Updates a product media. +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.") + 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 text for a product media. + """ alt: String } """ -Creates a new product type. +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.") + 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 of the product type. + """ name: String - """Product type slug.""" + """ + Product type slug. + """ slug: String - """The product type kind.""" + """ + The product type kind. + """ kind: ProductTypeKindEnum """ @@ -18327,7 +23221,9 @@ input ProductTypeInput { """ hasVariants: Boolean - """List of attributes shared among all product variants.""" + """ + List of attributes shared among all product variants. + """ productAttributes: [ID!] """ @@ -18335,18 +23231,24 @@ input ProductTypeInput { """ variantAttributes: [ID!] - """Determines if shipping is required for products of this variant.""" + """ + Determines if shipping is required for products of this variant. + """ isShippingRequired: Boolean - """Determines if products are digital.""" + """ + Determines if products are digital. + """ isDigital: Boolean - """Weight of the ProductType items.""" + """ + Weight of the ProductType items. + """ weight: WeightScalar """ - Tax rate for enabled tax gateway. - + 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 @@ -18358,77 +23260,91 @@ input ProductTypeInput { } """ -Deletes a product type. +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.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! productType: ProductType } """ -Deletes product types. +Deletes product types. Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. """ type ProductTypeBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! } """ -Updates an existing product type. +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.") + 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. +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.""" + """ + 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.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! } """ -Reorder product attribute values. +Reorder product attribute values. Requires one of the following permissions: MANAGE_PRODUCTS. """ type ProductReorderAttributeValues { - """Product from which attribute values are reordered.""" + """ + 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.") + 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 +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.") + 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.""" + """ + Use default digital content settings for this product. + """ useDefaultSettings: Boolean! """ @@ -18441,52 +23357,60 @@ input DigitalContentUploadInput { """ urlValidDays: Int - """Overwrite default automatic_fulfillment setting for variant.""" + """ + 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.""" + """ + Represents an file in a multipart request. + """ contentFile: Upload! } """ -Remove digital content assigned to given variant. +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.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! } """ -Update digital content. +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.") + 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.""" + """ + Use default digital content settings for this product. + """ useDefaultSettings: Boolean! """ @@ -18499,59 +23423,71 @@ input DigitalContentInput { """ urlValidDays: Int - """Overwrite default automatic_fulfillment setting for variant.""" + """ + 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. +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.") + 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.""" + """ + Digital content ID which URL will belong to. + """ content: ID! } """ -Creates a new variant for a product. +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.") + 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.""" + """ + List of attributes specific to this variant. + """ attributes: [AttributeValueInput!]! - """Stock keeping unit.""" + """ + Stock keeping unit. + """ sku: String - """Variant name.""" + """ + Variant name. + """ name: String """ @@ -18559,109 +23495,133 @@ input ProductVariantCreateInput { """ trackInventory: Boolean - """Weight of the Product Variant.""" + """ + 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 of which type is the variant. + """ product: ID! - """Stocks of a product available for sale.""" + """ + Stocks of a product available for sale. + """ stocks: [StockInput!] } input PreorderSettingsInput { - """The global threshold for preorder variant.""" + """ + The global threshold for preorder variant. + """ globalThreshold: Int - """The end date for preorder.""" + """ + The end date for preorder. + """ endDate: DateTime } input StockInput { - """Warehouse in which stock is located.""" + """ + Warehouse in which stock is located. + """ warehouse: ID! - """Quantity of items available for sell.""" + """ + Quantity of items available for sell. + """ quantity: Int! } """ -Deletes a product variant. +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.") + 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. +Creates product variants for a given product. Requires one of the following permissions: MANAGE_PRODUCTS. """ type ProductVariantBulkCreate { - """Returns how many objects were created.""" + """ + Returns how many objects were created. + """ count: Int! - """List of the created variants.This field will be removed in Saleor 4.0.""" + """ + List of the created variants.This field will be removed in Saleor 4.0. + """ productVariants: [ProductVariant!]! """ List of the created variants. - + Added in Saleor 3.11. """ results: [ProductVariantBulkResult!]! - bulkProductErrors: [BulkProductError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + bulkProductErrors: [BulkProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [BulkProductError!]! } type ProductVariantBulkResult { - """Product variant data.""" + """ + Product variant data. + """ productVariant: ProductVariant - """List of errors occurred on create attempt.""" + """ + List of errors occurred on create attempt. + """ errors: [ProductVariantBulkError!] } @@ -18671,26 +23631,40 @@ type ProductVariantBulkError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: ProductVariantBulkErrorCode! - """List of attributes IDs which causes the error.""" + """ + List of attributes IDs which causes the error. + """ attributes: [ID!] - """List of attribute values IDs which causes the error.""" + """ + List of attribute values IDs which causes the error. + """ values: [ID!] - """List of warehouse IDs which causes the error.""" + """ + List of warehouse IDs which causes the error. + """ warehouses: [ID!] - """List of channel IDs which causes the error.""" + """ + List of channel IDs which causes the error. + """ channels: [ID!] } -"""An enumeration.""" +""" +An enumeration. +""" enum ProductVariantBulkErrorCode { ATTRIBUTE_ALREADY_ASSIGNED ATTRIBUTE_CANNOT_BE_ASSIGNED @@ -18712,25 +23686,39 @@ type BulkProductError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: ProductErrorCode! - """List of attributes IDs which causes the error.""" + """ + List of attributes IDs which causes the error. + """ attributes: [ID!] - """List of attribute values IDs which causes the error.""" + """ + List of attribute values IDs which causes the error. + """ values: [ID!] - """Index of an input list item that caused the error.""" + """ + Index of an input list item that caused the error. + """ index: Int - """List of warehouse IDs which causes the error.""" + """ + List of warehouse IDs which causes the error. + """ warehouses: [ID!] - """List of channel IDs which causes the error.""" + """ + List of channel IDs which causes the error. + """ channels: [ID!] } @@ -18740,21 +23728,31 @@ enum ErrorPolicyEnum { """ IGNORE_FAILED - """Reject all rows if there is at least one error in any of them.""" + """ + Reject all rows if there is at least one error in any of them. + """ REJECT_EVERYTHING - """Reject rows with errors.""" + """ + Reject rows with errors. + """ REJECT_FAILED_ROWS } input ProductVariantBulkCreateInput { - """List of attributes specific to this variant.""" + """ + List of attributes specific to this variant. + """ attributes: [BulkAttributeValueInput!]! - """Stock keeping unit.""" + """ + Stock keeping unit. + """ sku: String - """Variant name.""" + """ + Variant name. + """ name: String """ @@ -18762,57 +23760,65 @@ input ProductVariantBulkCreateInput { """ trackInventory: Boolean - """Weight of the Product Variant.""" + """ + 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 of a product available for sale. + """ stocks: [StockInput!] - """List of prices assigned to channels.""" + """ + List of prices assigned to channels. + """ channelListings: [ProductVariantChannelListingAddInput!] } input BulkAttributeValueInput { - """ID of the selected attribute.""" + """ + ID of the selected attribute. + """ id: ID """ @@ -18827,20 +23833,26 @@ input BulkAttributeValueInput { } input ProductVariantChannelListingAddInput { - """ID of a channel.""" + """ + ID of a channel. + """ channelId: ID! - """Price of the particular variant in channel.""" + """ + Price of the particular variant in channel. + """ price: PositiveDecimal! - """Cost price of the variant in channel.""" + """ + 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 @@ -18851,15 +23863,19 @@ Update multiple product variants. Added in Saleor 3.11. -Note: this API is currently in Feature Preview and can be subject to changes at later point. +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 ProductVariantBulkUpdate { - """Returns how many objects were updated.""" + """ + Returns how many objects were updated. + """ count: Int! - """List of the updated variants.""" + """ + List of the updated variants. + """ results: [ProductVariantBulkResult!]! errors: [ProductVariantBulkError!]! } @@ -18870,13 +23886,19 @@ Input fields to update product variants. Added in Saleor 3.11. """ input ProductVariantBulkUpdateInput { - """List of attributes specific to this variant.""" + """ + List of attributes specific to this variant. + """ attributes: [BulkAttributeValueInput!] - """Stock keeping unit.""" + """ + Stock keeping unit. + """ sku: String - """Variant name.""" + """ + Variant name. + """ name: String """ @@ -18884,79 +23906,93 @@ input ProductVariantBulkUpdateInput { """ trackInventory: Boolean - """Weight of the Product Variant.""" + """ + 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 of a product available for sale. + """ stocks: [StockInput!] - """List of prices assigned to channels.""" + """ + List of prices assigned to channels. + """ channelListings: [ProductVariantChannelListingAddInput!] - """ID of the product variant to update.""" + """ + ID of the product variant to update. + """ id: ID! } """ -Deletes product variants. +Deletes product variants. Requires one of the following permissions: MANAGE_PRODUCTS. """ type ProductVariantBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! } """ -Creates stocks for product variant. +Creates stocks for product variant. Requires one of the following permissions: MANAGE_PRODUCTS. """ type ProductVariantStocksCreate { - """Updated product variant.""" + """ + Updated product variant. + """ productVariant: ProductVariant - bulkStockErrors: [BulkStockError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + bulkStockErrors: [BulkStockError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [BulkStockError!]! } @@ -18966,31 +24002,44 @@ type BulkStockError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: ProductErrorCode! - """List of attributes IDs which causes the error.""" + """ + List of attributes IDs which causes the error. + """ attributes: [ID!] - """List of attribute values IDs which causes the error.""" + """ + List of attribute values IDs which causes the error. + """ values: [ID!] - """Index of an input list item that caused the error.""" + """ + Index of an input list item that caused the error. + """ index: Int } """ -Delete stocks from product variant. +Delete stocks from product variant. Requires one of the following permissions: MANAGE_PRODUCTS. """ type ProductVariantStocksDelete { - """Updated product variant.""" + """ + Updated product variant. + """ productVariant: ProductVariant - stockErrors: [StockError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + stockErrors: [StockError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [StockError!]! } @@ -19000,14 +24049,20 @@ type StockError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: StockErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum StockErrorCode { ALREADY_EXISTS GRAPHQL_ERROR @@ -19018,36 +24073,46 @@ enum StockErrorCode { } """ -Update stocks for product variant. +Update stocks for product variant. Requires one of the following permissions: MANAGE_PRODUCTS. """ type ProductVariantStocksUpdate { - """Updated product variant.""" + """ + Updated product variant. + """ productVariant: ProductVariant - bulkStockErrors: [BulkStockError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +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.") + 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.""" + """ + List of attributes specific to this variant. + """ attributes: [AttributeValueInput!] - """Stock keeping unit.""" + """ + Stock keeping unit. + """ sku: String - """Variant name.""" + """ + Variant name. + """ name: String """ @@ -19055,67 +24120,71 @@ input ProductVariantInput { """ trackInventory: Boolean - """Weight of the Product Variant.""" + """ + 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. +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.") + 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. +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.") + translationErrors: [TranslationError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [TranslationError!]! productVariant: ProductVariant } @@ -19125,26 +24194,32 @@ input NameTranslationInput { } """ -Manage product variant prices in channels. +Manage product variant prices in channels. Requires one of the following permissions: MANAGE_PRODUCTS. """ type ProductVariantChannelListingUpdate { - """An updated product variant instance.""" + """ + An updated product variant instance. + """ variant: ProductVariant - productChannelListingErrors: [ProductChannelListingError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + productChannelListingErrors: [ProductChannelListingError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductChannelListingError!]! } """ -Reorder product variant attribute values. +Reorder product variant attribute values. Requires one of the following permissions: MANAGE_PRODUCTS. """ type ProductVariantReorderAttributeValues { - """Product variant from which attribute values are reordered.""" + """ + 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.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! } @@ -19153,49 +24228,56 @@ Deactivates product variant preorder. It changes all preorder allocation into re Added in Saleor 3.1. -Note: this API is currently in Feature Preview and can be subject to changes at later point. +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.""" + """ + Product variant with ended preorder. + """ productVariant: ProductVariant errors: [ProductError!]! } """ -Assign an media to a product variant. +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.") + 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. +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.") + productErrors: [ProductError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ProductError!]! } """ -Captures the authorized payment amount. +Captures the authorized payment amount. Requires one of the following permissions: MANAGE_ORDERS. """ type PaymentCapture { - """Updated payment.""" + """ + Updated payment. + """ payment: Payment - paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + paymentErrors: [PaymentError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [PaymentError!]! } @@ -19205,17 +24287,25 @@ type PaymentError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: PaymentErrorCode! - """List of variant IDs which causes the error.""" + """ + List of variant IDs which causes the error. + """ variants: [ID!] } -"""An enumeration.""" +""" +An enumeration. +""" enum PaymentErrorCode { BILLING_ADDRESS_NOT_SET GRAPHQL_ERROR @@ -19237,33 +24327,42 @@ enum PaymentErrorCode { } """ -Refunds the captured payment amount. +Refunds the captured payment amount. Requires one of the following permissions: MANAGE_ORDERS. """ type PaymentRefund { - """Updated payment.""" + """ + Updated payment. + """ payment: Payment - paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + paymentErrors: [PaymentError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [PaymentError!]! } """ -Voids the authorized payment. +Voids the authorized payment. Requires one of the following permissions: MANAGE_ORDERS. """ type PaymentVoid { - """Updated payment.""" + """ + Updated payment. + """ payment: Payment - paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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.""" +""" +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.") + paymentErrors: [PaymentError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [PaymentError!]! } @@ -19271,35 +24370,54 @@ type PaymentInitialize { 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.""" + """ + ID of a payment gateway. + """ gateway: String! - """Payment gateway name.""" + """ + Payment gateway name. + """ name: String! - """Initialized data by gateway.""" + """ + Initialized data by gateway. + """ data: JSONString } -"""Check payment balance.""" +""" +Check payment balance. +""" type PaymentCheckBalance { - """Response from the gateway.""" + """ + Response from the gateway. + """ data: JSONString - paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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.""" + """ + An ID of a payment gateway to check. + """ gatewayId: String! - """Payment method name.""" + """ + Payment method name. + """ method: String! - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String! - """Information about card.""" + """ + Information about card. + """ card: CardInput! } @@ -19309,18 +24427,26 @@ input CardInput { """ code: String! - """Card security code.""" + """ + Card security code. + """ cvc: String - """Information about currency and amount.""" + """ + Information about currency and amount. + """ money: MoneyInput! } input MoneyInput { - """Currency code.""" + """ + Currency code. + """ currency: String! - """Amount of money.""" + """ + Amount of money. + """ amount: PositiveDecimal! } @@ -19342,14 +24468,20 @@ type TransactionCreateError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: TransactionCreateErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum TransactionCreateErrorCode { INVALID GRAPHQL_ERROR @@ -19359,45 +24491,71 @@ enum TransactionCreateErrorCode { } input TransactionCreateInput { - """Status of the transaction.""" + """ + Status of the transaction. + """ status: String! - """Payment type used for this transaction.""" + """ + Payment type used for this transaction. + """ type: String! - """Reference of the transaction.""" + """ + Reference of the transaction. + """ reference: String - """List of all possible actions for the transaction""" + """ + List of all possible actions for the transaction + """ availableActions: [TransactionActionEnum!] - """Amount authorized by this transaction.""" + """ + Amount authorized by this transaction. + """ amountAuthorized: MoneyInput - """Amount charged by this transaction.""" + """ + Amount charged by this transaction. + """ amountCharged: MoneyInput - """Amount refunded by this transaction.""" + """ + Amount refunded by this transaction. + """ amountRefunded: MoneyInput - """Amount voided by this transaction.""" + """ + Amount voided by this transaction. + """ amountVoided: MoneyInput - """Payment public metadata.""" + """ + Payment public metadata. + """ metadata: [MetadataInput!] - """Payment private metadata.""" + """ + Payment private metadata. + """ privateMetadata: [MetadataInput!] } input TransactionEventInput { - """Current status of the payment transaction.""" + """ + Current status of the payment transaction. + """ status: TransactionStatus! - """Reference of the transaction.""" + """ + Reference of the transaction. + """ reference: String - """Name of the transaction.""" + """ + Name of the transaction. + """ name: String } @@ -19419,14 +24577,20 @@ type TransactionUpdateError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: TransactionUpdateErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum TransactionUpdateErrorCode { INVALID GRAPHQL_ERROR @@ -19436,34 +24600,54 @@ enum TransactionUpdateErrorCode { } input TransactionUpdateInput { - """Status of the transaction.""" + """ + Status of the transaction. + """ status: String - """Payment type used for this transaction.""" + """ + Payment type used for this transaction. + """ type: String - """Reference of the transaction.""" + """ + Reference of the transaction. + """ reference: String - """List of all possible actions for the transaction""" + """ + List of all possible actions for the transaction + """ availableActions: [TransactionActionEnum!] - """Amount authorized by this transaction.""" + """ + Amount authorized by this transaction. + """ amountAuthorized: MoneyInput - """Amount charged by this transaction.""" + """ + Amount charged by this transaction. + """ amountCharged: MoneyInput - """Amount refunded by this transaction.""" + """ + Amount refunded by this transaction. + """ amountRefunded: MoneyInput - """Amount voided by this transaction.""" + """ + Amount voided by this transaction. + """ amountVoided: MoneyInput - """Payment public metadata.""" + """ + Payment public metadata. + """ metadata: [MetadataInput!] - """Payment private metadata.""" + """ + Payment private metadata. + """ privateMetadata: [MetadataInput!] } @@ -19472,7 +24656,7 @@ 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. +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. """ @@ -19487,14 +24671,20 @@ type TransactionRequestActionError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: TransactionRequestActionErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum TransactionRequestActionErrorCode { INVALID GRAPHQL_ERROR @@ -19503,12 +24693,13 @@ enum TransactionRequestActionErrorCode { } """ -Creates a new page. +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.") + pageErrors: [PageError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [PageError!]! page: Page } @@ -19519,20 +24710,30 @@ type PageError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: PageErrorCode! - """List of attributes IDs which causes the error.""" + """ + List of attributes IDs which causes the error. + """ attributes: [ID!] - """List of attribute values IDs which causes the error.""" + """ + List of attribute values IDs which causes the error. + """ values: [ID!] } -"""An enumeration.""" +""" +An enumeration. +""" enum PageErrorCode { GRAPHQL_ERROR INVALID @@ -19544,137 +24745,168 @@ enum PageErrorCode { } input PageCreateInput { - """Page internal name.""" + """ + Page internal name. + """ slug: String - """Page title.""" + """ + Page title. + """ title: String """ Page content. - + Rich text format. For reference see https://editorjs.io/ """ content: JSONString - """List of attributes.""" + """ + List of attributes. + """ attributes: [AttributeValueInput!] - """Determines if page is visible in the storefront.""" + """ + Determines if page is visible in the storefront. + """ isPublished: Boolean """ - Publication date. ISO 8601 standard. - + 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.""" + """ + Search engine optimization fields. + """ seo: SeoInput - """ID of the page type that page belongs to.""" + """ + ID of the page type that page belongs to. + """ pageType: ID! } """ -Deletes a page. +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.") + pageErrors: [PageError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [PageError!]! page: Page } """ -Deletes pages. +Deletes pages. Requires one of the following permissions: MANAGE_PAGES. """ type PageBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + pageErrors: [PageError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [PageError!]! } """ -Publish pages. +Publish pages. Requires one of the following permissions: MANAGE_PAGES. """ type PageBulkPublish { - """Returns how many objects were affected.""" + """ + 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.") + pageErrors: [PageError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [PageError!]! } """ -Updates an existing page. +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.") + 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.""" + """ + Page internal name. + """ slug: String - """Page title.""" + """ + Page title. + """ title: String """ Page content. - + Rich text format. For reference see https://editorjs.io/ """ content: JSONString - """List of attributes.""" + """ + List of attributes. + """ attributes: [AttributeValueInput!] - """Determines if page is visible in the storefront.""" + """ + Determines if page is visible in the storefront. + """ isPublished: Boolean """ - Publication date. ISO 8601 standard. - + 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.""" + """ + Search engine optimization fields. + """ seo: SeoInput } """ -Creates/updates translations for a page. +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.") + translationErrors: [TranslationError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [TranslationError!]! page: PageTranslatableContent } @@ -19686,179 +24918,233 @@ input PageTranslationInput { """ Translated page content. - + Rich text format. For reference see https://editorjs.io/ """ content: JSONString } """ -Create a new page type. +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.") + 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 of the page type. + """ name: String - """Page type slug.""" + """ + Page type slug. + """ slug: String - """List of attribute IDs to be assigned to the page type.""" + """ + List of attribute IDs to be assigned to the page type. + """ addAttributes: [ID!] } """ -Update page type. +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.") + 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 of the page type. + """ name: String - """Page type slug.""" + """ + Page type slug. + """ slug: String - """List of attribute IDs to be assigned to the page type.""" + """ + List of attribute IDs to be assigned to the page type. + """ addAttributes: [ID!] - """List of attribute IDs to be assigned to the page type.""" + """ + List of attribute IDs to be assigned to the page type. + """ removeAttributes: [ID!] } """ -Delete a page type. +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.") + pageErrors: [PageError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [PageError!]! pageType: PageType } """ -Delete page types. +Delete page types. Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. """ type PageTypeBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + 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. +Assign attributes to a given page type. Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. """ type PageAttributeAssign { - """The updated page type.""" + """ + The updated page type. + """ pageType: PageType - pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +Unassign attributes from a given page type. Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. """ type PageAttributeUnassign { - """The updated page type.""" + """ + The updated page type. + """ pageType: PageType - pageErrors: [PageError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +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.""" + """ + 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.") + pageErrors: [PageError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [PageError!]! } """ -Reorder page attribute values. +Reorder page attribute values. Requires one of the following permissions: MANAGE_PAGES. """ type PageReorderAttributeValues { - """Page from which attribute values are reordered.""" + """ + 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.") + pageErrors: [PageError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [PageError!]! } """ -Completes creating an order. +Completes creating an order. Requires one of the following permissions: MANAGE_ORDERS. """ type DraftOrderComplete { - """Completed order.""" + """ + Completed order. + """ order: Order - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + orderErrors: [OrderError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderError!]! } """ -Creates a new draft order. +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.") + 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.""" + """ + Billing address of the customer. + """ billingAddress: AddressInput - """Customer associated with the draft order.""" + """ + Customer associated with the draft order. + """ user: ID - """Email address of the customer.""" + """ + Email address of the customer. + """ userEmail: String - """Discount amount for the order.""" + """ + Discount amount for the order. + """ discount: PositiveDecimal - """Shipping address of the customer.""" + """ + Shipping address of the customer. + """ shippingAddress: AddressInput - """ID of a selected shipping method.""" + """ + ID of a selected shipping method. + """ shippingMethod: ID - """ID of the voucher associated with the order.""" + """ + ID of the voucher associated with the order. + """ voucher: ID - """A note from a customer. Visible by customers in the order summary.""" + """ + A note from a customer. Visible by customers in the order summary. + """ customerNote: String - """ID of the channel associated with the order.""" + """ + ID of the channel associated with the order. + """ channelId: ID """ @@ -19868,104 +25154,136 @@ input DraftOrderCreateInput { """ External ID of this order. - + Added in Saleor 3.10. """ externalReference: String - """Variant line input consisting of variant ID and quantity of products.""" + """ + Variant line input consisting of variant ID and quantity of products. + """ lines: [OrderLineCreateInput!] } input OrderLineCreateInput { - """Number of variant items ordered.""" + """ + Number of variant items ordered. + """ quantity: Int! - """Product variant ID.""" + """ + Product variant ID. + """ variantId: ID! """ - Flag that allow force splitting the same variant into multiple lines by skipping the matching logic. - + 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. +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.") + orderErrors: [OrderError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderError!]! order: Order } """ -Deletes draft orders. +Deletes draft orders. Requires one of the following permissions: MANAGE_ORDERS. """ type DraftOrderBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + orderErrors: [OrderError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderError!]! } """ -Deletes order lines. +Deletes order lines. Requires one of the following permissions: MANAGE_ORDERS. """ type DraftOrderLinesBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + orderErrors: [OrderError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderError!]! } """ -Updates a draft order. +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.") + 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.""" + """ + Billing address of the customer. + """ billingAddress: AddressInput - """Customer associated with the draft order.""" + """ + Customer associated with the draft order. + """ user: ID - """Email address of the customer.""" + """ + Email address of the customer. + """ userEmail: String - """Discount amount for the order.""" + """ + Discount amount for the order. + """ discount: PositiveDecimal - """Shipping address of the customer.""" + """ + Shipping address of the customer. + """ shippingAddress: AddressInput - """ID of a selected shipping method.""" + """ + ID of a selected shipping method. + """ shippingMethod: ID - """ID of the voucher associated with the order.""" + """ + ID of the voucher associated with the order. + """ voucher: ID - """A note from a customer. Visible by customers in the order summary.""" + """ + A note from a customer. Visible by customers in the order summary. + """ customerNote: String - """ID of the channel associated with the order.""" + """ + ID of the channel associated with the order. + """ channelId: ID """ @@ -19975,128 +25293,166 @@ input DraftOrderInput { """ External ID of this order. - + Added in Saleor 3.10. """ externalReference: String } """ -Adds note to the order. +Adds note to the order. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderAddNote { - """Order with the note added.""" + """ + Order with the note added. + """ order: Order - """Order note created.""" + """ + Order note created. + """ event: OrderEvent - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + orderErrors: [OrderError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderError!]! } input OrderAddNoteInput { - """Note message.""" + """ + Note message. + """ message: String! } """ -Cancel an order. +Cancel an order. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderCancel { - """Canceled order.""" + """ + Canceled order. + """ order: Order - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + orderErrors: [OrderError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderError!]! } """ -Capture an order. +Capture an order. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderCapture { - """Captured order.""" + """ + Captured order. + """ order: Order - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +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.") + 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. +Creates new fulfillments for an order. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderFulfill { - """List of created fulfillments.""" + """ + List of created fulfillments. + """ fulfillments: [Fulfillment!] - """Fulfilled order.""" + """ + Fulfilled order. + """ order: Order - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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.""" + """ + List of items informing how to fulfill the order. + """ lines: [OrderFulfillLineInput!]! - """If true, send an email notification to the customer.""" + """ + If true, send an email notification to the customer. + """ notifyCustomer: Boolean - """If true, then allow proceed fulfillment when stock is exceeded.""" + """ + 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.""" + """ + The ID of the order line. + """ orderLineId: ID - """List of stock items to create.""" + """ + List of stock items to create. + """ stocks: [OrderFulfillStockInput!]! } input OrderFulfillStockInput { - """The number of line items to be fulfilled from given warehouse.""" + """ + The number of line items to be fulfilled from given warehouse. + """ quantity: Int! - """ID of the warehouse from which the item will be fulfilled.""" + """ + ID of the warehouse from which the item will be fulfilled. + """ warehouse: ID! } """ -Cancels existing fulfillment and optionally restocks items. +Cancels existing fulfillment and optionally restocks items. Requires one of the following permissions: MANAGE_ORDERS. """ type FulfillmentCancel { - """A canceled fulfillment.""" + """ + A canceled fulfillment. + """ fulfillment: Fulfillment - """Order which fulfillment was cancelled.""" + """ + Order which fulfillment was cancelled. + """ order: Order - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + orderErrors: [OrderError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderError!]! } @@ -20110,66 +25466,91 @@ input FulfillmentCancelInput { """ Approve existing fulfillment. -Added in Saleor 3.1. +Added in Saleor 3.1. Requires one of the following permissions: MANAGE_ORDERS. """ type FulfillmentApprove { - """An approved fulfillment.""" + """ + An approved fulfillment. + """ fulfillment: Fulfillment - """Order which fulfillment was approved.""" + """ + Order which fulfillment was approved. + """ order: Order - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +Updates a fulfillment for an order. Requires one of the following permissions: MANAGE_ORDERS. """ type FulfillmentUpdateTracking { - """A fulfillment with updated tracking.""" + """ + A fulfillment with updated tracking. + """ fulfillment: Fulfillment - """Order for which fulfillment was updated.""" + """ + 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.") + orderErrors: [OrderError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderError!]! } input FulfillmentUpdateTrackingInput { - """Fulfillment tracking number.""" + """ + Fulfillment tracking number. + """ trackingNumber: String - """If true, send an email notification to the customer.""" + """ + If true, send an email notification to the customer. + """ notifyCustomer: Boolean = false } """ -Refund products. +Refund products. Requires one of the following permissions: MANAGE_ORDERS. """ type FulfillmentRefundProducts { - """A refunded fulfillment.""" + """ + A refunded fulfillment. + """ fulfillment: Fulfillment - """Order which fulfillment was refunded.""" + """ + Order which fulfillment was refunded. + """ order: Order - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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.""" + """ + List of unfulfilled lines to refund. + """ orderLines: [OrderRefundLineInput!] - """List of fulfilled lines to refund.""" + """ + List of fulfilled lines to refund. + """ fulfillmentLines: [OrderRefundFulfillmentLineInput!] - """The total amount of refund when the value is provided manually.""" + """ + The total amount of refund when the value is provided manually. + """ amountToRefund: PositiveDecimal """ @@ -20179,50 +25560,73 @@ input OrderRefundProductsInput { } input OrderRefundLineInput { - """The ID of the order line to refund.""" + """ + The ID of the order line to refund. + """ orderLineId: ID! - """The number of items to be refunded.""" + """ + The number of items to be refunded. + """ quantity: Int! } input OrderRefundFulfillmentLineInput { - """The ID of the fulfillment line to refund.""" + """ + The ID of the fulfillment line to refund. + """ fulfillmentLineId: ID! - """The number of items to be refunded.""" + """ + The number of items to be refunded. + """ quantity: Int! } """ -Return products. +Return products. Requires one of the following permissions: MANAGE_ORDERS. """ type FulfillmentReturnProducts { - """A return fulfillment.""" + """ + A return fulfillment. + """ returnFulfillment: Fulfillment - """A replace fulfillment.""" + """ + A replace fulfillment. + """ replaceFulfillment: Fulfillment - """Order which fulfillment was returned.""" + """ + Order which fulfillment was returned. + """ order: Order - """A draft order which was created for products with replace flag.""" + """ + 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.") + 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.""" + """ + List of unfulfilled lines to return. + """ orderLines: [OrderReturnLineInput!] - """List of fulfilled lines to return.""" + """ + List of fulfilled lines to return. + """ fulfillmentLines: [OrderReturnFulfillmentLineInput!] - """The total amount of refund when the value is provided manually.""" + """ + The total amount of refund when the value is provided manually. + """ amountToRefund: PositiveDecimal """ @@ -20230,219 +25634,289 @@ input OrderReturnProductsInput { """ includeShippingCosts: Boolean = false - """If true, Saleor will call refund action for all lines.""" + """ + If true, Saleor will call refund action for all lines. + """ refund: Boolean = false } input OrderReturnLineInput { - """The ID of the order line to return.""" + """ + The ID of the order line to return. + """ orderLineId: ID! - """The number of items to be returned.""" + """ + The number of items to be returned. + """ quantity: Int! - """Determines, if the line should be added to replace order.""" + """ + Determines, if the line should be added to replace order. + """ replace: Boolean = false } input OrderReturnFulfillmentLineInput { - """The ID of the fulfillment line to return.""" + """ + The ID of the fulfillment line to return. + """ fulfillmentLineId: ID! - """The number of items to be returned.""" + """ + The number of items to be returned. + """ quantity: Int! - """Determines, if the line should be added to replace order.""" + """ + Determines, if the line should be added to replace order. + """ replace: Boolean = false } """ -Create order lines for an order. +Create order lines for an order. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderLinesCreate { - """Related order.""" + """ + Related order. + """ order: Order - """List of added order lines.""" + """ + List of added order lines. + """ orderLines: [OrderLine!] - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +Deletes an order line from an order. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderLineDelete { - """A related order.""" + """ + A related order. + """ order: Order - """An order line that was deleted.""" + """ + 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.") + 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. +Updates an order line of an order. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderLineUpdate { - """Related order.""" + """ + Related order. + """ order: Order - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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.""" + """ + Number of variant items ordered. + """ quantity: Int! } """ -Adds discount to the order. +Adds discount to the order. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderDiscountAdd { - """Order which has been discounted.""" + """ + Order which has been discounted. + """ order: Order - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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""" + """ + Type of the discount: fixed or percent + """ valueType: DiscountValueTypeEnum! - """Value of the discount. Can store fixed value or percent value""" + """ + Value of the discount. Can store fixed value or percent value + """ value: PositiveDecimal! - """Explanation for the applied discount.""" + """ + Explanation for the applied discount. + """ reason: String } """ -Update discount for the order. +Update discount for the order. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderDiscountUpdate { - """Order which has been discounted.""" + """ + Order which has been discounted. + """ order: Order - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + orderErrors: [OrderError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderError!]! } """ -Remove discount from the order. +Remove discount from the order. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderDiscountDelete { - """Order which has removed discount.""" + """ + Order which has removed discount. + """ order: Order - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +Update discount for the order line. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderLineDiscountUpdate { - """Order line which has been discounted.""" + """ + Order line which has been discounted. + """ orderLine: OrderLine - """Order which is related to the discounted line.""" + """ + 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.") + 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. +Remove discount applied to the order line. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderLineDiscountRemove { - """Order line which has removed discount.""" + """ + Order line which has removed discount. + """ orderLine: OrderLine - """Order which is related to line which has removed discount.""" + """ + 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.") + orderErrors: [OrderError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderError!]! } """ -Mark order as manually paid. +Mark order as manually paid. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderMarkAsPaid { - """Order marked as paid.""" + """ + Order marked as paid. + """ order: Order - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + orderErrors: [OrderError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderError!]! } """ -Refund an order. +Refund an order. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderRefund { - """A refunded order.""" + """ + A refunded order. + """ order: Order - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + orderErrors: [OrderError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderError!]! } """ -Updates an order. +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.") + 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.""" + """ + Billing address of the customer. + """ billingAddress: AddressInput - """Email address of the customer.""" + """ + Email address of the customer. + """ userEmail: String - """Shipping address of the customer.""" + """ + 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. +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 with updated shipping method. + """ order: Order - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + orderErrors: [OrderError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderError!]! } @@ -20454,26 +25928,32 @@ input OrderUpdateShippingInput { } """ -Void an order. +Void an order. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderVoid { - """A voided order.""" + """ + A voided order. + """ order: Order - orderErrors: [OrderError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + orderErrors: [OrderError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderError!]! } """ -Cancels orders. +Cancels orders. Requires one of the following permissions: MANAGE_ORDERS. """ type OrderBulkCancel { - """Returns how many objects were affected.""" + """ + 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.") + orderErrors: [OrderError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [OrderError!]! } @@ -20481,7 +25961,8 @@ type OrderBulkCancel { 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.") + metadataErrors: [MetadataError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [MetadataError!]! item: ObjectWithMetadata } @@ -20492,14 +25973,20 @@ type MetadataError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: MetadataErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum MetadataErrorCode { GRAPHQL_ERROR INVALID @@ -20512,7 +25999,8 @@ enum MetadataErrorCode { 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.") + metadataErrors: [MetadataError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [MetadataError!]! item: ObjectWithMetadata } @@ -20521,7 +26009,8 @@ type DeletePrivateMetadata { 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.") + metadataErrors: [MetadataError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [MetadataError!]! item: ObjectWithMetadata } @@ -20530,20 +26019,24 @@ type 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. """ type UpdatePrivateMetadata { - metadataErrors: [MetadataError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +Assigns storefront's navigation menus. Requires one of the following permissions: MANAGE_MENUS, MANAGE_SETTINGS. """ type AssignNavigation { - """Assigned navigation menu.""" + """ + Assigned navigation menu. + """ menu: Menu - menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + menuErrors: [MenuError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [MenuError!]! } @@ -20553,14 +26046,20 @@ type MenuError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: MenuErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum MenuErrorCode { CANNOT_ASSIGN_NODE GRAPHQL_ERROR @@ -20574,190 +26073,248 @@ enum MenuErrorCode { } enum NavigationType { - """Main storefront navigation.""" + """ + Main storefront navigation. + """ MAIN - """Secondary storefront navigation.""" + """ + Secondary storefront navigation. + """ SECONDARY } """ -Creates a new Menu. +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.") + 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 of the menu. + """ name: String! - """Slug of the menu. Will be generated if not provided.""" + """ + Slug of the menu. Will be generated if not provided. + """ slug: String - """List of menu items.""" + """ + List of menu items. + """ items: [MenuItemInput!] } input MenuItemInput { - """Name of the menu item.""" + """ + Name of the menu item. + """ name: String - """URL of the pointed item.""" + """ + URL of the pointed item. + """ url: String - """Category to which item points.""" + """ + Category to which item points. + """ category: ID - """Collection to which item points.""" + """ + Collection to which item points. + """ collection: ID - """Page to which item points.""" + """ + Page to which item points. + """ page: ID } """ -Deletes a menu. +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.") + menuErrors: [MenuError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [MenuError!]! menu: Menu } """ -Deletes menus. +Deletes menus. Requires one of the following permissions: MANAGE_MENUS. """ type MenuBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + menuErrors: [MenuError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [MenuError!]! } """ -Updates a menu. +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.") + 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 of the menu. + """ name: String - """Slug of the menu.""" + """ + Slug of the menu. + """ slug: String } """ -Creates a new menu item. +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.") + 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 of the menu item. + """ name: String! - """URL of the pointed item.""" + """ + URL of the pointed item. + """ url: String - """Category to which item points.""" + """ + Category to which item points. + """ category: ID - """Collection to which item points.""" + """ + Collection to which item points. + """ collection: ID - """Page to which item points.""" + """ + Page to which item points. + """ page: ID - """Menu to which item belongs.""" + """ + Menu to which item belongs. + """ menu: ID! - """ID of the parent menu. If empty, menu will be top level menu.""" + """ + ID of the parent menu. If empty, menu will be top level menu. + """ parent: ID } """ -Deletes a menu item. +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.") + menuErrors: [MenuError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [MenuError!]! menuItem: MenuItem } """ -Deletes menu items. +Deletes menu items. Requires one of the following permissions: MANAGE_MENUS. """ type MenuItemBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + menuErrors: [MenuError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [MenuError!]! } """ -Updates a menu item. +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.") + 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. +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.") + 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. +Moves items of menus. Requires one of the following permissions: MANAGE_MENUS. """ type MenuItemMove { - """Assigned menu to move within.""" + """ + Assigned menu to move within. + """ menu: Menu - menuErrors: [MenuError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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.""" + """ + The menu item ID to move. + """ itemId: ID! - """ID of the parent menu. If empty, menu will be top level menu.""" + """ + ID of the parent menu. If empty, menu will be top level menu. + """ parentId: ID """ @@ -20767,14 +26324,17 @@ input MenuItemMoveInput { } """ -Request an invoice for the order using plugin. +Request an invoice for the order using plugin. Requires one of the following permissions: MANAGE_ORDERS. """ type InvoiceRequest { - """Order related to an invoice.""" + """ + Order related to an invoice. + """ order: Order - invoiceErrors: [InvoiceError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + invoiceErrors: [InvoiceError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [InvoiceError!]! invoice: Invoice } @@ -20785,14 +26345,20 @@ type InvoiceError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: InvoiceErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum InvoiceErrorCode { REQUIRED NOT_READY @@ -20805,85 +26371,101 @@ enum InvoiceErrorCode { } """ -Requests deletion of an invoice. +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.") + 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. +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.") + 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.""" + """ + Invoice number. + """ number: String! - """URL of an invoice to download.""" + """ + URL of an invoice to download. + """ url: String! } """ -Deletes an invoice. +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.") + invoiceErrors: [InvoiceError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [InvoiceError!]! invoice: Invoice } """ -Updates an 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.") + 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""" + """ + Invoice number + """ number: String - """URL of an invoice to download.""" + """ + URL of an invoice to download. + """ url: String } """ -Send an invoice notification to the customer. +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.") + 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. +Activate a gift card. Requires one of the following permissions: MANAGE_GIFT_CARD. """ type GiftCardActivate { - """Activated gift card.""" + """ + Activated gift card. + """ giftCard: GiftCard - giftCardErrors: [GiftCardError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + giftCardErrors: [GiftCardError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [GiftCardError!]! } @@ -20893,17 +26475,25 @@ type GiftCardError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: GiftCardErrorCode! - """List of tag values that cause the error.""" + """ + List of tag values that cause the error. + """ tags: [String!] } -"""An enumeration.""" +""" +An enumeration. +""" enum GiftCardErrorCode { ALREADY_EXISTS GRAPHQL_ERROR @@ -20916,12 +26506,13 @@ enum GiftCardErrorCode { } """ -Creates a new gift card. +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.") + giftCardErrors: [GiftCardError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [GiftCardError!]! giftCard: GiftCard } @@ -20929,82 +26520,90 @@ type GiftCardCreate { 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. - + 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. - + 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 of the gift card. + """ balance: PriceInput! - """Email of the customer to whom gift card will be sent.""" + """ + 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. - + 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 code. + """ currency: String! - """Amount of money.""" + """ + Amount of money. + """ amount: PositiveDecimal! } @@ -21013,35 +26612,40 @@ 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. +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.") + 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. +Deactivate a gift card. Requires one of the following permissions: MANAGE_GIFT_CARD. """ type GiftCardDeactivate { - """Deactivated gift card.""" + """ + Deactivated gift card. + """ giftCard: GiftCard - giftCardErrors: [GiftCardError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + giftCardErrors: [GiftCardError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [GiftCardError!]! } """ -Update a gift card. +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.") + giftCardErrors: [GiftCardError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [GiftCardError!]! giftCard: GiftCard } @@ -21049,50 +26653,50 @@ type GiftCardUpdate { 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. - + 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. - + 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 @@ -21103,24 +26707,32 @@ 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. +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.""" + """ + Gift card which has been sent. + """ giftCard: GiftCard errors: [GiftCardError!]! } input GiftCardResendInput { - """ID of a gift card to resend.""" + """ + ID of a gift card to resend. + """ id: ID! - """Email to which gift card should be send.""" + """ + Email to which gift card should be send. + """ email: String - """Slug of a channel from which the email should be sent.""" + """ + Slug of a channel from which the email should be sent. + """ channel: String! } @@ -21129,21 +26741,27 @@ 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. +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.""" + """ + Gift card with the note added. + """ giftCard: GiftCard - """Gift card note created.""" + """ + Gift card note created. + """ event: GiftCardEvent errors: [GiftCardError!]! } input GiftCardAddNoteInput { - """Note message.""" + """ + Note message. + """ message: String! } @@ -21152,33 +26770,47 @@ 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. +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.""" + """ + Returns how many objects were created. + """ count: Int! - """List of created gift cards.""" + """ + List of created gift cards. + """ giftCards: [GiftCard!]! errors: [GiftCardError!]! } input GiftCardBulkCreateInput { - """The number of cards to issue.""" + """ + The number of cards to issue. + """ count: Int! - """Balance of the gift card.""" + """ + Balance of the gift card. + """ balance: PriceInput! - """The gift card tags.""" + """ + The gift card tags. + """ tags: [String!] - """The gift card expiry date.""" + """ + The gift card expiry date. + """ expiryDate: Date - """Determine if gift card is active.""" + """ + Determine if gift card is active. + """ isActive: Boolean! } @@ -21187,12 +26819,14 @@ 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. +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.""" + """ + Returns how many objects were affected. + """ count: Int! errors: [GiftCardError!]! } @@ -21202,12 +26836,14 @@ 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. +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.""" + """ + Returns how many objects were affected. + """ count: Int! errors: [GiftCardError!]! } @@ -21217,24 +26853,27 @@ 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. +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.""" + """ + Returns how many objects were affected. + """ count: Int! errors: [GiftCardError!]! } """ -Update plugin configuration. +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.") + pluginsErrors: [PluginError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [PluginError!]! } @@ -21244,14 +26883,20 @@ type PluginError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: PluginErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum PluginErrorCode { GRAPHQL_ERROR INVALID @@ -21262,18 +26907,26 @@ enum PluginErrorCode { } input PluginUpdateInput { - """Indicates whether the plugin should be enabled.""" + """ + Indicates whether the plugin should be enabled. + """ active: Boolean - """Configuration of the plugin.""" + """ + Configuration of the plugin. + """ configuration: [ConfigurationItemInput!] } input ConfigurationItemInput { - """Name of the field to update.""" + """ + Name of the field to update. + """ name: String! - """Value of the given field to update.""" + """ + Value of the given field to update. + """ value: String } @@ -21292,14 +26945,20 @@ type ExternalNotificationError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: ExternalNotificationErrorCodes! } -"""An enumeration.""" +""" +An enumeration. +""" enum ExternalNotificationErrorCodes { REQUIRED INVALID_MODEL_TYPE @@ -21325,12 +26984,13 @@ input ExternalNotificationTriggerInput { } """ -Creates a new 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.") + discountErrors: [DiscountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [DiscountError!]! sale: Sale } @@ -21341,20 +27001,30 @@ type DiscountError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """List of products IDs which causes the error.""" + """ + List of products IDs which causes the error. + """ products: [ID!] - """The error code.""" + """ + The error code. + """ code: DiscountErrorCode! - """List of channels IDs which causes the error.""" + """ + List of channels IDs which causes the error. + """ channels: [ID!] } -"""An enumeration.""" +""" +An enumeration. +""" enum DiscountErrorCode { ALREADY_EXISTS GRAPHQL_ERROR @@ -21367,314 +27037,415 @@ enum DiscountErrorCode { } input SaleInput { - """Voucher name.""" + """ + Voucher name. + """ name: String - """Fixed or percentage.""" + """ + Fixed or percentage. + """ type: DiscountValueTypeEnum - """Value of the voucher.""" + """ + Value of the voucher. + """ value: PositiveDecimal - """Products related to the discount.""" + """ + Products related to the discount. + """ products: [ID!] variants: [ID!] - """Categories related to the discount.""" + """ + Categories related to the discount. + """ categories: [ID!] - """Collections related to the discount.""" + """ + Collections related to the discount. + """ collections: [ID!] - """Start date of the voucher in ISO 8601 format.""" + """ + Start date of the voucher in ISO 8601 format. + """ startDate: DateTime - """End date of the voucher in ISO 8601 format.""" + """ + End date of the voucher in ISO 8601 format. + """ endDate: DateTime } """ -Deletes a sale. +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.") + discountErrors: [DiscountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [DiscountError!]! sale: Sale } """ -Deletes sales. +Deletes sales. Requires one of the following permissions: MANAGE_DISCOUNTS. """ type SaleBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + discountErrors: [DiscountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [DiscountError!]! } """ -Updates a sale. +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.") + 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. +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 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.") + 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 related to the discount. + """ products: [ID!] - """Categories related to the discount.""" + """ + Categories related to the discount. + """ categories: [ID!] - """Collections related to the discount.""" + """ + 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. +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 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.") + 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. +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.") + 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. +Manage sale's availability in channels. Requires one of the following permissions: MANAGE_DISCOUNTS. """ type SaleChannelListingUpdate { - """An updated sale instance.""" + """ + An updated sale instance. + """ sale: Sale - discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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.""" + """ + List of channels to which the sale should be assigned. + """ addChannels: [SaleChannelListingAddInput!] - """List of channels from which the sale should be unassigned.""" + """ + List of channels from which the sale should be unassigned. + """ removeChannels: [ID!] } input SaleChannelListingAddInput { - """ID of a channel.""" + """ + ID of a channel. + """ channelId: ID! - """The value of the discount.""" + """ + The value of the discount. + """ discountValue: PositiveDecimal! } """ -Creates a new 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.") + 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.""" + """ + Voucher type: PRODUCT, CATEGORY SHIPPING or ENTIRE_ORDER. + """ type: VoucherTypeEnum - """Voucher name.""" + """ + Voucher name. + """ name: String - """Code to use the voucher.""" + """ + Code to use the voucher. + """ code: String - """Start date of the voucher in ISO 8601 format.""" + """ + Start date of the voucher in ISO 8601 format. + """ startDate: DateTime - """End date of the voucher in ISO 8601 format.""" + """ + End date of the voucher in ISO 8601 format. + """ endDate: DateTime - """Choices: fixed or percentage.""" + """ + Choices: fixed or percentage. + """ discountValueType: DiscountValueTypeEnum - """Products discounted by the voucher.""" + """ + 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 discounted by the voucher. + """ collections: [ID!] - """Categories discounted by the voucher.""" + """ + Categories discounted by the voucher. + """ categories: [ID!] - """Minimal quantity of checkout items required to apply the voucher.""" + """ + Minimal quantity of checkout items required to apply the voucher. + """ minCheckoutItemsQuantity: Int - """Country codes that can be used with the shipping voucher.""" + """ + Country codes that can be used with the shipping voucher. + """ countries: [String!] - """Voucher should be applied to the cheapest item or entire order.""" + """ + Voucher should be applied to the cheapest item or entire order. + """ applyOncePerOrder: Boolean - """Voucher should be applied once per customer.""" + """ + Voucher should be applied once per customer. + """ applyOncePerCustomer: Boolean - """Voucher can be used only by staff user.""" + """ + Voucher can be used only by staff user. + """ onlyForStaff: Boolean - """Limit number of times this voucher can be used in total.""" + """ + Limit number of times this voucher can be used in total. + """ usageLimit: Int } """ -Deletes a 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.") + discountErrors: [DiscountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [DiscountError!]! voucher: Voucher } """ -Deletes vouchers. +Deletes vouchers. Requires one of the following permissions: MANAGE_DISCOUNTS. """ type VoucherBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + discountErrors: [DiscountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [DiscountError!]! } """ -Updates a voucher. +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.") + 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. +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 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.") + 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. +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 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.") + 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. +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.") + 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. +Manage voucher's availability in channels. Requires one of the following permissions: MANAGE_DISCOUNTS. """ type VoucherChannelListingUpdate { - """An updated voucher instance.""" + """ + An updated voucher instance. + """ voucher: Voucher - discountErrors: [DiscountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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.""" + """ + List of channels to which the voucher should be assigned. + """ addChannels: [VoucherChannelListingAddInput!] - """List of channels from which the voucher should be unassigned.""" + """ + List of channels from which the voucher should be unassigned. + """ removeChannels: [ID!] } input VoucherChannelListingAddInput { - """ID of a channel.""" + """ + ID of a channel. + """ channelId: ID! - """Value of the voucher.""" + """ + Value of the voucher. + """ discountValue: PositiveDecimal - """Min purchase amount required to apply the voucher.""" + """ + Min purchase amount required to apply the voucher. + """ minAmountSpent: PositiveDecimal } """ -Export products to csv file. +Export products to csv file. Requires one of the following permissions: MANAGE_PRODUCTS. """ @@ -21683,7 +27454,8 @@ 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.") + exportErrors: [ExportError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ExportError!]! } @@ -21693,14 +27465,20 @@ type ExportError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: ExportErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum ExportErrorCode { GRAPHQL_ERROR INVALID @@ -21709,44 +27487,68 @@ enum ExportErrorCode { } input ExportProductsInput { - """Determine which products should be exported.""" + """ + Determine which products should be exported. + """ scope: ExportScope! - """Filtering options for products.""" + """ + Filtering options for products. + """ filter: ProductFilterInput - """List of products IDs to export.""" + """ + List of products IDs to export. + """ ids: [ID!] - """Input with info about fields which should be exported.""" + """ + Input with info about fields which should be exported. + """ exportInfo: ExportInfoInput - """Type of exported file.""" + """ + Type of exported file. + """ fileType: FileTypesEnum! } enum ExportScope { - """Export all products.""" + """ + Export all products. + """ ALL - """Export products with given ids.""" + """ + Export products with given ids. + """ IDS - """Export the filtered products.""" + """ + Export the filtered products. + """ FILTER } input ExportInfoInput { - """List of attribute ids witch should be exported.""" + """ + List of attribute ids witch should be exported. + """ attributes: [ID!] - """List of warehouse ids witch should be exported.""" + """ + List of warehouse ids witch should be exported. + """ warehouses: [ID!] - """List of channels ids which should be exported.""" + """ + List of channels ids which should be exported. + """ channels: [ID!] - """List of product fields witch should be exported.""" + """ + List of product fields witch should be exported. + """ fields: [ProductFieldEnum!] } @@ -21765,7 +27567,9 @@ enum ProductFieldEnum { VARIANT_MEDIA } -"""An enumeration.""" +""" +An enumeration. +""" enum FileTypesEnum { CSV XLSX @@ -21776,7 +27580,7 @@ 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. +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. """ @@ -21789,27 +27593,36 @@ type ExportGiftCards { } input ExportGiftCardsInput { - """Determine which gift cards should be exported.""" + """ + Determine which gift cards should be exported. + """ scope: ExportScope! - """Filtering options for gift cards.""" + """ + Filtering options for gift cards. + """ filter: GiftCardFilterInput - """List of gift cards IDs to export.""" + """ + List of gift cards IDs to export. + """ ids: [ID!] - """Type of exported file.""" + """ + 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 +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.") + uploadErrors: [UploadError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [UploadError!]! } @@ -21819,23 +27632,34 @@ type UploadError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: UploadErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum UploadErrorCode { GRAPHQL_ERROR } -"""Adds a gift card or a voucher to a checkout.""" +""" +Adds a gift card or a voucher to a checkout. +""" type CheckoutAddPromoCode { - """The checkout with the added gift card or voucher.""" + """ + 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.") + checkoutErrors: [CheckoutError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [CheckoutError!]! } @@ -21845,23 +27669,35 @@ type CheckoutError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: CheckoutErrorCode! - """List of varint IDs which causes the error.""" + """ + List of varint IDs which causes the error. + """ variants: [ID!] - """List of line Ids which cause the error.""" + """ + List of line Ids which cause the error. + """ lines: [ID!] - """A type of address that causes the error.""" + """ + A type of address that causes the error. + """ addressType: AddressTypeEnum } -"""An enumeration.""" +""" +An enumeration. +""" enum CheckoutErrorCode { BILLING_ADDRESS_NOT_SET CHECKOUT_NOT_FULLY_PAID @@ -21893,11 +27729,16 @@ enum CheckoutErrorCode { INACTIVE_PAYMENT } -"""Update billing address in the existing checkout.""" +""" +Update billing address in the existing checkout. +""" type CheckoutBillingAddressUpdate { - """An updated checkout.""" + """ + An updated checkout. + """ checkout: Checkout - checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + checkoutErrors: [CheckoutError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [CheckoutError!]! } @@ -21922,7 +27763,9 @@ input CheckoutAddressValidationRules { 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.""" + """ + Placed order. + """ order: Order """ @@ -21930,25 +27773,34 @@ type CheckoutComplete { """ confirmationNeeded: Boolean! - """Confirmation data used to process additional authorization steps.""" + """ + 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.") + checkoutErrors: [CheckoutError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [CheckoutError!]! } -"""Create a new checkout.""" +""" +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.") + 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.""" + """ + Slug of a channel in which to create a checkout. + """ channel: String """ @@ -21956,7 +27808,9 @@ input CheckoutCreateInput { """ lines: [CheckoutLineInput!]! - """The customer's email address.""" + """ + The customer's email address. + """ email: String """ @@ -21964,50 +27818,58 @@ input CheckoutCreateInput { """ shippingAddress: AddressInput - """Billing address of the customer.""" + """ + Billing address of the customer. + """ billingAddress: AddressInput - """Checkout language code.""" + """ + 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.""" + """ + The number of items purchased. + """ quantity: Int! - """ID of the product variant.""" + """ + 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. - + 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!] @@ -22026,48 +27888,68 @@ input CheckoutValidationRules { } """ -Sets the customer as the owner of the checkout. +Sets the customer as the owner of the checkout. Requires one of the following permissions: AUTHENTICATED_APP, AUTHENTICATED_USER. """ type CheckoutCustomerAttach { - """An updated checkout.""" + """ + An updated checkout. + """ checkout: Checkout - checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +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.""" + """ + An updated checkout. + """ checkout: Checkout - checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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.""" +""" +Updates email address in the existing checkout object. +""" type CheckoutEmailUpdate { - """An updated checkout.""" + """ + An updated checkout. + """ checkout: Checkout - checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + checkoutErrors: [CheckoutError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [CheckoutError!]! } -"""Deletes a CheckoutLine.""" +""" +Deletes a CheckoutLine. +""" type CheckoutLineDelete { - """An updated checkout.""" + """ + An updated checkout. + """ checkout: Checkout - checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + checkoutErrors: [CheckoutError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [CheckoutError!]! } -"""Deletes checkout lines.""" +""" +Deletes checkout lines. +""" type CheckoutLinesDelete { - """An updated checkout.""" + """ + An updated checkout. + """ checkout: Checkout errors: [CheckoutError!]! } @@ -22076,24 +27958,32 @@ type CheckoutLinesDelete { Adds a checkout line to the existing checkout.If line was already in checkout, its quantity will be increased. """ type CheckoutLinesAdd { - """An updated checkout.""" + """ + An updated checkout. + """ checkout: Checkout - checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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.""" +""" +Updates checkout line in the existing checkout. +""" type CheckoutLinesUpdate { - """An updated checkout.""" + """ + An updated checkout. + """ checkout: Checkout - checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. - + ID of the product variant. + DEPRECATED: this field will be removed in Saleor 4.0. Use `lineId` instead. """ variantId: ID @@ -22105,42 +27995,56 @@ input CheckoutLineUpdateInput { """ 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.""" +""" +Remove a gift card or a voucher from a checkout. +""" type CheckoutRemovePromoCode { - """The checkout with the removed gift card or voucher.""" + """ + 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.") + 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.""" +""" +Create a new payment for given checkout. +""" type CheckoutPaymentCreate { - """Related checkout object.""" + """ + Related checkout object. + """ checkout: Checkout - """A newly created payment.""" + """ + A newly created payment. + """ payment: Payment - paymentErrors: [PaymentError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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.""" + """ + A gateway to use with that payment. + """ gateway: String! """ @@ -22160,20 +28064,22 @@ input PaymentInput { """ 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 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. @@ -22185,23 +28091,35 @@ enum StorePaymentMethodEnum { """ OFF_SESSION - """Storage is disabled. The payment is not stored.""" + """ + Storage is disabled. The payment is not stored. + """ NONE } -"""Update shipping address in the existing checkout.""" +""" +Update shipping address in the existing checkout. +""" type CheckoutShippingAddressUpdate { - """An updated checkout.""" + """ + An updated checkout. + """ checkout: Checkout - checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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.""" +""" +Updates the shipping method of the checkout. +""" type CheckoutShippingMethodUpdate { - """An updated checkout.""" + """ + An updated checkout. + """ checkout: Checkout - checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + checkoutErrors: [CheckoutError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [CheckoutError!]! } @@ -22213,16 +28131,23 @@ 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.""" + """ + An updated checkout. + """ checkout: Checkout errors: [CheckoutError!]! } -"""Update language code in the existing checkout.""" +""" +Update language code in the existing checkout. +""" type CheckoutLanguageCodeUpdate { - """An updated checkout.""" + """ + An updated checkout. + """ checkout: Checkout - checkoutErrors: [CheckoutError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + checkoutErrors: [CheckoutError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [CheckoutError!]! } @@ -22234,7 +28159,9 @@ 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.""" + """ + Placed order. + """ order: Order errors: [OrderCreateFromCheckoutError!]! } @@ -22245,20 +28172,30 @@ type OrderCreateFromCheckoutError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: OrderCreateFromCheckoutErrorCode! - """List of variant IDs which causes the error.""" + """ + List of variant IDs which causes the error. + """ variants: [ID!] - """List of line Ids which cause the error.""" + """ + List of line Ids which cause the error. + """ lines: [ID!] } -"""An enumeration.""" +""" +An enumeration. +""" enum OrderCreateFromCheckoutErrorCode { GRAPHQL_ERROR CHECKOUT_NOT_FOUND @@ -22277,12 +28214,13 @@ enum OrderCreateFromCheckoutErrorCode { } """ -Creates new 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.") + channelErrors: [ChannelError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ChannelError!]! channel: Channel } @@ -22293,20 +28231,30 @@ type ChannelError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: ChannelErrorCode! - """List of shipping zone IDs which causes the error.""" + """ + List of shipping zone IDs which causes the error. + """ shippingZones: [ID!] - """List of warehouses IDs which causes the error.""" + """ + List of warehouses IDs which causes the error. + """ warehouses: [ID!] } -"""An enumeration.""" +""" +An enumeration. +""" enum ChannelErrorCode { ALREADY_EXISTS GRAPHQL_ERROR @@ -22320,44 +28268,54 @@ enum ChannelErrorCode { } input ChannelCreateInput { - """isActive flag.""" + """ + 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.""" + """ + 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 of the channel. + """ name: String! - """Slug of the channel.""" + """ + Slug of the channel. + """ slug: String! - """Currency of the channel.""" + """ + 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! @@ -22371,104 +28329,124 @@ input StockSettingsInput { } """ -Update a channel. +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.") + 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 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.""" + """ + 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 of the channel. + """ name: String - """Slug of the channel.""" + """ + 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.""" + """ + 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. +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.") + 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.""" + """ + ID of channel to migrate orders from origin channel. + """ channelId: ID! } """ -Activate a channel. +Activate a channel. Requires one of the following permissions: MANAGE_CHANNELS. """ type ChannelActivate { - """Activated channel.""" + """ + Activated channel. + """ channel: Channel - channelErrors: [ChannelError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + channelErrors: [ChannelError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ChannelError!]! } """ -Deactivate a channel. +Deactivate a channel. Requires one of the following permissions: MANAGE_CHANNELS. """ type ChannelDeactivate { - """Deactivated channel.""" + """ + Deactivated channel. + """ channel: Channel - channelErrors: [ChannelError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + channelErrors: [ChannelError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [ChannelError!]! } @@ -22477,20 +28455,25 @@ 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. +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 within the warehouses are reordered. + """ channel: Channel errors: [ChannelError!]! } -"""Creates an 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.") + attributeErrors: [AttributeError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AttributeError!]! } @@ -22500,14 +28483,20 @@ type AttributeError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: AttributeErrorCode! } -"""An enumeration.""" +""" +An enumeration. +""" enum AttributeErrorCode { ALREADY_EXISTS GRAPHQL_ERROR @@ -22518,63 +28507,85 @@ enum AttributeErrorCode { } input AttributeCreateInput { - """The input type to use for entering attribute values in the dashboard.""" + """ + The input type to use for entering attribute values in the dashboard. + """ inputType: AttributeInputTypeEnum - """The entity type which can be used as a reference.""" + """ + The entity type which can be used as a reference. + """ entityType: AttributeEntityTypeEnum - """Name of an attribute displayed in the interface.""" + """ + Name of an attribute displayed in the interface. + """ name: String! - """Internal representation of an attribute name.""" + """ + Internal representation of an attribute name. + """ slug: String - """The attribute type.""" + """ + The attribute type. + """ type: AttributeTypeEnum! - """The unit of attribute values.""" + """ + The unit of attribute values. + """ unit: MeasurementUnitsEnum - """List of attribute's values.""" + """ + List of attribute's values. + """ values: [AttributeValueCreateInput!] - """Whether the attribute requires values to be passed or not.""" + """ + Whether the attribute requires values to be passed or not. + """ valueRequired: Boolean - """Whether the attribute is for variants only.""" + """ + Whether the attribute is for variants only. + """ isVariantOnly: Boolean - """Whether the attribute should be visible or not in storefront.""" + """ + Whether the attribute should be visible or not in storefront. + """ visibleInStorefront: Boolean """ Whether the attribute can be filtered in storefront. - + DEPRECATED: this field will be removed in Saleor 4.0. """ filterableInStorefront: Boolean - """Whether the attribute can be filtered in dashboard.""" + """ + Whether the attribute can be filtered in dashboard. + """ filterableInDashboard: Boolean """ The position of the attribute in the storefront navigation (0 by default). - + DEPRECATED: this field will be removed in Saleor 4.0. """ storefrontSearchPosition: Int """ Whether the attribute can be displayed in the admin product list. - + DEPRECATED: this field will be removed in Saleor 4.0. """ availableInGrid: Boolean """ External ID of this attribute. - + Added in Saleor 3.10. """ externalReference: String @@ -22588,111 +28599,137 @@ input AttributeValueCreateInput { """ 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.""" + """ + URL of the file attribute. Every time, a new value is created. + """ fileUrl: String - """File content type.""" + """ + 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 of a value displayed in the interface. + """ name: String! } """ -Deletes an attribute. +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.") + attributeErrors: [AttributeError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AttributeError!]! attribute: Attribute } """ -Updates 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.") + 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 of an attribute displayed in the interface. + """ name: String - """Internal representation of an attribute name.""" + """ + Internal representation of an attribute name. + """ slug: String - """The unit of attribute values.""" + """ + The unit of attribute values. + """ unit: MeasurementUnitsEnum - """IDs of values to be removed from this attribute.""" + """ + IDs of values to be removed from this attribute. + """ removeValues: [ID!] - """New values to be created for this attribute.""" + """ + New values to be created for this attribute. + """ addValues: [AttributeValueUpdateInput!] - """Whether the attribute requires values to be passed or not.""" + """ + Whether the attribute requires values to be passed or not. + """ valueRequired: Boolean - """Whether the attribute is for variants only.""" + """ + Whether the attribute is for variants only. + """ isVariantOnly: Boolean - """Whether the attribute should be visible or not in storefront.""" + """ + Whether the attribute should be visible or not in storefront. + """ visibleInStorefront: Boolean """ Whether the attribute can be filtered in storefront. - + DEPRECATED: this field will be removed in Saleor 4.0. """ filterableInStorefront: Boolean - """Whether the attribute can be filtered in dashboard.""" + """ + Whether the attribute can be filtered in dashboard. + """ filterableInDashboard: Boolean """ The position of the attribute in the storefront navigation (0 by default). - + DEPRECATED: this field will be removed in Saleor 4.0. """ storefrontSearchPosition: Int """ Whether the attribute can be displayed in the admin product list. - + DEPRECATED: this field will be removed in Saleor 4.0. """ availableInGrid: Boolean """ External ID of this product. - + Added in Saleor 3.10. """ externalReference: String @@ -22706,118 +28743,141 @@ input AttributeValueUpdateInput { """ 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.""" + """ + URL of the file attribute. Every time, a new value is created. + """ fileUrl: String - """File content type.""" + """ + 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 of a value displayed in the interface. + """ name: String } """ -Creates/updates translations for an attribute. +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.") + translationErrors: [TranslationError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [TranslationError!]! attribute: Attribute } """ -Deletes attributes. +Deletes attributes. Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. """ type AttributeBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + attributeErrors: [AttributeError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AttributeError!]! } """ -Deletes values of attributes. +Deletes values of attributes. Requires one of the following permissions: MANAGE_PAGE_TYPES_AND_ATTRIBUTES. """ type AttributeValueBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + 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. +Creates a value for an attribute. Requires one of the following permissions: MANAGE_PRODUCTS. """ type AttributeValueCreate { - """The updated attribute.""" + """ + The updated attribute. + """ attribute: Attribute - attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +Deletes a value of an attribute. Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. """ type AttributeValueDelete { - """The updated attribute.""" + """ + The updated attribute. + """ attribute: Attribute - attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +Updates value of an attribute. Requires one of the following permissions: MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES. """ type AttributeValueUpdate { - """The updated attribute.""" + """ + The updated attribute. + """ attribute: Attribute - attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +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.") + translationErrors: [TranslationError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [TranslationError!]! attributeValue: AttributeValue } @@ -22827,24 +28887,29 @@ input AttributeValueTranslationInput { """ Translated text. - + Rich text format. For reference see https://editorjs.io/ """ richText: JSONString - """Translated text.""" + """ + Translated text. + """ plainText: String } """ -Reorder the values of an attribute. +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 from which values are reordered. + """ attribute: Attribute - attributeErrors: [AttributeError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + attributeErrors: [AttributeError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AttributeError!]! } @@ -22852,9 +28917,12 @@ type AttributeReorderValues { Creates a new app. Requires the following permissions: AUTHENTICATED_STAFF_USER and MANAGE_APPS. """ type AppCreate { - """The newly created authentication token.""" + """ + The newly created authentication token. + """ authToken: String - appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + appErrors: [AppError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AppError!]! app: App } @@ -22865,17 +28933,25 @@ type AppError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: AppErrorCode! - """List of permissions which causes the error.""" + """ + List of permissions which causes the error. + """ permissions: [PermissionEnum!] } -"""An enumeration.""" +""" +An enumeration. +""" enum AppErrorCode { FORBIDDEN GRAPHQL_ERROR @@ -22893,72 +28969,91 @@ enum AppErrorCode { } input AppInput { - """Name of the app.""" + """ + Name of the app. + """ name: String - """List of permission code names to assign to this app.""" + """ + List of permission code names to assign to this app. + """ permissions: [PermissionEnum!] } """ -Updates an existing app. +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.") + appErrors: [AppError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AppError!]! app: App } """ -Deletes an 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.") + 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. +Creates a new token. Requires one of the following permissions: MANAGE_APPS. """ type AppTokenCreate { - """The newly created authentication token.""" + """ + The newly created authentication token. + """ authToken: String - appErrors: [AppError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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 of the token. + """ name: String - """ID of app.""" + """ + ID of app. + """ app: ID! } """ -Deletes an authentication token assigned to app. +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.") + 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.""" +""" +Verify provided app token. +""" type AppTokenVerify { - """Determine if token is valid or not.""" + """ + 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.") + appErrors: [AppError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AppError!]! } @@ -22966,59 +29061,73 @@ type AppTokenVerify { 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.") + 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.""" + """ + Name of the app to install. + """ appName: String - """Url to app's manifest in JSON format.""" + """ + Url to app's manifest in JSON format. + """ manifestUrl: String - """Determine if app will be set active or not.""" + """ + Determine if app will be set active or not. + """ activateAfterInstallation: Boolean = true - """List of permission code names to assign to this app.""" + """ + List of permission code names to assign to this app. + """ permissions: [PermissionEnum!] } """ -Retry failed installation of new app. +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.") + appErrors: [AppError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AppError!]! appInstallation: AppInstallation } """ -Delete failed installation. +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.") + 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. +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.") + appErrors: [AppError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AppError!]! } -"""The manifest definition.""" +""" +The manifest definition. +""" type Manifest { identifier: String! version: String! @@ -23027,12 +29136,18 @@ type Manifest { 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.") + """ + 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.") + """ + 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 @@ -23040,93 +29155,126 @@ type Manifest { """ 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.""" + """ + List of the app extension's permissions. + """ permissions: [Permission!]! - """Label of the extension to show in the dashboard.""" + """ + Label of the extension to show in the dashboard. + """ label: String! - """URL of a view where extension's iframe is placed.""" + """ + URL of a view where extension's iframe is placed. + """ url: String! - """Place where given extension will be mounted.""" + """ + Place where given extension will be mounted. + """ mount: AppExtensionMountEnum! - """Type of way how app extension will be opened.""" + """ + Type of way how app extension will be opened. + """ target: AppExtensionTargetEnum! } type AppManifestWebhook { - """The name of the webhook.""" + """ + The name of the webhook. + """ name: String! - """The asynchronous events that webhook wants to subscribe.""" + """ + The asynchronous events that webhook wants to subscribe. + """ asyncEvents: [WebhookEventTypeAsyncEnum!] - """The synchronous events that webhook wants to subscribe.""" + """ + The synchronous events that webhook wants to subscribe. + """ syncEvents: [WebhookEventTypeSyncEnum!] - """Subscription query of a webhook""" + """ + Subscription query of a webhook + """ query: String! - """The url to receive the payload.""" + """ + The url to receive the payload. + """ targetUrl: String! } """ -Activate the app. +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.") + appErrors: [AppError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AppError!]! app: App } """ -Deactivate the 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.") + appErrors: [AppError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AppError!]! app: App } -"""Create JWT token.""" +""" +Create JWT token. +""" type CreateToken { - """JWT token, required to authenticate.""" + """ + JWT token, required to authenticate. + """ token: String - """JWT refresh token, required to re-generate access token.""" + """ + JWT refresh token, required to re-generate access token. + """ refreshToken: String - """CSRF token required to re-generate access token.""" + """ + CSRF token required to re-generate access token. + """ csrfToken: String - """A user instance.""" + """ + A user instance. + """ user: User - accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + accountErrors: [AccountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AccountError!]! } @@ -23136,17 +29284,25 @@ type AccountError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: AccountErrorCode! - """A type of address that causes the error.""" + """ + A type of address that causes the error. + """ addressType: AddressTypeEnum } -"""An enumeration.""" +""" +An enumeration. +""" enum AccountErrorCode { ACTIVATE_OWN_ACCOUNT ACTIVATE_SUPERUSER_ACCOUNT @@ -23187,26 +29343,40 @@ enum AccountErrorCode { 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.""" + """ + JWT token, required to authenticate. + """ token: String - """A user instance.""" + """ + A user instance. + """ user: User - accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + accountErrors: [AccountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AccountError!]! } -"""Verify JWT token.""" +""" +Verify JWT token. +""" type VerifyToken { - """User assigned to token.""" + """ + User assigned to token. + """ user: User - """Determine if token is valid or not.""" + """ + Determine if token is valid or not. + """ isValid: Boolean! - """JWT payload.""" + """ + JWT payload. + """ payload: GenericScalar - accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + accountErrors: [AccountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AccountError!]! } @@ -23218,90 +29388,140 @@ String, Boolean, Int, Float, List or Object. scalar GenericScalar """ -Deactivate all JWT tokens of the currently authenticated user. +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.") + 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.""" +""" +Prepare external authentication url for user by custom plugin. +""" type ExternalAuthenticationUrl { - """The data returned by authentication plugin.""" + """ + 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.") + 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.""" +""" +Obtain external access tokens for user by custom plugin. +""" type ExternalObtainAccessTokens { - """The token, required to authenticate.""" + """ + The token, required to authenticate. + """ token: String - """The refresh token, required to re-generate external access token.""" + """ + The refresh token, required to re-generate external access token. + """ refreshToken: String - """CSRF token required to re-generate external access token.""" + """ + CSRF token required to re-generate external access token. + """ csrfToken: String - """A user instance.""" + """ + A user instance. + """ user: User - accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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.""" +""" +Refresh user's access by custom plugin. +""" type ExternalRefresh { - """The token, required to authenticate.""" + """ + The token, required to authenticate. + """ token: String - """The refresh token, required to re-generate external access token.""" + """ + The refresh token, required to re-generate external access token. + """ refreshToken: String - """CSRF token required to re-generate external access token.""" + """ + CSRF token required to re-generate external access token. + """ csrfToken: String - """A user instance.""" + """ + A user instance. + """ user: User - accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + accountErrors: [AccountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AccountError!]! } -"""Logout user by custom plugin.""" +""" +Logout user by custom plugin. +""" type ExternalLogout { - """The data returned by authentication plugin.""" + """ + 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.") + 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.""" +""" +Verify external authentication data by plugin. +""" type ExternalVerify { - """User assigned to data.""" + """ + User assigned to data. + """ user: User - """Determine if authentication data is valid or not.""" + """ + Determine if authentication data is valid or not. + """ isValid: Boolean! - """External data.""" + """ + External data. + """ verifyData: JSONString - accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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.""" +""" +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.") + 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.""" +""" +Confirm user account with token sent by email during registration. +""" type ConfirmAccount { - """An activated user account.""" + """ + An activated user account. + """ user: User - accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + accountErrors: [AccountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AccountError!]! } @@ -23309,66 +29529,87 @@ type ConfirmAccount { Sets the user's password from the token sent by email using the RequestPasswordReset mutation. """ type SetPassword { - """JWT token, required to authenticate.""" + """ + JWT token, required to authenticate. + """ token: String - """JWT refresh token, required to re-generate access token.""" + """ + JWT refresh token, required to re-generate access token. + """ refreshToken: String - """CSRF token required to re-generate access token.""" + """ + CSRF token required to re-generate access token. + """ csrfToken: String - """A user instance.""" + """ + A user instance. + """ user: User - accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +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.""" + """ + 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.") + 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. +Request email change of the logged in user. Requires one of the following permissions: AUTHENTICATED_USER. """ type RequestEmailChange { - """A user instance.""" + """ + A user instance. + """ user: User - accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +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.""" + """ + 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.") + 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. +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.""" + """ + 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.") + accountErrors: [AccountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AccountError!]! address: Address } @@ -23377,9 +29618,12 @@ type AccountAddressCreate { 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.""" + """ + 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.") + accountErrors: [AccountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AccountError!]! address: Address } @@ -23388,54 +29632,79 @@ type AccountAddressUpdate { 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.""" + """ + 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.") + 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. +Sets a default address for the authenticated user. Requires one of the following permissions: AUTHENTICATED_USER. """ type AccountSetDefaultAddress { - """An updated user instance.""" + """ + An updated user instance. + """ user: User - accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + accountErrors: [AccountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AccountError!]! } -"""Register a new user.""" +""" +Register a new user. +""" type AccountRegister { - """Informs whether users need to confirm their email address.""" + """ + 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.") + 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.""" + """ + Given name. + """ firstName: String - """Family name.""" + """ + Family name. + """ lastName: String - """User language code.""" + """ + User language code. + """ languageCode: LanguageCodeEnum - """The email address of the user.""" + """ + The email address of the user. + """ email: String! - """Password.""" + """ + Password. + """ password: String! - """Base of frontend URL that will be needed to create confirmation URL.""" + """ + Base of frontend URL that will be needed to create confirmation URL. + """ redirectUrl: String - """User public metadata.""" + """ + User public metadata. + """ metadata: [MetadataInput!] """ @@ -23445,144 +29714,186 @@ input AccountRegisterInput { } """ -Updates the account of the logged-in 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.") + 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.""" + """ + Given name. + """ firstName: String - """Family name.""" + """ + Family name. + """ lastName: String - """User language code.""" + """ + User language code. + """ languageCode: LanguageCodeEnum - """Billing address of the customer.""" + """ + Billing address of the customer. + """ defaultBillingAddress: AddressInput - """Shipping address of the customer.""" + """ + Shipping address of the customer. + """ defaultShippingAddress: AddressInput } """ -Sends an email with the account removal link for the logged-in user. +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.") + accountErrors: [AccountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AccountError!]! } """ -Remove user account. +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.") + accountErrors: [AccountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AccountError!]! user: User } """ -Creates user address. +Creates user address. Requires one of the following permissions: MANAGE_USERS. """ type AddressCreate { - """A user instance for which the address was created.""" + """ + 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.") + accountErrors: [AccountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AccountError!]! address: Address } """ -Updates an address. +Updates an address. Requires one of the following permissions: MANAGE_USERS. """ type AddressUpdate { - """A user object for which the address was edited.""" + """ + 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.") + accountErrors: [AccountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AccountError!]! address: Address } """ -Deletes an address. +Deletes an address. Requires one of the following permissions: MANAGE_USERS. """ type AddressDelete { - """A user instance for which the address was deleted.""" + """ + 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.") + 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. +Sets a default address for the given user. Requires one of the following permissions: MANAGE_USERS. """ type AddressSetDefault { - """An updated user instance.""" + """ + An updated user instance. + """ user: User - accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + accountErrors: [AccountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AccountError!]! } """ -Creates a new customer. +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.") + 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.""" + """ + Billing address of the customer. + """ defaultBillingAddress: AddressInput - """Shipping address of the customer.""" + """ + Shipping address of the customer. + """ defaultShippingAddress: AddressInput - """Given name.""" + """ + Given name. + """ firstName: String - """Family name.""" + """ + Family name. + """ lastName: String - """The unique email address of the user.""" + """ + The unique email address of the user. + """ email: String - """User account is active.""" + """ + User account is active. + """ isActive: Boolean - """A note about the user.""" + """ + A note about the user. + """ note: String - """User language code.""" + """ + User language code. + """ languageCode: LanguageCodeEnum """ External ID of the customer. - + Added in Saleor 3.10. """ externalReference: String @@ -23599,79 +29910,101 @@ input UserCreateInput { } """ -Updates an existing customer. +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.") + 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.""" + """ + Billing address of the customer. + """ defaultBillingAddress: AddressInput - """Shipping address of the customer.""" + """ + Shipping address of the customer. + """ defaultShippingAddress: AddressInput - """Given name.""" + """ + Given name. + """ firstName: String - """Family name.""" + """ + Family name. + """ lastName: String - """The unique email address of the user.""" + """ + The unique email address of the user. + """ email: String - """User account is active.""" + """ + User account is active. + """ isActive: Boolean - """A note about the user.""" + """ + A note about the user. + """ note: String - """User language code.""" + """ + User language code. + """ languageCode: LanguageCodeEnum """ External ID of the customer. - + Added in Saleor 3.10. """ externalReference: String } """ -Deletes a customer. +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.") + accountErrors: [AccountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AccountError!]! user: User } """ -Deletes customers. +Deletes customers. Requires one of the following permissions: MANAGE_USERS. """ type CustomerBulkDelete { - """Returns how many objects were affected.""" + """ + 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.") + 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. +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.") + staffErrors: [StaffError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [StaffError!]! user: User } @@ -23682,42 +30015,66 @@ type StaffError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: AccountErrorCode! - """A type of address that causes the error.""" + """ + A type of address that causes the error. + """ addressType: AddressTypeEnum - """List of permissions which causes the error.""" + """ + List of permissions which causes the error. + """ permissions: [PermissionEnum!] - """List of permission group IDs which cause the error.""" + """ + List of permission group IDs which cause the error. + """ groups: [ID!] - """List of user IDs which causes the error.""" + """ + List of user IDs which causes the error. + """ users: [ID!] } input StaffCreateInput { - """Given name.""" + """ + Given name. + """ firstName: String - """Family name.""" + """ + Family name. + """ lastName: String - """The unique email address of the user.""" + """ + The unique email address of the user. + """ email: String - """User account is active.""" + """ + User account is active. + """ isActive: Boolean - """A note about the user.""" + """ + A note about the user. + """ note: String - """List of permission group IDs to which user should be assigned.""" + """ + List of permission group IDs to which user should be assigned. + """ addGroups: [ID!] """ @@ -23727,105 +30084,134 @@ input StaffCreateInput { } """ -Updates an existing staff user. Apps are not allowed to perform this mutation. +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.") + 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.""" + """ + Given name. + """ firstName: String - """Family name.""" + """ + Family name. + """ lastName: String - """The unique email address of the user.""" + """ + The unique email address of the user. + """ email: String - """User account is active.""" + """ + User account is active. + """ isActive: Boolean - """A note about the user.""" + """ + A note about the user. + """ note: String - """List of permission group IDs to which user should be assigned.""" + """ + List of permission group IDs to which user should be assigned. + """ addGroups: [ID!] - """List of permission group IDs from which user should be unassigned.""" + """ + 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. +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.") + 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. +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.""" + """ + 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.") + 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 +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.""" + """ + An updated user instance. + """ user: User - accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + 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. +Deletes a user avatar. Only for staff members. Requires one of the following permissions: AUTHENTICATED_STAFF_USER. """ type UserAvatarDelete { - """An updated user instance.""" + """ + An updated user instance. + """ user: User - accountErrors: [AccountError!]! @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") + accountErrors: [AccountError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [AccountError!]! } """ -Activate or deactivate users. +Activate or deactivate users. Requires one of the following permissions: MANAGE_USERS. """ type UserBulkSetActive { - """Returns how many objects were affected.""" + """ + 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.") + 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. +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.") + permissionGroupErrors: [PermissionGroupError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [PermissionGroupError!]! group: Group } @@ -23836,20 +30222,30 @@ type PermissionGroupError { """ field: String - """The error message.""" + """ + The error message. + """ message: String - """The error code.""" + """ + The error code. + """ code: PermissionGroupErrorCode! - """List of permissions which causes the error.""" + """ + List of permissions which causes the error. + """ permissions: [PermissionEnum!] - """List of user IDs which causes the error.""" + """ + List of user IDs which causes the error. + """ users: [ID!] } -"""An enumeration.""" +""" +An enumeration. +""" enum PermissionGroupErrorCode { ASSIGN_NON_STAFF_MEMBER DUPLICATED_INPUT_ITEM @@ -23862,51 +30258,69 @@ enum PermissionGroupErrorCode { } input PermissionGroupCreateInput { - """List of permission code names to assign to this group.""" + """ + List of permission code names to assign to this group. + """ addPermissions: [PermissionEnum!] - """List of users to assign to this group.""" + """ + List of users to assign to this group. + """ addUsers: [ID!] - """Group name.""" + """ + Group name. + """ name: String! } """ -Update permission group. Apps are not allowed to perform this mutation. +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.") + 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.""" + """ + List of permission code names to assign to this group. + """ addPermissions: [PermissionEnum!] - """List of users to assign to this group.""" + """ + List of users to assign to this group. + """ addUsers: [ID!] - """Group name.""" + """ + Group name. + """ name: String - """List of permission code names to unassign from this group.""" + """ + List of permission code names to unassign from this group. + """ removePermissions: [PermissionEnum!] - """List of users to unassign from this group.""" + """ + List of users to unassign from this group. + """ removeUsers: [ID!] } """ -Delete permission group. Apps are not allowed to perform this mutation. +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.") + permissionGroupErrors: [PermissionGroupError!]! + @deprecated(reason: "This field will be removed in Saleor 4.0. Use `errors` field instead.") errors: [PermissionGroupError!]! group: Group } @@ -23914,31 +30328,41 @@ type PermissionGroupDelete { 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App } union IssuingPrincipal = App | User -"""An enumeration.""" +""" +An enumeration. +""" enum DistanceUnitsEnum { CM M @@ -23948,7 +30372,9 @@ enum DistanceUnitsEnum { INCH } -"""An enumeration.""" +""" +An enumeration. +""" enum AreaUnitsEnum { SQ_CM SQ_M @@ -23958,7 +30384,9 @@ enum AreaUnitsEnum { SQ_INCH } -"""An enumeration.""" +""" +An enumeration. +""" enum VolumeUnitsEnum { CUBIC_MILLIMETER CUBIC_CENTIMETER @@ -23983,19 +30411,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The address the event relates to.""" + """ + The address the event relates to. + """ address: Address } @@ -24007,19 +30445,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The address the event relates to.""" + """ + The address the event relates to. + """ address: Address } @@ -24031,19 +30479,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The address the event relates to.""" + """ + The address the event relates to. + """ address: Address } @@ -24055,19 +30513,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The application the event relates to.""" + """ + The application the event relates to. + """ app: App } @@ -24079,19 +30547,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The application the event relates to.""" + """ + The application the event relates to. + """ app: App } @@ -24103,19 +30581,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The application the event relates to.""" + """ + The application the event relates to. + """ app: App } @@ -24127,19 +30615,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The application the event relates to.""" + """ + The application the event relates to. + """ app: App } @@ -24151,19 +30649,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The attribute the event relates to.""" + """ + The attribute the event relates to. + """ attribute: Attribute } @@ -24175,19 +30683,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The attribute the event relates to.""" + """ + The attribute the event relates to. + """ attribute: Attribute } @@ -24199,19 +30717,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The attribute the event relates to.""" + """ + The attribute the event relates to. + """ attribute: Attribute } @@ -24223,19 +30751,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The attribute value the event relates to.""" + """ + The attribute value the event relates to. + """ attributeValue: AttributeValue } @@ -24247,19 +30785,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The attribute value the event relates to.""" + """ + The attribute value the event relates to. + """ attributeValue: AttributeValue } @@ -24271,19 +30819,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The attribute value the event relates to.""" + """ + The attribute value the event relates to. + """ attributeValue: AttributeValue } @@ -24295,19 +30853,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The category the event relates to.""" + """ + The category the event relates to. + """ category: Category } @@ -24319,19 +30887,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The category the event relates to.""" + """ + The category the event relates to. + """ category: Category } @@ -24343,19 +30921,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The category the event relates to.""" + """ + The category the event relates to. + """ category: Category } @@ -24367,19 +30955,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The channel the event relates to.""" + """ + The channel the event relates to. + """ channel: Channel } @@ -24391,19 +30989,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The channel the event relates to.""" + """ + The channel the event relates to. + """ channel: Channel } @@ -24415,19 +31023,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The channel the event relates to.""" + """ + The channel the event relates to. + """ channel: Channel } @@ -24439,19 +31057,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The channel the event relates to.""" + """ + The channel the event relates to. + """ channel: Channel } @@ -24463,19 +31091,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The gift card the event relates to.""" + """ + The gift card the event relates to. + """ giftCard: GiftCard } @@ -24487,19 +31125,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The gift card the event relates to.""" + """ + The gift card the event relates to. + """ giftCard: GiftCard } @@ -24511,19 +31159,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The gift card the event relates to.""" + """ + The gift card the event relates to. + """ giftCard: GiftCard } @@ -24535,19 +31193,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The gift card the event relates to.""" + """ + The gift card the event relates to. + """ giftCard: GiftCard } @@ -24559,19 +31227,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The gift card the event relates to.""" + """ + The gift card the event relates to. + """ giftCard: GiftCard } @@ -24583,21 +31261,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The menu the event relates to.""" + """ + The menu the event relates to. + """ menu( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Menu } @@ -24610,21 +31300,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The menu the event relates to.""" + """ + The menu the event relates to. + """ menu( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Menu } @@ -24637,21 +31339,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The menu the event relates to.""" + """ + The menu the event relates to. + """ menu( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Menu } @@ -24664,21 +31378,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The menu item the event relates to.""" + """ + The menu item the event relates to. + """ menuItem( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): MenuItem } @@ -24691,21 +31417,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The menu item the event relates to.""" + """ + The menu item the event relates to. + """ menuItem( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): MenuItem } @@ -24718,21 +31456,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The menu item the event relates to.""" + """ + The menu item the event relates to. + """ menuItem( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): MenuItem } @@ -24745,19 +31495,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The order the event relates to.""" + """ + The order the event relates to. + """ order: Order } @@ -24769,19 +31529,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The order the event relates to.""" + """ + The order the event relates to. + """ order: Order } @@ -24793,19 +31563,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The order the event relates to.""" + """ + The order the event relates to. + """ order: Order } @@ -24817,19 +31597,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The order the event relates to.""" + """ + The order the event relates to. + """ order: Order } @@ -24841,19 +31631,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The order the event relates to.""" + """ + The order the event relates to. + """ order: Order } @@ -24865,19 +31665,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The order the event relates to.""" + """ + The order the event relates to. + """ order: Order } @@ -24889,19 +31699,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The order the event relates to.""" + """ + The order the event relates to. + """ order: Order } @@ -24913,19 +31733,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The order the event relates to.""" + """ + The order the event relates to. + """ order: Order } @@ -24937,19 +31767,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The order the event relates to.""" + """ + The order the event relates to. + """ order: Order } @@ -24961,19 +31801,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The order the event relates to.""" + """ + The order the event relates to. + """ order: Order } @@ -24985,25 +31835,39 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The product the event relates to.""" + """ + The product the event relates to. + """ product( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Product - """The category of the product.""" + """ + The category of the product. + """ category: Category } @@ -25015,25 +31879,39 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The product the event relates to.""" + """ + The product the event relates to. + """ product( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Product - """The category of the product.""" + """ + The category of the product. + """ category: Category } @@ -25045,25 +31923,39 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The product the event relates to.""" + """ + The product the event relates to. + """ product( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Product - """The category of the product.""" + """ + The category of the product. + """ category: Category } @@ -25075,25 +31967,39 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The product the event relates to.""" + """ + The product the event relates to. + """ product( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Product - """The category of the product.""" + """ + The category of the product. + """ category: Category } @@ -25105,21 +32011,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The product variant the event relates to.""" + """ + The product variant the event relates to. + """ productVariant( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ProductVariant } @@ -25132,21 +32050,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The product variant the event relates to.""" + """ + The product variant the event relates to. + """ productVariant( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ProductVariant } @@ -25159,25 +32089,39 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The product variant the event relates to.""" + """ + The product variant the event relates to. + """ productVariant( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ProductVariant - """Look up a warehouse.""" + """ + Look up a warehouse. + """ warehouse: Warehouse } @@ -25189,25 +32133,39 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The product variant the event relates to.""" + """ + The product variant the event relates to. + """ productVariant( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ProductVariant - """Look up a warehouse.""" + """ + Look up a warehouse. + """ warehouse: Warehouse } @@ -25219,25 +32177,39 @@ Added in Saleor 3.11. Note: this API is currently in Feature Preview and can be subject to changes at later point. """ type ProductVariantStockUpdated implements Event { - """Time of the event.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The product variant the event relates to.""" + """ + The product variant the event relates to. + """ productVariant( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ProductVariant - """Look up a warehouse.""" + """ + Look up a warehouse. + """ warehouse: Warehouse } @@ -25249,21 +32221,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The product variant the event relates to.""" + """ + The product variant the event relates to. + """ productVariant( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ProductVariant } @@ -25276,21 +32260,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The product variant the event relates to.""" + """ + The product variant the event relates to. + """ productVariant( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ProductVariant } @@ -25303,21 +32299,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The sale the event relates to.""" + """ + The sale the event relates to. + """ sale( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Sale } @@ -25330,21 +32338,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The sale the event relates to.""" + """ + The sale the event relates to. + """ sale( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Sale } @@ -25357,21 +32377,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The sale the event relates to.""" + """ + The sale the event relates to. + """ sale( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Sale } @@ -25384,27 +32416,37 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + 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.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Sale } @@ -25417,24 +32459,34 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The invoice the event relates to.""" + """ + The invoice the event relates to. + """ invoice: Invoice """ Order related to the invoice. - + Added in Saleor 3.10. """ order: Order! @@ -25448,24 +32500,34 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The invoice the event relates to.""" + """ + The invoice the event relates to. + """ invoice: Invoice """ Order related to the invoice. - + Added in Saleor 3.10. """ order: Order @@ -25479,24 +32541,34 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The invoice the event relates to.""" + """ + The invoice the event relates to. + """ invoice: Invoice """ Order related to the invoice. - + Added in Saleor 3.10. """ order: Order @@ -25510,22 +32582,34 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The fulfillment the event relates to.""" + """ + The fulfillment the event relates to. + """ fulfillment: Fulfillment - """The order the fulfillment belongs to.""" + """ + The order the fulfillment belongs to. + """ order: Order } @@ -25537,22 +32621,34 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The fulfillment the event relates to.""" + """ + The fulfillment the event relates to. + """ fulfillment: Fulfillment - """The order the fulfillment belongs to.""" + """ + The order the fulfillment belongs to. + """ order: Order } @@ -25564,22 +32660,34 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The fulfillment the event relates to.""" + """ + The fulfillment the event relates to. + """ fulfillment: Fulfillment - """The order the fulfillment belongs to.""" + """ + The order the fulfillment belongs to. + """ order: Order } @@ -25591,22 +32699,34 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The fulfillment the event relates to.""" + """ + The fulfillment the event relates to. + """ fulfillment: Fulfillment - """The order the fulfillment belongs to.""" + """ + The order the fulfillment belongs to. + """ order: Order } @@ -25618,19 +32738,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The user the event relates to.""" + """ + The user the event relates to. + """ user: User } @@ -25642,19 +32772,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The user the event relates to.""" + """ + The user the event relates to. + """ user: User } @@ -25666,19 +32806,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The user the event relates to.""" + """ + The user the event relates to. + """ user: User } @@ -25690,21 +32840,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The collection the event relates to.""" + """ + The collection the event relates to. + """ collection( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Collection } @@ -25717,21 +32879,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The collection the event relates to.""" + """ + The collection the event relates to. + """ collection( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Collection } @@ -25744,21 +32918,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The collection the event relates to.""" + """ + The collection the event relates to. + """ collection( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Collection } @@ -25771,21 +32957,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The collection the event relates to.""" + """ + The collection the event relates to. + """ collection( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Collection } @@ -25798,19 +32996,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The checkout the event relates to.""" + """ + The checkout the event relates to. + """ checkout: Checkout } @@ -25822,19 +33030,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The checkout the event relates to.""" + """ + The checkout the event relates to. + """ checkout: Checkout } @@ -25846,19 +33064,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The checkout the event relates to.""" + """ + The checkout the event relates to. + """ checkout: Checkout } @@ -25870,19 +33098,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The page the event relates to.""" + """ + The page the event relates to. + """ page: Page } @@ -25894,19 +33132,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The page the event relates to.""" + """ + The page the event relates to. + """ page: Page } @@ -25918,19 +33166,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The page the event relates to.""" + """ + The page the event relates to. + """ page: Page } @@ -25942,19 +33200,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The page type the event relates to.""" + """ + The page type the event relates to. + """ pageType: PageType } @@ -25966,19 +33234,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The page type the event relates to.""" + """ + The page type the event relates to. + """ pageType: PageType } @@ -25990,19 +33268,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The page type the event relates to.""" + """ + The page type the event relates to. + """ pageType: PageType } @@ -26014,19 +33302,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The permission group the event relates to.""" + """ + The permission group the event relates to. + """ permissionGroup: Group } @@ -26038,19 +33336,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The permission group the event relates to.""" + """ + The permission group the event relates to. + """ permissionGroup: Group } @@ -26062,19 +33370,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The permission group the event relates to.""" + """ + The permission group the event relates to. + """ permissionGroup: Group } @@ -26086,27 +33404,43 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The shipping method the event relates to.""" + """ + The shipping method the event relates to. + """ shippingMethod( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ShippingMethodType - """The shipping zone the shipping method belongs to.""" + """ + The shipping zone the shipping method belongs to. + """ shippingZone( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ShippingZone } @@ -26119,27 +33453,43 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The shipping method the event relates to.""" + """ + The shipping method the event relates to. + """ shippingMethod( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ShippingMethodType - """The shipping zone the shipping method belongs to.""" + """ + The shipping zone the shipping method belongs to. + """ shippingZone( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ShippingZone } @@ -26152,27 +33502,43 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The shipping method the event relates to.""" + """ + The shipping method the event relates to. + """ shippingMethod( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ShippingMethodType - """The shipping zone the shipping method belongs to.""" + """ + The shipping zone the shipping method belongs to. + """ shippingZone( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ShippingZone } @@ -26185,21 +33551,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The shipping zone the event relates to.""" + """ + The shipping zone the event relates to. + """ shippingZone( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ShippingZone } @@ -26212,21 +33590,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The shipping zone the event relates to.""" + """ + The shipping zone the event relates to. + """ shippingZone( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ShippingZone } @@ -26239,21 +33629,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The shipping zone the event relates to.""" + """ + The shipping zone the event relates to. + """ shippingZone( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ShippingZone } @@ -26266,21 +33668,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The shipping zone the event relates to.""" + """ + The shipping zone the event relates to. + """ shippingZone( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): ShippingZone } @@ -26293,19 +33707,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The user the event relates to.""" + """ + The user the event relates to. + """ user: User } @@ -26317,19 +33741,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The user the event relates to.""" + """ + The user the event relates to. + """ user: User } @@ -26341,19 +33775,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The user the event relates to.""" + """ + The user the event relates to. + """ user: User } @@ -26365,42 +33809,54 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + 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.""" + """ + Determines the action type. + """ actionType: TransactionActionEnum! - """Transaction request amount. Null when action type is VOID.""" + """ + Transaction request amount. Null when action type is VOID. + """ amount: PositiveDecimal } @@ -26412,21 +33868,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + 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 @@ -26440,23 +33904,44 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The translation the event relates to.""" + """ + The translation the event relates to. + """ translation: TranslationTypes } -union TranslationTypes = ProductTranslation | CollectionTranslation | CategoryTranslation | AttributeTranslation | AttributeValueTranslation | ProductVariantTranslation | PageTranslation | ShippingMethodTranslation | SaleTranslation | VoucherTranslation | MenuItemTranslation +union TranslationTypes = + ProductTranslation + | CollectionTranslation + | CategoryTranslation + | AttributeTranslation + | AttributeValueTranslation + | ProductVariantTranslation + | PageTranslation + | ShippingMethodTranslation + | SaleTranslation + | VoucherTranslation + | MenuItemTranslation """ Event sent when translation is updated. @@ -26466,19 +33951,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The translation the event relates to.""" + """ + The translation the event relates to. + """ translation: TranslationTypes } @@ -26490,21 +33985,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The voucher the event relates to.""" + """ + The voucher the event relates to. + """ voucher( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Voucher } @@ -26517,21 +34024,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The voucher the event relates to.""" + """ + The voucher the event relates to. + """ voucher( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Voucher } @@ -26544,21 +34063,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The voucher the event relates to.""" + """ + The voucher the event relates to. + """ voucher( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Voucher } @@ -26571,21 +34102,33 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The voucher the event relates to.""" + """ + The voucher the event relates to. + """ voucher( - """Slug of a channel for which the data should be returned.""" + """ + Slug of a channel for which the data should be returned. + """ channel: String ): Voucher } @@ -26598,19 +34141,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The warehouse the event relates to.""" + """ + The warehouse the event relates to. + """ warehouse: Warehouse } @@ -26622,19 +34175,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The warehouse the event relates to.""" + """ + The warehouse the event relates to. + """ warehouse: Warehouse } @@ -26646,19 +34209,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The warehouse the event relates to.""" + """ + The warehouse the event relates to. + """ warehouse: Warehouse } @@ -26670,19 +34243,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The warehouse the event relates to.""" + """ + The warehouse the event relates to. + """ warehouse: Warehouse } @@ -26694,19 +34277,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """Look up a payment.""" + """ + Look up a payment. + """ payment: Payment } @@ -26718,19 +34311,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """Look up a payment.""" + """ + Look up a payment. + """ payment: Payment } @@ -26742,19 +34345,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """Look up a payment.""" + """ + Look up a payment. + """ payment: Payment } @@ -26766,19 +34379,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """Look up a payment.""" + """ + Look up a payment. + """ payment: Payment } @@ -26790,19 +34413,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """Look up a payment.""" + """ + Look up a payment. + """ payment: Payment } @@ -26814,19 +34447,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """Look up a payment.""" + """ + Look up a payment. + """ payment: Payment } @@ -26838,19 +34481,29 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The checkout the event relates to.""" + """ + The checkout the event relates to. + """ checkout: Checkout } @@ -26862,26 +34515,36 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The order the event relates to.""" + """ + 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!] @@ -26895,26 +34558,36 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The checkout the event relates to.""" + """ + 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!] @@ -26928,26 +34601,36 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App - """The checkout the event relates to.""" + """ + 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!] @@ -26961,89 +34644,152 @@ 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.""" + """ + Time of the event. + """ issuedAt: DateTime - """Saleor version that triggered the event.""" + """ + Saleor version that triggered the event. + """ version: String - """The user or application that triggered the event.""" + """ + The user or application that triggered the event. + """ issuingPrincipal: IssuingPrincipal - """The application receiving the webhook.""" + """ + The application receiving the webhook. + """ recipient: App taxBase: TaxableObject! } -"""Taxable object.""" +""" +Taxable object. +""" type TaxableObject { - """The source object related to this tax object.""" + """ + The source object related to this tax object. + """ sourceObject: TaxSourceObject! - """Determines if prices contain entered tax..""" + """ + Determines if prices contain entered tax.. + """ pricesEnteredWithTax: Boolean! - """The currency of the object.""" + """ + The currency of the object. + """ currency: String! - """The price of shipping method.""" + """ + The price of shipping method. + """ shippingPrice: Money! - """The address data.""" + """ + The address data. + """ address: Address - """List of discounts.""" + """ + List of discounts. + """ discounts: [TaxableObjectDiscount!]! - """List of lines assigned to the object.""" + """ + List of lines assigned to the object. + """ lines: [TaxableObjectLine!]! channel: Channel! } -"""Taxable object discount.""" +""" +Taxable object discount. +""" type TaxableObjectDiscount { - """The name of the discount.""" + """ + The name of the discount. + """ name: String - """The amount of the discount.""" + """ + The amount of the discount. + """ amount: Money! } type TaxableObjectLine { - """The source line related to this tax line.""" + """ + The source line related to this tax line. + """ sourceLine: TaxSourceLine! - """Number of items.""" + """ + Number of items. + """ quantity: Int! - """Determines if taxes are being charged for the product.""" + """ + Determines if taxes are being charged for the product. + """ chargeTaxes: Boolean! - """The product name.""" + """ + The product name. + """ productName: String! - """The variant name.""" + """ + The variant name. + """ variantName: String! - """The product sku.""" + """ + The product sku. + """ productSku: String - """Price of the single item in the order line.""" + """ + Price of the single item in the order line. + """ unitPrice: Money! - """Price of the order line.""" + """ + Price of the order line. + """ totalPrice: Money! } union TaxSourceLine = CheckoutLine | OrderLine -"""_Any value scalar as defined by Federation spec.""" +""" +_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 +""" +_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.""" +""" +_Service manifest as defined by Federation spec. +""" type _Service { sdl: String } diff --git a/apps/emails-and-messages/pnpm-lock.yaml b/apps/emails-and-messages/pnpm-lock.yaml index 78b5505..6b2ff75 100644 --- a/apps/emails-and-messages/pnpm-lock.yaml +++ b/apps/emails-and-messages/pnpm-lock.yaml @@ -1,37 +1,37 @@ lockfileVersion: 5.4 specifiers: - '@graphql-codegen/cli': 2.13.3 - '@graphql-codegen/introspection': 2.2.1 - '@graphql-codegen/typed-document-node': ^2.3.3 - '@graphql-codegen/typescript': 2.7.3 - '@graphql-codegen/typescript-operations': 2.5.3 - '@graphql-codegen/typescript-urql': ^3.7.0 - '@graphql-codegen/urql-introspection': 2.2.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 - '@monaco-editor/react': ^4.4.6 - '@saleor/app-sdk': 0.30.0 - '@saleor/macaw-ui': ^0.7.2 - '@sendgrid/client': ^7.7.0 - '@sendgrid/mail': ^7.7.0 - '@tanstack/react-query': ^4.24.4 - '@testing-library/react': ^13.4.0 - '@testing-library/react-hooks': ^8.0.1 - '@trpc/client': ^10.13.0 - '@trpc/next': ^10.13.0 - '@trpc/react-query': ^10.13.0 - '@trpc/server': ^10.13.0 - '@types/html-to-text': ^9.0.0 - '@types/mjml': ^4.7.0 - '@types/node': ^18.11.18 - '@types/nodemailer': ^6.4.7 - '@types/react': ^18.0.26 - '@types/react-dom': ^18.0.10 - '@urql/exchange-auth': ^1.0.0 - '@vitejs/plugin-react': ^3.0.1 + "@graphql-codegen/cli": 2.13.3 + "@graphql-codegen/introspection": 2.2.1 + "@graphql-codegen/typed-document-node": ^2.3.3 + "@graphql-codegen/typescript": 2.7.3 + "@graphql-codegen/typescript-operations": 2.5.3 + "@graphql-codegen/typescript-urql": ^3.7.0 + "@graphql-codegen/urql-introspection": 2.2.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 + "@monaco-editor/react": ^4.4.6 + "@saleor/app-sdk": 0.30.0 + "@saleor/macaw-ui": ^0.7.2 + "@sendgrid/client": ^7.7.0 + "@sendgrid/mail": ^7.7.0 + "@tanstack/react-query": ^4.24.4 + "@testing-library/react": ^13.4.0 + "@testing-library/react-hooks": ^8.0.1 + "@trpc/client": ^10.13.0 + "@trpc/next": ^10.13.0 + "@trpc/react-query": ^10.13.0 + "@trpc/server": ^10.13.0 + "@types/html-to-text": ^9.0.0 + "@types/mjml": ^4.7.0 + "@types/node": ^18.11.18 + "@types/nodemailer": ^6.4.7 + "@types/react": ^18.0.26 + "@types/react-dom": ^18.0.10 + "@urql/exchange-auth": ^1.0.0 + "@vitejs/plugin-react": ^3.0.1 clsx: ^1.2.1 eslint: 8.31.0 eslint-config-next: 13.1.2 @@ -61,21 +61,21 @@ specifiers: zod: ^3.20.2 dependencies: - '@material-ui/core': 4.12.4_ib3m5ricvtkl2cll7qpr2f6lvq - '@material-ui/icons': 4.11.3_do6jtu5bwlvlflxw6cggb7lxsi - '@material-ui/lab': 4.0.0-alpha.61_do6jtu5bwlvlflxw6cggb7lxsi - '@monaco-editor/react': 4.4.6_biqbaboplfbrettd7655fr4n2y - '@saleor/app-sdk': 0.30.0_qgtcjgzkkjtbiyvnx7d32fl5vu - '@saleor/macaw-ui': 0.7.2_ushc7t6wkobdy4akuvezsbxqvu - '@sendgrid/client': 7.7.0 - '@sendgrid/mail': 7.7.0 - '@tanstack/react-query': 4.24.4_biqbaboplfbrettd7655fr4n2y - '@trpc/client': 10.13.0_@trpc+server@10.13.0 - '@trpc/next': 10.13.0_l7ssqk5enzsbler66nazwc5j4e - '@trpc/react-query': 10.13.0_ugrrpyd7t34msicqzhnjzbn52m - '@trpc/server': 10.13.0 - '@urql/exchange-auth': 1.0.0_graphql@16.6.0 - '@vitejs/plugin-react': 3.0.1_vite@4.0.4 + "@material-ui/core": 4.12.4_ib3m5ricvtkl2cll7qpr2f6lvq + "@material-ui/icons": 4.11.3_do6jtu5bwlvlflxw6cggb7lxsi + "@material-ui/lab": 4.0.0-alpha.61_do6jtu5bwlvlflxw6cggb7lxsi + "@monaco-editor/react": 4.4.6_biqbaboplfbrettd7655fr4n2y + "@saleor/app-sdk": 0.30.0_qgtcjgzkkjtbiyvnx7d32fl5vu + "@saleor/macaw-ui": 0.7.2_ushc7t6wkobdy4akuvezsbxqvu + "@sendgrid/client": 7.7.0 + "@sendgrid/mail": 7.7.0 + "@tanstack/react-query": 4.24.4_biqbaboplfbrettd7655fr4n2y + "@trpc/client": 10.13.0_@trpc+server@10.13.0 + "@trpc/next": 10.13.0_l7ssqk5enzsbler66nazwc5j4e + "@trpc/react-query": 10.13.0_ugrrpyd7t34msicqzhnjzbn52m + "@trpc/server": 10.13.0 + "@urql/exchange-auth": 1.0.0_graphql@16.6.0 + "@vitejs/plugin-react": 3.0.1_vite@4.0.4 clsx: 1.2.1 graphql: 16.6.0 graphql-tag: 2.12.6_graphql@16.6.0 @@ -100,22 +100,22 @@ dependencies: zod: 3.20.2 devDependencies: - '@graphql-codegen/cli': 2.13.3_xcqthgbenw3hhig2jxkpzsllxu - '@graphql-codegen/introspection': 2.2.1_graphql@16.6.0 - '@graphql-codegen/typed-document-node': 2.3.3_graphql@16.6.0 - '@graphql-codegen/typescript': 2.7.3_graphql@16.6.0 - '@graphql-codegen/typescript-operations': 2.5.3_graphql@16.6.0 - '@graphql-codegen/typescript-urql': 3.7.0_sy4knu3obj4ys7pjcqbyfxmqle - '@graphql-codegen/urql-introspection': 2.2.1_graphql@16.6.0 - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 - '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y - '@testing-library/react-hooks': 8.0.1_ib3m5ricvtkl2cll7qpr2f6lvq - '@types/html-to-text': 9.0.0 - '@types/mjml': 4.7.0 - '@types/node': 18.11.18 - '@types/nodemailer': 6.4.7 - '@types/react': 18.0.26 - '@types/react-dom': 18.0.10 + "@graphql-codegen/cli": 2.13.3_xcqthgbenw3hhig2jxkpzsllxu + "@graphql-codegen/introspection": 2.2.1_graphql@16.6.0 + "@graphql-codegen/typed-document-node": 2.3.3_graphql@16.6.0 + "@graphql-codegen/typescript": 2.7.3_graphql@16.6.0 + "@graphql-codegen/typescript-operations": 2.5.3_graphql@16.6.0 + "@graphql-codegen/typescript-urql": 3.7.0_sy4knu3obj4ys7pjcqbyfxmqle + "@graphql-codegen/urql-introspection": 2.2.1_graphql@16.6.0 + "@graphql-typed-document-node/core": 3.1.1_graphql@16.6.0 + "@testing-library/react": 13.4.0_biqbaboplfbrettd7655fr4n2y + "@testing-library/react-hooks": 8.0.1_ib3m5ricvtkl2cll7qpr2f6lvq + "@types/html-to-text": 9.0.0 + "@types/mjml": 4.7.0 + "@types/node": 18.11.18 + "@types/nodemailer": 6.4.7 + "@types/react": 18.0.26 + "@types/react-dom": 18.0.10 eslint: 8.31.0 eslint-config-next: 13.1.2_iukboom6ndih5an6iafl45j2fe eslint-config-prettier: 8.6.0_eslint@8.31.0 @@ -123,26 +123,31 @@ devDependencies: typescript: 4.9.4 packages: - /@ampproject/remapping/2.2.0: - resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==, + } + engines: { node: ">=6.0.0" } dependencies: - '@jridgewell/gen-mapping': 0.1.1 - '@jridgewell/trace-mapping': 0.3.15 + "@jridgewell/gen-mapping": 0.1.1 + "@jridgewell/trace-mapping": 0.3.15 /@ardatan/relay-compiler/12.0.0_graphql@16.6.0: - resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==} + resolution: + { + integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==, + } hasBin: true peerDependencies: - graphql: '*' + graphql: "*" dependencies: - '@babel/core': 7.20.5 - '@babel/generator': 7.20.5 - '@babel/parser': 7.20.5 - '@babel/runtime': 7.21.0 - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 + "@babel/core": 7.20.5 + "@babel/generator": 7.20.5 + "@babel/parser": 7.20.5 + "@babel/runtime": 7.21.0 + "@babel/traverse": 7.20.5 + "@babel/types": 7.20.5 babel-preset-fbjs: 3.4.0_@babel+core@7.20.5 chalk: 4.1.2 fb-watchman: 2.0.2 @@ -161,8 +166,11 @@ packages: dev: true /@ardatan/sync-fetch/0.0.1: - resolution: {integrity: sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==, + } + engines: { node: ">=14" } dependencies: node-fetch: 2.6.7 transitivePeerDependencies: @@ -170,29 +178,38 @@ packages: dev: true /@babel/code-frame/7.18.6: - resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/highlight': 7.18.6 + "@babel/highlight": 7.18.6 /@babel/compat-data/7.20.5: - resolution: {integrity: sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==, + } + engines: { node: ">=6.9.0" } /@babel/core/7.20.12: - resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==, + } + engines: { node: ">=6.9.0" } dependencies: - '@ampproject/remapping': 2.2.0 - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.7 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 - '@babel/helper-module-transforms': 7.20.11 - '@babel/helpers': 7.20.7 - '@babel/parser': 7.20.7 - '@babel/template': 7.20.7 - '@babel/traverse': 7.20.12 - '@babel/types': 7.20.7 + "@ampproject/remapping": 2.2.0 + "@babel/code-frame": 7.18.6 + "@babel/generator": 7.20.7 + "@babel/helper-compilation-targets": 7.20.7_@babel+core@7.20.12 + "@babel/helper-module-transforms": 7.20.11 + "@babel/helpers": 7.20.7 + "@babel/parser": 7.20.7 + "@babel/template": 7.20.7 + "@babel/traverse": 7.20.12 + "@babel/types": 7.20.7 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -203,19 +220,22 @@ packages: dev: false /@babel/core/7.20.5: - resolution: {integrity: sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==, + } + engines: { node: ">=6.9.0" } dependencies: - '@ampproject/remapping': 2.2.0 - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.5 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 - '@babel/helper-module-transforms': 7.20.2 - '@babel/helpers': 7.20.6 - '@babel/parser': 7.20.5 - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 + "@ampproject/remapping": 2.2.0 + "@babel/code-frame": 7.18.6 + "@babel/generator": 7.20.5 + "@babel/helper-compilation-targets": 7.20.0_@babel+core@7.20.5 + "@babel/helper-module-transforms": 7.20.2 + "@babel/helpers": 7.20.6 + "@babel/parser": 7.20.5 + "@babel/template": 7.18.10 + "@babel/traverse": 7.20.5 + "@babel/types": 7.20.5 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -226,618 +246,810 @@ packages: dev: true /@babel/generator/7.19.3: - resolution: {integrity: sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/types': 7.19.3 - '@jridgewell/gen-mapping': 0.3.2 + "@babel/types": 7.19.3 + "@jridgewell/gen-mapping": 0.3.2 jsesc: 2.5.2 dev: true /@babel/generator/7.20.5: - resolution: {integrity: sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/types': 7.20.5 - '@jridgewell/gen-mapping': 0.3.2 + "@babel/types": 7.20.5 + "@jridgewell/gen-mapping": 0.3.2 jsesc: 2.5.2 dev: true /@babel/generator/7.20.7: - resolution: {integrity: sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/types': 7.20.7 - '@jridgewell/gen-mapping': 0.3.2 + "@babel/types": 7.20.7 + "@jridgewell/gen-mapping": 0.3.2 jsesc: 2.5.2 dev: false /@babel/helper-annotate-as-pure/7.18.6: - resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/types': 7.20.5 + "@babel/types": 7.20.5 dev: true /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.5: - resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0 + "@babel/core": ^7.0.0 dependencies: - '@babel/compat-data': 7.20.5 - '@babel/core': 7.20.5 - '@babel/helper-validator-option': 7.18.6 + "@babel/compat-data": 7.20.5 + "@babel/core": 7.20.5 + "@babel/helper-validator-option": 7.18.6 browserslist: 4.21.4 semver: 6.3.0 dev: true /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12: - resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0 + "@babel/core": ^7.0.0 dependencies: - '@babel/compat-data': 7.20.5 - '@babel/core': 7.20.12 - '@babel/helper-validator-option': 7.18.6 + "@babel/compat-data": 7.20.5 + "@babel/core": 7.20.12 + "@babel/helper-validator-option": 7.18.6 browserslist: 4.21.4 lru-cache: 5.1.1 semver: 6.3.0 dev: false /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.20.5: - resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0 + "@babel/core": ^7.0.0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-member-expression-to-functions': 7.18.9 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.19.1 - '@babel/helper-split-export-declaration': 7.18.6 + "@babel/core": 7.20.5 + "@babel/helper-annotate-as-pure": 7.18.6 + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-function-name": 7.19.0 + "@babel/helper-member-expression-to-functions": 7.18.9 + "@babel/helper-optimise-call-expression": 7.18.6 + "@babel/helper-replace-supers": 7.19.1 + "@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'} + resolution: + { + integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==, + } + engines: { node: ">=6.9.0" } /@babel/helper-function-name/7.19.0: - resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/template': 7.18.10 - '@babel/types': 7.20.5 + "@babel/template": 7.18.10 + "@babel/types": 7.20.5 /@babel/helper-hoist-variables/7.18.6: - resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/types': 7.20.5 + "@babel/types": 7.20.5 /@babel/helper-member-expression-to-functions/7.18.9: - resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/types': 7.20.5 + "@babel/types": 7.20.5 dev: true /@babel/helper-module-imports/7.18.6: - resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/types': 7.20.5 + "@babel/types": 7.20.5 /@babel/helper-module-transforms/7.20.11: - resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==, + } + 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.20.2 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/helper-validator-identifier': 7.19.1 - '@babel/template': 7.20.7 - '@babel/traverse': 7.20.12 - '@babel/types': 7.20.7 + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-module-imports": 7.18.6 + "@babel/helper-simple-access": 7.20.2 + "@babel/helper-split-export-declaration": 7.18.6 + "@babel/helper-validator-identifier": 7.19.1 + "@babel/template": 7.20.7 + "@babel/traverse": 7.20.12 + "@babel/types": 7.20.7 transitivePeerDependencies: - supports-color dev: false /@babel/helper-module-transforms/7.20.2: - resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==, + } + 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.20.2 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/helper-validator-identifier': 7.19.1 - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-module-imports": 7.18.6 + "@babel/helper-simple-access": 7.20.2 + "@babel/helper-split-export-declaration": 7.18.6 + "@babel/helper-validator-identifier": 7.19.1 + "@babel/template": 7.18.10 + "@babel/traverse": 7.20.5 + "@babel/types": 7.20.5 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'} + resolution: + { + integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/types': 7.20.5 + "@babel/types": 7.20.5 dev: true /@babel/helper-plugin-utils/7.19.0: - resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==, + } + engines: { node: ">=6.9.0" } /@babel/helper-replace-supers/7.19.1: - resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==, + } + 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.20.5 - '@babel/types': 7.20.5 + "@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.20.5 + "@babel/types": 7.20.5 transitivePeerDependencies: - supports-color dev: true /@babel/helper-simple-access/7.20.2: - resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/types': 7.20.5 + "@babel/types": 7.20.5 /@babel/helper-skip-transparent-expression-wrappers/7.18.9: - resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/types': 7.20.5 + "@babel/types": 7.20.5 dev: true /@babel/helper-split-export-declaration/7.18.6: - resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/types': 7.20.5 + "@babel/types": 7.20.5 /@babel/helper-string-parser/7.18.10: - resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==, + } + engines: { node: ">=6.9.0" } /@babel/helper-string-parser/7.19.4: - resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==, + } + engines: { node: ">=6.9.0" } /@babel/helper-validator-identifier/7.19.1: - resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==, + } + engines: { node: ">=6.9.0" } /@babel/helper-validator-option/7.18.6: - resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==, + } + engines: { node: ">=6.9.0" } /@babel/helpers/7.20.6: - resolution: {integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 + "@babel/template": 7.18.10 + "@babel/traverse": 7.20.5 + "@babel/types": 7.20.5 transitivePeerDependencies: - supports-color dev: true /@babel/helpers/7.20.7: - resolution: {integrity: sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/template': 7.20.7 - '@babel/traverse': 7.20.12 - '@babel/types': 7.20.7 + "@babel/template": 7.20.7 + "@babel/traverse": 7.20.12 + "@babel/types": 7.20.7 transitivePeerDependencies: - supports-color dev: false /@babel/highlight/7.18.6: - resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/helper-validator-identifier': 7.19.1 + "@babel/helper-validator-identifier": 7.19.1 chalk: 2.4.2 js-tokens: 4.0.0 /@babel/parser/7.19.3: - resolution: {integrity: sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==, + } + engines: { node: ">=6.0.0" } hasBin: true dependencies: - '@babel/types': 7.20.5 + "@babel/types": 7.20.5 /@babel/parser/7.20.5: - resolution: {integrity: sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==, + } + engines: { node: ">=6.0.0" } hasBin: true dependencies: - '@babel/types': 7.20.5 + "@babel/types": 7.20.5 dev: true /@babel/parser/7.20.7: - resolution: {integrity: sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==, + } + engines: { node: ">=6.0.0" } hasBin: true dependencies: - '@babel/types': 7.20.7 + "@babel/types": 7.20.7 dev: false /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.20.5 + "@babel/helper-plugin-utils": 7.19.0 transitivePeerDependencies: - supports-color dev: true /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/compat-data': 7.20.5 - '@babel/core': 7.20.5 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.20.5 + "@babel/compat-data": 7.20.5 + "@babel/core": 7.20.5 + "@babel/helper-compilation-targets": 7.20.0_@babel+core@7.20.5 + "@babel/helper-plugin-utils": 7.19.0 + "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.20.5 + "@babel/plugin-transform-parameters": 7.18.8_@babel+core@7.20.5 dev: true /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.5: - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + resolution: + { + integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, + } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.5: - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + resolution: + { + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, + } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-transform-classes/7.19.0_@babel+core@7.20.5: - resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-replace-supers': 7.19.1 - '@babel/helper-split-export-declaration': 7.18.6 + "@babel/core": 7.20.5 + "@babel/helper-annotate-as-pure": 7.18.6 + "@babel/helper-compilation-targets": 7.20.0_@babel+core@7.20.5 + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-function-name": 7.19.0 + "@babel/helper-optimise-call-expression": 7.18.6 + "@babel/helper-plugin-utils": 7.19.0 + "@babel/helper-replace-supers": 7.19.1 + "@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.20.5: - resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.20.5: - resolution: {integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.20.5: - resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.5 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 + "@babel/plugin-syntax-flow": 7.18.6_@babel+core@7.20.5 dev: true /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.5: - resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-compilation-targets": 7.20.0_@babel+core@7.20.5 + "@babel/helper-function-name": 7.19.0 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-module-transforms': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-simple-access': 7.20.2 + "@babel/core": 7.20.5 + "@babel/helper-module-transforms": 7.20.2 + "@babel/helper-plugin-utils": 7.19.0 + "@babel/helper-simple-access": 7.20.2 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-replace-supers': 7.19.1 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 + "@babel/helper-replace-supers": 7.19.1 transitivePeerDependencies: - supports-color dev: true /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.20.5: - resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.20.12: - resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.12 + "@babel/helper-plugin-utils": 7.19.0 dev: false /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.20.12: - resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.12 + "@babel/helper-plugin-utils": 7.19.0 dev: false /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.5: - resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.5 - '@babel/types': 7.20.5 + "@babel/core": 7.20.5 + "@babel/helper-annotate-as-pure": 7.18.6 + "@babel/helper-module-imports": 7.18.6 + "@babel/helper-plugin-utils": 7.19.0 + "@babel/plugin-syntax-jsx": 7.18.6_@babel+core@7.20.5 + "@babel/types": 7.20.5 dev: true /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/plugin-transform-spread/7.19.0_@babel+core@7.20.5: - resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 + "@babel/helper-skip-transparent-expression-wrappers": 7.18.9 dev: true /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.19.0 + "@babel/core": 7.20.5 + "@babel/helper-plugin-utils": 7.19.0 dev: true /@babel/runtime-corejs3/7.19.1: - resolution: {integrity: sha512-j2vJGnkopRzH+ykJ8h68wrHnEUmtK//E723jjixiAl/PPf6FhqY/vYRcMVlNydRKQjQsTsYEjpx+DZMIvnGk/g==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-j2vJGnkopRzH+ykJ8h68wrHnEUmtK//E723jjixiAl/PPf6FhqY/vYRcMVlNydRKQjQsTsYEjpx+DZMIvnGk/g==, + } + engines: { node: ">=6.9.0" } dependencies: core-js-pure: 3.25.5 regenerator-runtime: 0.13.11 dev: true /@babel/runtime/7.19.0: - resolution: {integrity: sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==, + } + engines: { node: ">=6.9.0" } dependencies: regenerator-runtime: 0.13.9 /@babel/runtime/7.21.0: - resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==, + } + engines: { node: ">=6.9.0" } dependencies: regenerator-runtime: 0.13.11 /@babel/template/7.18.10: - resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/code-frame': 7.18.6 - '@babel/parser': 7.19.3 - '@babel/types': 7.19.3 + "@babel/code-frame": 7.18.6 + "@babel/parser": 7.19.3 + "@babel/types": 7.19.3 /@babel/template/7.20.7: - resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/code-frame': 7.18.6 - '@babel/parser': 7.20.7 - '@babel/types': 7.20.7 + "@babel/code-frame": 7.18.6 + "@babel/parser": 7.20.7 + "@babel/types": 7.20.7 dev: false /@babel/traverse/7.20.12: - resolution: {integrity: sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.7 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.20.7 - '@babel/types': 7.20.7 + "@babel/code-frame": 7.18.6 + "@babel/generator": 7.20.7 + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-function-name": 7.19.0 + "@babel/helper-hoist-variables": 7.18.6 + "@babel/helper-split-export-declaration": 7.18.6 + "@babel/parser": 7.20.7 + "@babel/types": 7.20.7 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -845,17 +1057,20 @@ packages: dev: false /@babel/traverse/7.20.5: - resolution: {integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.5 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.20.5 - '@babel/types': 7.20.5 + "@babel/code-frame": 7.18.6 + "@babel/generator": 7.20.5 + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-function-name": 7.19.0 + "@babel/helper-hoist-variables": 7.18.6 + "@babel/helper-split-export-declaration": 7.18.6 + "@babel/parser": 7.20.5 + "@babel/types": 7.20.5 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -863,39 +1078,51 @@ packages: dev: true /@babel/types/7.19.3: - resolution: {integrity: sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/helper-string-parser': 7.18.10 - '@babel/helper-validator-identifier': 7.19.1 + "@babel/helper-string-parser": 7.18.10 + "@babel/helper-validator-identifier": 7.19.1 to-fast-properties: 2.0.0 /@babel/types/7.20.5: - resolution: {integrity: sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/helper-string-parser': 7.19.4 - '@babel/helper-validator-identifier': 7.19.1 + "@babel/helper-string-parser": 7.19.4 + "@babel/helper-validator-identifier": 7.19.1 to-fast-properties: 2.0.0 /@babel/types/7.20.7: - resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/helper-string-parser': 7.19.4 - '@babel/helper-validator-identifier': 7.19.1 + "@babel/helper-string-parser": 7.19.4 + "@babel/helper-validator-identifier": 7.19.1 to-fast-properties: 2.0.0 dev: false /@changesets/apply-release-plan/6.1.3: - resolution: {integrity: sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg==} + resolution: + { + integrity: sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg==, + } dependencies: - '@babel/runtime': 7.21.0 - '@changesets/config': 2.3.0 - '@changesets/get-version-range-type': 0.3.2 - '@changesets/git': 2.0.0 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 + "@babel/runtime": 7.21.0 + "@changesets/config": 2.3.0 + "@changesets/get-version-range-type": 0.3.2 + "@changesets/git": 2.0.0 + "@changesets/types": 5.2.1 + "@manypkg/get-packages": 1.1.3 detect-indent: 6.1.0 fs-extra: 7.0.1 lodash.startcase: 4.4.0 @@ -906,43 +1133,52 @@ packages: dev: false /@changesets/assemble-release-plan/5.2.3: - resolution: {integrity: sha512-g7EVZCmnWz3zMBAdrcKhid4hkHT+Ft1n0mLussFMcB1dE2zCuwcvGoy9ec3yOgPGF4hoMtgHaMIk3T3TBdvU9g==} + resolution: + { + integrity: sha512-g7EVZCmnWz3zMBAdrcKhid4hkHT+Ft1n0mLussFMcB1dE2zCuwcvGoy9ec3yOgPGF4hoMtgHaMIk3T3TBdvU9g==, + } dependencies: - '@babel/runtime': 7.21.0 - '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.5 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 + "@babel/runtime": 7.21.0 + "@changesets/errors": 0.1.4 + "@changesets/get-dependents-graph": 1.3.5 + "@changesets/types": 5.2.1 + "@manypkg/get-packages": 1.1.3 semver: 5.7.1 dev: false /@changesets/changelog-git/0.1.14: - resolution: {integrity: sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==} + resolution: + { + integrity: sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==, + } dependencies: - '@changesets/types': 5.2.1 + "@changesets/types": 5.2.1 dev: false /@changesets/cli/2.26.0: - resolution: {integrity: sha512-0cbTiDms+ICTVtEwAFLNW0jBNex9f5+fFv3I771nBvdnV/mOjd1QJ4+f8KtVSOrwD9SJkk9xbDkWFb0oXd8d1Q==} + resolution: + { + integrity: sha512-0cbTiDms+ICTVtEwAFLNW0jBNex9f5+fFv3I771nBvdnV/mOjd1QJ4+f8KtVSOrwD9SJkk9xbDkWFb0oXd8d1Q==, + } hasBin: true dependencies: - '@babel/runtime': 7.21.0 - '@changesets/apply-release-plan': 6.1.3 - '@changesets/assemble-release-plan': 5.2.3 - '@changesets/changelog-git': 0.1.14 - '@changesets/config': 2.3.0 - '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.5 - '@changesets/get-release-plan': 3.0.16 - '@changesets/git': 2.0.0 - '@changesets/logger': 0.0.5 - '@changesets/pre': 1.0.14 - '@changesets/read': 0.5.9 - '@changesets/types': 5.2.1 - '@changesets/write': 0.2.3 - '@manypkg/get-packages': 1.1.3 - '@types/is-ci': 3.0.0 - '@types/semver': 6.2.3 + "@babel/runtime": 7.21.0 + "@changesets/apply-release-plan": 6.1.3 + "@changesets/assemble-release-plan": 5.2.3 + "@changesets/changelog-git": 0.1.14 + "@changesets/config": 2.3.0 + "@changesets/errors": 0.1.4 + "@changesets/get-dependents-graph": 1.3.5 + "@changesets/get-release-plan": 3.0.16 + "@changesets/git": 2.0.0 + "@changesets/logger": 0.0.5 + "@changesets/pre": 1.0.14 + "@changesets/read": 0.5.9 + "@changesets/types": 5.2.1 + "@changesets/write": 0.2.3 + "@manypkg/get-packages": 1.1.3 + "@types/is-ci": 3.0.0 + "@types/semver": 6.2.3 ansi-colors: 4.1.3 chalk: 2.4.2 enquirer: 2.3.6 @@ -962,129 +1198,177 @@ packages: dev: false /@changesets/config/2.3.0: - resolution: {integrity: sha512-EgP/px6mhCx8QeaMAvWtRrgyxW08k/Bx2tpGT+M84jEdX37v3VKfh4Cz1BkwrYKuMV2HZKeHOh8sHvja/HcXfQ==} + resolution: + { + integrity: sha512-EgP/px6mhCx8QeaMAvWtRrgyxW08k/Bx2tpGT+M84jEdX37v3VKfh4Cz1BkwrYKuMV2HZKeHOh8sHvja/HcXfQ==, + } dependencies: - '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.5 - '@changesets/logger': 0.0.5 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 + "@changesets/errors": 0.1.4 + "@changesets/get-dependents-graph": 1.3.5 + "@changesets/logger": 0.0.5 + "@changesets/types": 5.2.1 + "@manypkg/get-packages": 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.5 dev: false /@changesets/errors/0.1.4: - resolution: {integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==} + resolution: + { + integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==, + } dependencies: extendable-error: 0.1.7 dev: false /@changesets/get-dependents-graph/1.3.5: - resolution: {integrity: sha512-w1eEvnWlbVDIY8mWXqWuYE9oKhvIaBhzqzo4ITSJY9hgoqQ3RoBqwlcAzg11qHxv/b8ReDWnMrpjpKrW6m1ZTA==} + resolution: + { + integrity: sha512-w1eEvnWlbVDIY8mWXqWuYE9oKhvIaBhzqzo4ITSJY9hgoqQ3RoBqwlcAzg11qHxv/b8ReDWnMrpjpKrW6m1ZTA==, + } dependencies: - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 + "@changesets/types": 5.2.1 + "@manypkg/get-packages": 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 semver: 5.7.1 dev: false /@changesets/get-release-plan/3.0.16: - resolution: {integrity: sha512-OpP9QILpBp1bY2YNIKFzwigKh7Qe9KizRsZomzLe6pK8IUo8onkAAVUD8+JRKSr8R7d4+JRuQrfSSNlEwKyPYg==} + resolution: + { + integrity: sha512-OpP9QILpBp1bY2YNIKFzwigKh7Qe9KizRsZomzLe6pK8IUo8onkAAVUD8+JRKSr8R7d4+JRuQrfSSNlEwKyPYg==, + } dependencies: - '@babel/runtime': 7.21.0 - '@changesets/assemble-release-plan': 5.2.3 - '@changesets/config': 2.3.0 - '@changesets/pre': 1.0.14 - '@changesets/read': 0.5.9 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 + "@babel/runtime": 7.21.0 + "@changesets/assemble-release-plan": 5.2.3 + "@changesets/config": 2.3.0 + "@changesets/pre": 1.0.14 + "@changesets/read": 0.5.9 + "@changesets/types": 5.2.1 + "@manypkg/get-packages": 1.1.3 dev: false /@changesets/get-version-range-type/0.3.2: - resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==} + resolution: + { + integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==, + } dev: false /@changesets/git/2.0.0: - resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==} + resolution: + { + integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==, + } dependencies: - '@babel/runtime': 7.21.0 - '@changesets/errors': 0.1.4 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 + "@babel/runtime": 7.21.0 + "@changesets/errors": 0.1.4 + "@changesets/types": 5.2.1 + "@manypkg/get-packages": 1.1.3 is-subdir: 1.2.0 micromatch: 4.0.5 spawndamnit: 2.0.0 dev: false /@changesets/logger/0.0.5: - resolution: {integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==} + resolution: + { + integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==, + } dependencies: chalk: 2.4.2 dev: false /@changesets/parse/0.3.16: - resolution: {integrity: sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==} + resolution: + { + integrity: sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==, + } dependencies: - '@changesets/types': 5.2.1 + "@changesets/types": 5.2.1 js-yaml: 3.14.1 dev: false /@changesets/pre/1.0.14: - resolution: {integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==} + resolution: + { + integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==, + } dependencies: - '@babel/runtime': 7.21.0 - '@changesets/errors': 0.1.4 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 + "@babel/runtime": 7.21.0 + "@changesets/errors": 0.1.4 + "@changesets/types": 5.2.1 + "@manypkg/get-packages": 1.1.3 fs-extra: 7.0.1 dev: false /@changesets/read/0.5.9: - resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==} + resolution: + { + integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==, + } dependencies: - '@babel/runtime': 7.21.0 - '@changesets/git': 2.0.0 - '@changesets/logger': 0.0.5 - '@changesets/parse': 0.3.16 - '@changesets/types': 5.2.1 + "@babel/runtime": 7.21.0 + "@changesets/git": 2.0.0 + "@changesets/logger": 0.0.5 + "@changesets/parse": 0.3.16 + "@changesets/types": 5.2.1 chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 dev: false /@changesets/types/4.1.0: - resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} + resolution: + { + integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==, + } dev: false /@changesets/types/5.2.1: - resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} + resolution: + { + integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==, + } dev: false /@changesets/write/0.2.3: - resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==} + resolution: + { + integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==, + } dependencies: - '@babel/runtime': 7.21.0 - '@changesets/types': 5.2.1 + "@babel/runtime": 7.21.0 + "@changesets/types": 5.2.1 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.2 dev: false /@cspotcode/source-map-support/0.8.1: - resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==, + } + engines: { node: ">=12" } dependencies: - '@jridgewell/trace-mapping': 0.3.9 + "@jridgewell/trace-mapping": 0.3.9 dev: true /@emotion/hash/0.8.0: - resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} + resolution: + { + integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==, + } dev: false /@esbuild/android-arm/0.16.4: - resolution: {integrity: sha512-rZzb7r22m20S1S7ufIc6DC6W659yxoOrl7sKP1nCYhuvUlnCFHVSbATG4keGUtV8rDz11sRRDbWkvQZpzPaHiw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-rZzb7r22m20S1S7ufIc6DC6W659yxoOrl7sKP1nCYhuvUlnCFHVSbATG4keGUtV8rDz11sRRDbWkvQZpzPaHiw==, + } + engines: { node: ">=12" } cpu: [arm] os: [android] requiresBuild: true @@ -1092,8 +1376,11 @@ packages: optional: true /@esbuild/android-arm64/0.16.4: - resolution: {integrity: sha512-VPuTzXFm/m2fcGfN6CiwZTlLzxrKsWbPkG7ArRFpuxyaHUm/XFHQPD4xNwZT6uUmpIHhnSjcaCmcla8COzmZ5Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-VPuTzXFm/m2fcGfN6CiwZTlLzxrKsWbPkG7ArRFpuxyaHUm/XFHQPD4xNwZT6uUmpIHhnSjcaCmcla8COzmZ5Q==, + } + engines: { node: ">=12" } cpu: [arm64] os: [android] requiresBuild: true @@ -1101,8 +1388,11 @@ packages: optional: true /@esbuild/android-x64/0.16.4: - resolution: {integrity: sha512-MW+B2O++BkcOfMWmuHXB15/l1i7wXhJFqbJhp82IBOais8RBEQv2vQz/jHrDEHaY2X0QY7Wfw86SBL2PbVOr0g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-MW+B2O++BkcOfMWmuHXB15/l1i7wXhJFqbJhp82IBOais8RBEQv2vQz/jHrDEHaY2X0QY7Wfw86SBL2PbVOr0g==, + } + engines: { node: ">=12" } cpu: [x64] os: [android] requiresBuild: true @@ -1110,8 +1400,11 @@ packages: optional: true /@esbuild/darwin-arm64/0.16.4: - resolution: {integrity: sha512-a28X1O//aOfxwJVZVs7ZfM8Tyih2Za4nKJrBwW5Wm4yKsnwBy9aiS/xwpxiiTRttw3EaTg4Srerhcm6z0bu9Wg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-a28X1O//aOfxwJVZVs7ZfM8Tyih2Za4nKJrBwW5Wm4yKsnwBy9aiS/xwpxiiTRttw3EaTg4Srerhcm6z0bu9Wg==, + } + engines: { node: ">=12" } cpu: [arm64] os: [darwin] requiresBuild: true @@ -1119,8 +1412,11 @@ packages: optional: true /@esbuild/darwin-x64/0.16.4: - resolution: {integrity: sha512-e3doCr6Ecfwd7VzlaQqEPrnbvvPjE9uoTpxG5pyLzr2rI2NMjDHmvY1E5EO81O/e9TUOLLkXA5m6T8lfjK9yAA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-e3doCr6Ecfwd7VzlaQqEPrnbvvPjE9uoTpxG5pyLzr2rI2NMjDHmvY1E5EO81O/e9TUOLLkXA5m6T8lfjK9yAA==, + } + engines: { node: ">=12" } cpu: [x64] os: [darwin] requiresBuild: true @@ -1128,8 +1424,11 @@ packages: optional: true /@esbuild/freebsd-arm64/0.16.4: - resolution: {integrity: sha512-Oup3G/QxBgvvqnXWrBed7xxkFNwAwJVHZcklWyQt7YCAL5bfUkaa6FVWnR78rNQiM8MqqLiT6ZTZSdUFuVIg1w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Oup3G/QxBgvvqnXWrBed7xxkFNwAwJVHZcklWyQt7YCAL5bfUkaa6FVWnR78rNQiM8MqqLiT6ZTZSdUFuVIg1w==, + } + engines: { node: ">=12" } cpu: [arm64] os: [freebsd] requiresBuild: true @@ -1137,8 +1436,11 @@ packages: optional: true /@esbuild/freebsd-x64/0.16.4: - resolution: {integrity: sha512-vAP+eYOxlN/Bpo/TZmzEQapNS8W1njECrqkTpNgvXskkkJC2AwOXwZWai/Kc2vEFZUXQttx6UJbj9grqjD/+9Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-vAP+eYOxlN/Bpo/TZmzEQapNS8W1njECrqkTpNgvXskkkJC2AwOXwZWai/Kc2vEFZUXQttx6UJbj9grqjD/+9Q==, + } + engines: { node: ">=12" } cpu: [x64] os: [freebsd] requiresBuild: true @@ -1146,8 +1448,11 @@ packages: optional: true /@esbuild/linux-arm/0.16.4: - resolution: {integrity: sha512-A47ZmtpIPyERxkSvIv+zLd6kNIOtJH03XA0Hy7jaceRDdQaQVGSDt4mZqpWqJYgDk9rg96aglbF6kCRvPGDSUA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-A47ZmtpIPyERxkSvIv+zLd6kNIOtJH03XA0Hy7jaceRDdQaQVGSDt4mZqpWqJYgDk9rg96aglbF6kCRvPGDSUA==, + } + engines: { node: ">=12" } cpu: [arm] os: [linux] requiresBuild: true @@ -1155,8 +1460,11 @@ packages: optional: true /@esbuild/linux-arm64/0.16.4: - resolution: {integrity: sha512-2zXoBhv4r5pZiyjBKrOdFP4CXOChxXiYD50LRUU+65DkdS5niPFHbboKZd/c81l0ezpw7AQnHeoCy5hFrzzs4g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-2zXoBhv4r5pZiyjBKrOdFP4CXOChxXiYD50LRUU+65DkdS5niPFHbboKZd/c81l0ezpw7AQnHeoCy5hFrzzs4g==, + } + engines: { node: ">=12" } cpu: [arm64] os: [linux] requiresBuild: true @@ -1164,8 +1472,11 @@ packages: optional: true /@esbuild/linux-ia32/0.16.4: - resolution: {integrity: sha512-uxdSrpe9wFhz4yBwt2kl2TxS/NWEINYBUFIxQtaEVtglm1eECvsj1vEKI0KX2k2wCe17zDdQ3v+jVxfwVfvvjw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-uxdSrpe9wFhz4yBwt2kl2TxS/NWEINYBUFIxQtaEVtglm1eECvsj1vEKI0KX2k2wCe17zDdQ3v+jVxfwVfvvjw==, + } + engines: { node: ">=12" } cpu: [ia32] os: [linux] requiresBuild: true @@ -1173,8 +1484,11 @@ packages: optional: true /@esbuild/linux-loong64/0.16.4: - resolution: {integrity: sha512-peDrrUuxbZ9Jw+DwLCh/9xmZAk0p0K1iY5d2IcwmnN+B87xw7kujOkig6ZRcZqgrXgeRGurRHn0ENMAjjD5DEg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-peDrrUuxbZ9Jw+DwLCh/9xmZAk0p0K1iY5d2IcwmnN+B87xw7kujOkig6ZRcZqgrXgeRGurRHn0ENMAjjD5DEg==, + } + engines: { node: ">=12" } cpu: [loong64] os: [linux] requiresBuild: true @@ -1182,8 +1496,11 @@ packages: optional: true /@esbuild/linux-mips64el/0.16.4: - resolution: {integrity: sha512-sD9EEUoGtVhFjjsauWjflZklTNr57KdQ6xfloO4yH1u7vNQlOfAlhEzbyBKfgbJlW7rwXYBdl5/NcZ+Mg2XhQA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-sD9EEUoGtVhFjjsauWjflZklTNr57KdQ6xfloO4yH1u7vNQlOfAlhEzbyBKfgbJlW7rwXYBdl5/NcZ+Mg2XhQA==, + } + engines: { node: ">=12" } cpu: [mips64el] os: [linux] requiresBuild: true @@ -1191,8 +1508,11 @@ packages: optional: true /@esbuild/linux-ppc64/0.16.4: - resolution: {integrity: sha512-X1HSqHUX9D+d0l6/nIh4ZZJ94eQky8d8z6yxAptpZE3FxCWYWvTDd9X9ST84MGZEJx04VYUD/AGgciddwO0b8g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-X1HSqHUX9D+d0l6/nIh4ZZJ94eQky8d8z6yxAptpZE3FxCWYWvTDd9X9ST84MGZEJx04VYUD/AGgciddwO0b8g==, + } + engines: { node: ">=12" } cpu: [ppc64] os: [linux] requiresBuild: true @@ -1200,8 +1520,11 @@ packages: optional: true /@esbuild/linux-riscv64/0.16.4: - resolution: {integrity: sha512-97ANpzyNp0GTXCt6SRdIx1ngwncpkV/z453ZuxbnBROCJ5p/55UjhbaG23UdHj88fGWLKPFtMoU4CBacz4j9FA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-97ANpzyNp0GTXCt6SRdIx1ngwncpkV/z453ZuxbnBROCJ5p/55UjhbaG23UdHj88fGWLKPFtMoU4CBacz4j9FA==, + } + engines: { node: ">=12" } cpu: [riscv64] os: [linux] requiresBuild: true @@ -1209,8 +1532,11 @@ packages: optional: true /@esbuild/linux-s390x/0.16.4: - resolution: {integrity: sha512-pUvPQLPmbEeJRPjP0DYTC1vjHyhrnCklQmCGYbipkep+oyfTn7GTBJXoPodR7ZS5upmEyc8lzAkn2o29wD786A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-pUvPQLPmbEeJRPjP0DYTC1vjHyhrnCklQmCGYbipkep+oyfTn7GTBJXoPodR7ZS5upmEyc8lzAkn2o29wD786A==, + } + engines: { node: ">=12" } cpu: [s390x] os: [linux] requiresBuild: true @@ -1218,8 +1544,11 @@ packages: optional: true /@esbuild/linux-x64/0.16.4: - resolution: {integrity: sha512-N55Q0mJs3Sl8+utPRPBrL6NLYZKBCLLx0bme/+RbjvMforTGGzFvsRl4xLTZMUBFC1poDzBEPTEu5nxizQ9Nlw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-N55Q0mJs3Sl8+utPRPBrL6NLYZKBCLLx0bme/+RbjvMforTGGzFvsRl4xLTZMUBFC1poDzBEPTEu5nxizQ9Nlw==, + } + engines: { node: ">=12" } cpu: [x64] os: [linux] requiresBuild: true @@ -1227,8 +1556,11 @@ packages: optional: true /@esbuild/netbsd-x64/0.16.4: - resolution: {integrity: sha512-LHSJLit8jCObEQNYkgsDYBh2JrJT53oJO2HVdkSYLa6+zuLJh0lAr06brXIkljrlI+N7NNW1IAXGn/6IZPi3YQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-LHSJLit8jCObEQNYkgsDYBh2JrJT53oJO2HVdkSYLa6+zuLJh0lAr06brXIkljrlI+N7NNW1IAXGn/6IZPi3YQ==, + } + engines: { node: ">=12" } cpu: [x64] os: [netbsd] requiresBuild: true @@ -1236,8 +1568,11 @@ packages: optional: true /@esbuild/openbsd-x64/0.16.4: - resolution: {integrity: sha512-nLgdc6tWEhcCFg/WVFaUxHcPK3AP/bh+KEwKtl69Ay5IBqUwKDaq/6Xk0E+fh/FGjnLwqFSsarsbPHeKM8t8Sw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-nLgdc6tWEhcCFg/WVFaUxHcPK3AP/bh+KEwKtl69Ay5IBqUwKDaq/6Xk0E+fh/FGjnLwqFSsarsbPHeKM8t8Sw==, + } + engines: { node: ">=12" } cpu: [x64] os: [openbsd] requiresBuild: true @@ -1245,8 +1580,11 @@ packages: optional: true /@esbuild/sunos-x64/0.16.4: - resolution: {integrity: sha512-08SluG24GjPO3tXKk95/85n9kpyZtXCVwURR2i4myhrOfi3jspClV0xQQ0W0PYWHioJj+LejFMt41q+PG3mlAQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-08SluG24GjPO3tXKk95/85n9kpyZtXCVwURR2i4myhrOfi3jspClV0xQQ0W0PYWHioJj+LejFMt41q+PG3mlAQ==, + } + engines: { node: ">=12" } cpu: [x64] os: [sunos] requiresBuild: true @@ -1254,8 +1592,11 @@ packages: optional: true /@esbuild/win32-arm64/0.16.4: - resolution: {integrity: sha512-yYiRDQcqLYQSvNQcBKN7XogbrSvBE45FEQdH8fuXPl7cngzkCvpsG2H9Uey39IjQ6gqqc+Q4VXYHsQcKW0OMjQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-yYiRDQcqLYQSvNQcBKN7XogbrSvBE45FEQdH8fuXPl7cngzkCvpsG2H9Uey39IjQ6gqqc+Q4VXYHsQcKW0OMjQ==, + } + engines: { node: ">=12" } cpu: [arm64] os: [win32] requiresBuild: true @@ -1263,8 +1604,11 @@ packages: optional: true /@esbuild/win32-ia32/0.16.4: - resolution: {integrity: sha512-5rabnGIqexekYkh9zXG5waotq8mrdlRoBqAktjx2W3kb0zsI83mdCwrcAeKYirnUaTGztR5TxXcXmQrEzny83w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-5rabnGIqexekYkh9zXG5waotq8mrdlRoBqAktjx2W3kb0zsI83mdCwrcAeKYirnUaTGztR5TxXcXmQrEzny83w==, + } + engines: { node: ">=12" } cpu: [ia32] os: [win32] requiresBuild: true @@ -1272,8 +1616,11 @@ packages: optional: true /@esbuild/win32-x64/0.16.4: - resolution: {integrity: sha512-sN/I8FMPtmtT2Yw+Dly8Ur5vQ5a/RmC8hW7jO9PtPSQUPkowxWpcUZnqOggU7VwyT3Xkj6vcXWd3V/qTXwultQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-sN/I8FMPtmtT2Yw+Dly8Ur5vQ5a/RmC8hW7jO9PtPSQUPkowxWpcUZnqOggU7VwyT3Xkj6vcXWd3V/qTXwultQ==, + } + engines: { node: ">=12" } cpu: [x64] os: [win32] requiresBuild: true @@ -1281,8 +1628,11 @@ packages: optional: true /@eslint/eslintrc/1.4.1: - resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: ajv: 6.12.6 debug: 4.3.4 @@ -1298,64 +1648,79 @@ packages: dev: true /@floating-ui/core/0.7.3: - resolution: {integrity: sha512-buc8BXHmG9l82+OQXOFU3Kr2XQx9ys01U/Q9HMIrZ300iLc8HLMgh7dcCqgYzAzf4BkoQvDcXf5Y+CuEZ5JBYg==} + resolution: + { + integrity: sha512-buc8BXHmG9l82+OQXOFU3Kr2XQx9ys01U/Q9HMIrZ300iLc8HLMgh7dcCqgYzAzf4BkoQvDcXf5Y+CuEZ5JBYg==, + } dev: false /@floating-ui/dom/0.5.4: - resolution: {integrity: sha512-419BMceRLq0RrmTSDxn8hf9R3VCJv2K9PUfugh5JyEFmdjzDo+e8U5EdR8nzKq8Yj1htzLm3b6eQEEam3/rrtg==} + resolution: + { + integrity: sha512-419BMceRLq0RrmTSDxn8hf9R3VCJv2K9PUfugh5JyEFmdjzDo+e8U5EdR8nzKq8Yj1htzLm3b6eQEEam3/rrtg==, + } dependencies: - '@floating-ui/core': 0.7.3 + "@floating-ui/core": 0.7.3 dev: false /@floating-ui/react-dom-interactions/0.5.0_ib3m5ricvtkl2cll7qpr2f6lvq: - resolution: {integrity: sha512-rfON7mkHjCeogd0BSXPa8GBp1TMxEytJQqGVlCouSUonJ4POqdHsqcxRnCh0yAaGVaL/nB/J1vq28V4RdoLszg==} + resolution: + { + integrity: sha512-rfON7mkHjCeogd0BSXPa8GBp1TMxEytJQqGVlCouSUonJ4POqdHsqcxRnCh0yAaGVaL/nB/J1vq28V4RdoLszg==, + } deprecated: Package renamed to @floating-ui/react dependencies: - '@floating-ui/react-dom': 0.7.2_ib3m5ricvtkl2cll7qpr2f6lvq + "@floating-ui/react-dom": 0.7.2_ib3m5ricvtkl2cll7qpr2f6lvq aria-hidden: 1.2.1_kzbn2opkn2327fwg5yzwzya5o4 use-isomorphic-layout-effect: 1.1.2_kzbn2opkn2327fwg5yzwzya5o4 transitivePeerDependencies: - - '@types/react' + - "@types/react" - react - react-dom dev: false /@floating-ui/react-dom/0.7.2_ib3m5ricvtkl2cll7qpr2f6lvq: - resolution: {integrity: sha512-1T0sJcpHgX/u4I1OzIEhlcrvkUN8ln39nz7fMoE/2HDHrPiMFoOGR7++GYyfUmIQHkkrTinaeQsO3XWubjSvGg==} + resolution: + { + integrity: sha512-1T0sJcpHgX/u4I1OzIEhlcrvkUN8ln39nz7fMoE/2HDHrPiMFoOGR7++GYyfUmIQHkkrTinaeQsO3XWubjSvGg==, + } peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' + react: ">=16.8.0" + react-dom: ">=16.8.0" dependencies: - '@floating-ui/dom': 0.5.4 + "@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_kzbn2opkn2327fwg5yzwzya5o4 transitivePeerDependencies: - - '@types/react' + - "@types/react" dev: false /@graphql-codegen/cli/2.13.3_xcqthgbenw3hhig2jxkpzsllxu: - resolution: {integrity: sha512-nhSPc79Ieov7qz4XDgGzkxmAv2EQY+KxeBzcOL2HhnfbVZZLXa/B0TGE4B9lAbz/HAYwWzwv0YX7zg8UFkhzig==} + resolution: + { + integrity: sha512-nhSPc79Ieov7qz4XDgGzkxmAv2EQY+KxeBzcOL2HhnfbVZZLXa/B0TGE4B9lAbz/HAYwWzwv0YX7zg8UFkhzig==, + } 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: - '@babel/generator': 7.19.3 - '@babel/template': 7.18.10 - '@babel/types': 7.19.3 - '@graphql-codegen/core': 2.6.2_graphql@16.6.0 - '@graphql-codegen/plugin-helpers': 2.7.1_graphql@16.6.0 - '@graphql-tools/apollo-engine-loader': 7.3.13_graphql@16.6.0 - '@graphql-tools/code-file-loader': 7.3.6_graphql@16.6.0 - '@graphql-tools/git-loader': 7.2.6_graphql@16.6.0 - '@graphql-tools/github-loader': 7.3.13_graphql@16.6.0 - '@graphql-tools/graphql-file-loader': 7.5.5_graphql@16.6.0 - '@graphql-tools/json-file-loader': 7.4.6_graphql@16.6.0 - '@graphql-tools/load': 7.7.7_graphql@16.6.0 - '@graphql-tools/prisma-loader': 7.2.24_ykzowzmb7rcumunkscnbisnkom - '@graphql-tools/url-loader': 7.16.4_ykzowzmb7rcumunkscnbisnkom - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 - '@whatwg-node/fetch': 0.3.2 + "@babel/generator": 7.19.3 + "@babel/template": 7.18.10 + "@babel/types": 7.19.3 + "@graphql-codegen/core": 2.6.2_graphql@16.6.0 + "@graphql-codegen/plugin-helpers": 2.7.1_graphql@16.6.0 + "@graphql-tools/apollo-engine-loader": 7.3.13_graphql@16.6.0 + "@graphql-tools/code-file-loader": 7.3.6_graphql@16.6.0 + "@graphql-tools/git-loader": 7.2.6_graphql@16.6.0 + "@graphql-tools/github-loader": 7.3.13_graphql@16.6.0 + "@graphql-tools/graphql-file-loader": 7.5.5_graphql@16.6.0 + "@graphql-tools/json-file-loader": 7.4.6_graphql@16.6.0 + "@graphql-tools/load": 7.7.7_graphql@16.6.0 + "@graphql-tools/prisma-loader": 7.2.24_ykzowzmb7rcumunkscnbisnkom + "@graphql-tools/url-loader": 7.16.4_ykzowzmb7rcumunkscnbisnkom + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 + "@whatwg-node/fetch": 0.3.2 ansi-escapes: 4.3.2 chalk: 4.1.2 chokidar: 3.5.3 @@ -1377,9 +1742,9 @@ packages: yaml: 1.10.2 yargs: 17.6.0 transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - '@types/node' + - "@swc/core" + - "@swc/wasm" + - "@types/node" - bufferutil - encoding - enquirer @@ -1389,24 +1754,30 @@ packages: dev: true /@graphql-codegen/core/2.6.2_graphql@16.6.0: - resolution: {integrity: sha512-58T5yf9nEfAhDwN1Vz1hImqpdJ/gGpCGUaroQ5tqskZPf7eZYYVkEXbtqRZZLx1MCCKwjWX4hMtTPpHhwKCkng==} + resolution: + { + integrity: sha512-58T5yf9nEfAhDwN1Vz1hImqpdJ/gGpCGUaroQ5tqskZPf7eZYYVkEXbtqRZZLx1MCCKwjWX4hMtTPpHhwKCkng==, + } 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.1_graphql@16.6.0 - '@graphql-tools/schema': 9.0.4_graphql@16.6.0 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@graphql-codegen/plugin-helpers": 2.7.1_graphql@16.6.0 + "@graphql-tools/schema": 9.0.4_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.0 dev: true /@graphql-codegen/introspection/2.2.1_graphql@16.6.0: - resolution: {integrity: sha512-083tu9rSLL0k9LrAyGt1AjGQI/O9gX3w1UliaufLc3mofDSt7iV04tT9VJRuk4IoBvyPZ/8YCs5zIpmt/GexPA==} + resolution: + { + integrity: sha512-083tu9rSLL0k9LrAyGt1AjGQI/O9gX3w1UliaufLc3mofDSt7iV04tT9VJRuk4IoBvyPZ/8YCs5zIpmt/GexPA==, + } 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.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.12.1_graphql@16.6.0 + "@graphql-codegen/plugin-helpers": 2.7.1_graphql@16.6.0 + "@graphql-codegen/visitor-plugin-common": 2.12.1_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.0 transitivePeerDependencies: @@ -1415,11 +1786,14 @@ packages: dev: true /@graphql-codegen/plugin-helpers/2.7.1_graphql@16.6.0: - resolution: {integrity: sha512-wpEShhwbQp8pqXolnSCNaj0pU91LbuBvYHpYqm96TUqyeKQYAYRVmw3JIt0g8UQpKYhg8lYIDwWdcINOYqkGLg==} + resolution: + { + integrity: sha512-wpEShhwbQp8pqXolnSCNaj0pU91LbuBvYHpYqm96TUqyeKQYAYRVmw3JIt0g8UQpKYhg8lYIDwWdcINOYqkGLg==, + } 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.12.0_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 change-case-all: 1.0.14 common-tags: 1.8.2 graphql: 16.6.0 @@ -1429,23 +1803,29 @@ packages: dev: true /@graphql-codegen/schema-ast/2.5.1_graphql@16.6.0: - resolution: {integrity: sha512-tewa5DEKbglWn7kYyVBkh3J8YQ5ALqAMVmZwiVFIGOao5u66nd+e4HuFqp0u+Jpz4SJGGi0ap/oFrEvlqLjd2A==} + 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.7.1_graphql@16.6.0 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@graphql-codegen/plugin-helpers": 2.7.1_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.0 dev: true /@graphql-codegen/typed-document-node/2.3.3_graphql@16.6.0: - resolution: {integrity: sha512-0zUPMr1pAqzMyPvtpnlfCbwQgS22t2kPhhfGQs2Yw32O+0+vn1ACcvxt0x1TfUwspYfFJa8AAXJ8NjwmDVAFMQ==} + 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.7.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.12.1_graphql@16.6.0 + "@graphql-codegen/plugin-helpers": 2.7.1_graphql@16.6.0 + "@graphql-codegen/visitor-plugin-common": 2.12.1_graphql@16.6.0 auto-bind: 4.0.0 change-case-all: 1.0.14 graphql: 16.6.0 @@ -1456,13 +1836,16 @@ packages: dev: true /@graphql-codegen/typescript-operations/2.5.3_graphql@16.6.0: - resolution: {integrity: sha512-s+pA+Erm0HeBb/D5cNrflwRM5KWhkiA5cbz4uA99l3fzFPveoQBPfRCBu0XAlJLP/kBDy64+o4B8Nfc7wdRtmA==} + resolution: + { + integrity: sha512-s+pA+Erm0HeBb/D5cNrflwRM5KWhkiA5cbz4uA99l3fzFPveoQBPfRCBu0XAlJLP/kBDy64+o4B8Nfc7wdRtmA==, + } 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.1_graphql@16.6.0 - '@graphql-codegen/typescript': 2.7.3_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.12.1_graphql@16.6.0 + "@graphql-codegen/plugin-helpers": 2.7.1_graphql@16.6.0 + "@graphql-codegen/typescript": 2.7.3_graphql@16.6.0 + "@graphql-codegen/visitor-plugin-common": 2.12.1_graphql@16.6.0 auto-bind: 4.0.0 graphql: 16.6.0 tslib: 2.4.0 @@ -1472,13 +1855,16 @@ packages: dev: true /@graphql-codegen/typescript-urql/3.7.0_sy4knu3obj4ys7pjcqbyfxmqle: - resolution: {integrity: sha512-kGk9vDSo89glY+ldaGH6P3nHmAKDFzduciYkJs3u9jYnTmHSSj4pGRPBuhJjAQRAt8okF68T3YI0399ydNsfrQ==} + resolution: + { + integrity: sha512-kGk9vDSo89glY+ldaGH6P3nHmAKDFzduciYkJs3u9jYnTmHSSj4pGRPBuhJjAQRAt8okF68T3YI0399ydNsfrQ==, + } 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.7.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.12.1_graphql@16.6.0 + "@graphql-codegen/plugin-helpers": 2.7.1_graphql@16.6.0 + "@graphql-codegen/visitor-plugin-common": 2.12.1_graphql@16.6.0 auto-bind: 4.0.0 graphql: 16.6.0 graphql-tag: 2.12.6_graphql@16.6.0 @@ -1489,13 +1875,16 @@ packages: dev: true /@graphql-codegen/typescript/2.7.3_graphql@16.6.0: - resolution: {integrity: sha512-EzX/acijXtbG/AwPzho2ZZWaNo00+xAbsRDP+vnT2PwQV3AYq3/5bFvjq1XfAGWbTntdmlYlIwC9hf5bI85WVA==} + resolution: + { + integrity: sha512-EzX/acijXtbG/AwPzho2ZZWaNo00+xAbsRDP+vnT2PwQV3AYq3/5bFvjq1XfAGWbTntdmlYlIwC9hf5bI85WVA==, + } peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 2.7.1_graphql@16.6.0 - '@graphql-codegen/schema-ast': 2.5.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.12.1_graphql@16.6.0 + "@graphql-codegen/plugin-helpers": 2.7.1_graphql@16.6.0 + "@graphql-codegen/schema-ast": 2.5.1_graphql@16.6.0 + "@graphql-codegen/visitor-plugin-common": 2.12.1_graphql@16.6.0 auto-bind: 4.0.0 graphql: 16.6.0 tslib: 2.4.0 @@ -1505,25 +1894,31 @@ packages: dev: true /@graphql-codegen/urql-introspection/2.2.1_graphql@16.6.0: - resolution: {integrity: sha512-/KjHSf4dQNoYZZ+G10b3lbw304ik9xHzRf/syNvoYehmwdYE5J7RnO1v1Cz78LDm2NEdsFas6vJHi0sJd/pOHg==} + resolution: + { + integrity: sha512-/KjHSf4dQNoYZZ+G10b3lbw304ik9xHzRf/syNvoYehmwdYE5J7RnO1v1Cz78LDm2NEdsFas6vJHi0sJd/pOHg==, + } 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.1_graphql@16.6.0 - '@urql/introspection': 0.3.3_graphql@16.6.0 + "@graphql-codegen/plugin-helpers": 2.7.1_graphql@16.6.0 + "@urql/introspection": 0.3.3_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.0 dev: true /@graphql-codegen/visitor-plugin-common/2.12.1_graphql@16.6.0: - resolution: {integrity: sha512-dIUrX4+i/uazyPQqXyQ8cqykgNFe1lknjnfDWFo0gnk2W8+ruuL2JpSrj/7efzFHxbYGMQrCABDCUTVLi3DcVA==} + 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.7.1_graphql@16.6.0 - '@graphql-tools/optimize': 1.3.1_graphql@16.6.0 - '@graphql-tools/relay-operation-optimizer': 6.5.6_graphql@16.6.0 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@graphql-codegen/plugin-helpers": 2.7.1_graphql@16.6.0 + "@graphql-tools/optimize": 1.3.1_graphql@16.6.0 + "@graphql-tools/relay-operation-optimizer": 6.5.6_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 auto-bind: 4.0.0 change-case-all: 1.0.14 dependency-graph: 0.11.0 @@ -1537,13 +1932,16 @@ packages: dev: true /@graphql-tools/apollo-engine-loader/7.3.13_graphql@16.6.0: - resolution: {integrity: sha512-fr2TcA9fM+H81ymdtyDaocZ/Ua4Vhhf1IvpQoPpuEUwLorREd86N8VORUEIBvEdJ1b7Bz7NqwL3RnM5m9KXftA==} + resolution: + { + integrity: sha512-fr2TcA9fM+H81ymdtyDaocZ/Ua4Vhhf1IvpQoPpuEUwLorREd86N8VORUEIBvEdJ1b7Bz7NqwL3RnM5m9KXftA==, + } 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.12.0_graphql@16.6.0 - '@whatwg-node/fetch': 0.4.7 + "@ardatan/sync-fetch": 0.0.1 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 + "@whatwg-node/fetch": 0.4.7 graphql: 16.6.0 tslib: 2.4.0 transitivePeerDependencies: @@ -1551,11 +1949,14 @@ packages: dev: true /@graphql-tools/batch-execute/8.5.6_graphql@16.6.0: - resolution: {integrity: sha512-33vMvVDLBKsNJVNhcySVXF+zkcRL/GRs1Lt+MxygrYCypcAPpFm+amE2y9vOCFufuaKExIX7Lonnmxu19vPzaQ==} + resolution: + { + integrity: sha512-33vMvVDLBKsNJVNhcySVXF+zkcRL/GRs1Lt+MxygrYCypcAPpFm+amE2y9vOCFufuaKExIX7Lonnmxu19vPzaQ==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 dataloader: 2.1.0 graphql: 16.6.0 tslib: 2.4.0 @@ -1563,12 +1964,15 @@ packages: dev: true /@graphql-tools/code-file-loader/7.3.6_graphql@16.6.0: - resolution: {integrity: sha512-PNWWSwSuQAqANerDwS0zdQ5FPipirv75TjjzBHnY+6AF/WvKq5sQiUQheA2P7B+MZc/KdQ7h/JAGMQOhKNVA+Q==} + resolution: + { + integrity: sha512-PNWWSwSuQAqANerDwS0zdQ5FPipirv75TjjzBHnY+6AF/WvKq5sQiUQheA2P7B+MZc/KdQ7h/JAGMQOhKNVA+Q==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.3.6_graphql@16.6.0 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@graphql-tools/graphql-tag-pluck": 7.3.6_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 globby: 11.1.0 graphql: 16.6.0 tslib: 2.4.0 @@ -1578,13 +1982,16 @@ packages: dev: true /@graphql-tools/delegate/9.0.8_graphql@16.6.0: - resolution: {integrity: sha512-h+Uce0Np0eKj7wILOvlffRQ9jEQ4KelNXfqG8A2w+2sO2P6CbKsR7bJ4ch9lcUdCBbZ4Wg6L/K+1C4NRFfzbNw==} + resolution: + { + integrity: sha512-h+Uce0Np0eKj7wILOvlffRQ9jEQ4KelNXfqG8A2w+2sO2P6CbKsR7bJ4ch9lcUdCBbZ4Wg6L/K+1C4NRFfzbNw==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/batch-execute': 8.5.6_graphql@16.6.0 - '@graphql-tools/schema': 9.0.4_graphql@16.6.0 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@graphql-tools/batch-execute": 8.5.6_graphql@16.6.0 + "@graphql-tools/schema": 9.0.4_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 dataloader: 2.1.0 graphql: 16.6.0 tslib: 2.4.0 @@ -1592,12 +1999,15 @@ packages: dev: true /@graphql-tools/git-loader/7.2.6_graphql@16.6.0: - resolution: {integrity: sha512-QA94Gjp70xcdIYUbZDIm8fnuDN0IvoIIVVU+lXQemoV+vDeJKIjrP9tfOTjVDPIDXQnCYswvu9HLe8BlEApQYw==} + resolution: + { + integrity: sha512-QA94Gjp70xcdIYUbZDIm8fnuDN0IvoIIVVU+lXQemoV+vDeJKIjrP9tfOTjVDPIDXQnCYswvu9HLe8BlEApQYw==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.3.6_graphql@16.6.0 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@graphql-tools/graphql-tag-pluck": 7.3.6_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 graphql: 16.6.0 is-glob: 4.0.3 micromatch: 4.0.5 @@ -1608,14 +2018,17 @@ packages: dev: true /@graphql-tools/github-loader/7.3.13_graphql@16.6.0: - resolution: {integrity: sha512-4RTjdtdtQC+n9LJMKpBThQGD3LnpeLVjU2A7BoVuKR+NQPJtcUzzuD6dXeYm5RiOMOQUsPGxQWKhJenW20aLUg==} + resolution: + { + integrity: sha512-4RTjdtdtQC+n9LJMKpBThQGD3LnpeLVjU2A7BoVuKR+NQPJtcUzzuD6dXeYm5RiOMOQUsPGxQWKhJenW20aLUg==, + } 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.6_graphql@16.6.0 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 - '@whatwg-node/fetch': 0.4.7 + "@ardatan/sync-fetch": 0.0.1 + "@graphql-tools/graphql-tag-pluck": 7.3.6_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 + "@whatwg-node/fetch": 0.4.7 graphql: 16.6.0 tslib: 2.4.0 transitivePeerDependencies: @@ -1624,12 +2037,15 @@ packages: dev: true /@graphql-tools/graphql-file-loader/7.5.5_graphql@16.6.0: - resolution: {integrity: sha512-OL+7qO1S66TpMK7OGz8Ag2WL08HlxKxrObVSDlxzWbSubWuXM5v959XscYAKRf6daYcVpkfNvO37QjflL9mjhg==} + resolution: + { + integrity: sha512-OL+7qO1S66TpMK7OGz8Ag2WL08HlxKxrObVSDlxzWbSubWuXM5v959XscYAKRf6daYcVpkfNvO37QjflL9mjhg==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/import': 6.7.6_graphql@16.6.0 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@graphql-tools/import": 6.7.6_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 globby: 11.1.0 graphql: 16.6.0 tslib: 2.4.0 @@ -1637,14 +2053,17 @@ packages: dev: true /@graphql-tools/graphql-tag-pluck/7.3.6_graphql@16.6.0: - resolution: {integrity: sha512-qULgqsOGKY1/PBqmP7fJZqbCg/TzPHKB9Wl51HGA9QjGymrzmrH5EjvsC8RtgdubF8yuTTVVFTz1lmSQ7RPssQ==} + resolution: + { + integrity: sha512-qULgqsOGKY1/PBqmP7fJZqbCg/TzPHKB9Wl51HGA9QjGymrzmrH5EjvsC8RtgdubF8yuTTVVFTz1lmSQ7RPssQ==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@babel/parser': 7.20.5 - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@babel/parser": 7.20.5 + "@babel/traverse": 7.20.5 + "@babel/types": 7.20.5 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.0 transitivePeerDependencies: @@ -1652,22 +2071,28 @@ packages: dev: true /@graphql-tools/import/6.7.6_graphql@16.6.0: - resolution: {integrity: sha512-WtUyiO2qCaK/H4u81zAw/NbBvCOzwKl4N+Vl+FqrFCzYobscwL6x6roePyoXM1O3+JJIIn3CETv4kg4kwxaBVw==} + resolution: + { + integrity: sha512-WtUyiO2qCaK/H4u81zAw/NbBvCOzwKl4N+Vl+FqrFCzYobscwL6x6roePyoXM1O3+JJIIn3CETv4kg4kwxaBVw==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 graphql: 16.6.0 resolve-from: 5.0.0 tslib: 2.4.0 dev: true /@graphql-tools/json-file-loader/7.4.6_graphql@16.6.0: - resolution: {integrity: sha512-34AfjCitO4NtJ5AcXYLcFF3GDsMVTycrljSaBA2t1d7B4bMPtREDphKXLMc/Uf2zW6IW1i1sZZyrcmArPy1Z8A==} + resolution: + { + integrity: sha512-34AfjCitO4NtJ5AcXYLcFF3GDsMVTycrljSaBA2t1d7B4bMPtREDphKXLMc/Uf2zW6IW1i1sZZyrcmArPy1Z8A==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 globby: 11.1.0 graphql: 16.6.0 tslib: 2.4.0 @@ -1675,29 +2100,38 @@ packages: dev: true /@graphql-tools/load/7.7.7_graphql@16.6.0: - resolution: {integrity: sha512-IpI2672zcoAX4FLjcH5kvHc7eqjPyLP1svrIcZKQenv0GRS6dW0HI9E5UCBs0y/yy8yW6s+SvpmNsfIlkMj3Kw==} + resolution: + { + integrity: sha512-IpI2672zcoAX4FLjcH5kvHc7eqjPyLP1svrIcZKQenv0GRS6dW0HI9E5UCBs0y/yy8yW6s+SvpmNsfIlkMj3Kw==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/schema': 9.0.4_graphql@16.6.0 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@graphql-tools/schema": 9.0.4_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 graphql: 16.6.0 p-limit: 3.1.0 tslib: 2.4.0 dev: true /@graphql-tools/merge/8.3.6_graphql@16.6.0: - resolution: {integrity: sha512-uUBokxXi89bj08P+iCvQk3Vew4vcfL5ZM6NTylWi8PIpoq4r5nJ625bRuN8h2uubEdRiH8ntN9M4xkd/j7AybQ==} + resolution: + { + integrity: sha512-uUBokxXi89bj08P+iCvQk3Vew4vcfL5ZM6NTylWi8PIpoq4r5nJ625bRuN8h2uubEdRiH8ntN9M4xkd/j7AybQ==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.0 dev: true /@graphql-tools/optimize/1.3.1_graphql@16.6.0: - resolution: {integrity: sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==} + resolution: + { + integrity: sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: @@ -1706,15 +2140,18 @@ packages: dev: true /@graphql-tools/prisma-loader/7.2.24_ykzowzmb7rcumunkscnbisnkom: - resolution: {integrity: sha512-CRQvoraCIcQa44RMSF3EpzLedouR9SSLC6ylFEHCFf2b8r1EfbK5NOdLL1V9znOjjapI6/oJURlFWdldcAaMgg==} + resolution: + { + integrity: sha512-CRQvoraCIcQa44RMSF3EpzLedouR9SSLC6ylFEHCFf2b8r1EfbK5NOdLL1V9znOjjapI6/oJURlFWdldcAaMgg==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/url-loader': 7.16.4_ykzowzmb7rcumunkscnbisnkom - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 - '@types/js-yaml': 4.0.5 - '@types/json-stable-stringify': 1.0.34 - '@types/jsonwebtoken': 8.5.9 + "@graphql-tools/url-loader": 7.16.4_ykzowzmb7rcumunkscnbisnkom + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 + "@types/js-yaml": 4.0.5 + "@types/json-stable-stringify": 1.0.34 + "@types/jsonwebtoken": 8.5.9 chalk: 4.1.2 debug: 4.3.4 dotenv: 16.0.3 @@ -1731,7 +2168,7 @@ packages: tslib: 2.4.0 yaml-ast-parser: 0.0.43 transitivePeerDependencies: - - '@types/node' + - "@types/node" - bufferutil - encoding - supports-color @@ -1739,12 +2176,15 @@ packages: dev: true /@graphql-tools/relay-operation-optimizer/6.5.6_graphql@16.6.0: - resolution: {integrity: sha512-2KjaWYxD/NC6KtckbDEAbN46QO+74d1SBaZQ26qQjWhyoAjon12xlMW4HWxHEN0d0xuz0cnOVUVc+t4wVXePUg==} + resolution: + { + integrity: sha512-2KjaWYxD/NC6KtckbDEAbN46QO+74d1SBaZQ26qQjWhyoAjon12xlMW4HWxHEN0d0xuz0cnOVUVc+t4wVXePUg==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@ardatan/relay-compiler': 12.0.0_graphql@16.6.0 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@ardatan/relay-compiler": 12.0.0_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.0 transitivePeerDependencies: @@ -1753,28 +2193,34 @@ packages: dev: true /@graphql-tools/schema/9.0.4_graphql@16.6.0: - resolution: {integrity: sha512-B/b8ukjs18fq+/s7p97P8L1VMrwapYc3N2KvdG/uNThSazRRn8GsBK0Nr+FH+mVKiUfb4Dno79e3SumZVoHuOQ==} + resolution: + { + integrity: sha512-B/b8ukjs18fq+/s7p97P8L1VMrwapYc3N2KvdG/uNThSazRRn8GsBK0Nr+FH+mVKiUfb4Dno79e3SumZVoHuOQ==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 8.3.6_graphql@16.6.0 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@graphql-tools/merge": 8.3.6_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.0 value-or-promise: 1.0.11 dev: true /@graphql-tools/url-loader/7.16.4_ykzowzmb7rcumunkscnbisnkom: - resolution: {integrity: sha512-7yGrJJNcqVQIplCyVLk7tW2mAgYyZ06FRmCBnzw3B61+aIjFavrm6YlnKkhdqYSYyFmIbVcigdP3vkoYIu23TA==} + resolution: + { + integrity: sha512-7yGrJJNcqVQIplCyVLk7tW2mAgYyZ06FRmCBnzw3B61+aIjFavrm6YlnKkhdqYSYyFmIbVcigdP3vkoYIu23TA==, + } 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.8_graphql@16.6.0 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 - '@graphql-tools/wrap': 9.2.3_graphql@16.6.0 - '@types/ws': 8.5.3 - '@whatwg-node/fetch': 0.4.7 + "@ardatan/sync-fetch": 0.0.1 + "@graphql-tools/delegate": 9.0.8_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 + "@graphql-tools/wrap": 9.2.3_graphql@16.6.0 + "@types/ws": 8.5.3 + "@whatwg-node/fetch": 0.4.7 dset: 3.1.2 extract-files: 11.0.0 graphql: 16.6.0 @@ -1785,14 +2231,17 @@ packages: value-or-promise: 1.0.11 ws: 8.11.0 transitivePeerDependencies: - - '@types/node' + - "@types/node" - bufferutil - encoding - utf-8-validate dev: true /@graphql-tools/utils/8.12.0_graphql@16.6.0: - resolution: {integrity: sha512-TeO+MJWGXjUTS52qfK4R8HiPoF/R7X+qmgtOYd8DTH0l6b+5Y/tlg5aGeUJefqImRq7nvi93Ms40k/Uz4D5CWw==} + resolution: + { + integrity: sha512-TeO+MJWGXjUTS52qfK4R8HiPoF/R7X+qmgtOYd8DTH0l6b+5Y/tlg5aGeUJefqImRq7nvi93Ms40k/Uz4D5CWw==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: @@ -1801,30 +2250,39 @@ packages: dev: true /@graphql-tools/wrap/9.2.3_graphql@16.6.0: - resolution: {integrity: sha512-aiLjcAuUwcvA1mF25c7KFDPXEdQDpo6bTDyAMCSlFXpF4T01hoxLERmfmbRmsmy/dP80ZB31a+t70aspVdqZSA==} + resolution: + { + integrity: sha512-aiLjcAuUwcvA1mF25c7KFDPXEdQDpo6bTDyAMCSlFXpF4T01hoxLERmfmbRmsmy/dP80ZB31a+t70aspVdqZSA==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/delegate': 9.0.8_graphql@16.6.0 - '@graphql-tools/schema': 9.0.4_graphql@16.6.0 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@graphql-tools/delegate": 9.0.8_graphql@16.6.0 + "@graphql-tools/schema": 9.0.4_graphql@16.6.0 + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.0 value-or-promise: 1.0.11 dev: true /@graphql-typed-document-node/core/3.1.1_graphql@16.6.0: - resolution: {integrity: sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==} + 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.6.0 /@humanwhocodes/config-array/0.11.8: - resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} - engines: {node: '>=10.10.0'} + resolution: + { + integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==, + } + engines: { node: ">=10.10.0" } dependencies: - '@humanwhocodes/object-schema': 1.2.1 + "@humanwhocodes/object-schema": 1.2.1 debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: @@ -1832,95 +2290,134 @@ packages: dev: true /@humanwhocodes/module-importer/1.0.1: - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} + resolution: + { + integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, + } + engines: { node: ">=12.22" } dev: true /@humanwhocodes/object-schema/1.2.1: - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + resolution: + { + integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, + } dev: true /@iarna/toml/2.2.5: - resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==} + 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'} + resolution: + { + integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==, + } + engines: { node: ">=6.0.0" } dependencies: - '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.14 + "@jridgewell/set-array": 1.1.2 + "@jridgewell/sourcemap-codec": 1.4.14 /@jridgewell/gen-mapping/0.3.2: - resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} - engines: {node: '>=6.0.0'} + 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.15 + "@jridgewell/set-array": 1.1.2 + "@jridgewell/sourcemap-codec": 1.4.14 + "@jridgewell/trace-mapping": 0.3.15 /@jridgewell/resolve-uri/3.1.0: - resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==, + } + engines: { node: ">=6.0.0" } /@jridgewell/set-array/1.1.2: - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, + } + engines: { node: ">=6.0.0" } /@jridgewell/sourcemap-codec/1.4.14: - resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} + resolution: + { + integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==, + } /@jridgewell/trace-mapping/0.3.15: - resolution: {integrity: sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==} + resolution: + { + integrity: sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==, + } dependencies: - '@jridgewell/resolve-uri': 3.1.0 - '@jridgewell/sourcemap-codec': 1.4.14 + "@jridgewell/resolve-uri": 3.1.0 + "@jridgewell/sourcemap-codec": 1.4.14 /@jridgewell/trace-mapping/0.3.9: - resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + resolution: + { + integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==, + } dependencies: - '@jridgewell/resolve-uri': 3.1.0 - '@jridgewell/sourcemap-codec': 1.4.14 + "@jridgewell/resolve-uri": 3.1.0 + "@jridgewell/sourcemap-codec": 1.4.14 dev: true /@manypkg/find-root/1.1.0: - resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} + resolution: + { + integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==, + } dependencies: - '@babel/runtime': 7.21.0 - '@types/node': 12.20.55 + "@babel/runtime": 7.21.0 + "@types/node": 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 dev: false /@manypkg/get-packages/1.1.3: - resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} + resolution: + { + integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==, + } dependencies: - '@babel/runtime': 7.21.0 - '@changesets/types': 4.1.0 - '@manypkg/find-root': 1.1.0 + "@babel/runtime": 7.21.0 + "@changesets/types": 4.1.0 + "@manypkg/find-root": 1.1.0 fs-extra: 8.1.0 globby: 11.1.0 read-yaml-file: 1.1.0 dev: false /@material-ui/core/4.12.4_ib3m5ricvtkl2cll7qpr2f6lvq: - resolution: {integrity: sha512-tr7xekNlM9LjA6pagJmL8QCgZXaubWUwkJnoYcMKd4gw/t4XiyvnTkjdGrUVicyB2BsdaAv1tvow45bPM4sSwQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-tr7xekNlM9LjA6pagJmL8QCgZXaubWUwkJnoYcMKd4gw/t4XiyvnTkjdGrUVicyB2BsdaAv1tvow45bPM4sSwQ==, + } + engines: { node: ">=8.0.0" } peerDependencies: - '@types/react': ^16.8.6 || ^17.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': + "@types/react": optional: true dependencies: - '@babel/runtime': 7.19.0 - '@material-ui/styles': 4.11.5_ib3m5ricvtkl2cll7qpr2f6lvq - '@material-ui/system': 4.12.2_ib3m5ricvtkl2cll7qpr2f6lvq - '@material-ui/types': 5.1.0_@types+react@18.0.26 - '@material-ui/utils': 4.11.3_biqbaboplfbrettd7655fr4n2y - '@types/react': 18.0.26 - '@types/react-transition-group': 4.4.5 + "@babel/runtime": 7.19.0 + "@material-ui/styles": 4.11.5_ib3m5ricvtkl2cll7qpr2f6lvq + "@material-ui/system": 4.12.2_ib3m5ricvtkl2cll7qpr2f6lvq + "@material-ui/types": 5.1.0_@types+react@18.0.26 + "@material-ui/utils": 4.11.3_biqbaboplfbrettd7655fr4n2y + "@types/react": 18.0.26 + "@types/react-transition-group": 4.4.5 clsx: 1.2.1 hoist-non-react-statics: 3.3.2 popper.js: 1.16.1-lts @@ -1932,40 +2429,46 @@ packages: dev: false /@material-ui/icons/4.11.3_do6jtu5bwlvlflxw6cggb7lxsi: - resolution: {integrity: sha512-IKHlyx6LDh8n19vzwH5RtHIOHl9Tu90aAAxcbWME6kp4dmvODM3UvOHJeMIDzUbd4muuJKHmlNoBN+mDY4XkBA==} - engines: {node: '>=8.0.0'} + 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 + "@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': + "@types/react": optional: true dependencies: - '@babel/runtime': 7.19.0 - '@material-ui/core': 4.12.4_ib3m5ricvtkl2cll7qpr2f6lvq - '@types/react': 18.0.26 + "@babel/runtime": 7.19.0 + "@material-ui/core": 4.12.4_ib3m5ricvtkl2cll7qpr2f6lvq + "@types/react": 18.0.26 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false /@material-ui/lab/4.0.0-alpha.61_do6jtu5bwlvlflxw6cggb7lxsi: - resolution: {integrity: sha512-rSzm+XKiNUjKegj8bzt5+pygZeckNLOr+IjykH8sYdVk7dE9y2ZuUSofiMV2bJk3qU+JHwexmw+q0RyNZB9ugg==} - engines: {node: '>=8.0.0'} + 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 + "@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': + "@types/react": optional: true dependencies: - '@babel/runtime': 7.19.0 - '@material-ui/core': 4.12.4_ib3m5ricvtkl2cll7qpr2f6lvq - '@material-ui/utils': 4.11.3_biqbaboplfbrettd7655fr4n2y - '@types/react': 18.0.26 + "@babel/runtime": 7.19.0 + "@material-ui/core": 4.12.4_ib3m5ricvtkl2cll7qpr2f6lvq + "@material-ui/utils": 4.11.3_biqbaboplfbrettd7655fr4n2y + "@types/react": 18.0.26 clsx: 1.2.1 prop-types: 15.8.1 react: 18.2.0 @@ -1974,21 +2477,24 @@ packages: dev: false /@material-ui/styles/4.11.5_ib3m5ricvtkl2cll7qpr2f6lvq: - resolution: {integrity: sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA==, + } + engines: { node: ">=8.0.0" } peerDependencies: - '@types/react': ^16.8.6 || ^17.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': + "@types/react": optional: true dependencies: - '@babel/runtime': 7.19.0 - '@emotion/hash': 0.8.0 - '@material-ui/types': 5.1.0_@types+react@18.0.26 - '@material-ui/utils': 4.11.3_biqbaboplfbrettd7655fr4n2y - '@types/react': 18.0.26 + "@babel/runtime": 7.19.0 + "@emotion/hash": 0.8.0 + "@material-ui/types": 5.1.0_@types+react@18.0.26 + "@material-ui/utils": 4.11.3_biqbaboplfbrettd7655fr4n2y + "@types/react": 18.0.26 clsx: 1.2.1 csstype: 2.6.21 hoist-non-react-statics: 3.3.2 @@ -2006,19 +2512,22 @@ packages: dev: false /@material-ui/system/4.12.2_ib3m5ricvtkl2cll7qpr2f6lvq: - resolution: {integrity: sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw==, + } + engines: { node: ">=8.0.0" } peerDependencies: - '@types/react': ^16.8.6 || ^17.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': + "@types/react": optional: true dependencies: - '@babel/runtime': 7.19.0 - '@material-ui/utils': 4.11.3_biqbaboplfbrettd7655fr4n2y - '@types/react': 18.0.26 + "@babel/runtime": 7.19.0 + "@material-ui/utils": 4.11.3_biqbaboplfbrettd7655fr4n2y + "@types/react": 18.0.26 csstype: 2.6.21 prop-types: 15.8.1 react: 18.2.0 @@ -2026,24 +2535,30 @@ packages: dev: false /@material-ui/types/5.1.0_@types+react@18.0.26: - resolution: {integrity: sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==} + resolution: + { + integrity: sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true dependencies: - '@types/react': 18.0.26 + "@types/react": 18.0.26 dev: false /@material-ui/utils/4.11.3_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-ZuQPV4rBK/V1j2dIkSSEcH5uT6AaHuKWFfotADHsC0wVL1NLd2WkFCm4ZZbX33iO4ydl6V0GPngKm8HZQ2oujg==} - engines: {node: '>=8.0.0'} + 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.19.0 + "@babel/runtime": 7.19.0 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -2051,39 +2566,54 @@ packages: dev: false /@monaco-editor/loader/1.3.2: - resolution: {integrity: sha512-BTDbpHl3e47r3AAtpfVFTlAi7WXv4UQ/xZmz8atKl4q7epQV5e7+JbigFDViWF71VBi4IIBdcWP57Hj+OWuc9g==} + resolution: + { + integrity: sha512-BTDbpHl3e47r3AAtpfVFTlAi7WXv4UQ/xZmz8atKl4q7epQV5e7+JbigFDViWF71VBi4IIBdcWP57Hj+OWuc9g==, + } peerDependencies: - monaco-editor: '>= 0.21.0 < 1' + monaco-editor: ">= 0.21.0 < 1" dependencies: state-local: 1.0.7 dev: false /@monaco-editor/react/4.4.6_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-Gr3uz3LYf33wlFE3eRnta4RxP5FSNxiIV9ENn2D2/rN8KgGAD8ecvcITRtsbbyuOuNkwbuHYxfeaz2Vr+CtyFA==} + resolution: + { + integrity: sha512-Gr3uz3LYf33wlFE3eRnta4RxP5FSNxiIV9ENn2D2/rN8KgGAD8ecvcITRtsbbyuOuNkwbuHYxfeaz2Vr+CtyFA==, + } peerDependencies: - monaco-editor: '>= 0.25.0 < 1' + monaco-editor: ">= 0.25.0 < 1" react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@monaco-editor/loader': 1.3.2 + "@monaco-editor/loader": 1.3.2 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false /@next/env/13.2.1: - resolution: {integrity: sha512-Hq+6QZ6kgmloCg8Kgrix+4F0HtvLqVK3FZAnlAoS0eonaDemHe1Km4kwjSWRE3JNpJNcKxFHF+jsZrYo0SxWoQ==} + resolution: + { + integrity: sha512-Hq+6QZ6kgmloCg8Kgrix+4F0HtvLqVK3FZAnlAoS0eonaDemHe1Km4kwjSWRE3JNpJNcKxFHF+jsZrYo0SxWoQ==, + } dev: false /@next/eslint-plugin-next/13.1.2: - resolution: {integrity: sha512-WGaNVvIYphdriesP6r7jq/8l7u38tzotnVQuxc1RYKLqYYApSsrebti3OCPoT3Gx0pw2smPIFHH98RzcsgW5GQ==} + resolution: + { + integrity: sha512-WGaNVvIYphdriesP6r7jq/8l7u38tzotnVQuxc1RYKLqYYApSsrebti3OCPoT3Gx0pw2smPIFHH98RzcsgW5GQ==, + } dependencies: glob: 7.1.7 dev: true /@next/swc-android-arm-eabi/13.2.1: - resolution: {integrity: sha512-Yua7mUpEd1wzIT6Jjl3dpRizIfGp9NR4F2xeRuQv+ae+SDI1Em2WyM9m46UL+oeW5GpMiEHoaBagr47RScZFmQ==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-Yua7mUpEd1wzIT6Jjl3dpRizIfGp9NR4F2xeRuQv+ae+SDI1Em2WyM9m46UL+oeW5GpMiEHoaBagr47RScZFmQ==, + } + engines: { node: ">= 10" } cpu: [arm] os: [android] requiresBuild: true @@ -2091,8 +2621,11 @@ packages: optional: true /@next/swc-android-arm64/13.2.1: - resolution: {integrity: sha512-Bifcr2f6VwInOdq1uH/9lp8fH7Nf7XGkIx4XceVd32LPJqG2c6FZU8ZRBvTdhxzXVpt5TPtuXhOP4Ij9UPqsVw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-Bifcr2f6VwInOdq1uH/9lp8fH7Nf7XGkIx4XceVd32LPJqG2c6FZU8ZRBvTdhxzXVpt5TPtuXhOP4Ij9UPqsVw==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [android] requiresBuild: true @@ -2100,8 +2633,11 @@ packages: optional: true /@next/swc-darwin-arm64/13.2.1: - resolution: {integrity: sha512-gvqm+fGMYxAkwBapH0Vvng5yrb6HTkIvZfY4oEdwwYrwuLdkjqnJygCMgpNqIFmAHSXgtlWxfYv1VC8sjN81Kw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-gvqm+fGMYxAkwBapH0Vvng5yrb6HTkIvZfY4oEdwwYrwuLdkjqnJygCMgpNqIFmAHSXgtlWxfYv1VC8sjN81Kw==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [darwin] requiresBuild: true @@ -2109,8 +2645,11 @@ packages: optional: true /@next/swc-darwin-x64/13.2.1: - resolution: {integrity: sha512-HGqVqmaZWj6zomqOZUVbO5NhlABL0iIaxTmd0O5B0MoMa5zpDGoaHSG+fxgcWMXcGcxmUNchv1NfNOYiTKoHOg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-HGqVqmaZWj6zomqOZUVbO5NhlABL0iIaxTmd0O5B0MoMa5zpDGoaHSG+fxgcWMXcGcxmUNchv1NfNOYiTKoHOg==, + } + engines: { node: ">= 10" } cpu: [x64] os: [darwin] requiresBuild: true @@ -2118,8 +2657,11 @@ packages: optional: true /@next/swc-freebsd-x64/13.2.1: - resolution: {integrity: sha512-N/a4JarAq+E+g+9K2ywJUmDIgU2xs2nA+BBldH0oq4zYJMRiUhL0iaN9G4e72VmGOJ61L/3W6VN8RIUOwTLoqQ==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-N/a4JarAq+E+g+9K2ywJUmDIgU2xs2nA+BBldH0oq4zYJMRiUhL0iaN9G4e72VmGOJ61L/3W6VN8RIUOwTLoqQ==, + } + engines: { node: ">= 10" } cpu: [x64] os: [freebsd] requiresBuild: true @@ -2127,8 +2669,11 @@ packages: optional: true /@next/swc-linux-arm-gnueabihf/13.2.1: - resolution: {integrity: sha512-WaFoerF/eRbhbE57TaIGJXbQAERADZ/RZ45u6qox9beb5xnWsyYgzX+WuN7Tkhyvga0/aMuVYFzS9CEay7D+bw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-WaFoerF/eRbhbE57TaIGJXbQAERADZ/RZ45u6qox9beb5xnWsyYgzX+WuN7Tkhyvga0/aMuVYFzS9CEay7D+bw==, + } + engines: { node: ">= 10" } cpu: [arm] os: [linux] requiresBuild: true @@ -2136,8 +2681,11 @@ packages: optional: true /@next/swc-linux-arm64-gnu/13.2.1: - resolution: {integrity: sha512-R+Jhc1/RJTnncE9fkePboHDNOCm1WJ8daanWbjKhfPySMyeniKYRwGn5SLYW3S8YlRS0QVdZaaszDSZWgUcsmA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-R+Jhc1/RJTnncE9fkePboHDNOCm1WJ8daanWbjKhfPySMyeniKYRwGn5SLYW3S8YlRS0QVdZaaszDSZWgUcsmA==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [linux] requiresBuild: true @@ -2145,8 +2693,11 @@ packages: optional: true /@next/swc-linux-arm64-musl/13.2.1: - resolution: {integrity: sha512-oI1UfZPidGAVddlL2eOTmfsuKV9EaT1aktIzVIxIAgxzQSdwsV371gU3G55ggkurzfdlgF3GThFePDWF0d8dmw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-oI1UfZPidGAVddlL2eOTmfsuKV9EaT1aktIzVIxIAgxzQSdwsV371gU3G55ggkurzfdlgF3GThFePDWF0d8dmw==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [linux] requiresBuild: true @@ -2154,8 +2705,11 @@ packages: optional: true /@next/swc-linux-x64-gnu/13.2.1: - resolution: {integrity: sha512-PCygPwrQmS+7WUuAWWioWMZCzZm4PG91lfRxToLDg7yIm/3YfAw5N2EK2TaM9pzlWdvHQAqRMX/oLvv027xUiA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-PCygPwrQmS+7WUuAWWioWMZCzZm4PG91lfRxToLDg7yIm/3YfAw5N2EK2TaM9pzlWdvHQAqRMX/oLvv027xUiA==, + } + engines: { node: ">= 10" } cpu: [x64] os: [linux] requiresBuild: true @@ -2163,8 +2717,11 @@ packages: optional: true /@next/swc-linux-x64-musl/13.2.1: - resolution: {integrity: sha512-sUAKxo7CFZYGHNxheGh9nIBElLYBM6md/liEGfOTwh/xna4/GTTcmkGWkF7PdnvaYNgcPIQgHIMYiAa6yBKAVw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-sUAKxo7CFZYGHNxheGh9nIBElLYBM6md/liEGfOTwh/xna4/GTTcmkGWkF7PdnvaYNgcPIQgHIMYiAa6yBKAVw==, + } + engines: { node: ">= 10" } cpu: [x64] os: [linux] requiresBuild: true @@ -2172,8 +2729,11 @@ packages: optional: true /@next/swc-win32-arm64-msvc/13.2.1: - resolution: {integrity: sha512-qDmyEjDBpl/vBXxuOOKKWmPQOcARcZIMach1s7kjzaien0SySut/PHRlj56sosa81Wt4hTGhfhZ1R7g1n7+B8w==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-qDmyEjDBpl/vBXxuOOKKWmPQOcARcZIMach1s7kjzaien0SySut/PHRlj56sosa81Wt4hTGhfhZ1R7g1n7+B8w==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [win32] requiresBuild: true @@ -2181,8 +2741,11 @@ packages: optional: true /@next/swc-win32-ia32-msvc/13.2.1: - resolution: {integrity: sha512-2joqFQ81ZYPg6DcikIzQn3DgjKglNhPAozx6dL5sCNkr1CPMD0YIkJgT3CnYyMHQ04Qi3Npv0XX3MD6LJO8OCA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-2joqFQ81ZYPg6DcikIzQn3DgjKglNhPAozx6dL5sCNkr1CPMD0YIkJgT3CnYyMHQ04Qi3Npv0XX3MD6LJO8OCA==, + } + engines: { node: ">= 10" } cpu: [ia32] os: [win32] requiresBuild: true @@ -2190,8 +2753,11 @@ packages: optional: true /@next/swc-win32-x64-msvc/13.2.1: - resolution: {integrity: sha512-r3+0fSaIZT6N237iMzwUhfNwjhAFvXjqB+4iuW+wcpxW+LHm1g/IoxN8eSRcb8jPItC86JxjAxpke0QL97qd6g==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-r3+0fSaIZT6N237iMzwUhfNwjhAFvXjqB+4iuW+wcpxW+LHm1g/IoxN8eSRcb8jPItC86JxjAxpke0QL97qd6g==, + } + engines: { node: ">= 10" } cpu: [x64] os: [win32] requiresBuild: true @@ -2199,25 +2765,37 @@ packages: optional: true /@nodelib/fs.scandir/2.1.5: - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, + } + engines: { node: ">= 8" } dependencies: - '@nodelib/fs.stat': 2.0.5 + "@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'} + 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'} + resolution: + { + integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, + } + engines: { node: ">= 8" } dependencies: - '@nodelib/fs.scandir': 2.1.5 + "@nodelib/fs.scandir": 2.1.5 fastq: 1.13.0 /@peculiar/asn1-schema/2.3.0: - resolution: {integrity: sha512-DtNLAG4vmDrdSJFPe7rypkcj597chNQL7u+2dBtYo5mh7VW2+im6ke+O0NVr8W1f4re4C3F71LhoMb0Yxqa48Q==} + resolution: + { + integrity: sha512-DtNLAG4vmDrdSJFPe7rypkcj597chNQL7u+2dBtYo5mh7VW2+im6ke+O0NVr8W1f4re4C3F71LhoMb0Yxqa48Q==, + } dependencies: asn1js: 3.0.5 pvtsutils: 1.3.2 @@ -2225,26 +2803,35 @@ packages: dev: true /@peculiar/json-schema/1.1.12: - resolution: {integrity: sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==} - engines: {node: '>=8.0.0'} + 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'} + 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 + "@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.1: - resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==} - engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + resolution: + { + integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==, + } + engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 } dependencies: cross-spawn: 7.0.3 is-glob: 4.0.3 @@ -2255,17 +2842,23 @@ packages: dev: true /@rushstack/eslint-patch/1.2.0: - resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==} + resolution: + { + integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==, + } dev: true /@saleor/app-sdk/0.30.0_qgtcjgzkkjtbiyvnx7d32fl5vu: - resolution: {integrity: sha512-bjyFRSAfMNtIIQNV9HJqJ1uy1M6cWG5xB6lDuf42gbcMlJ4InrEdkMyihYtM7ezvWM12NJNBYHPxvNxwQkdZJw==} + resolution: + { + integrity: sha512-bjyFRSAfMNtIIQNV9HJqJ1uy1M6cWG5xB6lDuf42gbcMlJ4InrEdkMyihYtM7ezvWM12NJNBYHPxvNxwQkdZJw==, + } peerDependencies: - next: '>=12' - react: '>=17' - react-dom: '>=17' + next: ">=12" + react: ">=17" + react-dom: ">=17" dependencies: - '@changesets/cli': 2.26.0 + "@changesets/cli": 2.26.0 debug: 4.3.4 fast-glob: 3.2.12 graphql: 16.6.0 @@ -2281,20 +2874,23 @@ packages: dev: false /@saleor/macaw-ui/0.7.2_ushc7t6wkobdy4akuvezsbxqvu: - resolution: {integrity: sha512-Fli7fhTWuHu7q2CzxwTUpB4x9HYaxHSAzCLZLA23VY1ieIWbCxbsXadMiMGWp/nuYitswMr6JXMm+1SDe9K8LQ==} - engines: {node: '>=16 <19'} + 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 + "@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_ib3m5ricvtkl2cll7qpr2f6lvq - '@material-ui/core': 4.12.4_ib3m5ricvtkl2cll7qpr2f6lvq - '@material-ui/icons': 4.11.3_do6jtu5bwlvlflxw6cggb7lxsi - '@material-ui/lab': 4.0.0-alpha.61_do6jtu5bwlvlflxw6cggb7lxsi + "@floating-ui/react-dom-interactions": 0.5.0_ib3m5ricvtkl2cll7qpr2f6lvq + "@material-ui/core": 4.12.4_ib3m5ricvtkl2cll7qpr2f6lvq + "@material-ui/icons": 4.11.3_do6jtu5bwlvlflxw6cggb7lxsi + "@material-ui/lab": 4.0.0-alpha.61_do6jtu5bwlvlflxw6cggb7lxsi clsx: 1.2.1 downshift: 6.1.12_react@18.2.0 lodash: 4.17.21 @@ -2303,68 +2899,89 @@ packages: react-dom: 18.2.0_react@18.2.0 react-inlinesvg: 3.0.1_react@18.2.0 transitivePeerDependencies: - - '@types/react' + - "@types/react" dev: false /@selderee/plugin-htmlparser2/0.10.0: - resolution: {integrity: sha512-gW69MEamZ4wk1OsOq1nG1jcyhXIQcnrsX5JwixVw/9xaiav8TCyjESAruu1Rz9yyInhgBXxkNwMeygKnN2uxNA==} + resolution: + { + integrity: sha512-gW69MEamZ4wk1OsOq1nG1jcyhXIQcnrsX5JwixVw/9xaiav8TCyjESAruu1Rz9yyInhgBXxkNwMeygKnN2uxNA==, + } dependencies: domhandler: 5.0.3 selderee: 0.10.0 dev: false /@sendgrid/client/7.7.0: - resolution: {integrity: sha512-SxH+y8jeAQSnDavrTD0uGDXYIIkFylCo+eDofVmZLQ0f862nnqbC3Vd1ej6b7Le7lboyzQF6F7Fodv02rYspuA==} - engines: {node: 6.* || 8.* || >=10.*} + resolution: + { + integrity: sha512-SxH+y8jeAQSnDavrTD0uGDXYIIkFylCo+eDofVmZLQ0f862nnqbC3Vd1ej6b7Le7lboyzQF6F7Fodv02rYspuA==, + } + engines: { node: 6.* || 8.* || >=10.* } dependencies: - '@sendgrid/helpers': 7.7.0 + "@sendgrid/helpers": 7.7.0 axios: 0.26.1 transitivePeerDependencies: - debug dev: false /@sendgrid/helpers/7.7.0: - resolution: {integrity: sha512-3AsAxfN3GDBcXoZ/y1mzAAbKzTtUZ5+ZrHOmWQ279AuaFXUNCh9bPnRpN504bgveTqoW+11IzPg3I0WVgDINpw==} - engines: {node: '>= 6.0.0'} + resolution: + { + integrity: sha512-3AsAxfN3GDBcXoZ/y1mzAAbKzTtUZ5+ZrHOmWQ279AuaFXUNCh9bPnRpN504bgveTqoW+11IzPg3I0WVgDINpw==, + } + engines: { node: ">= 6.0.0" } dependencies: deepmerge: 4.3.0 dev: false /@sendgrid/mail/7.7.0: - resolution: {integrity: sha512-5+nApPE9wINBvHSUxwOxkkQqM/IAAaBYoP9hw7WwgDNQPxraruVqHizeTitVtKGiqWCKm2mnjh4XGN3fvFLqaw==} - engines: {node: 6.* || 8.* || >=10.*} + resolution: + { + integrity: sha512-5+nApPE9wINBvHSUxwOxkkQqM/IAAaBYoP9hw7WwgDNQPxraruVqHizeTitVtKGiqWCKm2mnjh4XGN3fvFLqaw==, + } + engines: { node: 6.* || 8.* || >=10.* } dependencies: - '@sendgrid/client': 7.7.0 - '@sendgrid/helpers': 7.7.0 + "@sendgrid/client": 7.7.0 + "@sendgrid/helpers": 7.7.0 transitivePeerDependencies: - debug dev: false /@swc/core-android-arm-eabi/1.3.5: - resolution: {integrity: sha512-gIq3fuXiRMtVhTf2ZQ9Z6JeuqvL30JOM0L+S6zAZD4v8lpGJ1ejpw7rghpAsGSG9Qc9oaNjx5yayTg3z/EtBzA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-gIq3fuXiRMtVhTf2ZQ9Z6JeuqvL30JOM0L+S6zAZD4v8lpGJ1ejpw7rghpAsGSG9Qc9oaNjx5yayTg3z/EtBzA==, + } + engines: { node: ">=10" } cpu: [arm] os: [android] requiresBuild: true dependencies: - '@swc/wasm': 1.2.122 + "@swc/wasm": 1.2.122 dev: true optional: true /@swc/core-android-arm64/1.3.5: - resolution: {integrity: sha512-SsRA6AhNZK8YXBbv7DAp5Zgv4tOWvPJlEBoOZ0uLIot7oYghWvSVs3jOgEzJSbQLU5U7ad6Q6boBdg0Q/kb2Ew==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-SsRA6AhNZK8YXBbv7DAp5Zgv4tOWvPJlEBoOZ0uLIot7oYghWvSVs3jOgEzJSbQLU5U7ad6Q6boBdg0Q/kb2Ew==, + } + engines: { node: ">=10" } cpu: [arm64] os: [android] requiresBuild: true dependencies: - '@swc/wasm': 1.2.130 + "@swc/wasm": 1.2.130 dev: true optional: true /@swc/core-darwin-arm64/1.3.5: - resolution: {integrity: sha512-Jyem+f3/aTKJTRzyvdSfYS358jo7245g7nWmwmhQMgZI3/z2VcYHpIIYOi+dgsBaMRevK9tbsW0TSx805Njzjw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Jyem+f3/aTKJTRzyvdSfYS358jo7245g7nWmwmhQMgZI3/z2VcYHpIIYOi+dgsBaMRevK9tbsW0TSx805Njzjw==, + } + engines: { node: ">=10" } cpu: [arm64] os: [darwin] requiresBuild: true @@ -2372,8 +2989,11 @@ packages: optional: true /@swc/core-darwin-x64/1.3.5: - resolution: {integrity: sha512-zW1tfS000RlHcqKp1HJK5vXBR0/AHw74qzOK0uh/G1cTczFDX2Hep4IuOxSJ1+7Zx9oFEOKSEY0lPXYbDAlF2w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-zW1tfS000RlHcqKp1HJK5vXBR0/AHw74qzOK0uh/G1cTczFDX2Hep4IuOxSJ1+7Zx9oFEOKSEY0lPXYbDAlF2w==, + } + engines: { node: ">=10" } cpu: [x64] os: [darwin] requiresBuild: true @@ -2381,30 +3001,39 @@ packages: optional: true /@swc/core-freebsd-x64/1.3.5: - resolution: {integrity: sha512-H2f0NkfqYDC6+vJO6wSBwiGnnR/cK9AQx574izPw3Utmb28zC+FOPAY63QLA/orNHjwHa6B6AuVDNwYuKUrRHQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-H2f0NkfqYDC6+vJO6wSBwiGnnR/cK9AQx574izPw3Utmb28zC+FOPAY63QLA/orNHjwHa6B6AuVDNwYuKUrRHQ==, + } + engines: { node: ">=10" } cpu: [x64] os: [freebsd] requiresBuild: true dependencies: - '@swc/wasm': 1.2.130 + "@swc/wasm": 1.2.130 dev: true optional: true /@swc/core-linux-arm-gnueabihf/1.3.5: - resolution: {integrity: sha512-PvuhjUCsNQDtwSSXWmmF6tU8jnAcFVRZt6bBNltvPW48oHNmIq9lEZ+hJTSPvqqxLvi9W7HG5ADzsTAaciKeRw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-PvuhjUCsNQDtwSSXWmmF6tU8jnAcFVRZt6bBNltvPW48oHNmIq9lEZ+hJTSPvqqxLvi9W7HG5ADzsTAaciKeRw==, + } + engines: { node: ">=10" } cpu: [arm] os: [linux] requiresBuild: true dependencies: - '@swc/wasm': 1.2.130 + "@swc/wasm": 1.2.130 dev: true optional: true /@swc/core-linux-arm64-gnu/1.3.5: - resolution: {integrity: sha512-NQ1LVrIvAsSwSoKO6DzHQMxzpvo17v/2LREqBiaNuCwDyYg2yFdgUdVW4FcbrdBK4MurRA2HFZZ/rt5DqAg3+A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-NQ1LVrIvAsSwSoKO6DzHQMxzpvo17v/2LREqBiaNuCwDyYg2yFdgUdVW4FcbrdBK4MurRA2HFZZ/rt5DqAg3+A==, + } + engines: { node: ">=10" } cpu: [arm64] os: [linux] requiresBuild: true @@ -2412,8 +3041,11 @@ packages: optional: true /@swc/core-linux-arm64-musl/1.3.5: - resolution: {integrity: sha512-DDcM3ciJRBBjyN7qqw/AEEFh61YjiuxOcZ5SqYR0wyfroqOFX1+5JtCGJ9mU2MZ4Vfmxb1v5IFoQ3nfgJDcd8g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-DDcM3ciJRBBjyN7qqw/AEEFh61YjiuxOcZ5SqYR0wyfroqOFX1+5JtCGJ9mU2MZ4Vfmxb1v5IFoQ3nfgJDcd8g==, + } + engines: { node: ">=10" } cpu: [arm64] os: [linux] requiresBuild: true @@ -2421,8 +3053,11 @@ packages: optional: true /@swc/core-linux-x64-gnu/1.3.5: - resolution: {integrity: sha512-AJR0J+b3jMmXuIxqhgrX/7vworHjciUPZuoyY2OrIhSXwMPVbWfb72h9oQdMbARfodTFLVJGQqy2Pij67+C0GQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-AJR0J+b3jMmXuIxqhgrX/7vworHjciUPZuoyY2OrIhSXwMPVbWfb72h9oQdMbARfodTFLVJGQqy2Pij67+C0GQ==, + } + engines: { node: ">=10" } cpu: [x64] os: [linux] requiresBuild: true @@ -2430,8 +3065,11 @@ packages: optional: true /@swc/core-linux-x64-musl/1.3.5: - resolution: {integrity: sha512-+Ig/rJ/GOZyQgCO72PFR+oJYUee0zQRsd6fpeuE66rn8P07a26WY1ZfMGw8miWcURccjDgAc1XCwVn6wa/OTCw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-+Ig/rJ/GOZyQgCO72PFR+oJYUee0zQRsd6fpeuE66rn8P07a26WY1ZfMGw8miWcURccjDgAc1XCwVn6wa/OTCw==, + } + engines: { node: ">=10" } cpu: [x64] os: [linux] requiresBuild: true @@ -2439,30 +3077,39 @@ packages: optional: true /@swc/core-win32-arm64-msvc/1.3.5: - resolution: {integrity: sha512-9Go5jiGWToT+00/J26E92n/JIHqG2wcaw79Z1+Z7GHrrm5TeL0VMyTMGLMeGFvtje/j+Lv0y4XKed+dKnRvc5w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-9Go5jiGWToT+00/J26E92n/JIHqG2wcaw79Z1+Z7GHrrm5TeL0VMyTMGLMeGFvtje/j+Lv0y4XKed+dKnRvc5w==, + } + engines: { node: ">=10" } cpu: [arm64] os: [win32] requiresBuild: true dependencies: - '@swc/wasm': 1.2.130 + "@swc/wasm": 1.2.130 dev: true optional: true /@swc/core-win32-ia32-msvc/1.3.5: - resolution: {integrity: sha512-AIeD5uKVkvXTAbKAwyPFubFrXmQR77PNun59DHZWtRpxgOcHqK6xug9DfUSfc2zMw/ftEe9kNruUUS96023jfQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-AIeD5uKVkvXTAbKAwyPFubFrXmQR77PNun59DHZWtRpxgOcHqK6xug9DfUSfc2zMw/ftEe9kNruUUS96023jfQ==, + } + engines: { node: ">=10" } cpu: [ia32] os: [win32] requiresBuild: true dependencies: - '@swc/wasm': 1.2.130 + "@swc/wasm": 1.2.130 dev: true optional: true /@swc/core-win32-x64-msvc/1.3.5: - resolution: {integrity: sha512-GtrAkUo5xVTogwTDH9Zms7LELdTKyRll+K9o87P+YOEizCUvA0BPE1N4mu+ZqsI/dv56g2N4gNCD8RVLH3HekQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-GtrAkUo5xVTogwTDH9Zms7LELdTKyRll+K9o87P+YOEizCUvA0BPE1N4mu+ZqsI/dv56g2N4gNCD8RVLH3HekQ==, + } + engines: { node: ">=10" } cpu: [x64] os: [win32] requiresBuild: true @@ -2470,73 +3117,94 @@ packages: optional: true /@swc/core/1.3.5: - resolution: {integrity: sha512-H5YNI9rCViudhEmu9g/Yc8ai6k5/pfy+ItYns0SZ+iSZen+bgWeGb+9p4KRQhzNNC8Lfkfw+ENHzSwZltpWG6Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-H5YNI9rCViudhEmu9g/Yc8ai6k5/pfy+ItYns0SZ+iSZen+bgWeGb+9p4KRQhzNNC8Lfkfw+ENHzSwZltpWG6Q==, + } + engines: { node: ">=10" } hasBin: true requiresBuild: true optionalDependencies: - '@swc/core-android-arm-eabi': 1.3.5 - '@swc/core-android-arm64': 1.3.5 - '@swc/core-darwin-arm64': 1.3.5 - '@swc/core-darwin-x64': 1.3.5 - '@swc/core-freebsd-x64': 1.3.5 - '@swc/core-linux-arm-gnueabihf': 1.3.5 - '@swc/core-linux-arm64-gnu': 1.3.5 - '@swc/core-linux-arm64-musl': 1.3.5 - '@swc/core-linux-x64-gnu': 1.3.5 - '@swc/core-linux-x64-musl': 1.3.5 - '@swc/core-win32-arm64-msvc': 1.3.5 - '@swc/core-win32-ia32-msvc': 1.3.5 - '@swc/core-win32-x64-msvc': 1.3.5 + "@swc/core-android-arm-eabi": 1.3.5 + "@swc/core-android-arm64": 1.3.5 + "@swc/core-darwin-arm64": 1.3.5 + "@swc/core-darwin-x64": 1.3.5 + "@swc/core-freebsd-x64": 1.3.5 + "@swc/core-linux-arm-gnueabihf": 1.3.5 + "@swc/core-linux-arm64-gnu": 1.3.5 + "@swc/core-linux-arm64-musl": 1.3.5 + "@swc/core-linux-x64-gnu": 1.3.5 + "@swc/core-linux-x64-musl": 1.3.5 + "@swc/core-win32-arm64-msvc": 1.3.5 + "@swc/core-win32-ia32-msvc": 1.3.5 + "@swc/core-win32-x64-msvc": 1.3.5 dev: true /@swc/helpers/0.4.14: - resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} + resolution: + { + integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==, + } dependencies: tslib: 2.4.0 dev: false /@swc/wasm/1.2.122: - resolution: {integrity: sha512-sM1VCWQxmNhFtdxME+8UXNyPNhxNu7zdb6ikWpz0YKAQQFRGT5ThZgJrubEpah335SUToNg8pkdDF7ibVCjxbQ==} + resolution: + { + integrity: sha512-sM1VCWQxmNhFtdxME+8UXNyPNhxNu7zdb6ikWpz0YKAQQFRGT5ThZgJrubEpah335SUToNg8pkdDF7ibVCjxbQ==, + } requiresBuild: true dev: true optional: true /@swc/wasm/1.2.130: - resolution: {integrity: sha512-rNcJsBxS70+pv8YUWwf5fRlWX6JoY/HJc25HD/F8m6Kv7XhJdqPPMhyX6TKkUBPAG7TWlZYoxa+rHAjPy4Cj3Q==} + resolution: + { + integrity: sha512-rNcJsBxS70+pv8YUWwf5fRlWX6JoY/HJc25HD/F8m6Kv7XhJdqPPMhyX6TKkUBPAG7TWlZYoxa+rHAjPy4Cj3Q==, + } requiresBuild: true dev: true optional: true /@tanstack/query-core/4.24.4: - resolution: {integrity: sha512-9dqjv9eeB6VHN7lD3cLo16ZAjfjCsdXetSAD5+VyKqLUvcKTL0CklGQRJu+bWzdrS69R6Ea4UZo8obHYZnG6aA==} + resolution: + { + integrity: sha512-9dqjv9eeB6VHN7lD3cLo16ZAjfjCsdXetSAD5+VyKqLUvcKTL0CklGQRJu+bWzdrS69R6Ea4UZo8obHYZnG6aA==, + } dev: false /@tanstack/react-query/4.24.4_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-RpaS/3T/a3pHuZJbIAzAYRu+1nkp+/enr9hfRXDS/mojwx567UiMksoqW4wUFWlwIvWTXyhot2nbIipTKEg55Q==} + resolution: + { + integrity: sha512-RpaS/3T/a3pHuZJbIAzAYRu+1nkp+/enr9hfRXDS/mojwx567UiMksoqW4wUFWlwIvWTXyhot2nbIipTKEg55Q==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-native: '*' + react-native: "*" peerDependenciesMeta: react-dom: optional: true react-native: optional: true dependencies: - '@tanstack/query-core': 4.24.4 + "@tanstack/query-core": 4.24.4 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 use-sync-external-store: 1.2.0_react@18.2.0 dev: false /@testing-library/dom/8.19.0: - resolution: {integrity: sha512-6YWYPPpxG3e/xOo6HIWwB/58HukkwIVTOaZ0VwdMVjhRUX/01E4FtQbck9GazOOj7MXHc5RBzMrU86iBJHbI+A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-6YWYPPpxG3e/xOo6HIWwB/58HukkwIVTOaZ0VwdMVjhRUX/01E4FtQbck9GazOOj7MXHc5RBzMrU86iBJHbI+A==, + } + engines: { node: ">=12" } dependencies: - '@babel/code-frame': 7.18.6 - '@babel/runtime': 7.19.0 - '@types/aria-query': 4.2.2 + "@babel/code-frame": 7.18.6 + "@babel/runtime": 7.19.0 + "@types/aria-query": 4.2.2 aria-query: 5.1.3 chalk: 4.1.2 dom-accessibility-api: 0.5.14 @@ -2545,69 +3213,84 @@ packages: dev: true /@testing-library/react-hooks/8.0.1_ib3m5ricvtkl2cll7qpr2f6lvq: - resolution: {integrity: sha512-Aqhl2IVmLt8IovEVarNDFuJDVWVvhnr9/GCU6UUnrYXwgDFF9h2L2o2P9KBni1AST5sT6riAyoukFLyjQUgD/g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Aqhl2IVmLt8IovEVarNDFuJDVWVvhnr9/GCU6UUnrYXwgDFF9h2L2o2P9KBni1AST5sT6riAyoukFLyjQUgD/g==, + } + engines: { node: ">=12" } peerDependencies: - '@types/react': ^16.9.0 || ^17.0.0 + "@types/react": ^16.9.0 || ^17.0.0 react: ^16.9.0 || ^17.0.0 react-dom: ^16.9.0 || ^17.0.0 react-test-renderer: ^16.9.0 || ^17.0.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true react-dom: optional: true react-test-renderer: optional: true dependencies: - '@babel/runtime': 7.19.0 - '@types/react': 18.0.26 + "@babel/runtime": 7.19.0 + "@types/react": 18.0.26 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-error-boundary: 3.1.4_react@18.2.0 dev: true /@testing-library/react/13.4.0_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==, + } + engines: { node: ">=12" } peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.19.0 - '@testing-library/dom': 8.19.0 - '@types/react-dom': 18.0.10 + "@babel/runtime": 7.19.0 + "@testing-library/dom": 8.19.0 + "@types/react-dom": 18.0.10 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: true /@tootallnate/once/2.0.0: - resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==, + } + engines: { node: ">= 10" } /@trpc/client/10.13.0_@trpc+server@10.13.0: - resolution: {integrity: sha512-r4KuN0os2J194lxg5jn4+o3uNlqunLFYptwTHcVW4Q0XGO0ZoTKLHuxT7c9IeDivkAs6G5oVEPiKhptkag36dQ==} + resolution: + { + integrity: sha512-r4KuN0os2J194lxg5jn4+o3uNlqunLFYptwTHcVW4Q0XGO0ZoTKLHuxT7c9IeDivkAs6G5oVEPiKhptkag36dQ==, + } peerDependencies: - '@trpc/server': 10.13.0 + "@trpc/server": 10.13.0 dependencies: - '@trpc/server': 10.13.0 + "@trpc/server": 10.13.0 dev: false /@trpc/next/10.13.0_l7ssqk5enzsbler66nazwc5j4e: - resolution: {integrity: sha512-Q4rnuuiSUXDYv34f8FNUKhEMQFgLJTTJean78YjhG3Aaci+r4sew4hPmRvDRut8fBpa+EtExq+dv1EUbzlXgJg==} + resolution: + { + integrity: sha512-Q4rnuuiSUXDYv34f8FNUKhEMQFgLJTTJean78YjhG3Aaci+r4sew4hPmRvDRut8fBpa+EtExq+dv1EUbzlXgJg==, + } peerDependencies: - '@tanstack/react-query': ^4.3.8 - '@trpc/client': 10.13.0 - '@trpc/react-query': ^10.8.0 - '@trpc/server': 10.13.0 + "@tanstack/react-query": ^4.3.8 + "@trpc/client": 10.13.0 + "@trpc/react-query": ^10.8.0 + "@trpc/server": 10.13.0 next: 13.2.1 - react: '>=16.8.0' - react-dom: '>=16.8.0' + react: ">=16.8.0" + react-dom: ">=16.8.0" dependencies: - '@tanstack/react-query': 4.24.4_biqbaboplfbrettd7655fr4n2y - '@trpc/client': 10.13.0_@trpc+server@10.13.0 - '@trpc/react-query': 10.13.0_ugrrpyd7t34msicqzhnjzbn52m - '@trpc/server': 10.13.0 + "@tanstack/react-query": 4.24.4_biqbaboplfbrettd7655fr4n2y + "@trpc/client": 10.13.0_@trpc+server@10.13.0 + "@trpc/react-query": 10.13.0_ugrrpyd7t34msicqzhnjzbn52m + "@trpc/server": 10.13.0 next: 13.2.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -2615,166 +3298,259 @@ packages: dev: false /@trpc/react-query/10.13.0_ugrrpyd7t34msicqzhnjzbn52m: - resolution: {integrity: sha512-y4jbojrDFdEl1KBejBoMWIofcUXDHQA8wf01eKMEDV7Jwc7lhq6R1dxYtKzeF+s5wqfnPWFOGZDmB3flzv07Dw==} + resolution: + { + integrity: sha512-y4jbojrDFdEl1KBejBoMWIofcUXDHQA8wf01eKMEDV7Jwc7lhq6R1dxYtKzeF+s5wqfnPWFOGZDmB3flzv07Dw==, + } peerDependencies: - '@tanstack/react-query': ^4.3.8 - '@trpc/client': 10.13.0 - '@trpc/server': 10.13.0 - react: '>=16.8.0' - react-dom: '>=16.8.0' + "@tanstack/react-query": ^4.3.8 + "@trpc/client": 10.13.0 + "@trpc/server": 10.13.0 + react: ">=16.8.0" + react-dom: ">=16.8.0" dependencies: - '@tanstack/react-query': 4.24.4_biqbaboplfbrettd7655fr4n2y - '@trpc/client': 10.13.0_@trpc+server@10.13.0 - '@trpc/server': 10.13.0 + "@tanstack/react-query": 4.24.4_biqbaboplfbrettd7655fr4n2y + "@trpc/client": 10.13.0_@trpc+server@10.13.0 + "@trpc/server": 10.13.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false /@trpc/server/10.13.0: - resolution: {integrity: sha512-d/bu6utCC4ALxhTJkolEPAHMOSuCAu3mG79TZswa6wD2ob0/Z3AIvBF/meeSTqDxe4tvXY78lQqOkQI81dgi/g==} + resolution: + { + integrity: sha512-d/bu6utCC4ALxhTJkolEPAHMOSuCAu3mG79TZswa6wD2ob0/Z3AIvBF/meeSTqDxe4tvXY78lQqOkQI81dgi/g==, + } dev: false /@tsconfig/node10/1.0.9: - resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} + resolution: + { + integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==, + } dev: true /@tsconfig/node12/1.0.11: - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + resolution: + { + integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==, + } dev: true /@tsconfig/node14/1.0.3: - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + resolution: + { + integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==, + } dev: true /@tsconfig/node16/1.0.3: - resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} + resolution: + { + integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==, + } dev: true /@types/aria-query/4.2.2: - resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} + resolution: + { + integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==, + } dev: true /@types/chai-subset/1.3.3: - resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} + resolution: + { + integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==, + } dependencies: - '@types/chai': 4.3.4 + "@types/chai": 4.3.4 dev: false /@types/chai/4.3.4: - resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==} + resolution: + { + integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==, + } dev: false /@types/html-to-text/9.0.0: - resolution: {integrity: sha512-FnF3p2FJZ1kJT/0C/lmBzw7HSlH3RhtACVYyrwUsJoCmFNuiLpusWT2FWWB7P9A48CaYpvD6Q2fprn7sZeffpw==} + resolution: + { + integrity: sha512-FnF3p2FJZ1kJT/0C/lmBzw7HSlH3RhtACVYyrwUsJoCmFNuiLpusWT2FWWB7P9A48CaYpvD6Q2fprn7sZeffpw==, + } dev: true /@types/is-ci/3.0.0: - resolution: {integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==} + resolution: + { + integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==, + } dependencies: ci-info: 3.8.0 dev: false /@types/js-yaml/4.0.5: - resolution: {integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==} + resolution: + { + integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==, + } dev: true /@types/json-stable-stringify/1.0.34: - resolution: {integrity: sha512-s2cfwagOQAS8o06TcwKfr9Wx11dNGbH2E9vJz1cqV+a/LOyhWNLUNd6JSRYNzvB4d29UuJX2M0Dj9vE1T8fRXw==} + resolution: + { + integrity: sha512-s2cfwagOQAS8o06TcwKfr9Wx11dNGbH2E9vJz1cqV+a/LOyhWNLUNd6JSRYNzvB4d29UuJX2M0Dj9vE1T8fRXw==, + } dev: true /@types/json5/0.0.29: - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + resolution: + { + integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, + } dev: true /@types/jsonwebtoken/8.5.9: - resolution: {integrity: sha512-272FMnFGzAVMGtu9tkr29hRL6bZj4Zs1KZNeHLnKqAvp06tAIcarTMwOh8/8bz4FmKRcMxZhZNeUAQsNLoiPhg==} + resolution: + { + integrity: sha512-272FMnFGzAVMGtu9tkr29hRL6bZj4Zs1KZNeHLnKqAvp06tAIcarTMwOh8/8bz4FmKRcMxZhZNeUAQsNLoiPhg==, + } dependencies: - '@types/node': 18.11.18 + "@types/node": 18.11.18 dev: true /@types/minimist/1.2.2: - resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} + resolution: + { + integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==, + } dev: false /@types/mjml-core/4.7.1: - resolution: {integrity: sha512-k5IRafi93tyZBGF+0BTrcBDvG47OueI+Q7TC4V4UjGQn0AMVvL3Y+S26QF/UHMmMJW5r1hxLyv3StX2/+FatFg==} + resolution: + { + integrity: sha512-k5IRafi93tyZBGF+0BTrcBDvG47OueI+Q7TC4V4UjGQn0AMVvL3Y+S26QF/UHMmMJW5r1hxLyv3StX2/+FatFg==, + } dev: true /@types/mjml/4.7.0: - resolution: {integrity: sha512-aWWu8Lxq2SexXGs+lBPRUpN3kFf0sDRo3Y4jz7BQ15cQvMfyZOadgFJsNlHmDqI6D2Qjx0PIK+1f9IMXgq9vTA==} + resolution: + { + integrity: sha512-aWWu8Lxq2SexXGs+lBPRUpN3kFf0sDRo3Y4jz7BQ15cQvMfyZOadgFJsNlHmDqI6D2Qjx0PIK+1f9IMXgq9vTA==, + } dependencies: - '@types/mjml-core': 4.7.1 + "@types/mjml-core": 4.7.1 dev: true /@types/node/12.20.55: - resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} + resolution: + { + integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, + } dev: false /@types/node/18.11.18: - resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==} + resolution: + { + integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==, + } /@types/nodemailer/6.4.7: - resolution: {integrity: sha512-f5qCBGAn/f0qtRcd4SEn88c8Fp3Swct1731X4ryPKqS61/A3LmmzN8zaEz7hneJvpjFbUUgY7lru/B/7ODTazg==} + resolution: + { + integrity: sha512-f5qCBGAn/f0qtRcd4SEn88c8Fp3Swct1731X4ryPKqS61/A3LmmzN8zaEz7hneJvpjFbUUgY7lru/B/7ODTazg==, + } dependencies: - '@types/node': 18.11.18 + "@types/node": 18.11.18 dev: true /@types/normalize-package-data/2.4.1: - resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} + resolution: + { + integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==, + } dev: false /@types/parse-json/4.0.0: - resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} + resolution: + { + integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==, + } dev: true /@types/prop-types/15.7.5: - resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} + resolution: + { + integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==, + } /@types/react-dom/18.0.10: - resolution: {integrity: sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg==} + resolution: + { + integrity: sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg==, + } dependencies: - '@types/react': 18.0.26 + "@types/react": 18.0.26 dev: true /@types/react-transition-group/4.4.5: - resolution: {integrity: sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==} + resolution: + { + integrity: sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==, + } dependencies: - '@types/react': 18.0.26 + "@types/react": 18.0.26 dev: false /@types/react/18.0.26: - resolution: {integrity: sha512-hCR3PJQsAIXyxhTNSiDFY//LhnMZWpNNr5etoCqx/iUfGc5gXWtQR2Phl908jVR6uPXacojQWTg4qRpkxTuGug==} + resolution: + { + integrity: sha512-hCR3PJQsAIXyxhTNSiDFY//LhnMZWpNNr5etoCqx/iUfGc5gXWtQR2Phl908jVR6uPXacojQWTg4qRpkxTuGug==, + } dependencies: - '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.2 + "@types/prop-types": 15.7.5 + "@types/scheduler": 0.16.2 csstype: 3.1.1 /@types/scheduler/0.16.2: - resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} + resolution: + { + integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==, + } /@types/semver/6.2.3: - resolution: {integrity: sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==} + resolution: + { + integrity: sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==, + } dev: false /@types/ws/8.5.3: - resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==} + resolution: + { + integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==, + } dependencies: - '@types/node': 18.11.18 + "@types/node": 18.11.18 dev: true /@typescript-eslint/parser/5.48.1_iukboom6ndih5an6iafl45j2fe: - resolution: {integrity: sha512-4yg+FJR/V1M9Xoq56SF9Iygqm+r5LMXvheo6DQ7/yUWynQ4YfCRnsKuRgqH4EQ5Ya76rVwlEpw4Xu+TgWQUcdA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-4yg+FJR/V1M9Xoq56SF9Iygqm+r5LMXvheo6DQ7/yUWynQ4YfCRnsKuRgqH4EQ5Ya76rVwlEpw4Xu+TgWQUcdA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' + typescript: "*" peerDependenciesMeta: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.48.1 - '@typescript-eslint/types': 5.48.1 - '@typescript-eslint/typescript-estree': 5.48.1_typescript@4.9.4 + "@typescript-eslint/scope-manager": 5.48.1 + "@typescript-eslint/types": 5.48.1 + "@typescript-eslint/typescript-estree": 5.48.1_typescript@4.9.4 debug: 4.3.4 eslint: 8.31.0 typescript: 4.9.4 @@ -2783,29 +3559,38 @@ packages: dev: true /@typescript-eslint/scope-manager/5.48.1: - resolution: {integrity: sha512-S035ueRrbxRMKvSTv9vJKIWgr86BD8s3RqoRZmsSh/s8HhIs90g6UlK8ZabUSjUZQkhVxt7nmZ63VJ9dcZhtDQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-S035ueRrbxRMKvSTv9vJKIWgr86BD8s3RqoRZmsSh/s8HhIs90g6UlK8ZabUSjUZQkhVxt7nmZ63VJ9dcZhtDQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: - '@typescript-eslint/types': 5.48.1 - '@typescript-eslint/visitor-keys': 5.48.1 + "@typescript-eslint/types": 5.48.1 + "@typescript-eslint/visitor-keys": 5.48.1 dev: true /@typescript-eslint/types/5.48.1: - resolution: {integrity: sha512-xHyDLU6MSuEEdIlzrrAerCGS3T7AA/L8Hggd0RCYBi0w3JMvGYxlLlXHeg50JI9Tfg5MrtsfuNxbS/3zF1/ATg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-xHyDLU6MSuEEdIlzrrAerCGS3T7AA/L8Hggd0RCYBi0w3JMvGYxlLlXHeg50JI9Tfg5MrtsfuNxbS/3zF1/ATg==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dev: true /@typescript-eslint/typescript-estree/5.48.1_typescript@4.9.4: - resolution: {integrity: sha512-Hut+Osk5FYr+sgFh8J/FHjqX6HFcDzTlWLrFqGoK5kVUN3VBHF/QzZmAsIXCQ8T/W9nQNBTqalxi1P3LSqWnRA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-Hut+Osk5FYr+sgFh8J/FHjqX6HFcDzTlWLrFqGoK5kVUN3VBHF/QzZmAsIXCQ8T/W9nQNBTqalxi1P3LSqWnRA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: - typescript: '*' + typescript: "*" peerDependenciesMeta: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.48.1 - '@typescript-eslint/visitor-keys': 5.48.1 + "@typescript-eslint/types": 5.48.1 + "@typescript-eslint/visitor-keys": 5.48.1 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -2817,35 +3602,47 @@ packages: dev: true /@typescript-eslint/visitor-keys/5.48.1: - resolution: {integrity: sha512-Ns0XBwmfuX7ZknznfXozgnydyR8F6ev/KEGePP4i74uL3ArsKbEhJ7raeKr1JSa997DBDwol/4a0Y+At82c9dA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-Ns0XBwmfuX7ZknznfXozgnydyR8F6ev/KEGePP4i74uL3ArsKbEhJ7raeKr1JSa997DBDwol/4a0Y+At82c9dA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: - '@typescript-eslint/types': 5.48.1 + "@typescript-eslint/types": 5.48.1 eslint-visitor-keys: 3.3.0 dev: true /@urql/core/3.0.3_graphql@16.6.0: - resolution: {integrity: sha512-raQP51ERNtg5BvlN8x8mHVRvk4K0ugWQ69n53BdkjKpXVV5kuWp7trnwriGv1fQKa8HuiGNSCfyslUucc0OVQg==} + resolution: + { + integrity: sha512-raQP51ERNtg5BvlN8x8mHVRvk4K0ugWQ69n53BdkjKpXVV5kuWp7trnwriGv1fQKa8HuiGNSCfyslUucc0OVQg==, + } 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.6.0 + "@graphql-typed-document-node/core": 3.1.1_graphql@16.6.0 graphql: 16.6.0 wonka: 6.1.0 dev: false /@urql/exchange-auth/1.0.0_graphql@16.6.0: - resolution: {integrity: sha512-79hqPQab+ifeINOxvQykvqub4ixWHBEIagN4U67ijcHGMfp3c4yEWRk4IJMPwF+OMT7LrRFuv+jRIZTQn/9VwQ==} + resolution: + { + integrity: sha512-79hqPQab+ifeINOxvQykvqub4ixWHBEIagN4U67ijcHGMfp3c4yEWRk4IJMPwF+OMT7LrRFuv+jRIZTQn/9VwQ==, + } peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@urql/core': 3.0.3_graphql@16.6.0 + "@urql/core": 3.0.3_graphql@16.6.0 graphql: 16.6.0 wonka: 6.1.0 dev: false /@urql/introspection/0.3.3_graphql@16.6.0: - resolution: {integrity: sha512-tekSLLqWnusfV6V7xaEnLJQSdXOD/lWy7f8JYQwrX+88Md+voGSCSx5WJXI7KLBN3Tat2OV08tAr8UROykls4Q==} + resolution: + { + integrity: sha512-tekSLLqWnusfV6V7xaEnLJQSdXOD/lWy7f8JYQwrX+88Md+voGSCSx5WJXI7KLBN3Tat2OV08tAr8UROykls4Q==, + } peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: @@ -2853,14 +3650,17 @@ packages: dev: true /@vitejs/plugin-react/3.0.1_vite@4.0.4: - resolution: {integrity: sha512-mx+QvYwIbbpOIJw+hypjnW1lAbKDHtWK5ibkF/V1/oMBu8HU/chb+SnqJDAsLq1+7rGqjktCEomMTM5KShzUKQ==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { + integrity: sha512-mx+QvYwIbbpOIJw+hypjnW1lAbKDHtWK5ibkF/V1/oMBu8HU/chb+SnqJDAsLq1+7rGqjktCEomMTM5KShzUKQ==, + } + engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: vite: ^4.0.0 dependencies: - '@babel/core': 7.20.12 - '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.20.12 + "@babel/core": 7.20.12 + "@babel/plugin-transform-react-jsx-self": 7.18.6_@babel+core@7.20.12 + "@babel/plugin-transform-react-jsx-source": 7.19.6_@babel+core@7.20.12 magic-string: 0.27.0 react-refresh: 0.14.0 vite: 4.0.4_@types+node@18.11.18 @@ -2869,9 +3669,12 @@ packages: dev: false /@whatwg-node/fetch/0.3.2: - resolution: {integrity: sha512-Bs5zAWQs0tXsLa4mRmLw7Psps1EN78vPtgcLpw3qPY8s6UYPUM67zFZ9cy+7tZ64PXhfwzxJn+m7RH2Lq48RNQ==} + resolution: + { + integrity: sha512-Bs5zAWQs0tXsLa4mRmLw7Psps1EN78vPtgcLpw3qPY8s6UYPUM67zFZ9cy+7tZ64PXhfwzxJn+m7RH2Lq48RNQ==, + } dependencies: - '@peculiar/webcrypto': 1.4.0 + "@peculiar/webcrypto": 1.4.0 abort-controller: 3.0.0 busboy: 1.6.0 event-target-polyfill: 0.0.3 @@ -2885,9 +3688,12 @@ packages: dev: true /@whatwg-node/fetch/0.4.7: - resolution: {integrity: sha512-+oKDMGtmUJ7H37VDL5U2Vdk+ZxsIypZxO2q6y42ytu6W3PL6OIIUYZGliNqQgWtCdtxOZ9WPQvbIAuiLpnLlUw==} + resolution: + { + integrity: sha512-+oKDMGtmUJ7H37VDL5U2Vdk+ZxsIypZxO2q6y42ytu6W3PL6OIIUYZGliNqQgWtCdtxOZ9WPQvbIAuiLpnLlUw==, + } dependencies: - '@peculiar/webcrypto': 1.4.0 + "@peculiar/webcrypto": 1.4.0 abort-controller: 3.0.0 busboy: 1.6.0 form-data-encoder: 1.7.2 @@ -2900,28 +3706,43 @@ packages: dev: true /abab/2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + resolution: + { + integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==, + } dev: false /abbrev/1.1.1: - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + resolution: + { + integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==, + } dev: false /abort-controller/3.0.0: - resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} - engines: {node: '>=6.5'} + resolution: + { + integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==, + } + engines: { node: ">=6.5" } dependencies: event-target-shim: 5.0.1 /acorn-globals/7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + resolution: + { + integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==, + } dependencies: acorn: 8.8.1 acorn-walk: 8.2.0 dev: false /acorn-jsx/5.3.2_acorn@8.8.1: - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + resolution: + { + integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, + } peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: @@ -2929,32 +3750,47 @@ packages: dev: true /acorn-walk/8.2.0: - resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==, + } + engines: { node: ">=0.4.0" } /acorn/8.8.1: - resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==, + } + engines: { node: ">=0.4.0" } hasBin: true /agent-base/6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} + resolution: + { + integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, + } + engines: { node: ">= 6.0.0" } dependencies: debug: 4.3.4 transitivePeerDependencies: - supports-color /aggregate-error/3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==, + } + engines: { node: ">=8" } dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 dev: true /ajv/6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + resolution: + { + integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, + } dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 @@ -2963,91 +3799,133 @@ packages: dev: true /ansi-colors/4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==, + } + engines: { node: ">=6" } dev: false /ansi-escapes/4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, + } + engines: { node: ">=8" } dependencies: type-fest: 0.21.3 dev: true /ansi-regex/5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, + } + engines: { node: ">=8" } /ansi-styles/3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, + } + engines: { node: ">=4" } dependencies: color-convert: 1.9.3 /ansi-styles/4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, + } + engines: { node: ">=8" } dependencies: color-convert: 2.0.1 /ansi-styles/5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==, + } + engines: { node: ">=10" } dev: true /anymatch/3.1.2: - resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==, + } + engines: { node: ">= 8" } dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 /arg/4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + resolution: + { + integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==, + } dev: true /argparse/1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + resolution: + { + integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, + } dependencies: sprintf-js: 1.0.3 dev: false /argparse/2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + resolution: + { + integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, + } dev: true /aria-hidden/1.2.1_kzbn2opkn2327fwg5yzwzya5o4: - resolution: {integrity: sha512-PN344VAf9j1EAi+jyVHOJ8XidQdPVssGco39eNcsGdM4wcsILtxrKLkbuiMfLWYROK1FjRQasMWCBttrhjnr6A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-PN344VAf9j1EAi+jyVHOJ8XidQdPVssGco39eNcsGdM4wcsILtxrKLkbuiMfLWYROK1FjRQasMWCBttrhjnr6A==, + } + engines: { node: ">=10" } peerDependencies: - '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 + "@types/react": ^16.9.0 || ^17.0.0 || ^18.0.0 react: ^16.9.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true dependencies: - '@types/react': 18.0.26 + "@types/react": 18.0.26 react: 18.2.0 tslib: 2.4.0 dev: false /aria-query/4.2.2: - resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==, + } + engines: { node: ">=6.0" } dependencies: - '@babel/runtime': 7.21.0 - '@babel/runtime-corejs3': 7.19.1 + "@babel/runtime": 7.21.0 + "@babel/runtime-corejs3": 7.19.1 dev: true /aria-query/5.1.3: - resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + resolution: + { + integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==, + } dependencies: deep-equal: 2.1.0 dev: true /array-includes/3.1.5: - resolution: {integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 @@ -3057,12 +3935,18 @@ packages: dev: true /array-union/2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, + } + engines: { node: ">=8" } /array.prototype.flat/1.3.0: - resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 @@ -3070,8 +3954,11 @@ packages: es-shim-unscopables: 1.0.0 /array.prototype.flatmap/1.3.0: - resolution: {integrity: sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 @@ -3080,17 +3967,26 @@ packages: dev: true /arrify/1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==, + } + engines: { node: ">=0.10.0" } dev: false /asap/2.0.6: - resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + resolution: + { + integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==, + } dev: true /asn1js/3.0.5: - resolution: {integrity: sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==, + } + engines: { node: ">=12.0.0" } dependencies: pvtsutils: 1.3.2 pvutils: 1.1.3 @@ -3098,43 +3994,70 @@ packages: dev: true /assertion-error/1.1.0: - resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} + resolution: + { + integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==, + } dev: false /ast-types-flow/0.0.7: - resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} + resolution: + { + integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==, + } dev: true /astral-regex/2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==, + } + engines: { node: ">=8" } dev: true /asynckit/0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + resolution: + { + integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, + } /atomic-sleep/1.0.0: - resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==, + } + engines: { node: ">=8.0.0" } dev: false /auto-bind/4.0.0: - resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==, + } + engines: { node: ">=8" } dev: true /available-typed-arrays/1.0.5: - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==, + } + engines: { node: ">= 0.4" } dev: true /axe-core/4.4.3: - resolution: {integrity: sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==, + } + engines: { node: ">=4" } dev: true /axios/0.26.1: - resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} + resolution: + { + integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==, + } dependencies: follow-redirects: 1.15.2 transitivePeerDependencies: @@ -3142,80 +4065,110 @@ packages: dev: false /axobject-query/2.2.0: - resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} + resolution: + { + integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==, + } dev: true /babel-plugin-dynamic-import-node/2.3.3: - resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} + resolution: + { + integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==, + } dependencies: object.assign: 4.1.4 dev: true /babel-plugin-syntax-trailing-function-commas/7.0.0-beta.0: - resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} + resolution: + { + integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==, + } dev: true /babel-preset-fbjs/3.4.0_@babel+core@7.20.5: - resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} + resolution: + { + integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==, + } peerDependencies: - '@babel/core': ^7.0.0 + "@babel/core": ^7.0.0 dependencies: - '@babel/core': 7.20.5 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.5 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.20.5 - '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.5 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.20.5 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.5 + "@babel/core": 7.20.5 + "@babel/plugin-proposal-class-properties": 7.18.6_@babel+core@7.20.5 + "@babel/plugin-proposal-object-rest-spread": 7.18.9_@babel+core@7.20.5 + "@babel/plugin-syntax-class-properties": 7.12.13_@babel+core@7.20.5 + "@babel/plugin-syntax-flow": 7.18.6_@babel+core@7.20.5 + "@babel/plugin-syntax-jsx": 7.18.6_@babel+core@7.20.5 + "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.20.5 + "@babel/plugin-transform-arrow-functions": 7.18.6_@babel+core@7.20.5 + "@babel/plugin-transform-block-scoped-functions": 7.18.6_@babel+core@7.20.5 + "@babel/plugin-transform-block-scoping": 7.18.9_@babel+core@7.20.5 + "@babel/plugin-transform-classes": 7.19.0_@babel+core@7.20.5 + "@babel/plugin-transform-computed-properties": 7.18.9_@babel+core@7.20.5 + "@babel/plugin-transform-destructuring": 7.18.13_@babel+core@7.20.5 + "@babel/plugin-transform-flow-strip-types": 7.19.0_@babel+core@7.20.5 + "@babel/plugin-transform-for-of": 7.18.8_@babel+core@7.20.5 + "@babel/plugin-transform-function-name": 7.18.9_@babel+core@7.20.5 + "@babel/plugin-transform-literals": 7.18.9_@babel+core@7.20.5 + "@babel/plugin-transform-member-expression-literals": 7.18.6_@babel+core@7.20.5 + "@babel/plugin-transform-modules-commonjs": 7.18.6_@babel+core@7.20.5 + "@babel/plugin-transform-object-super": 7.18.6_@babel+core@7.20.5 + "@babel/plugin-transform-parameters": 7.18.8_@babel+core@7.20.5 + "@babel/plugin-transform-property-literals": 7.18.6_@babel+core@7.20.5 + "@babel/plugin-transform-react-display-name": 7.18.6_@babel+core@7.20.5 + "@babel/plugin-transform-react-jsx": 7.19.0_@babel+core@7.20.5 + "@babel/plugin-transform-shorthand-properties": 7.18.6_@babel+core@7.20.5 + "@babel/plugin-transform-spread": 7.19.0_@babel+core@7.20.5 + "@babel/plugin-transform-template-literals": 7.18.9_@babel+core@7.20.5 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==} + resolution: + { + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, + } /base64-js/1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + resolution: + { + integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, + } /better-path-resolve/1.0.0: - resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==, + } + engines: { node: ">=4" } dependencies: is-windows: 1.0.2 dev: false /big-integer/1.6.51: - resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==, + } + engines: { node: ">=0.6" } dev: false /binary-extensions/2.2.0: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==, + } + engines: { node: ">=8" } /bl/4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + resolution: + { + integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==, + } dependencies: buffer: 5.7.1 inherits: 2.0.4 @@ -3223,37 +4176,55 @@ packages: dev: true /boolbase/1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + resolution: + { + integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==, + } dev: false /brace-expansion/1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + resolution: + { + integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, + } dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 /brace-expansion/2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + 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'} + resolution: + { + integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, + } + engines: { node: ">=8" } dependencies: fill-range: 7.0.1 /breakword/1.0.5: - resolution: {integrity: sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg==} + resolution: + { + integrity: sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg==, + } dependencies: wcwidth: 1.0.1 dev: false /broadcast-channel/3.7.0: - resolution: {integrity: sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==} + resolution: + { + integrity: sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==, + } dependencies: - '@babel/runtime': 7.19.0 + "@babel/runtime": 7.19.0 detect-node: 2.1.0 js-sha3: 0.8.0 microseconds: 0.2.0 @@ -3264,8 +4235,11 @@ packages: dev: false /browserslist/4.21.4: - resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + resolution: + { + integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==, + } + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true dependencies: caniuse-lite: 1.0.30001415 @@ -3274,77 +4248,116 @@ packages: update-browserslist-db: 1.0.9_browserslist@4.21.4 /bser/2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + 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: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} + resolution: + { + integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==, + } dev: true /buffer-from/1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + resolution: + { + integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, + } dev: false /buffer/5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + resolution: + { + integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, + } dependencies: base64-js: 1.5.1 ieee754: 1.2.1 dev: true /buffer/6.0.3: - resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + resolution: + { + integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==, + } dependencies: base64-js: 1.5.1 ieee754: 1.2.1 dev: false /busboy/1.6.0: - resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} - engines: {node: '>=10.16.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'} + resolution: + { + integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==, + } + engines: { node: ">= 0.8" } dev: false /cac/6.7.14: - resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==, + } + engines: { node: ">=8" } dev: false /call-bind/1.0.2: - resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} + resolution: + { + integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, + } dependencies: function-bind: 1.1.1 get-intrinsic: 1.1.3 /callsites/3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, + } + engines: { node: ">=6" } dev: true /camel-case/3.0.0: - resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==} + resolution: + { + integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==, + } dependencies: no-case: 2.3.2 upper-case: 1.1.3 dev: false /camel-case/4.1.2: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + resolution: + { + integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==, + } dependencies: pascal-case: 3.1.2 tslib: 2.4.0 dev: true /camelcase-keys/6.2.2: - resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==, + } + engines: { node: ">=8" } dependencies: camelcase: 5.3.1 map-obj: 4.3.0 @@ -3352,14 +4365,23 @@ packages: dev: false /camelcase/5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==, + } + engines: { node: ">=6" } /caniuse-lite/1.0.30001415: - resolution: {integrity: sha512-ER+PfgCJUe8BqunLGWd/1EY4g8AzQcsDAVzdtMGKVtQEmKAwaFfU6vb7EAVIqTMYsqxBorYZi2+22Iouj/y7GQ==} + resolution: + { + integrity: sha512-ER+PfgCJUe8BqunLGWd/1EY4g8AzQcsDAVzdtMGKVtQEmKAwaFfU6vb7EAVIqTMYsqxBorYZi2+22Iouj/y7GQ==, + } /capital-case/1.0.4: - resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} + resolution: + { + integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==, + } dependencies: no-case: 3.0.4 tslib: 2.4.0 @@ -3367,8 +4389,11 @@ packages: dev: true /chai/4.3.7: - resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==, + } + engines: { node: ">=4" } dependencies: assertion-error: 1.1.0 check-error: 1.0.2 @@ -3380,22 +4405,31 @@ packages: dev: false /chalk/2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + 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 /chalk/4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, + } + engines: { node: ">=10" } dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 /change-case-all/1.0.14: - resolution: {integrity: sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==} + resolution: + { + integrity: sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==, + } dependencies: change-case: 4.1.2 is-lower-case: 2.0.2 @@ -3410,7 +4444,10 @@ packages: dev: true /change-case/4.1.2: - resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} + resolution: + { + integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==, + } dependencies: camel-case: 4.1.2 capital-case: 1.0.4 @@ -3427,14 +4464,23 @@ packages: dev: true /chardet/0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + resolution: + { + integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==, + } /check-error/1.0.2: - resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==} + resolution: + { + integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==, + } dev: false /cheerio-select/1.6.0: - resolution: {integrity: sha512-eq0GdBvxVFbqWgmCm7M3XGs1I8oLy/nExUnh6oLqmBditPO9AqQJrkslDpMun/hZ0yyTs8L0m85OHp4ho6Qm9g==} + resolution: + { + integrity: sha512-eq0GdBvxVFbqWgmCm7M3XGs1I8oLy/nExUnh6oLqmBditPO9AqQJrkslDpMun/hZ0yyTs8L0m85OHp4ho6Qm9g==, + } dependencies: css-select: 4.3.0 css-what: 6.1.0 @@ -3444,8 +4490,11 @@ packages: dev: false /cheerio/1.0.0-rc.10: - resolution: {integrity: sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==, + } + engines: { node: ">= 6" } dependencies: cheerio-select: 1.6.0 dom-serializer: 1.4.1 @@ -3457,8 +4506,11 @@ packages: dev: false /chokidar/3.5.3: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: '>= 8.10.0'} + resolution: + { + integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==, + } + engines: { node: ">= 8.10.0" } dependencies: anymatch: 3.1.2 braces: 3.0.2 @@ -3471,60 +4523,90 @@ packages: fsevents: 2.3.2 /ci-info/3.8.0: - resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==, + } + engines: { node: ">=8" } dev: false /clean-css/4.2.4: - resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} - engines: {node: '>= 4.0'} + resolution: + { + integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==, + } + engines: { node: ">= 4.0" } dependencies: source-map: 0.6.1 dev: false /clean-stack/2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==, + } + engines: { node: ">=6" } dev: true /cli-cursor/3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} + 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'} + resolution: + { + integrity: sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==, + } + engines: { node: ">=6" } dev: true /cli-truncate/2.1.0: - resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==, + } + engines: { node: ">=8" } dependencies: slice-ansi: 3.0.0 string-width: 4.2.3 dev: true /cli-width/3.0.0: - resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==, + } + engines: { node: ">= 10" } dev: true /client-only/0.0.1: - resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + resolution: + { + integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==, + } dev: false /cliui/6.0.0: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + resolution: + { + integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==, + } dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 6.2.0 /cliui/7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + resolution: + { + integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==, + } dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 @@ -3532,78 +4614,126 @@ packages: dev: false /cliui/8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, + } + engines: { node: ">=12" } dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 /clone/1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, + } + engines: { node: ">=0.8" } /clsx/1.2.1: - resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==, + } + engines: { node: ">=6" } dev: false /color-convert/1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + resolution: + { + integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, + } dependencies: color-name: 1.1.3 /color-convert/2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + 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==} + resolution: + { + integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, + } /color-name/1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + resolution: + { + integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, + } /colorette/2.0.19: - resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} + resolution: + { + integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==, + } /combined-stream/1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, + } + engines: { node: ">= 0.8" } dependencies: delayed-stream: 1.0.0 /commander/2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + resolution: + { + integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, + } dev: false /commander/5.1.0: - resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==, + } + engines: { node: ">= 6" } dev: false /common-tags/1.8.2: - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==, + } + engines: { node: ">=4.0.0" } dev: true /compute-scroll-into-view/1.0.17: - resolution: {integrity: sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==} + resolution: + { + integrity: sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==, + } dev: false /concat-map/0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + resolution: + { + integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, + } /config-chain/1.1.13: - resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} + resolution: + { + integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==, + } dependencies: ini: 1.3.8 proto-list: 1.2.4 dev: false /constant-case/3.0.4: - resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} + resolution: + { + integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==, + } dependencies: no-case: 3.0.4 tslib: 2.4.0 @@ -3611,48 +4741,66 @@ packages: dev: true /convert-source-map/1.8.0: - resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} + resolution: + { + integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==, + } dependencies: safe-buffer: 5.1.2 /core-js-pure/3.25.5: - resolution: {integrity: sha512-oml3M22pHM+igfWHDfdLVq2ShWmjM2V4L+dQEBs0DWVIqEm9WHCwGAlZ6BmyBQGy5sFrJmcx+856D9lVKyGWYg==} + resolution: + { + integrity: sha512-oml3M22pHM+igfWHDfdLVq2ShWmjM2V4L+dQEBs0DWVIqEm9WHCwGAlZ6BmyBQGy5sFrJmcx+856D9lVKyGWYg==, + } requiresBuild: true dev: true /cosmiconfig-toml-loader/1.0.0: - resolution: {integrity: sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==} + resolution: + { + integrity: sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==, + } dependencies: - '@iarna/toml': 2.2.5 + "@iarna/toml": 2.2.5 dev: true /cosmiconfig-typescript-loader/4.1.1_thgmyp3ypwxicrrxhqijzwgoje: - resolution: {integrity: sha512-9DHpa379Gp0o0Zefii35fcmuuin6q92FnLDffzdZ0l9tVd3nEobG3O+MZ06+kuBvFTSVScvNb/oHA13Nd4iipg==} - engines: {node: '>=12', npm: '>=6'} + resolution: + { + integrity: sha512-9DHpa379Gp0o0Zefii35fcmuuin6q92FnLDffzdZ0l9tVd3nEobG3O+MZ06+kuBvFTSVScvNb/oHA13Nd4iipg==, + } + engines: { node: ">=12", npm: ">=6" } peerDependencies: - '@types/node': '*' - cosmiconfig: '>=7' - ts-node: '>=10' - typescript: '>=3' + "@types/node": "*" + cosmiconfig: ">=7" + ts-node: ">=10" + typescript: ">=3" dependencies: - '@types/node': 18.11.18 + "@types/node": 18.11.18 cosmiconfig: 7.0.1 ts-node: 10.9.1_awa2wsr5thmg3i7jqycphctjfq typescript: 4.9.4 dev: true /cosmiconfig-typescript-swc-loader/0.0.2: - resolution: {integrity: sha512-kWewZRRtQR40bjp63Is8Ys2/2uRK6c2lGfSb6TMgx9ouuz1FT6aOua1+cESHED2kSY9btT5tr54MA2VjWaWUkg==} + resolution: + { + integrity: sha512-kWewZRRtQR40bjp63Is8Ys2/2uRK6c2lGfSb6TMgx9ouuz1FT6aOua1+cESHED2kSY9btT5tr54MA2VjWaWUkg==, + } dependencies: - '@swc/core': 1.3.5 + "@swc/core": 1.3.5 cosmiconfig: 7.0.1 dev: true /cosmiconfig/7.0.1: - resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==, + } + engines: { node: ">=10" } dependencies: - '@types/parse-json': 4.0.0 + "@types/parse-json": 4.0.0 import-fresh: 3.3.0 parse-json: 5.2.0 path-type: 4.0.0 @@ -3660,11 +4808,17 @@ packages: dev: true /create-require/1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + resolution: + { + integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, + } dev: true /cross-fetch/3.1.5: - resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==} + resolution: + { + integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==, + } dependencies: node-fetch: 2.6.7 transitivePeerDependencies: @@ -3672,7 +4826,10 @@ packages: dev: true /cross-spawn/5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + resolution: + { + integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==, + } dependencies: lru-cache: 4.1.5 shebang-command: 1.2.0 @@ -3680,8 +4837,11 @@ packages: dev: false /cross-spawn/7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, + } + engines: { node: ">= 8" } dependencies: path-key: 3.1.1 shebang-command: 2.0.0 @@ -3689,7 +4849,10 @@ packages: dev: true /css-select/4.3.0: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + resolution: + { + integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==, + } dependencies: boolbase: 1.0.0 css-what: 6.1.0 @@ -3699,54 +4862,87 @@ packages: dev: false /css-vendor/2.0.8: - resolution: {integrity: sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==} + resolution: + { + integrity: sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 is-in-browser: 1.1.3 dev: false /css-what/6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==, + } + engines: { node: ">= 6" } dev: false /cssom/0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + resolution: + { + integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==, + } dev: false /cssom/0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + resolution: + { + integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==, + } dev: false /cssstyle/2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==, + } + engines: { node: ">=8" } dependencies: cssom: 0.3.8 dev: false /csstype/2.6.21: - resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==} + resolution: + { + integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==, + } dev: false /csstype/3.1.1: - resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==} + resolution: + { + integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==, + } /csv-generate/3.4.3: - resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} + resolution: + { + integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==, + } dev: false /csv-parse/4.16.3: - resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} + resolution: + { + integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==, + } dev: false /csv-stringify/5.6.5: - resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} + resolution: + { + integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==, + } dev: false /csv/5.5.3: - resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} - engines: {node: '>= 0.1.90'} + resolution: + { + integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==, + } + engines: { node: ">= 0.1.90" } dependencies: csv-generate: 3.4.3 csv-parse: 4.16.3 @@ -3755,12 +4951,18 @@ packages: dev: false /damerau-levenshtein/1.0.8: - resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + resolution: + { + integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==, + } dev: true /data-urls/3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==, + } + engines: { node: ">=12" } dependencies: abab: 2.0.6 whatwg-mimetype: 3.0.0 @@ -3768,21 +4970,33 @@ packages: dev: false /dataloader/2.1.0: - resolution: {integrity: sha512-qTcEYLen3r7ojZNgVUaRggOI+KM7jrKxXeSHhogh/TWxYMeONEMqY+hmkobiYQozsGIyg9OYVzO4ZIfoB4I0pQ==} + resolution: + { + integrity: sha512-qTcEYLen3r7ojZNgVUaRggOI+KM7jrKxXeSHhogh/TWxYMeONEMqY+hmkobiYQozsGIyg9OYVzO4ZIfoB4I0pQ==, + } dev: true /dateformat/4.6.3: - resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} + resolution: + { + integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==, + } dev: false /debounce/1.2.1: - resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} + resolution: + { + integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==, + } dev: true /debug/2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + resolution: + { + integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, + } peerDependencies: - supports-color: '*' + supports-color: "*" peerDependenciesMeta: supports-color: optional: true @@ -3791,9 +5005,12 @@ packages: dev: true /debug/3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + resolution: + { + integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, + } peerDependencies: - supports-color: '*' + supports-color: "*" peerDependenciesMeta: supports-color: optional: true @@ -3802,10 +5019,13 @@ packages: dev: true /debug/4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, + } + engines: { node: ">=6.0" } peerDependencies: - supports-color: '*' + supports-color: "*" peerDependenciesMeta: supports-color: optional: true @@ -3813,30 +5033,45 @@ packages: ms: 2.1.2 /decamelize-keys/1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==, + } + engines: { node: ">=0.10.0" } dependencies: decamelize: 1.2.0 map-obj: 1.0.1 dev: false /decamelize/1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==, + } + engines: { node: ">=0.10.0" } /decimal.js/10.4.3: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + resolution: + { + integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==, + } dev: false /deep-eql/4.1.3: - resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==, + } + engines: { node: ">=6" } dependencies: type-detect: 4.0.8 dev: false /deep-equal/2.1.0: - resolution: {integrity: sha512-2pxgvWu3Alv1PoWEyVg7HS8YhGlUFUV7N5oOvfL6d+7xAmLSemMwv/c8Zv/i9KFzxV5Kt5CAvQc70fLwVuf4UA==} + resolution: + { + integrity: sha512-2pxgvWu3Alv1PoWEyVg7HS8YhGlUFUV7N5oOvfL6d+7xAmLSemMwv/c8Zv/i9KFzxV5Kt5CAvQc70fLwVuf4UA==, + } dependencies: call-bind: 1.0.2 es-get-iterator: 1.1.2 @@ -3856,94 +5091,148 @@ packages: dev: true /deep-is/0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + resolution: + { + integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==, + } /deepmerge/4.3.0: - resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==, + } + engines: { node: ">=0.10.0" } dev: false /defaults/1.0.3: - resolution: {integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==} + resolution: + { + integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==, + } dependencies: clone: 1.0.4 /define-lazy-prop/2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==, + } + engines: { node: ">=8" } dev: true /define-properties/1.1.4: - resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==, + } + engines: { node: ">= 0.4" } dependencies: has-property-descriptors: 1.0.0 object-keys: 1.1.1 /delayed-stream/1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, + } + engines: { node: ">=0.4.0" } /depd/2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} + 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'} + 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'} + resolution: + { + integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, + } + engines: { node: ">=8" } /detect-node/2.0.4: - resolution: {integrity: sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==} + resolution: + { + integrity: sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==, + } dev: false /detect-node/2.1.0: - resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} + resolution: + { + integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==, + } dev: false /diff/4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: '>=0.3.1'} + 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'} + resolution: + { + integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, + } + engines: { node: ">=8" } dependencies: path-type: 4.0.0 /doctrine/2.1.0: - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} - engines: {node: '>=0.10.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'} + resolution: + { + integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==, + } + engines: { node: ">=6.0.0" } dependencies: esutils: 2.0.3 dev: true /dom-accessibility-api/0.5.14: - resolution: {integrity: sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==} + resolution: + { + integrity: sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==, + } dev: true /dom-helpers/5.2.1: - resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} + resolution: + { + integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 csstype: 3.1.1 dev: false /dom-serializer/1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + resolution: + { + integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==, + } dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 @@ -3951,7 +5240,10 @@ packages: dev: false /dom-serializer/2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + resolution: + { + integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==, + } dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 @@ -3959,39 +5251,57 @@ packages: dev: false /domelementtype/2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + resolution: + { + integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==, + } dev: false /domexception/4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==, + } + engines: { node: ">=12" } dependencies: webidl-conversions: 7.0.0 dev: false /domhandler/3.3.0: - resolution: {integrity: sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==, + } + engines: { node: ">= 4" } dependencies: domelementtype: 2.3.0 dev: false /domhandler/4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==, + } + engines: { node: ">= 4" } dependencies: domelementtype: 2.3.0 dev: false /domhandler/5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==, + } + engines: { node: ">= 4" } dependencies: domelementtype: 2.3.0 dev: false /domutils/2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + resolution: + { + integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==, + } dependencies: dom-serializer: 1.4.1 domelementtype: 2.3.0 @@ -3999,7 +5309,10 @@ packages: dev: false /domutils/3.0.1: - resolution: {integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==} + resolution: + { + integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==, + } dependencies: dom-serializer: 2.0.0 domelementtype: 2.3.0 @@ -4007,23 +5320,32 @@ packages: dev: false /dot-case/3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + resolution: + { + integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==, + } dependencies: no-case: 3.0.4 tslib: 2.4.0 dev: true /dotenv/16.0.3: - resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==, + } + engines: { node: ">=12" } dev: true /downshift/6.1.12_react@18.2.0: - resolution: {integrity: sha512-7XB/iaSJVS4T8wGFT3WRXmSF1UlBHAA40DshZtkrIscIN+VC+Lh363skLxFTvJwtNgHxAMDGEHT4xsyQFWL+UA==} + resolution: + { + integrity: sha512-7XB/iaSJVS4T8wGFT3WRXmSF1UlBHAA40DshZtkrIscIN+VC+Lh363skLxFTvJwtNgHxAMDGEHT4xsyQFWL+UA==, + } peerDependencies: - react: '>=16.12.0' + react: ">=16.12.0" dependencies: - '@babel/runtime': 7.19.0 + "@babel/runtime": 7.19.0 compute-scroll-into-view: 1.0.17 prop-types: 15.8.1 react: 18.2.0 @@ -4032,18 +5354,27 @@ packages: dev: false /dset/3.1.2: - resolution: {integrity: sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==, + } + engines: { node: ">=4" } dev: true /ecdsa-sig-formatter/1.0.11: - resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==} + resolution: + { + integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==, + } dependencies: safe-buffer: 5.2.1 dev: true /editorconfig/0.15.3: - resolution: {integrity: sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==} + resolution: + { + integrity: sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==, + } hasBin: true dependencies: commander: 2.20.3 @@ -4053,53 +5384,83 @@ packages: dev: false /electron-to-chromium/1.4.271: - resolution: {integrity: sha512-BCPBtK07xR1/uY2HFDtl3wK2De66AW4MSiPlLrnPNxKC/Qhccxd59W73654S3y6Rb/k3hmuGJOBnhjfoutetXA==} + resolution: + { + integrity: sha512-BCPBtK07xR1/uY2HFDtl3wK2De66AW4MSiPlLrnPNxKC/Qhccxd59W73654S3y6Rb/k3hmuGJOBnhjfoutetXA==, + } /emoji-regex/8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + resolution: + { + integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, + } /emoji-regex/9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + resolution: + { + integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, + } dev: true /end-of-stream/1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + 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==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==, + } + engines: { node: ">=10.13.0" } dependencies: graceful-fs: 4.2.10 tapable: 2.2.1 dev: true /enquirer/2.3.6: - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==, + } + engines: { node: ">=8.6" } dependencies: ansi-colors: 4.1.3 dev: false /entities/2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + resolution: + { + integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==, + } dev: false /entities/4.4.0: - resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==} - engines: {node: '>=0.12'} + resolution: + { + integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==, + } + engines: { node: ">=0.12" } dev: false /error-ex/1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + resolution: + { + integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, + } dependencies: is-arrayish: 0.2.1 /es-abstract/1.20.3: - resolution: {integrity: sha512-AyrnaKVpMzljIdwjzrj+LxGmj8ik2LckwXacHqrJJ/jxz6dDDBcZ7I7nlHM0FvEW8MfbWJwOd+yT2XzYW49Frw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-AyrnaKVpMzljIdwjzrj+LxGmj8ik2LckwXacHqrJJ/jxz6dDDBcZ7I7nlHM0FvEW8MfbWJwOd+yT2XzYW49Frw==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.2 es-to-primitive: 1.2.1 @@ -4127,7 +5488,10 @@ packages: unbox-primitive: 1.0.2 /es-get-iterator/1.1.2: - resolution: {integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==} + resolution: + { + integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==, + } dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.3 @@ -4140,69 +5504,93 @@ packages: dev: true /es-shim-unscopables/1.0.0: - resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} + resolution: + { + integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==, + } dependencies: has: 1.0.3 /es-to-primitive/1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, + } + engines: { node: ">= 0.4" } dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 is-symbol: 1.0.4 /esbuild/0.16.4: - resolution: {integrity: sha512-qQrPMQpPTWf8jHugLWHoGqZjApyx3OEm76dlTXobHwh/EBbavbRdjXdYi/GWr43GyN0sfpap14GPkb05NH3ROA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-qQrPMQpPTWf8jHugLWHoGqZjApyx3OEm76dlTXobHwh/EBbavbRdjXdYi/GWr43GyN0sfpap14GPkb05NH3ROA==, + } + engines: { node: ">=12" } hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.16.4 - '@esbuild/android-arm64': 0.16.4 - '@esbuild/android-x64': 0.16.4 - '@esbuild/darwin-arm64': 0.16.4 - '@esbuild/darwin-x64': 0.16.4 - '@esbuild/freebsd-arm64': 0.16.4 - '@esbuild/freebsd-x64': 0.16.4 - '@esbuild/linux-arm': 0.16.4 - '@esbuild/linux-arm64': 0.16.4 - '@esbuild/linux-ia32': 0.16.4 - '@esbuild/linux-loong64': 0.16.4 - '@esbuild/linux-mips64el': 0.16.4 - '@esbuild/linux-ppc64': 0.16.4 - '@esbuild/linux-riscv64': 0.16.4 - '@esbuild/linux-s390x': 0.16.4 - '@esbuild/linux-x64': 0.16.4 - '@esbuild/netbsd-x64': 0.16.4 - '@esbuild/openbsd-x64': 0.16.4 - '@esbuild/sunos-x64': 0.16.4 - '@esbuild/win32-arm64': 0.16.4 - '@esbuild/win32-ia32': 0.16.4 - '@esbuild/win32-x64': 0.16.4 + "@esbuild/android-arm": 0.16.4 + "@esbuild/android-arm64": 0.16.4 + "@esbuild/android-x64": 0.16.4 + "@esbuild/darwin-arm64": 0.16.4 + "@esbuild/darwin-x64": 0.16.4 + "@esbuild/freebsd-arm64": 0.16.4 + "@esbuild/freebsd-x64": 0.16.4 + "@esbuild/linux-arm": 0.16.4 + "@esbuild/linux-arm64": 0.16.4 + "@esbuild/linux-ia32": 0.16.4 + "@esbuild/linux-loong64": 0.16.4 + "@esbuild/linux-mips64el": 0.16.4 + "@esbuild/linux-ppc64": 0.16.4 + "@esbuild/linux-riscv64": 0.16.4 + "@esbuild/linux-s390x": 0.16.4 + "@esbuild/linux-x64": 0.16.4 + "@esbuild/netbsd-x64": 0.16.4 + "@esbuild/openbsd-x64": 0.16.4 + "@esbuild/sunos-x64": 0.16.4 + "@esbuild/win32-arm64": 0.16.4 + "@esbuild/win32-ia32": 0.16.4 + "@esbuild/win32-x64": 0.16.4 dev: false /escalade/3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, + } + engines: { node: ">=6" } /escape-goat/3.0.0: - resolution: {integrity: sha512-w3PwNZJwRxlp47QGzhuEBldEqVHHhh8/tIPcl6ecf2Bou99cdAt0knihBV0Ecc7CGxYduXVBDheH1K2oADRlvw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-w3PwNZJwRxlp47QGzhuEBldEqVHHhh8/tIPcl6ecf2Bou99cdAt0knihBV0Ecc7CGxYduXVBDheH1K2oADRlvw==, + } + engines: { node: ">=10" } dev: false /escape-string-regexp/1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, + } + engines: { node: ">=0.8.0" } /escape-string-regexp/4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==, + } + engines: { node: ">=10" } dev: true /escodegen/2.0.0: - resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==, + } + engines: { node: ">=6.0" } hasBin: true dependencies: esprima: 4.0.1 @@ -4214,17 +5602,20 @@ packages: dev: false /eslint-config-next/13.1.2_iukboom6ndih5an6iafl45j2fe: - resolution: {integrity: sha512-zdRAQOr8v69ZwJRtBrGqAqm160ONqKxU/pV1FB1KlgfyqveGsLZmlQ7l31otwtw763901J7xdiTVkj2y3YxXZA==} + resolution: + { + integrity: sha512-zdRAQOr8v69ZwJRtBrGqAqm160ONqKxU/pV1FB1KlgfyqveGsLZmlQ7l31otwtw763901J7xdiTVkj2y3YxXZA==, + } peerDependencies: eslint: ^7.23.0 || ^8.0.0 - typescript: '>=3.3.1' + typescript: ">=3.3.1" peerDependenciesMeta: typescript: optional: true dependencies: - '@next/eslint-plugin-next': 13.1.2 - '@rushstack/eslint-patch': 1.2.0 - '@typescript-eslint/parser': 5.48.1_iukboom6ndih5an6iafl45j2fe + "@next/eslint-plugin-next": 13.1.2 + "@rushstack/eslint-patch": 1.2.0 + "@typescript-eslint/parser": 5.48.1_iukboom6ndih5an6iafl45j2fe eslint: 8.31.0 eslint-import-resolver-node: 0.3.6 eslint-import-resolver-typescript: 3.5.3_ol7jqilc3wemtdbq3nzhywgxq4 @@ -4239,16 +5630,22 @@ packages: dev: true /eslint-config-prettier/8.6.0_eslint@8.31.0: - resolution: {integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==} + resolution: + { + integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==, + } hasBin: true peerDependencies: - eslint: '>=7.0.0' + eslint: ">=7.0.0" dependencies: eslint: 8.31.0 dev: true /eslint-import-resolver-node/0.3.6: - resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} + resolution: + { + integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==, + } dependencies: debug: 3.2.7 resolve: 1.22.1 @@ -4257,11 +5654,14 @@ packages: dev: true /eslint-import-resolver-typescript/3.5.3_ol7jqilc3wemtdbq3nzhywgxq4: - resolution: {integrity: sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { + integrity: sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==, + } + engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: - eslint: '*' - eslint-plugin-import: '*' + eslint: "*" + eslint-plugin-import: "*" dependencies: debug: 4.3.4 enhanced-resolve: 5.12.0 @@ -4277,16 +5677,19 @@ packages: dev: true /eslint-module-utils/2.7.4_abt7jfzvvcdxs33zeu2dhrntyi: - resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==, + } + engines: { node: ">=4" } peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - eslint-import-resolver-node: '*' - eslint-import-resolver-typescript: '*' - eslint-import-resolver-webpack: '*' + "@typescript-eslint/parser": "*" + eslint: "*" + eslint-import-resolver-node: "*" + eslint-import-resolver-typescript: "*" + eslint-import-resolver-webpack: "*" peerDependenciesMeta: - '@typescript-eslint/parser': + "@typescript-eslint/parser": optional: true eslint: optional: true @@ -4297,7 +5700,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.48.1_iukboom6ndih5an6iafl45j2fe + "@typescript-eslint/parser": 5.48.1_iukboom6ndih5an6iafl45j2fe debug: 3.2.7 eslint: 8.31.0 eslint-import-resolver-node: 0.3.6 @@ -4307,16 +5710,19 @@ packages: dev: true /eslint-plugin-import/2.26.0_2ac3tknkazjoq5fxmuugu665ny: - resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, + } + engines: { node: ">=4" } peerDependencies: - '@typescript-eslint/parser': '*' + "@typescript-eslint/parser": "*" eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 peerDependenciesMeta: - '@typescript-eslint/parser': + "@typescript-eslint/parser": optional: true dependencies: - '@typescript-eslint/parser': 5.48.1_iukboom6ndih5an6iafl45j2fe + "@typescript-eslint/parser": 5.48.1_iukboom6ndih5an6iafl45j2fe array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9 @@ -4338,12 +5744,15 @@ packages: dev: true /eslint-plugin-jsx-a11y/6.6.1_eslint@8.31.0: - resolution: {integrity: sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==} - engines: {node: '>=4.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.19.0 + "@babel/runtime": 7.19.0 aria-query: 4.2.2 array-includes: 3.1.5 ast-types-flow: 0.0.7 @@ -4360,8 +5769,11 @@ packages: dev: true /eslint-plugin-react-hooks/4.6.0_eslint@8.31.0: - resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} - engines: {node: '>=10'} + 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: @@ -4369,8 +5781,11 @@ packages: dev: true /eslint-plugin-react/7.31.8_eslint@8.31.0: - resolution: {integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==, + } + engines: { node: ">=4" } peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: @@ -4392,42 +5807,57 @@ packages: 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} + 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.31.0: - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + resolution: + { + integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, + } + engines: { node: ^10.0.0 || ^12.0.0 || >= 14.0.0 } peerDependencies: - eslint: '>=5' + eslint: ">=5" dependencies: eslint: 8.31.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'} + 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} + resolution: + { + integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dev: true /eslint/8.31.0: - resolution: {integrity: sha512-0tQQEVdmPZ1UtUKXjX7EMm9BlgJ08G90IhWh0PKDCb3ZLsgAOHI8fYSIzYVZej92zsgq+ft0FGsxhJ3xo2tbuA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-0tQQEVdmPZ1UtUKXjX7EMm9BlgJ08G90IhWh0PKDCb3ZLsgAOHI8fYSIzYVZej92zsgq+ft0FGsxhJ3xo2tbuA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } hasBin: true dependencies: - '@eslint/eslintrc': 1.4.1 - '@humanwhocodes/config-array': 0.11.8 - '@humanwhocodes/module-importer': 1.0.1 - '@nodelib/fs.walk': 1.2.8 + "@eslint/eslintrc": 1.4.1 + "@humanwhocodes/config-array": 0.11.8 + "@humanwhocodes/module-importer": 1.0.1 + "@nodelib/fs.walk": 1.2.8 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 @@ -4468,8 +5898,11 @@ packages: dev: true /espree/9.4.0: - resolution: {integrity: sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: acorn: 8.8.1 acorn-jsx: 5.3.2_acorn@8.8.1 @@ -4477,123 +5910,195 @@ packages: dev: true /esprima/4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, + } + engines: { node: ">=4" } hasBin: true dev: false /esquery/1.4.0: - resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} - engines: {node: '>=0.10'} + 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'} + resolution: + { + integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==, + } + engines: { node: ">=4.0" } dependencies: estraverse: 5.3.0 dev: true /estraverse/5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, + } + engines: { node: ">=4.0" } /esutils/2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, + } + engines: { node: ">=0.10.0" } /event-target-polyfill/0.0.3: - resolution: {integrity: sha512-ZMc6UuvmbinrCk4RzGyVmRyIsAyxMRlp4CqSrcQRO8Dy0A9ldbiRy5kdtBj4OtP7EClGdqGfIqo9JmOClMsGLQ==} + 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'} + resolution: + { + integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==, + } + engines: { node: ">=6" } /events/3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} + resolution: + { + integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, + } + engines: { node: ">=0.8.x" } dev: false /exenv/1.2.2: - resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} + resolution: + { + integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==, + } dev: false /extendable-error/0.1.7: - resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} + resolution: + { + integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==, + } dev: false /external-editor/3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, + } + engines: { node: ">=4" } dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 tmp: 0.0.33 /extract-files/11.0.0: - resolution: {integrity: sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==} - engines: {node: ^12.20 || >= 14.13} + 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} + resolution: + { + integrity: sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==, + } + engines: { node: ^10.17.0 || ^12.0.0 || >= 13.7.0 } dev: true /fast-copy/3.0.0: - resolution: {integrity: sha512-4HzS+9pQ5Yxtv13Lhs1Z1unMXamBdn5nA4bEi1abYpDNSpSp7ODYQ1KPMF6nTatfEzgH6/zPvXKU1zvHiUjWlA==} + resolution: + { + integrity: sha512-4HzS+9pQ5Yxtv13Lhs1Z1unMXamBdn5nA4bEi1abYpDNSpSp7ODYQ1KPMF6nTatfEzgH6/zPvXKU1zvHiUjWlA==, + } dev: false /fast-deep-equal/3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + resolution: + { + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, + } dev: true /fast-glob/3.2.12: - resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} - engines: {node: '>=8.6.0'} + resolution: + { + integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==, + } + engines: { node: ">=8.6.0" } dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 + "@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==} + resolution: + { + integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, + } dev: true /fast-levenshtein/2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + resolution: + { + integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, + } /fast-redact/3.1.2: - resolution: {integrity: sha512-+0em+Iya9fKGfEQGcd62Yv6onjBmmhV1uh86XVfOU8VwAe6kaFdQCWI9s0/Nnugx5Vd9tdbZ7e6gE2tR9dzXdw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-+0em+Iya9fKGfEQGcd62Yv6onjBmmhV1uh86XVfOU8VwAe6kaFdQCWI9s0/Nnugx5Vd9tdbZ7e6gE2tR9dzXdw==, + } + engines: { node: ">=6" } dev: false /fast-safe-stringify/2.1.1: - resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} + resolution: + { + integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==, + } dev: false /fastq/1.13.0: - resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} + resolution: + { + integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==, + } dependencies: reusify: 1.0.4 /fb-watchman/2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + resolution: + { + integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==, + } dependencies: bser: 2.1.1 dev: true /fbjs-css-vars/1.0.2: - resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==} + resolution: + { + integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==, + } dev: true /fbjs/3.0.4: - resolution: {integrity: sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==} + resolution: + { + integrity: sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==, + } dependencies: cross-fetch: 3.1.5 fbjs-css-vars: 1.0.2 @@ -4607,81 +6112,117 @@ packages: dev: true /figures/3.2.0: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} - engines: {node: '>=8'} + 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} + 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'} + resolution: + { + integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, + } + engines: { node: ">=8" } dependencies: to-regex-range: 5.0.1 /find-up/4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, + } + engines: { node: ">=8" } dependencies: locate-path: 5.0.0 path-exists: 4.0.0 /find-up/5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, + } + engines: { node: ">=10" } dependencies: locate-path: 6.0.0 path-exists: 4.0.0 /find-yarn-workspace-root2/1.2.16: - resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} + resolution: + { + integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==, + } dependencies: micromatch: 4.0.5 pkg-dir: 4.2.0 dev: false /flat-cache/3.0.4: - resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} - engines: {node: ^10.12.0 || >=12.0.0} + resolution: + { + integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==, + } + engines: { node: ^10.12.0 || >=12.0.0 } dependencies: flatted: 3.2.7 rimraf: 3.0.2 dev: true /flatted/3.2.7: - resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} + resolution: + { + integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==, + } dev: true /follow-redirects/1.15.2: - resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==, + } + engines: { node: ">=4.0" } peerDependencies: - debug: '*' + debug: "*" peerDependenciesMeta: debug: optional: true dev: false /for-each/0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + resolution: + { + integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, + } dependencies: is-callable: 1.2.7 dev: true /form-data-encoder/1.7.2: - resolution: {integrity: sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==} + resolution: + { + integrity: sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==, + } dev: true /form-data/3.0.1: - resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==, + } + engines: { node: ">= 6" } dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 @@ -4689,8 +6230,11 @@ packages: dev: true /form-data/4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==, + } + engines: { node: ">= 6" } dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 @@ -4698,16 +6242,22 @@ packages: dev: false /formdata-node/4.4.1: - resolution: {integrity: sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==} - engines: {node: '>= 12.20'} + resolution: + { + integrity: sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==, + } + engines: { node: ">= 12.20" } dependencies: node-domexception: 1.0.0 web-streams-polyfill: 4.0.0-beta.3 dev: true /fs-extra/7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} + resolution: + { + integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==, + } + engines: { node: ">=6 <7 || >=8" } dependencies: graceful-fs: 4.2.10 jsonfile: 4.0.0 @@ -4715,8 +6265,11 @@ packages: dev: false /fs-extra/8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} + resolution: + { + integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==, + } + engines: { node: ">=6 <7 || >=8" } dependencies: graceful-fs: 4.2.10 jsonfile: 4.0.0 @@ -4724,21 +6277,33 @@ packages: dev: false /fs.realpath/1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + 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} + 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==} + resolution: + { + integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, + } /function.prototype.name/1.1.5: - resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 @@ -4746,53 +6311,83 @@ packages: functions-have-names: 1.2.3 /functions-have-names/1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + resolution: + { + integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, + } /gensync/1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, + } + engines: { node: ">=6.9.0" } /get-caller-file/2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} + resolution: + { + integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, + } + engines: { node: 6.* || 8.* || >= 10.* } /get-func-name/2.0.0: - resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==} + resolution: + { + integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==, + } dev: false /get-intrinsic/1.1.3: - resolution: {integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==} + resolution: + { + integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==, + } dependencies: function-bind: 1.1.1 has: 1.0.3 has-symbols: 1.0.3 /get-symbol-description/1.0.0: - resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.3 /get-tsconfig/4.3.0: - resolution: {integrity: sha512-YCcF28IqSay3fqpIu5y3Krg/utCBHBeoflkZyHj/QcqI2nrLPC3ZegS9CmIo+hJb8K7aiGsuUl7PwWVjNG2HQQ==} + resolution: + { + integrity: sha512-YCcF28IqSay3fqpIu5y3Krg/utCBHBeoflkZyHj/QcqI2nrLPC3ZegS9CmIo+hJb8K7aiGsuUl7PwWVjNG2HQQ==, + } dev: true /glob-parent/5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} + 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'} + resolution: + { + integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, + } + engines: { node: ">=10.13.0" } dependencies: is-glob: 4.0.3 dev: true /glob/7.1.7: - resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} + resolution: + { + integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==, + } dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -4803,7 +6398,10 @@ packages: dev: true /glob/7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + resolution: + { + integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, + } dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -4813,8 +6411,11 @@ packages: path-is-absolute: 1.0.1 /glob/8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==, + } + engines: { node: ">=12" } dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -4824,23 +6425,35 @@ packages: dev: false /globals/11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, + } + engines: { node: ">=4" } /globals/13.19.0: - resolution: {integrity: sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==, + } + engines: { node: ">=8" } dependencies: type-fest: 0.20.2 dev: true /globalyzer/0.1.0: - resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} + resolution: + { + integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==, + } dev: true /globby/11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, + } + engines: { node: ">=10" } dependencies: array-union: 2.1.0 dir-glob: 3.0.1 @@ -4850,8 +6463,11 @@ packages: slash: 3.0.0 /globby/13.1.3: - resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: dir-glob: 3.0.1 fast-glob: 3.2.12 @@ -4861,33 +6477,48 @@ packages: dev: true /globrex/0.1.2: - resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + resolution: + { + integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==, + } dev: true /gopd/1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + resolution: + { + integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, + } dependencies: get-intrinsic: 1.1.3 dev: true /graceful-fs/4.2.10: - resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} + resolution: + { + integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==, + } /grapheme-splitter/1.0.4: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} + resolution: + { + integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==, + } /graphql-config/4.3.5_xcqthgbenw3hhig2jxkpzsllxu: - resolution: {integrity: sha512-B4jXhHL7j3llCem+ACeo48wvVYhtJxRyt5SfSnvywbRlVYyUzt5ibZV6WJU2Yii2/rcVRIGi7BHDgcAPWdWdJg==} - engines: {node: '>= 10.0.0'} + resolution: + { + integrity: sha512-B4jXhHL7j3llCem+ACeo48wvVYhtJxRyt5SfSnvywbRlVYyUzt5ibZV6WJU2Yii2/rcVRIGi7BHDgcAPWdWdJg==, + } + 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.5_graphql@16.6.0 - '@graphql-tools/json-file-loader': 7.4.6_graphql@16.6.0 - '@graphql-tools/load': 7.7.7_graphql@16.6.0 - '@graphql-tools/merge': 8.3.6_graphql@16.6.0 - '@graphql-tools/url-loader': 7.16.4_ykzowzmb7rcumunkscnbisnkom - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + "@graphql-tools/graphql-file-loader": 7.5.5_graphql@16.6.0 + "@graphql-tools/json-file-loader": 7.4.6_graphql@16.6.0 + "@graphql-tools/load": 7.7.7_graphql@16.6.0 + "@graphql-tools/merge": 8.3.6_graphql@16.6.0 + "@graphql-tools/url-loader": 7.16.4_ykzowzmb7rcumunkscnbisnkom + "@graphql-tools/utils": 8.12.0_graphql@16.6.0 cosmiconfig: 7.0.1 cosmiconfig-toml-loader: 1.0.0 cosmiconfig-typescript-loader: 4.1.1_thgmyp3ypwxicrrxhqijzwgoje @@ -4897,9 +6528,9 @@ packages: ts-node: 10.9.1_awa2wsr5thmg3i7jqycphctjfq tslib: 2.4.0 transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - '@types/node' + - "@swc/core" + - "@swc/wasm" + - "@types/node" - bufferutil - encoding - typescript @@ -4907,11 +6538,14 @@ packages: dev: true /graphql-request/5.0.0_graphql@16.6.0: - resolution: {integrity: sha512-SpVEnIo2J5k2+Zf76cUkdvIRaq5FMZvGQYnA4lUWYbc99m+fHh4CZYRRO/Ff4tCLQ613fzCm3SiDT64ubW5Gyw==} + resolution: + { + integrity: sha512-SpVEnIo2J5k2+Zf76cUkdvIRaq5FMZvGQYnA4lUWYbc99m+fHh4CZYRRO/Ff4tCLQ613fzCm3SiDT64ubW5Gyw==, + } peerDependencies: graphql: 14 - 16 dependencies: - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 + "@graphql-typed-document-node/core": 3.1.1_graphql@16.6.0 cross-fetch: 3.1.5 extract-files: 9.0.0 form-data: 3.0.1 @@ -4921,8 +6555,11 @@ packages: dev: true /graphql-tag/2.12.6_graphql@16.6.0: - resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} - engines: {node: '>=10'} + 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: @@ -4930,21 +6567,30 @@ packages: tslib: 2.4.0 /graphql-ws/5.11.2_graphql@16.6.0: - resolution: {integrity: sha512-4EiZ3/UXYcjm+xFGP544/yW1+DVI8ZpKASFbzrV5EDTFWJp0ZvLl4Dy2fSZAzz9imKp5pZMIcjB0x/H69Pv/6w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-4EiZ3/UXYcjm+xFGP544/yW1+DVI8ZpKASFbzrV5EDTFWJp0ZvLl4Dy2fSZAzz9imKp5pZMIcjB0x/H69Pv/6w==, + } + engines: { node: ">=10" } peerDependencies: - graphql: '>=0.11 <=16' + graphql: ">=0.11 <=16" dependencies: graphql: 16.6.0 dev: true /graphql/16.6.0: - resolution: {integrity: sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==} - engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} + resolution: + { + integrity: sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==, + } + engines: { node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0 } /handlebars/4.7.7: - resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==} - engines: {node: '>=0.4.7'} + resolution: + { + integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==, + } + engines: { node: ">=0.4.7" } hasBin: true dependencies: minimist: 1.2.6 @@ -4956,81 +6602,126 @@ packages: dev: false /hard-rejection/2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==, + } + engines: { node: ">=6" } dev: false /has-bigints/1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + resolution: + { + integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, + } /has-flag/3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, + } + engines: { node: ">=4" } /has-flag/4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, + } + engines: { node: ">=8" } /has-property-descriptors/1.0.0: - resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + resolution: + { + integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, + } dependencies: get-intrinsic: 1.1.3 /has-symbols/1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, + } + engines: { node: ">= 0.4" } /has-tostringtag/1.0.0: - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, + } + engines: { node: ">= 0.4" } dependencies: has-symbols: 1.0.3 /has/1.0.3: - resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} - engines: {node: '>= 0.4.0'} + resolution: + { + integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, + } + engines: { node: ">= 0.4.0" } dependencies: function-bind: 1.1.1 /he/1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + resolution: + { + integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==, + } hasBin: true dev: false /header-case/2.0.4: - resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} + resolution: + { + integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==, + } dependencies: capital-case: 1.0.4 tslib: 2.4.0 dev: true /help-me/4.2.0: - resolution: {integrity: sha512-TAOnTB8Tz5Dw8penUuzHVrKNKlCIbwwbHnXraNJxPwf8LRtE2HlM84RYuezMFcwOJmoYOCWVDyJ8TQGxn9PgxA==} + resolution: + { + integrity: sha512-TAOnTB8Tz5Dw8penUuzHVrKNKlCIbwwbHnXraNJxPwf8LRtE2HlM84RYuezMFcwOJmoYOCWVDyJ8TQGxn9PgxA==, + } dependencies: glob: 8.1.0 readable-stream: 3.6.0 dev: false /hoist-non-react-statics/3.3.2: - resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + resolution: + { + integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==, + } dependencies: react-is: 16.13.1 dev: false /hosted-git-info/2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + resolution: + { + integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==, + } dev: false /html-encoding-sniffer/3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==, + } + engines: { node: ">=12" } dependencies: whatwg-encoding: 2.0.0 dev: false /html-minifier/4.0.0: - resolution: {integrity: sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==, + } + engines: { node: ">=6" } hasBin: true dependencies: camel-case: 3.0.0 @@ -5043,10 +6734,13 @@ packages: dev: false /html-to-text/9.0.3: - resolution: {integrity: sha512-hxDF1kVCF2uw4VUJ3vr2doc91pXf2D5ngKcNviSitNkhP9OMOaJkDrFIFL6RMvko7NisWTEiqGpQ9LAxcVok1w==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-hxDF1kVCF2uw4VUJ3vr2doc91pXf2D5ngKcNviSitNkhP9OMOaJkDrFIFL6RMvko7NisWTEiqGpQ9LAxcVok1w==, + } + engines: { node: ">=14" } dependencies: - '@selderee/plugin-htmlparser2': 0.10.0 + "@selderee/plugin-htmlparser2": 0.10.0 deepmerge: 4.3.0 dom-serializer: 2.0.0 htmlparser2: 8.0.1 @@ -5054,7 +6748,10 @@ packages: dev: false /htmlparser2/4.1.0: - resolution: {integrity: sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==} + resolution: + { + integrity: sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==, + } dependencies: domelementtype: 2.3.0 domhandler: 3.3.0 @@ -5063,7 +6760,10 @@ packages: dev: false /htmlparser2/6.1.0: - resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} + resolution: + { + integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==, + } dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 @@ -5072,7 +6772,10 @@ packages: dev: false /htmlparser2/8.0.1: - resolution: {integrity: sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==} + resolution: + { + integrity: sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==, + } dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 @@ -5081,8 +6784,11 @@ packages: dev: false /http-errors/2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==, + } + engines: { node: ">= 0.8" } dependencies: depd: 2.0.0 inherits: 2.0.4 @@ -5092,18 +6798,24 @@ packages: dev: false /http-proxy-agent/5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==, + } + engines: { node: ">= 6" } dependencies: - '@tootallnate/once': 2.0.0 + "@tootallnate/once": 2.0.0 agent-base: 6.0.2 debug: 4.3.4 transitivePeerDependencies: - supports-color /https-proxy-agent/5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, + } + engines: { node: ">= 6" } dependencies: agent-base: 6.0.2 debug: 4.3.4 @@ -5111,76 +6823,121 @@ packages: - supports-color /human-id/1.0.2: - resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} + resolution: + { + integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==, + } dev: false /hyphenate-style-name/1.0.4: - resolution: {integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==} + resolution: + { + integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==, + } dev: false /iconv-lite/0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, + } + engines: { node: ">=0.10.0" } dependencies: safer-buffer: 2.1.2 /iconv-lite/0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==, + } + engines: { node: ">=0.10.0" } dependencies: safer-buffer: 2.1.2 dev: false /ieee754/1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + resolution: + { + integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, + } /ignore/5.2.0: - resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==, + } + engines: { node: ">= 4" } /immutable/3.7.6: - resolution: {integrity: sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==} - engines: {node: '>=0.8.0'} + 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'} + 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'} + 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'} + resolution: + { + integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, + } + engines: { node: ">=0.8.19" } dev: true /indent-string/4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==, + } + engines: { node: ">=8" } /inflight/1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + 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==} + resolution: + { + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, + } /ini/1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + resolution: + { + integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==, + } dev: false /inquirer/8.2.4: - resolution: {integrity: sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==, + } + engines: { node: ">=12.0.0" } dependencies: ansi-escapes: 4.3.2 chalk: 4.1.2 @@ -5200,190 +6957,292 @@ packages: dev: true /internal-slot/1.0.3: - resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==, + } + engines: { node: ">= 0.4" } dependencies: get-intrinsic: 1.1.3 has: 1.0.3 side-channel: 1.0.4 /invariant/2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + 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'} + 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-arguments/1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 dev: true /is-arrayish/0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + resolution: + { + integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, + } /is-bigint/1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + resolution: + { + integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, + } dependencies: has-bigints: 1.0.2 /is-binary-path/2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, + } + engines: { node: ">=8" } dependencies: binary-extensions: 2.2.0 /is-boolean-object/1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 /is-callable/1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, + } + engines: { node: ">= 0.4" } /is-ci/3.0.1: - resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} + resolution: + { + integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==, + } hasBin: true dependencies: ci-info: 3.8.0 dev: false /is-core-module/2.10.0: - resolution: {integrity: sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==} + resolution: + { + integrity: sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==, + } dependencies: has: 1.0.3 /is-date-object/1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, + } + engines: { node: ">= 0.4" } dependencies: has-tostringtag: 1.0.0 /is-docker/2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} + 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'} + resolution: + { + integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, + } + engines: { node: ">=0.10.0" } /is-fullwidth-code-point/3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} + 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'} + 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==} + 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'} + 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==} + resolution: + { + integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==, + } dependencies: tslib: 2.4.0 dev: true /is-map/2.0.2: - resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} + resolution: + { + integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==, + } dev: true /is-negative-zero/2.0.2: - resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, + } + engines: { node: ">= 0.4" } /is-number-object/1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, + } + engines: { node: ">= 0.4" } dependencies: has-tostringtag: 1.0.0 /is-number/7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} + resolution: + { + integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, + } + engines: { node: ">=0.12.0" } /is-path-inside/3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==, + } + engines: { node: ">=8" } dev: true /is-plain-obj/1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, + } + engines: { node: ">=0.10.0" } dev: false /is-potential-custom-element-name/1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + resolution: + { + integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==, + } dev: false /is-regex/1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 /is-relative/1.0.0: - resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==, + } + engines: { node: ">=0.10.0" } dependencies: is-unc-path: 1.0.0 dev: true /is-set/2.0.2: - resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} + resolution: + { + integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==, + } dev: true /is-shared-array-buffer/1.0.2: - resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + resolution: + { + integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, + } dependencies: call-bind: 1.0.2 /is-string/1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, + } + engines: { node: ">= 0.4" } dependencies: has-tostringtag: 1.0.0 /is-subdir/1.2.0: - resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==, + } + engines: { node: ">=4" } dependencies: better-path-resolve: 1.0.0 dev: false /is-symbol/1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, + } + engines: { node: ">= 0.4" } dependencies: has-symbols: 1.0.3 /is-typed-array/1.1.10: - resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==, + } + engines: { node: ">= 0.4" } dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.2 @@ -5393,59 +7252,92 @@ packages: dev: true /is-unc-path/1.0.0: - resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==} - engines: {node: '>=0.10.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'} + resolution: + { + integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==, + } + engines: { node: ">=10" } dev: true /is-upper-case/2.0.2: - resolution: {integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==} + resolution: + { + integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==, + } dependencies: tslib: 2.4.0 dev: true /is-weakmap/2.0.1: - resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} + resolution: + { + integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==, + } dev: true /is-weakref/1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + resolution: + { + integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, + } dependencies: call-bind: 1.0.2 /is-weakset/2.0.2: - resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} + resolution: + { + integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==, + } dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.3 dev: true /is-windows/1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==, + } + engines: { node: ">=0.10.0" } /is-wsl/2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==, + } + engines: { node: ">=8" } dependencies: is-docker: 2.2.1 dev: true /isarray/2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + resolution: + { + integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, + } dev: true /isexe/2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + resolution: + { + integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, + } /isomorphic-fetch/3.0.0: - resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==} + resolution: + { + integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==, + } dependencies: node-fetch: 2.6.7 whatwg-fetch: 3.6.2 @@ -5454,25 +7346,37 @@ packages: dev: true /isomorphic-ws/5.0.0_ws@8.11.0: - resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==} + resolution: + { + integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==, + } peerDependencies: - ws: '*' + ws: "*" dependencies: ws: 8.11.0 dev: true /jose/4.11.0: - resolution: {integrity: sha512-wLe+lJHeG8Xt6uEubS4x0LVjS/3kXXu9dGoj9BNnlhYq7Kts0Pbb2pvv5KiI0yaKH/eaiR0LUOBhOVo9ktd05A==} + resolution: + { + integrity: sha512-wLe+lJHeG8Xt6uEubS4x0LVjS/3kXXu9dGoj9BNnlhYq7Kts0Pbb2pvv5KiI0yaKH/eaiR0LUOBhOVo9ktd05A==, + } dev: false /joycon/3.1.1: - resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==, + } + engines: { node: ">=10" } dev: false /js-beautify/1.14.7: - resolution: {integrity: sha512-5SOX1KXPFKx+5f6ZrPsIPEY7NwKeQz47n3jm2i+XeHx9MoRsfQenlOP13FQhWvg8JRS0+XLO6XYUQ2GX+q+T9A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-5SOX1KXPFKx+5f6ZrPsIPEY7NwKeQz47n3jm2i+XeHx9MoRsfQenlOP13FQhWvg8JRS0+XLO6XYUQ2GX+q+T9A==, + } + engines: { node: ">=10" } hasBin: true dependencies: config-chain: 1.1.13 @@ -5482,18 +7386,30 @@ packages: dev: false /js-sdsl/4.1.5: - resolution: {integrity: sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==} + resolution: + { + integrity: sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==, + } dev: true /js-sha3/0.8.0: - resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==} + resolution: + { + integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==, + } dev: false /js-tokens/4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + resolution: + { + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, + } /js-yaml/3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + resolution: + { + integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, + } hasBin: true dependencies: argparse: 1.0.10 @@ -5501,15 +7417,21 @@ packages: dev: false /js-yaml/4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + resolution: + { + integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, + } hasBin: true dependencies: argparse: 2.0.1 dev: true /jsdom/20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==, + } + engines: { node: ">=14" } peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -5549,71 +7471,110 @@ packages: dev: false /jsesc/2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, + } + engines: { node: ">=4" } hasBin: true /json-parse-even-better-errors/2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + resolution: + { + integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, + } /json-schema-traverse/0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + resolution: + { + integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, + } dev: true /json-stable-stringify-without-jsonify/1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + resolution: + { + integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==, + } dev: true /json-stable-stringify/1.0.1: - resolution: {integrity: sha512-i/J297TW6xyj7sDFa7AmBPkQvLIxWr2kKPWI26tXydnZrzVAocNqn5DMNT1Mzk0vit1V5UkRM7C1KdVNp7Lmcg==} + 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'} + 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==} + 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'} + resolution: + { + integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==, + } + engines: { node: ">=6" } hasBin: true dev: true /json5/2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, + } + engines: { node: ">=6" } hasBin: true dev: false /jsonc-parser/3.2.0: - resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + resolution: + { + integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==, + } dev: false /jsonfile/4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + resolution: + { + integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==, + } optionalDependencies: graceful-fs: 4.2.10 dev: false /jsonify/0.0.0: - resolution: {integrity: sha512-trvBk1ki43VZptdBI5rIlG4YOzyeH/WefQt5rj1grasPn4iiZWKet8nkgc4GlsAylaztn0qZfUYOiTsASJFdNA==} + 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'} + resolution: + { + integrity: sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==, + } + engines: { node: ">=4", npm: ">=1.4.28" } dependencies: jws: 3.2.2 lodash.includes: 4.3.0 @@ -5628,78 +7589,108 @@ packages: dev: true /jss-plugin-camel-case/10.9.2: - resolution: {integrity: sha512-wgBPlL3WS0WDJ1lPJcgjux/SHnDuu7opmgQKSraKs4z8dCCyYMx9IDPFKBXQ8Q5dVYij1FFV0WdxyhuOOAXuTg==} + resolution: + { + integrity: sha512-wgBPlL3WS0WDJ1lPJcgjux/SHnDuu7opmgQKSraKs4z8dCCyYMx9IDPFKBXQ8Q5dVYij1FFV0WdxyhuOOAXuTg==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 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==} + resolution: + { + integrity: sha512-pYg0QX3bBEFtTnmeSI3l7ad1vtHU42YEEpgW7pmIh+9pkWNWb5dwS/4onSfAaI0kq+dOZHzz4dWe+8vWnanoSg==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 jss: 10.9.2 dev: false /jss-plugin-global/10.9.2: - resolution: {integrity: sha512-GcX0aE8Ef6AtlasVrafg1DItlL/tWHoC4cGir4r3gegbWwF5ZOBYhx04gurPvWHC8F873aEGqge7C17xpwmp2g==} + resolution: + { + integrity: sha512-GcX0aE8Ef6AtlasVrafg1DItlL/tWHoC4cGir4r3gegbWwF5ZOBYhx04gurPvWHC8F873aEGqge7C17xpwmp2g==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 jss: 10.9.2 dev: false /jss-plugin-nested/10.9.2: - resolution: {integrity: sha512-VgiOWIC6bvgDaAL97XCxGD0BxOKM0K0zeB/ECyNaVF6FqvdGB9KBBWRdy2STYAss4VVA7i5TbxFZN+WSX1kfQA==} + resolution: + { + integrity: sha512-VgiOWIC6bvgDaAL97XCxGD0BxOKM0K0zeB/ECyNaVF6FqvdGB9KBBWRdy2STYAss4VVA7i5TbxFZN+WSX1kfQA==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 jss: 10.9.2 tiny-warning: 1.0.3 dev: false /jss-plugin-props-sort/10.9.2: - resolution: {integrity: sha512-AP1AyUTbi2szylgr+O0OB7gkIxEGzySLITZ2GpsaoX72YMCGI2jYAc+WUhPfvUnZYiauF4zTnN4V4TGuvFjJlw==} + resolution: + { + integrity: sha512-AP1AyUTbi2szylgr+O0OB7gkIxEGzySLITZ2GpsaoX72YMCGI2jYAc+WUhPfvUnZYiauF4zTnN4V4TGuvFjJlw==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 jss: 10.9.2 dev: false /jss-plugin-rule-value-function/10.9.2: - resolution: {integrity: sha512-vf5ms8zvLFMub6swbNxvzsurHfUZ5Shy5aJB2gIpY6WNA3uLinEcxYyraQXItRHi5ivXGqYciFDRM2ZoVoRZ4Q==} + resolution: + { + integrity: sha512-vf5ms8zvLFMub6swbNxvzsurHfUZ5Shy5aJB2gIpY6WNA3uLinEcxYyraQXItRHi5ivXGqYciFDRM2ZoVoRZ4Q==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 jss: 10.9.2 tiny-warning: 1.0.3 dev: false /jss-plugin-vendor-prefixer/10.9.2: - resolution: {integrity: sha512-SxcEoH+Rttf9fEv6KkiPzLdXRmI6waOTcMkbbEFgdZLDYNIP9UKNHFy6thhbRKqv0XMQZdrEsbDyV464zE/dUA==} + resolution: + { + integrity: sha512-SxcEoH+Rttf9fEv6KkiPzLdXRmI6waOTcMkbbEFgdZLDYNIP9UKNHFy6thhbRKqv0XMQZdrEsbDyV464zE/dUA==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 css-vendor: 2.0.8 jss: 10.9.2 dev: false /jss/10.9.2: - resolution: {integrity: sha512-b8G6rWpYLR4teTUbGd4I4EsnWjg7MN0Q5bSsjKhVkJVjhQDy2KzkbD2AW3TuT0RYZVmZZHKIrXDn6kjU14qkUg==} + resolution: + { + integrity: sha512-b8G6rWpYLR4teTUbGd4I4EsnWjg7MN0Q5bSsjKhVkJVjhQDy2KzkbD2AW3TuT0RYZVmZZHKIrXDn6kjU14qkUg==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 csstype: 3.1.1 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'} + resolution: + { + integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==, + } + engines: { node: ">=4.0" } dependencies: array-includes: 3.1.5 object.assign: 4.1.4 dev: true /juice/7.0.0: - resolution: {integrity: sha512-AjKQX31KKN+uJs+zaf+GW8mBO/f/0NqSh2moTMyvwBY+4/lXIYTU8D8I2h6BAV3Xnz6GGsbalUyFqbYMe+Vh+Q==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-AjKQX31KKN+uJs+zaf+GW8mBO/f/0NqSh2moTMyvwBY+4/lXIYTU8D8I2h6BAV3Xnz6GGsbalUyFqbYMe+Vh+Q==, + } + engines: { node: ">=10.0.0" } hasBin: true dependencies: cheerio: 1.0.0-rc.10 @@ -5712,7 +7703,10 @@ packages: dev: false /jwa/1.4.1: - resolution: {integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==} + resolution: + { + integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==, + } dependencies: buffer-equal-constant-time: 1.0.1 ecdsa-sig-formatter: 1.0.11 @@ -5720,60 +7714,90 @@ packages: dev: true /jws/3.2.2: - resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==} + resolution: + { + integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==, + } dependencies: jwa: 1.4.1 safe-buffer: 5.2.1 dev: true /kind-of/6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, + } + engines: { node: ">=0.10.0" } dev: false /kleur/4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==, + } + engines: { node: ">=6" } dev: false /language-subtag-registry/0.3.22: - resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} + resolution: + { + integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==, + } dev: true /language-tags/1.0.5: - resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} + resolution: + { + integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==, + } dependencies: language-subtag-registry: 0.3.22 dev: true /leac/0.6.0: - resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==} + resolution: + { + integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==, + } dev: false /levn/0.3.0: - resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==, + } + engines: { node: ">= 0.8.0" } dependencies: prelude-ls: 1.1.2 type-check: 0.3.2 dev: false /levn/0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} + 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 /lines-and-columns/1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + resolution: + { + integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, + } /listr2/4.0.5: - resolution: {integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==, + } + engines: { node: ">=12" } peerDependencies: - enquirer: '>= 2.3.0 < 3' + enquirer: ">= 2.3.0 < 3" peerDependenciesMeta: enquirer: optional: true @@ -5789,8 +7813,11 @@ packages: dev: true /load-yaml-file/0.2.0: - resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==, + } + engines: { node: ">=6" } dependencies: graceful-fs: 4.2.10 js-yaml: 3.14.1 @@ -5799,76 +7826,124 @@ packages: dev: false /local-pkg/0.4.2: - resolution: {integrity: sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==, + } + engines: { node: ">=14" } dev: false /locate-path/5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, + } + engines: { node: ">=8" } dependencies: p-locate: 4.1.0 /locate-path/6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, + } + engines: { node: ">=10" } dependencies: p-locate: 5.0.0 /lodash-es/4.17.21: - resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + resolution: + { + integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==, + } dev: false /lodash.includes/4.3.0: - resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==} + resolution: + { + integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==, + } dev: true /lodash.isboolean/3.0.3: - resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==} + resolution: + { + integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==, + } dev: true /lodash.isinteger/4.0.4: - resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==} + resolution: + { + integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==, + } dev: true /lodash.isnumber/3.0.3: - resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==} + resolution: + { + integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==, + } dev: true /lodash.isplainobject/4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + 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==} + 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==} + resolution: + { + integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, + } dev: true /lodash.once/4.1.1: - resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + resolution: + { + integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==, + } dev: true /lodash.startcase/4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + resolution: + { + integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==, + } dev: false /lodash/4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + resolution: + { + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, + } /log-symbols/4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} + 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/4.0.0: - resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==, + } + engines: { node: ">=10" } dependencies: ansi-escapes: 4.3.2 cli-cursor: 3.1.0 @@ -5877,100 +7952,151 @@ packages: dev: true /loose-envify/1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + resolution: + { + integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, + } hasBin: true dependencies: js-tokens: 4.0.0 /loupe/2.3.6: - resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==} + resolution: + { + integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==, + } dependencies: get-func-name: 2.0.0 dev: false /lower-case-first/2.0.2: - resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==} + resolution: + { + integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==, + } dependencies: tslib: 2.4.0 dev: true /lower-case/1.1.4: - resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} + resolution: + { + integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==, + } dev: false /lower-case/2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + resolution: + { + integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, + } dependencies: tslib: 2.4.0 dev: true /lru-cache/4.1.5: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + resolution: + { + integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==, + } dependencies: pseudomap: 1.0.2 yallist: 2.1.2 dev: false /lru-cache/5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + resolution: + { + integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, + } dependencies: yallist: 3.1.1 dev: false /lru-cache/6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, + } + engines: { node: ">=10" } dependencies: yallist: 4.0.0 dev: true /lz-string/1.4.4: - resolution: {integrity: sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==} + resolution: + { + integrity: sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==, + } hasBin: true dev: true /magic-string/0.27.0: - resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==, + } + engines: { node: ">=12" } dependencies: - '@jridgewell/sourcemap-codec': 1.4.14 + "@jridgewell/sourcemap-codec": 1.4.14 dev: false /make-error/1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + resolution: + { + integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==, + } dev: true /map-cache/0.2.2: - resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==, + } + engines: { node: ">=0.10.0" } dev: true /map-obj/1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==, + } + engines: { node: ">=0.10.0" } dev: false /map-obj/4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==, + } + engines: { node: ">=8" } dev: false /match-sorter/6.3.1: - resolution: {integrity: sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==} + resolution: + { + integrity: sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==, + } dependencies: - '@babel/runtime': 7.19.0 + "@babel/runtime": 7.19.0 remove-accents: 0.4.2 dev: false /mensch/0.3.4: - resolution: {integrity: sha512-IAeFvcOnV9V0Yk+bFhYR07O3yNina9ANIN5MoXBKYJ/RLYPurd2d0yw14MDhpr9/momp0WofT1bPUh3hkzdi/g==} + resolution: + { + integrity: sha512-IAeFvcOnV9V0Yk+bFhYR07O3yNina9ANIN5MoXBKYJ/RLYPurd2d0yw14MDhpr9/momp0WofT1bPUh3hkzdi/g==, + } dev: false /meow/6.1.1: - resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==, + } + engines: { node: ">=8" } dependencies: - '@types/minimist': 1.2.2 + "@types/minimist": 1.2.2 camelcase-keys: 6.2.2 decamelize-keys: 1.1.1 hard-rejection: 2.1.0 @@ -5984,80 +8110,119 @@ packages: dev: false /merge2/1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, + } + engines: { node: ">= 8" } /meros/1.2.1_@types+node@18.11.18: - resolution: {integrity: sha512-R2f/jxYqCAGI19KhAvaxSOxALBMkaXWH2a7rOyqQw+ZmizX5bKkEYWLzdhC+U82ZVVPVp6MCXe3EkVligh+12g==} - engines: {node: '>=13'} + resolution: + { + integrity: sha512-R2f/jxYqCAGI19KhAvaxSOxALBMkaXWH2a7rOyqQw+ZmizX5bKkEYWLzdhC+U82ZVVPVp6MCXe3EkVligh+12g==, + } + engines: { node: ">=13" } peerDependencies: - '@types/node': '>=13' + "@types/node": ">=13" peerDependenciesMeta: - '@types/node': + "@types/node": optional: true dependencies: - '@types/node': 18.11.18 + "@types/node": 18.11.18 dev: true /micromatch/4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, + } + engines: { node: ">=8.6" } dependencies: braces: 3.0.2 picomatch: 2.3.1 /microseconds/0.2.0: - resolution: {integrity: sha512-n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA==} + resolution: + { + integrity: sha512-n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA==, + } dev: false /mime-db/1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, + } + engines: { node: ">= 0.6" } /mime-types/2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, + } + engines: { node: ">= 0.6" } dependencies: mime-db: 1.52.0 /mime/2.6.0: - resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==, + } + engines: { node: ">=4.0.0" } hasBin: true dev: false /mimic-fn/2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, + } + engines: { node: ">=6" } dev: true /min-indent/1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==, + } + engines: { node: ">=4" } dev: false /minimatch/3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + resolution: + { + integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, + } dependencies: brace-expansion: 1.1.11 /minimatch/4.2.1: - resolution: {integrity: sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==, + } + engines: { node: ">=10" } dependencies: brace-expansion: 1.1.11 dev: true /minimatch/5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==, + } + engines: { node: ">=10" } dependencies: brace-expansion: 2.0.1 dev: false /minimist-options/4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==, + } + engines: { node: ">= 6" } dependencies: arrify: 1.0.1 is-plain-obj: 1.1.0 @@ -6065,17 +8230,26 @@ packages: dev: false /minimist/1.2.6: - resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} + resolution: + { + integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==, + } /mixme/0.5.5: - resolution: {integrity: sha512-/6IupbRx32s7jjEwHcycXikJwFD5UujbVNuJFkeKLYje+92OvtuPniF6JhnFm5JCTDUhS+kYK3W/4BWYQYXz7w==} - engines: {node: '>= 8.0.0'} + resolution: + { + integrity: sha512-/6IupbRx32s7jjEwHcycXikJwFD5UujbVNuJFkeKLYje+92OvtuPniF6JhnFm5JCTDUhS+kYK3W/4BWYQYXz7w==, + } + engines: { node: ">= 8.0.0" } dev: false /mjml-accordion/4.13.0: - resolution: {integrity: sha512-E3yihZW5Oq2p+sWOcr8kWeRTROmiTYOGxB4IOxW/jTycdY07N3FX3e6vuh7Fv3rryHEUaydUQYto3ICVyctI7w==} + resolution: + { + integrity: sha512-E3yihZW5Oq2p+sWOcr8kWeRTROmiTYOGxB4IOxW/jTycdY07N3FX3e6vuh7Fv3rryHEUaydUQYto3ICVyctI7w==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6083,9 +8257,12 @@ packages: dev: false /mjml-body/4.13.0: - resolution: {integrity: sha512-S4HgwAuO9dEsyX9sr6WBf9/xr+H2ASVaLn22aurJm1S2Lvc1wifLPYBQgFmNdCjaesTCNtOMUDpG+Rbnavyaqg==} + resolution: + { + integrity: sha512-S4HgwAuO9dEsyX9sr6WBf9/xr+H2ASVaLn22aurJm1S2Lvc1wifLPYBQgFmNdCjaesTCNtOMUDpG+Rbnavyaqg==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6093,9 +8270,12 @@ packages: dev: false /mjml-button/4.13.0: - resolution: {integrity: sha512-3y8IAHCCxh7ESHh1aOOqobZKUgyNxOKAGQ9TlJoyaLpsKUFzkN8nmrD0KXF0ADSuzvhMZ1CdRIJuZ5mjv2TwWQ==} + resolution: + { + integrity: sha512-3y8IAHCCxh7ESHh1aOOqobZKUgyNxOKAGQ9TlJoyaLpsKUFzkN8nmrD0KXF0ADSuzvhMZ1CdRIJuZ5mjv2TwWQ==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6103,9 +8283,12 @@ packages: dev: false /mjml-carousel/4.13.0: - resolution: {integrity: sha512-ORSY5bEYlMlrWSIKI/lN0Tz3uGltWAjG8DQl2Yr3pwjwOaIzGE+kozrDf+T9xItfiIIbvKajef1dg7B7XgP0zg==} + resolution: + { + integrity: sha512-ORSY5bEYlMlrWSIKI/lN0Tz3uGltWAjG8DQl2Yr3pwjwOaIzGE+kozrDf+T9xItfiIIbvKajef1dg7B7XgP0zg==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6113,10 +8296,13 @@ packages: dev: false /mjml-cli/4.13.0: - resolution: {integrity: sha512-kAZxpH0QqlTF/CcLzELgKw1ljKRxrmWJ310CJQhbPAxHvwQ/nIb+q82U+zRJAelRPPKjnOb+hSrMRqTgk9rH3w==} + resolution: + { + integrity: sha512-kAZxpH0QqlTF/CcLzELgKw1ljKRxrmWJ310CJQhbPAxHvwQ/nIb+q82U+zRJAelRPPKjnOb+hSrMRqTgk9rH3w==, + } hasBin: true dependencies: - '@babel/runtime': 7.19.0 + "@babel/runtime": 7.19.0 chokidar: 3.5.3 glob: 7.2.3 html-minifier: 4.0.0 @@ -6132,9 +8318,12 @@ packages: dev: false /mjml-column/4.13.0: - resolution: {integrity: sha512-O8FrWKK/bCy9XpKxrKRYWNdgWNaVd4TK4RqMeVI/I70IbnYnc1uf15jnsPMxCBSbT+NyXyk8k7fn099797uwpw==} + resolution: + { + integrity: sha512-O8FrWKK/bCy9XpKxrKRYWNdgWNaVd4TK4RqMeVI/I70IbnYnc1uf15jnsPMxCBSbT+NyXyk8k7fn099797uwpw==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6142,9 +8331,12 @@ packages: dev: false /mjml-core/4.13.0: - resolution: {integrity: sha512-kU5AoVTlZaXR/EDi3ix66xpzUe+kScYus71lBH/wo/B+LZW70GHE1AYWtsog5oJp1MuTHpMFTNuBD/wePeEgWg==} + resolution: + { + integrity: sha512-kU5AoVTlZaXR/EDi3ix66xpzUe+kScYus71lBH/wo/B+LZW70GHE1AYWtsog5oJp1MuTHpMFTNuBD/wePeEgWg==, + } dependencies: - '@babel/runtime': 7.19.0 + "@babel/runtime": 7.19.0 cheerio: 1.0.0-rc.10 detect-node: 2.0.4 html-minifier: 4.0.0 @@ -6159,9 +8351,12 @@ packages: dev: false /mjml-divider/4.13.0: - resolution: {integrity: sha512-ooPCwfmxEC+wJduqObYezMp7W5UCHjL9Y1LPB5FGna2FrOejgfd6Ix3ij8Wrmycmlol7E2N4D7c5NDH5DbRCJg==} + resolution: + { + integrity: sha512-ooPCwfmxEC+wJduqObYezMp7W5UCHjL9Y1LPB5FGna2FrOejgfd6Ix3ij8Wrmycmlol7E2N4D7c5NDH5DbRCJg==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6169,9 +8364,12 @@ packages: dev: false /mjml-group/4.13.0: - resolution: {integrity: sha512-U7E8m8aaoAE/dMqjqXPjjrKcwO36B4cquAy9ASldECrIZJBcpFYO6eYf5yLXrNCUM2P0id8pgVjrUq23s00L7Q==} + resolution: + { + integrity: sha512-U7E8m8aaoAE/dMqjqXPjjrKcwO36B4cquAy9ASldECrIZJBcpFYO6eYf5yLXrNCUM2P0id8pgVjrUq23s00L7Q==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6179,9 +8377,12 @@ packages: dev: false /mjml-head-attributes/4.13.0: - resolution: {integrity: sha512-haggCafno+0lQylxJStkINCVCPMwfTpwE6yjCHeGOpQl/TkoNmjNkDr7DEEbNTZbt4Ekg070lQFn7clDy38EoA==} + resolution: + { + integrity: sha512-haggCafno+0lQylxJStkINCVCPMwfTpwE6yjCHeGOpQl/TkoNmjNkDr7DEEbNTZbt4Ekg070lQFn7clDy38EoA==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6189,9 +8390,12 @@ packages: dev: false /mjml-head-breakpoint/4.13.0: - resolution: {integrity: sha512-D2iPDeUKQK1+rYSNa2HGOvgfPxZhNyndTG0iBEb/FxdGge2hbeDCZEN0mwDYE3wWB+qSBqlCuMI+Vr4pEjZbKg==} + resolution: + { + integrity: sha512-D2iPDeUKQK1+rYSNa2HGOvgfPxZhNyndTG0iBEb/FxdGge2hbeDCZEN0mwDYE3wWB+qSBqlCuMI+Vr4pEjZbKg==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6199,9 +8403,12 @@ packages: dev: false /mjml-head-font/4.13.0: - resolution: {integrity: sha512-mYn8aWnbrEap5vX2b4662hkUv6WifcYzYn++Yi6OHrJQi55LpzcU+myAGpfQEXXrpU8vGwExMTFKsJq5n2Kaow==} + resolution: + { + integrity: sha512-mYn8aWnbrEap5vX2b4662hkUv6WifcYzYn++Yi6OHrJQi55LpzcU+myAGpfQEXXrpU8vGwExMTFKsJq5n2Kaow==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6209,9 +8416,12 @@ packages: dev: false /mjml-head-html-attributes/4.13.0: - resolution: {integrity: sha512-m30Oro297+18Zou/1qYjagtmCOWtYXeoS38OABQ5zOSzMItE3TcZI9JNcOueIIWIyFCETe8StrTAKcQ2GHwsDw==} + resolution: + { + integrity: sha512-m30Oro297+18Zou/1qYjagtmCOWtYXeoS38OABQ5zOSzMItE3TcZI9JNcOueIIWIyFCETe8StrTAKcQ2GHwsDw==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6219,9 +8429,12 @@ packages: dev: false /mjml-head-preview/4.13.0: - resolution: {integrity: sha512-v0K/NocjFCbaoF/0IMVNmiqov91HxqT07vNTEl0Bt9lKFrTKVC01m1S4K7AB78T/bEeJ/HwmNjr1+TMtVNGGow==} + resolution: + { + integrity: sha512-v0K/NocjFCbaoF/0IMVNmiqov91HxqT07vNTEl0Bt9lKFrTKVC01m1S4K7AB78T/bEeJ/HwmNjr1+TMtVNGGow==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6229,9 +8442,12 @@ packages: dev: false /mjml-head-style/4.13.0: - resolution: {integrity: sha512-tBa33GL9Atn5bAM2UwE+uxv4rI29WgX/e5lXX+5GWlsb4thmiN6rxpFTNqBqWbBNRbZk4UEZF78M7Da8xC1ZGQ==} + resolution: + { + integrity: sha512-tBa33GL9Atn5bAM2UwE+uxv4rI29WgX/e5lXX+5GWlsb4thmiN6rxpFTNqBqWbBNRbZk4UEZF78M7Da8xC1ZGQ==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6239,9 +8455,12 @@ packages: dev: false /mjml-head-title/4.13.0: - resolution: {integrity: sha512-Mq0bjuZXJlwxfVcjuYihQcigZSDTKeQaG3nORR1D0jsOH2BXU4XgUK1UOcTXn2qCBIfRoIMq7rfzYs+L0CRhdw==} + resolution: + { + integrity: sha512-Mq0bjuZXJlwxfVcjuYihQcigZSDTKeQaG3nORR1D0jsOH2BXU4XgUK1UOcTXn2qCBIfRoIMq7rfzYs+L0CRhdw==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6249,9 +8468,12 @@ packages: dev: false /mjml-head/4.13.0: - resolution: {integrity: sha512-sL2qQuoVALXBCiemu4DPo9geDr8DuUdXVJxm+4nd6k5jpLCfSDmFlNhgSsLPzsYn7VEac3/sxsjLtomQ+6/BHg==} + resolution: + { + integrity: sha512-sL2qQuoVALXBCiemu4DPo9geDr8DuUdXVJxm+4nd6k5jpLCfSDmFlNhgSsLPzsYn7VEac3/sxsjLtomQ+6/BHg==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6259,9 +8481,12 @@ packages: dev: false /mjml-hero/4.13.0: - resolution: {integrity: sha512-aWEOScdrhyjwdKBWG4XQaElRHP8LU5PtktkpMeBXa4yxrxNs25qRnDqMNkjSrnnmFKWZmQ166tfboY6RBNf0UA==} + resolution: + { + integrity: sha512-aWEOScdrhyjwdKBWG4XQaElRHP8LU5PtktkpMeBXa4yxrxNs25qRnDqMNkjSrnnmFKWZmQ166tfboY6RBNf0UA==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6269,9 +8494,12 @@ packages: dev: false /mjml-image/4.13.0: - resolution: {integrity: sha512-agMmm2wRZTIrKwrUnYFlnAbtrKYSP0R2en+Vf92HPspAwmaw3/AeOW/QxmSiMhfGf+xsEJyzVvR/nd33jbT3sg==} + resolution: + { + integrity: sha512-agMmm2wRZTIrKwrUnYFlnAbtrKYSP0R2en+Vf92HPspAwmaw3/AeOW/QxmSiMhfGf+xsEJyzVvR/nd33jbT3sg==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6279,10 +8507,13 @@ packages: dev: false /mjml-migrate/4.13.0: - resolution: {integrity: sha512-I1euHiAyNpaz+B5vH+Z4T+hg/YtI5p3PqQ3/zTLv8gi24V6BILjTaftWhH5+3R/gQkQhH0NUaWNnRmds+Mq5DQ==} + resolution: + { + integrity: sha512-I1euHiAyNpaz+B5vH+Z4T+hg/YtI5p3PqQ3/zTLv8gi24V6BILjTaftWhH5+3R/gQkQhH0NUaWNnRmds+Mq5DQ==, + } hasBin: true dependencies: - '@babel/runtime': 7.19.0 + "@babel/runtime": 7.19.0 js-beautify: 1.14.7 lodash: 4.17.21 mjml-core: 4.13.0 @@ -6293,9 +8524,12 @@ packages: dev: false /mjml-navbar/4.13.0: - resolution: {integrity: sha512-0Oqyyk+OdtXfsjswRb/7Ql1UOjN4MbqFPKoyltJqtj+11MRpF5+Wjd74Dj9H7l81GFwkIB9OaP+ZMiD+TPECgg==} + resolution: + { + integrity: sha512-0Oqyyk+OdtXfsjswRb/7Ql1UOjN4MbqFPKoyltJqtj+11MRpF5+Wjd74Dj9H7l81GFwkIB9OaP+ZMiD+TPECgg==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6303,18 +8537,24 @@ packages: dev: false /mjml-parser-xml/4.13.0: - resolution: {integrity: sha512-phljtI8DaW++q0aybR/Ykv9zCyP/jCFypxVNo26r2IQo//VYXyc7JuLZZT8N/LAI8lZcwbTVxQPBzJTmZ5IfwQ==} + resolution: + { + integrity: sha512-phljtI8DaW++q0aybR/Ykv9zCyP/jCFypxVNo26r2IQo//VYXyc7JuLZZT8N/LAI8lZcwbTVxQPBzJTmZ5IfwQ==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 detect-node: 2.0.4 htmlparser2: 4.1.0 lodash: 4.17.21 dev: false /mjml-preset-core/4.13.0: - resolution: {integrity: sha512-gxzYaKkvUrHuzT1oqjEPSDtdmgEnN99Hf5f1r2CR5aMOB1x66EA3T8ATvF1o7qrBTVV4KMVlQem3IubMSYJZRw==} + resolution: + { + integrity: sha512-gxzYaKkvUrHuzT1oqjEPSDtdmgEnN99Hf5f1r2CR5aMOB1x66EA3T8ATvF1o7qrBTVV4KMVlQem3IubMSYJZRw==, + } dependencies: - '@babel/runtime': 7.19.0 + "@babel/runtime": 7.19.0 mjml-accordion: 4.13.0 mjml-body: 4.13.0 mjml-button: 4.13.0 @@ -6345,9 +8585,12 @@ packages: dev: false /mjml-raw/4.13.0: - resolution: {integrity: sha512-JbBYxwX1a/zbqnCrlDCRNqov2xqUrMCaEdTHfqE2athj479aQXvLKFM20LilTMaClp/dR0yfvFLfFVrC5ej4FQ==} + resolution: + { + integrity: sha512-JbBYxwX1a/zbqnCrlDCRNqov2xqUrMCaEdTHfqE2athj479aQXvLKFM20LilTMaClp/dR0yfvFLfFVrC5ej4FQ==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6355,9 +8598,12 @@ packages: dev: false /mjml-section/4.13.0: - resolution: {integrity: sha512-BLcqlhavtRakKtzDQPLv6Ae4Jt4imYWq/P0jo+Sjk7tP4QifgVA2KEQOirPK5ZUqw/lvK7Afhcths5rXZ2ItnQ==} + resolution: + { + integrity: sha512-BLcqlhavtRakKtzDQPLv6Ae4Jt4imYWq/P0jo+Sjk7tP4QifgVA2KEQOirPK5ZUqw/lvK7Afhcths5rXZ2ItnQ==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6365,9 +8611,12 @@ packages: dev: false /mjml-social/4.13.0: - resolution: {integrity: sha512-zL2a7Wwsk8OXF0Bqu+1B3La1UPwdTMcEXptO8zdh2V5LL6Xb7Gfyvx6w0CmmBtG5IjyCtqaKy5wtrcpG9Hvjfg==} + resolution: + { + integrity: sha512-zL2a7Wwsk8OXF0Bqu+1B3La1UPwdTMcEXptO8zdh2V5LL6Xb7Gfyvx6w0CmmBtG5IjyCtqaKy5wtrcpG9Hvjfg==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6375,9 +8624,12 @@ packages: dev: false /mjml-spacer/4.13.0: - resolution: {integrity: sha512-Acw4QJ0MJ38W4IewXuMX7hLaW1BZaln+gEEuTfrv0xwPdTxX1ILqz4r+s9mYMxYkIDLWMCjBvXyQK6aWlid13A==} + resolution: + { + integrity: sha512-Acw4QJ0MJ38W4IewXuMX7hLaW1BZaln+gEEuTfrv0xwPdTxX1ILqz4r+s9mYMxYkIDLWMCjBvXyQK6aWlid13A==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6385,9 +8637,12 @@ packages: dev: false /mjml-table/4.13.0: - resolution: {integrity: sha512-UAWPVMaGReQhf776DFdiwdcJTIHTek3zzQ1pb+E7VlypEYgIpFvdUJ39UIiiflhqtdBATmHwKBOtePwU0MzFMg==} + resolution: + { + integrity: sha512-UAWPVMaGReQhf776DFdiwdcJTIHTek3zzQ1pb+E7VlypEYgIpFvdUJ39UIiiflhqtdBATmHwKBOtePwU0MzFMg==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6395,9 +8650,12 @@ packages: dev: false /mjml-text/4.13.0: - resolution: {integrity: sha512-uDuraaQFdu+6xfuigCimbeznnOnJfwRdcCL1lTBTusTuEvW/5Va6m2D3mnMeEpl+bp4+cxesXIz9st6A9pcg5A==} + resolution: + { + integrity: sha512-uDuraaQFdu+6xfuigCimbeznnOnJfwRdcCL1lTBTusTuEvW/5Va6m2D3mnMeEpl+bp4+cxesXIz9st6A9pcg5A==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 transitivePeerDependencies: @@ -6405,15 +8663,21 @@ packages: dev: false /mjml-validator/4.13.0: - resolution: {integrity: sha512-uURYfyQYtHJ6Qz/1A7/+E9ezfcoISoLZhYK3olsxKRViwaA2Mm8gy/J3yggZXnsUXWUns7Qymycm5LglLEIiQg==} + resolution: + { + integrity: sha512-uURYfyQYtHJ6Qz/1A7/+E9ezfcoISoLZhYK3olsxKRViwaA2Mm8gy/J3yggZXnsUXWUns7Qymycm5LglLEIiQg==, + } dependencies: - '@babel/runtime': 7.19.0 + "@babel/runtime": 7.19.0 dev: false /mjml-wrapper/4.13.0: - resolution: {integrity: sha512-p/44JvHg04rAFR7QDImg8nZucEokIjFH6KJMHxsO0frJtLZ+IuakctzlZAADHsqiR52BwocDsXSa+o9SE2l6Ng==} + resolution: + { + integrity: sha512-p/44JvHg04rAFR7QDImg8nZucEokIjFH6KJMHxsO0frJtLZ+IuakctzlZAADHsqiR52BwocDsXSa+o9SE2l6Ng==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 lodash: 4.17.21 mjml-core: 4.13.0 mjml-section: 4.13.0 @@ -6422,10 +8686,13 @@ packages: dev: false /mjml/4.13.0: - resolution: {integrity: sha512-OnFKESouLshz8DPFSb6M/dE8GkhiJnoy6LAam5TiLA1anAj24yQ2ZH388LtQoEkvTisqwiTmc9ejDh5ctnFaJQ==} + resolution: + { + integrity: sha512-OnFKESouLshz8DPFSb6M/dE8GkhiJnoy6LAam5TiLA1anAj24yQ2ZH388LtQoEkvTisqwiTmc9ejDh5ctnFaJQ==, + } hasBin: true dependencies: - '@babel/runtime': 7.19.0 + "@babel/runtime": 7.19.0 mjml-cli: 4.13.0 mjml-core: 4.13.0 mjml-migrate: 4.13.0 @@ -6436,13 +8703,19 @@ packages: dev: false /mkdirp/1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==, + } + engines: { node: ">=10" } hasBin: true dev: true /mlly/1.1.0: - resolution: {integrity: sha512-cwzBrBfwGC1gYJyfcy8TcZU1f+dbH/T+TuOhtYP2wLv/Fb51/uV7HJQfBPtEupZ2ORLRU1EKFS/QfS3eo9+kBQ==} + resolution: + { + integrity: sha512-cwzBrBfwGC1gYJyfcy8TcZU1f+dbH/T+TuOhtYP2wLv/Fb51/uV7HJQfBPtEupZ2ORLRU1EKFS/QfS3eo9+kBQ==, + } dependencies: acorn: 8.8.1 pathe: 1.0.0 @@ -6451,44 +8724,71 @@ packages: dev: false /ms/2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + resolution: + { + integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, + } dev: true /ms/2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + resolution: + { + integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, + } /ms/2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + resolution: + { + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, + } dev: true /mute-stream/0.0.8: - resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + resolution: + { + integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==, + } dev: true /nano-time/1.0.0: - resolution: {integrity: sha512-flnngywOoQ0lLQOTRNexn2gGSNuM9bKj9RZAWSzhQ+UJYaAFG9bac4DW9VHjUAzrOaIcajHybCTHe/bkvozQqA==} + resolution: + { + integrity: sha512-flnngywOoQ0lLQOTRNexn2gGSNuM9bKj9RZAWSzhQ+UJYaAFG9bac4DW9VHjUAzrOaIcajHybCTHe/bkvozQqA==, + } dependencies: big-integer: 1.6.51 dev: false /nanoid/3.3.4: - resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + resolution: + { + integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==, + } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true dev: false /natural-compare/1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + resolution: + { + integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, + } dev: true /neo-async/2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + resolution: + { + integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, + } dev: false /next-urql/4.0.3_react@18.2.0+urql@3.0.3: - resolution: {integrity: sha512-pesvwu1ZuGzMla8tPMo0V0yiV3ObDF4dbZyZLB2rZoORy+ebdWtClU/pfz1XDrPEgzyfGC3tqvbR5gH7Kt59XA==} + resolution: + { + integrity: sha512-pesvwu1ZuGzMla8tPMo0V0yiV3ObDF4dbZyZLB2rZoORy+ebdWtClU/pfz1XDrPEgzyfGC3tqvbR5gH7Kt59XA==, + } peerDependencies: - react: '>=16.8.0' + react: ">=16.8.0" urql: ^3.0.0 dependencies: react: 18.2.0 @@ -6497,18 +8797,21 @@ packages: dev: false /next/13.2.1_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-qhgJlDtG0xidNViJUPeQHLGJJoT4zDj/El7fP3D3OzpxJDUfxsm16cK4WTMyvSX1ciIfAq05u+0HqFAa+VJ+Hg==} - engines: {node: '>=14.6.0'} + resolution: + { + integrity: sha512-qhgJlDtG0xidNViJUPeQHLGJJoT4zDj/El7fP3D3OzpxJDUfxsm16cK4WTMyvSX1ciIfAq05u+0HqFAa+VJ+Hg==, + } + engines: { node: ">=14.6.0" } hasBin: true peerDependencies: - '@opentelemetry/api': ^1.4.0 - fibers: '>= 3.1.0' + "@opentelemetry/api": ^1.4.0 + fibers: ">= 3.1.0" node-sass: ^6.0.0 || ^7.0.0 react: ^18.2.0 react-dom: ^18.2.0 sass: ^1.3.0 peerDependenciesMeta: - '@opentelemetry/api': + "@opentelemetry/api": optional: true fibers: optional: true @@ -6517,53 +8820,65 @@ packages: sass: optional: true dependencies: - '@next/env': 13.2.1 - '@swc/helpers': 0.4.14 + "@next/env": 13.2.1 + "@swc/helpers": 0.4.14 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.1.1_react@18.2.0 optionalDependencies: - '@next/swc-android-arm-eabi': 13.2.1 - '@next/swc-android-arm64': 13.2.1 - '@next/swc-darwin-arm64': 13.2.1 - '@next/swc-darwin-x64': 13.2.1 - '@next/swc-freebsd-x64': 13.2.1 - '@next/swc-linux-arm-gnueabihf': 13.2.1 - '@next/swc-linux-arm64-gnu': 13.2.1 - '@next/swc-linux-arm64-musl': 13.2.1 - '@next/swc-linux-x64-gnu': 13.2.1 - '@next/swc-linux-x64-musl': 13.2.1 - '@next/swc-win32-arm64-msvc': 13.2.1 - '@next/swc-win32-ia32-msvc': 13.2.1 - '@next/swc-win32-x64-msvc': 13.2.1 + "@next/swc-android-arm-eabi": 13.2.1 + "@next/swc-android-arm64": 13.2.1 + "@next/swc-darwin-arm64": 13.2.1 + "@next/swc-darwin-x64": 13.2.1 + "@next/swc-freebsd-x64": 13.2.1 + "@next/swc-linux-arm-gnueabihf": 13.2.1 + "@next/swc-linux-arm64-gnu": 13.2.1 + "@next/swc-linux-arm64-musl": 13.2.1 + "@next/swc-linux-x64-gnu": 13.2.1 + "@next/swc-linux-x64-musl": 13.2.1 + "@next/swc-win32-arm64-msvc": 13.2.1 + "@next/swc-win32-ia32-msvc": 13.2.1 + "@next/swc-win32-x64-msvc": 13.2.1 transitivePeerDependencies: - - '@babel/core' + - "@babel/core" - babel-plugin-macros dev: false /no-case/2.3.2: - resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==} + resolution: + { + integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==, + } dependencies: lower-case: 1.1.4 dev: false /no-case/3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + 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'} + resolution: + { + integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==, + } + engines: { node: ">=10.5.0" } dev: true /node-fetch/2.6.7: - resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} - engines: {node: 4.x || >=6.0.0} + resolution: + { + integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==, + } + engines: { node: 4.x || >=6.0.0 } peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: @@ -6573,27 +8888,42 @@ packages: whatwg-url: 5.0.0 /node-int64/0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + resolution: + { + integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, + } dev: true /node-releases/2.0.6: - resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} + resolution: + { + integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==, + } /nodemailer/6.9.1: - resolution: {integrity: sha512-qHw7dOiU5UKNnQpXktdgQ1d3OFgRAekuvbJLcdG5dnEo/GtcTHRYM7+UfJARdOFU9WUQO8OiIamgWPmiSFHYAA==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-qHw7dOiU5UKNnQpXktdgQ1d3OFgRAekuvbJLcdG5dnEo/GtcTHRYM7+UfJARdOFU9WUQO8OiIamgWPmiSFHYAA==, + } + engines: { node: ">=6.0.0" } dev: false /nopt/6.0.0: - resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + resolution: + { + integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==, + } + engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } hasBin: true dependencies: abbrev: 1.1.1 dev: false /normalize-package-data/2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + resolution: + { + integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==, + } dependencies: hosted-git-info: 2.8.9 resolve: 1.22.1 @@ -6602,52 +8932,82 @@ packages: dev: false /normalize-path/2.1.1: - resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} - engines: {node: '>=0.10.0'} + 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'} + resolution: + { + integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, + } + engines: { node: ">=0.10.0" } /nth-check/2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + resolution: + { + integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==, + } dependencies: boolbase: 1.0.0 dev: false /nullthrows/1.1.1: - resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} + resolution: + { + integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==, + } dev: true /nwsapi/2.2.2: - resolution: {integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==} + resolution: + { + integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==, + } dev: false /object-assign/4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, + } + engines: { node: ">=0.10.0" } /object-inspect/1.12.2: - resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} + resolution: + { + integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==, + } /object-is/1.1.5: - resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 dev: true /object-keys/1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, + } + engines: { node: ">= 0.4" } /object.assign/4.1.4: - resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 @@ -6655,8 +9015,11 @@ packages: object-keys: 1.1.1 /object.entries/1.1.5: - resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 @@ -6664,8 +9027,11 @@ packages: dev: true /object.fromentries/2.0.5: - resolution: {integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 @@ -6673,15 +9039,21 @@ packages: dev: true /object.hasown/1.1.1: - resolution: {integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==} + resolution: + { + integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==, + } dependencies: define-properties: 1.1.4 es-abstract: 1.20.3 dev: true /object.values/1.1.5: - resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 @@ -6689,28 +9061,43 @@ packages: dev: true /oblivious-set/1.0.0: - resolution: {integrity: sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw==} + resolution: + { + integrity: sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw==, + } dev: false /on-exit-leak-free/2.1.0: - resolution: {integrity: sha512-VuCaZZAjReZ3vUwgOB8LxAosIurDiAW0s13rI1YwmaP++jvcxP77AWoQvenZebpCA2m8WC1/EosPYPMjnRAp/w==} + resolution: + { + integrity: sha512-VuCaZZAjReZ3vUwgOB8LxAosIurDiAW0s13rI1YwmaP++jvcxP77AWoQvenZebpCA2m8WC1/EosPYPMjnRAp/w==, + } dev: false /once/1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + resolution: + { + integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, + } dependencies: wrappy: 1.0.2 /onetime/5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} + 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'} + resolution: + { + integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==, + } + engines: { node: ">=12" } dependencies: define-lazy-prop: 2.0.0 is-docker: 2.2.1 @@ -6718,8 +9105,11 @@ packages: dev: true /optionator/0.8.3: - resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==, + } + engines: { node: ">= 0.8.0" } dependencies: deep-is: 0.1.4 fast-levenshtein: 2.0.6 @@ -6730,8 +9120,11 @@ packages: dev: false /optionator/0.9.1: - resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==, + } + engines: { node: ">= 0.8.0" } dependencies: deep-is: 0.1.4 fast-levenshtein: 2.0.6 @@ -6742,8 +9135,11 @@ packages: dev: true /ora/5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==, + } + engines: { node: ">=10" } dependencies: bl: 4.1.0 chalk: 4.1.2 @@ -6757,83 +9153,125 @@ packages: dev: true /os-tmpdir/1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==, + } + engines: { node: ">=0.10.0" } /outdent/0.5.0: - resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} + resolution: + { + integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==, + } dev: false /p-filter/2.1.0: - resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==, + } + engines: { node: ">=8" } dependencies: p-map: 2.1.0 dev: false /p-limit/2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, + } + engines: { node: ">=6" } dependencies: p-try: 2.2.0 /p-limit/3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, + } + engines: { node: ">=10" } dependencies: yocto-queue: 0.1.0 /p-locate/4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, + } + engines: { node: ">=8" } dependencies: p-limit: 2.3.0 /p-locate/5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, + } + engines: { node: ">=10" } dependencies: p-limit: 3.1.0 /p-map/2.1.0: - resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==, + } + engines: { node: ">=6" } dev: false /p-map/4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==, + } + engines: { node: ">=10" } dependencies: aggregate-error: 3.1.0 dev: true /p-try/2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, + } + engines: { node: ">=6" } /param-case/2.1.1: - resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==} + resolution: + { + integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==, + } dependencies: no-case: 2.3.2 dev: false /param-case/3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + 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'} + 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'} + resolution: + { + integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==, + } + engines: { node: ">=0.8" } dependencies: is-absolute: 1.0.0 map-cache: 0.2.2 @@ -6841,120 +9279,189 @@ packages: dev: true /parse-json/5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, + } + engines: { node: ">=8" } dependencies: - '@babel/code-frame': 7.18.6 + "@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 /parse5-htmlparser2-tree-adapter/6.0.1: - resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==} + resolution: + { + integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==, + } dependencies: parse5: 6.0.1 dev: false /parse5/6.0.1: - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + resolution: + { + integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==, + } dev: false /parse5/7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + resolution: + { + integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==, + } dependencies: entities: 4.4.0 dev: false /parseley/0.11.0: - resolution: {integrity: sha512-VfcwXlBWgTF+unPcr7yu3HSSA6QUdDaDnrHcytVfj5Z8azAyKBDrYnSIfeSxlrEayndNcLmrXzg+Vxbo6DWRXQ==} + resolution: + { + integrity: sha512-VfcwXlBWgTF+unPcr7yu3HSSA6QUdDaDnrHcytVfj5Z8azAyKBDrYnSIfeSxlrEayndNcLmrXzg+Vxbo6DWRXQ==, + } dependencies: leac: 0.6.0 peberminta: 0.8.0 dev: false /pascal-case/3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + 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==} + resolution: + { + integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==, + } dependencies: dot-case: 3.0.4 tslib: 2.4.0 dev: true /path-exists/4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, + } + engines: { node: ">=8" } /path-is-absolute/1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, + } + engines: { node: ">=0.10.0" } /path-key/3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, + } + engines: { node: ">=8" } dev: true /path-parse/1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + resolution: + { + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, + } /path-root-regex/0.1.2: - resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} - engines: {node: '>=0.10.0'} + 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'} + 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'} + resolution: + { + integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, + } + engines: { node: ">=8" } /pathe/0.2.0: - resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==} + resolution: + { + integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==, + } dev: false /pathe/1.0.0: - resolution: {integrity: sha512-nPdMG0Pd09HuSsr7QOKUXO2Jr9eqaDiZvDwdyIhNG5SHYujkQHYKDfGQkulBxvbDHz8oHLsTgKN86LSwYzSHAg==} + resolution: + { + integrity: sha512-nPdMG0Pd09HuSsr7QOKUXO2Jr9eqaDiZvDwdyIhNG5SHYujkQHYKDfGQkulBxvbDHz8oHLsTgKN86LSwYzSHAg==, + } dev: false /pathval/1.1.1: - resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} + resolution: + { + integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==, + } dev: false /peberminta/0.8.0: - resolution: {integrity: sha512-YYEs+eauIjDH5nUEGi18EohWE0nV2QbGTqmxQcqgZ/0g+laPCQmuIqq7EBLVi9uim9zMgfJv0QBZEnQ3uHw/Tw==} + resolution: + { + integrity: sha512-YYEs+eauIjDH5nUEGi18EohWE0nV2QbGTqmxQcqgZ/0g+laPCQmuIqq7EBLVi9uim9zMgfJv0QBZEnQ3uHw/Tw==, + } dev: false /picocolors/1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + resolution: + { + integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, + } /picomatch/2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, + } + engines: { node: ">=8.6" } /pify/4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, + } + engines: { node: ">=6" } dev: false /pino-abstract-transport/1.0.0: - resolution: {integrity: sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==} + resolution: + { + integrity: sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==, + } dependencies: readable-stream: 4.3.0 split2: 4.1.0 dev: false /pino-pretty/9.1.1: - resolution: {integrity: sha512-iJrnjgR4FWQIXZkUF48oNgoRI9BpyMhaEmihonHeCnZ6F50ZHAS4YGfGBT/ZVNsPmd+hzkIPGzjKdY08+/yAXw==} + resolution: + { + integrity: sha512-iJrnjgR4FWQIXZkUF48oNgoRI9BpyMhaEmihonHeCnZ6F50ZHAS4YGfGBT/ZVNsPmd+hzkIPGzjKdY08+/yAXw==, + } hasBin: true dependencies: colorette: 2.0.19 @@ -6974,11 +9481,17 @@ packages: dev: false /pino-std-serializers/6.1.0: - resolution: {integrity: sha512-KO0m2f1HkrPe9S0ldjx7za9BJjeHqBku5Ch8JyxETxT8dEFGz1PwgrHaOQupVYitpzbFSYm7nnljxD8dik2c+g==} + resolution: + { + integrity: sha512-KO0m2f1HkrPe9S0ldjx7za9BJjeHqBku5Ch8JyxETxT8dEFGz1PwgrHaOQupVYitpzbFSYm7nnljxD8dik2c+g==, + } dev: false /pino/8.8.0: - resolution: {integrity: sha512-cF8iGYeu2ODg2gIwgAHcPrtR63ILJz3f7gkogaHC/TXVVXxZgInmNYiIpDYEwgEkxZti2Se6P2W2DxlBIZe6eQ==} + resolution: + { + integrity: sha512-cF8iGYeu2ODg2gIwgAHcPrtR63ILJz3f7gkogaHC/TXVVXxZgInmNYiIpDYEwgEkxZti2Se6P2W2DxlBIZe6eQ==, + } hasBin: true dependencies: atomic-sleep: 1.0.0 @@ -6995,14 +9508,20 @@ packages: dev: false /pkg-dir/4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, + } + engines: { node: ">=8" } dependencies: find-up: 4.1.0 dev: false /pkg-types/1.0.1: - resolution: {integrity: sha512-jHv9HB+Ho7dj6ItwppRDDl0iZRYBD0jsakHXtFgoLr+cHSF6xC+QL54sJmWxyGxOLYSHm0afhXhXcQDQqH9z8g==} + resolution: + { + integrity: sha512-jHv9HB+Ho7dj6ItwppRDDl0iZRYBD0jsakHXtFgoLr+cHSF6xC+QL54sJmWxyGxOLYSHm0afhXhXcQDQqH9z8g==, + } dependencies: jsonc-parser: 3.2.0 mlly: 1.1.0 @@ -7010,12 +9529,18 @@ packages: dev: false /popper.js/1.16.1-lts: - resolution: {integrity: sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==} + resolution: + { + integrity: sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==, + } dev: false /postcss/8.4.14: - resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==, + } + engines: { node: ^10 || ^12 || >=14 } dependencies: nanoid: 3.3.4 picocolors: 1.0.0 @@ -7023,8 +9548,11 @@ packages: dev: false /postcss/8.4.20: - resolution: {integrity: sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==, + } + engines: { node: ^10 || ^12 || >=14 } dependencies: nanoid: 3.3.4 picocolors: 1.0.0 @@ -7032,8 +9560,11 @@ packages: dev: false /preferred-pm/3.0.3: - resolution: {integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==, + } + engines: { node: ">=10" } dependencies: find-up: 5.0.0 find-yarn-workspace-root2: 1.2.16 @@ -7042,23 +9573,35 @@ packages: dev: false /prelude-ls/1.1.2: - resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==, + } + engines: { node: ">= 0.8.0" } dev: false /prelude-ls/1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==, + } + engines: { node: ">= 0.8.0" } dev: true /prettier/2.8.2: - resolution: {integrity: sha512-BtRV9BcncDyI2tsuS19zzhzoxD8Dh8LiCx7j7tHzrkz8GFXAexeWFdi22mjE1d16dftH2qNaytVxqiRTGlMfpw==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-BtRV9BcncDyI2tsuS19zzhzoxD8Dh8LiCx7j7tHzrkz8GFXAexeWFdi22mjE1d16dftH2qNaytVxqiRTGlMfpw==, + } + engines: { node: ">=10.13.0" } hasBin: true /pretty-format/27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } dependencies: ansi-regex: 5.0.1 ansi-styles: 5.2.0 @@ -7066,80 +9609,128 @@ packages: dev: true /process-warning/2.1.0: - resolution: {integrity: sha512-9C20RLxrZU/rFnxWncDkuF6O999NdIf3E1ws4B0ZeY3sRVPzWBMsYDE2lxjxhiXxg464cQTgKUGm8/i6y2YGXg==} + resolution: + { + integrity: sha512-9C20RLxrZU/rFnxWncDkuF6O999NdIf3E1ws4B0ZeY3sRVPzWBMsYDE2lxjxhiXxg464cQTgKUGm8/i6y2YGXg==, + } dev: false /process/0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: '>= 0.6.0'} + resolution: + { + integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==, + } + engines: { node: ">= 0.6.0" } dev: false /promise/7.3.1: - resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} + 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==} + resolution: + { + integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, + } dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 /proto-list/1.2.4: - resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} + resolution: + { + integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==, + } dev: false /pseudomap/1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + resolution: + { + integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==, + } dev: false /psl/1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + resolution: + { + integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==, + } dev: false /pump/3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + resolution: + { + integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==, + } dependencies: end-of-stream: 1.4.4 once: 1.4.0 dev: false /punycode/2.1.1: - resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==, + } + engines: { node: ">=6" } /pvtsutils/1.3.2: - resolution: {integrity: sha512-+Ipe2iNUyrZz+8K/2IOo+kKikdtfhRKzNpQbruF2URmqPtoqAs8g3xS7TJvFF2GcPXjh7DkqMnpVveRFq4PgEQ==} + 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'} + resolution: + { + integrity: sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==, + } + engines: { node: ">=6.0.0" } dev: true /querystringify/2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + resolution: + { + integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==, + } dev: false /queue-microtask/1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + resolution: + { + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, + } /quick-format-unescaped/4.0.4: - resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} + resolution: + { + integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==, + } dev: false /quick-lru/4.0.1: - resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==, + } + engines: { node: ">=8" } dev: false /raw-body/2.5.1: - resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==, + } + engines: { node: ">= 0.8" } dependencies: bytes: 3.1.2 http-errors: 2.0.0 @@ -7148,7 +9739,10 @@ packages: dev: false /react-dom/18.2.0_react@18.2.0: - resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} + resolution: + { + integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, + } peerDependencies: react: ^18.2.0 dependencies: @@ -7157,17 +9751,23 @@ packages: scheduler: 0.23.0 /react-error-boundary/3.1.4_react@18.2.0: - resolution: {integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==} - engines: {node: '>=10', npm: '>=6'} + resolution: + { + integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==, + } + engines: { node: ">=10", npm: ">=6" } peerDependencies: - react: '>=16.13.1' + react: ">=16.13.1" dependencies: - '@babel/runtime': 7.19.0 + "@babel/runtime": 7.19.0 react: 18.2.0 dev: true /react-from-dom/0.6.2_react@18.2.0: - resolution: {integrity: sha512-qvWWTL/4xw4k/Dywd41RBpLQUSq97csuv15qrxN+izNeLYlD9wn5W8LspbfYe5CWbaSdkZ72BsaYBPQf2x4VbQ==} + resolution: + { + integrity: sha512-qvWWTL/4xw4k/Dywd41RBpLQUSq97csuv15qrxN+izNeLYlD9wn5W8LspbfYe5CWbaSdkZ72BsaYBPQf2x4VbQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -7175,8 +9775,11 @@ packages: dev: false /react-hook-form/7.43.0_react@18.2.0: - resolution: {integrity: sha512-/rVEz7T0gLdSFwPqutJ1kn2e0sQNyb9ci/hmwEYr2YG0KF/LSuRLvNrf9QWJM+gj88CjDpDW5Bh/1AD7B2+z9Q==} - engines: {node: '>=12.22.0'} + resolution: + { + integrity: sha512-/rVEz7T0gLdSFwPqutJ1kn2e0sQNyb9ci/hmwEYr2YG0KF/LSuRLvNrf9QWJM+gj88CjDpDW5Bh/1AD7B2+z9Q==, + } + engines: { node: ">=12.22.0" } peerDependencies: react: ^16.8.0 || ^17 || ^18 dependencies: @@ -7184,7 +9787,10 @@ packages: dev: false /react-inlinesvg/3.0.1_react@18.2.0: - resolution: {integrity: sha512-cBfoyfseNI2PkDA7ZKIlDoHq0eMfpoC3DhKBQNC+/X1M4ZQB+aXW+YiNPUDDDKXUsGDUIZWWiZWNFeauDIVdoA==} + resolution: + { + integrity: sha512-cBfoyfseNI2PkDA7ZKIlDoHq0eMfpoC3DhKBQNC+/X1M4ZQB+aXW+YiNPUDDDKXUsGDUIZWWiZWNFeauDIVdoA==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -7194,28 +9800,40 @@ packages: dev: false /react-is/16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + resolution: + { + integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==, + } /react-is/17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + resolution: + { + integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==, + } /react-is/18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + resolution: + { + integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==, + } dev: false /react-query/3.39.3_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-nLfLz7GiohKTJDuT4us4X3h/8unOh+00MLb2yJoGTPjxKs2bc1iDhkNx2bd5MKklXnOD3NrVZ+J2UXujA5In4g==} + resolution: + { + integrity: sha512-nLfLz7GiohKTJDuT4us4X3h/8unOh+00MLb2yJoGTPjxKs2bc1iDhkNx2bd5MKklXnOD3NrVZ+J2UXujA5In4g==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: '*' - react-native: '*' + react-dom: "*" + react-native: "*" peerDependenciesMeta: react-dom: optional: true react-native: optional: true dependencies: - '@babel/runtime': 7.19.0 + "@babel/runtime": 7.19.0 broadcast-channel: 3.7.0 match-sorter: 6.3.1 react: 18.2.0 @@ -7223,12 +9841,18 @@ packages: dev: false /react-refresh/0.14.0: - resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==, + } + engines: { node: ">=0.10.0" } dev: false /react-ssr-prepass/1.5.0_react@18.2.0: - resolution: {integrity: sha512-yFNHrlVEReVYKsLI5lF05tZoHveA5pGzjFbFJY/3pOqqjGOmMmqx83N4hIjN2n6E1AOa+eQEUxs3CgRnPmT0RQ==} + resolution: + { + integrity: sha512-yFNHrlVEReVYKsLI5lF05tZoHveA5pGzjFbFJY/3pOqqjGOmMmqx83N4hIjN2n6E1AOa+eQEUxs3CgRnPmT0RQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -7236,12 +9860,15 @@ packages: dev: false /react-transition-group/4.4.5_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} + resolution: + { + integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==, + } peerDependencies: - react: '>=16.6.0' - react-dom: '>=16.6.0' + react: ">=16.6.0" + react-dom: ">=16.6.0" dependencies: - '@babel/runtime': 7.19.0 + "@babel/runtime": 7.19.0 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -7250,14 +9877,20 @@ packages: dev: false /react/18.2.0: - resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, + } + engines: { node: ">=0.10.0" } dependencies: loose-envify: 1.4.0 /read-pkg-up/7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==, + } + engines: { node: ">=8" } dependencies: find-up: 4.1.0 read-pkg: 5.2.0 @@ -7265,18 +9898,24 @@ packages: dev: false /read-pkg/5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==, + } + engines: { node: ">=8" } dependencies: - '@types/normalize-package-data': 2.4.1 + "@types/normalize-package-data": 2.4.1 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 dev: false /read-yaml-file/1.1.0: - resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==, + } + engines: { node: ">=6" } dependencies: graceful-fs: 4.2.10 js-yaml: 3.14.1 @@ -7285,16 +9924,22 @@ packages: dev: false /readable-stream/3.6.0: - resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==} - engines: {node: '>= 6'} + 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 /readable-stream/4.3.0: - resolution: {integrity: sha512-MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: abort-controller: 3.0.0 buffer: 6.0.3 @@ -7303,52 +9948,79 @@ packages: dev: false /readdirp/3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + resolution: + { + integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, + } + engines: { node: ">=8.10.0" } dependencies: picomatch: 2.3.1 /real-require/0.2.0: - resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} - engines: {node: '>= 12.13.0'} + resolution: + { + integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==, + } + engines: { node: ">= 12.13.0" } dev: false /redent/3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==, + } + engines: { node: ">=8" } dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 dev: false /regenerator-runtime/0.13.11: - resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + resolution: + { + integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==, + } /regenerator-runtime/0.13.9: - resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} + 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'} + 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 /regexpp/3.2.0: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==, + } + engines: { node: ">=8" } dev: true /relateurl/0.2.7: - resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==, + } + engines: { node: ">= 0.10" } dev: false /relay-runtime/12.0.0: - resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==} + resolution: + { + integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 fbjs: 3.0.4 invariant: 2.2.4 transitivePeerDependencies: @@ -7356,43 +10028,73 @@ packages: dev: true /remedial/1.0.8: - resolution: {integrity: sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==} + resolution: + { + integrity: sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==, + } dev: true /remove-accents/0.4.2: - resolution: {integrity: sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==} + resolution: + { + integrity: sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==, + } dev: false /remove-trailing-separator/1.1.0: - resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} + resolution: + { + integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==, + } dev: true /remove-trailing-spaces/1.0.8: - resolution: {integrity: sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA==} + 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'} + resolution: + { + integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, + } + engines: { node: ">=0.10.0" } /require-main-filename/2.0.0: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + resolution: + { + integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==, + } /requires-port/1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + resolution: + { + integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==, + } dev: false /resolve-from/4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} + 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'} + resolution: + { + integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, + } + engines: { node: ">=8" } /resolve/1.22.1: - resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} + resolution: + { + integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==, + } hasBin: true dependencies: is-core-module: 2.10.0 @@ -7400,7 +10102,10 @@ packages: supports-preserve-symlinks-flag: 1.0.0 /resolve/2.0.0-next.4: - resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} + resolution: + { + integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==, + } hasBin: true dependencies: is-core-module: 2.10.0 @@ -7409,123 +10114,192 @@ packages: dev: true /restore-cursor/3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} + 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==} + resolution: + { + integrity: sha512-I6V1G2JkJ2JFIFSVuultNXepf7BW8SCaSUOq5IETM2fDjFim5Dg5F1zU/QbplNW0mqkk8QCw+I722v3nPkpRlA==, + } dependencies: busboy: 1.6.0 zod: 3.20.2 dev: false /reusify/1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + resolution: + { + integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, + } + engines: { iojs: ">=1.0.0", node: ">=0.10.0" } /rfdc/1.3.0: - resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} + resolution: + { + integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==, + } dev: true /rimraf/3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + resolution: + { + integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, + } hasBin: true dependencies: glob: 7.2.3 /rollup/3.7.4: - resolution: {integrity: sha512-jN9rx3k5pfg9H9al0r0y1EYKSeiRANZRYX32SuNXAnKzh6cVyf4LZVto1KAuDnbHT03E1CpsgqDKaqQ8FZtgxw==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} + resolution: + { + integrity: sha512-jN9rx3k5pfg9H9al0r0y1EYKSeiRANZRYX32SuNXAnKzh6cVyf4LZVto1KAuDnbHT03E1CpsgqDKaqQ8FZtgxw==, + } + engines: { node: ">=14.18.0", npm: ">=8.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'} + 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==} + resolution: + { + integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, + } dependencies: queue-microtask: 1.2.3 /rxjs/7.5.7: - resolution: {integrity: sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==} + resolution: + { + integrity: sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==, + } dependencies: tslib: 2.4.0 dev: true /safe-buffer/5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + resolution: + { + integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, + } /safe-buffer/5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + resolution: + { + integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, + } /safe-regex-test/1.0.0: - resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} + resolution: + { + integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, + } dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.3 is-regex: 1.1.4 /safe-stable-stringify/2.4.2: - resolution: {integrity: sha512-gMxvPJYhP0O9n2pvcfYfIuYgbledAOJFcqRThtPRmjscaipiwcwPPKLytpVzMkG2HAN87Qmo2d4PtGiri1dSLA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-gMxvPJYhP0O9n2pvcfYfIuYgbledAOJFcqRThtPRmjscaipiwcwPPKLytpVzMkG2HAN87Qmo2d4PtGiri1dSLA==, + } + engines: { node: ">=10" } dev: false /safer-buffer/2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + resolution: + { + integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, + } /saxes/6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} - engines: {node: '>=v12.22.7'} + resolution: + { + integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==, + } + engines: { node: ">=v12.22.7" } dependencies: xmlchars: 2.2.0 dev: false /scheduler/0.23.0: - resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + resolution: + { + integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, + } dependencies: loose-envify: 1.4.0 /scuid/1.1.0: - resolution: {integrity: sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==} + resolution: + { + integrity: sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==, + } dev: true /secure-json-parse/2.7.0: - resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==} + resolution: + { + integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==, + } dev: false /selderee/0.10.0: - resolution: {integrity: sha512-DEL/RW/f4qLw/NrVg97xKaEBC8IpzIG2fvxnzCp3Z4yk4jQ3MXom+Imav9wApjxX2dfS3eW7x0DXafJr85i39A==} + resolution: + { + integrity: sha512-DEL/RW/f4qLw/NrVg97xKaEBC8IpzIG2fvxnzCp3Z4yk4jQ3MXom+Imav9wApjxX2dfS3eW7x0DXafJr85i39A==, + } dependencies: parseley: 0.11.0 dev: false /semver/5.7.1: - resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} + resolution: + { + integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==, + } hasBin: true /semver/6.3.0: - resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} + resolution: + { + integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==, + } hasBin: true /semver/7.3.7: - resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} - engines: {node: '>=10'} + 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==} + resolution: + { + integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==, + } dependencies: no-case: 3.0.4 tslib: 2.4.0 @@ -7533,74 +10307,119 @@ packages: dev: true /set-blocking/2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + resolution: + { + integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==, + } /setimmediate/1.0.5: - resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} + resolution: + { + integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==, + } dev: true /setprototypeof/1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + resolution: + { + integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, + } dev: false /shebang-command/1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==, + } + engines: { node: ">=0.10.0" } dependencies: shebang-regex: 1.0.0 dev: false /shebang-command/2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, + } + engines: { node: ">=8" } dependencies: shebang-regex: 3.0.0 dev: true /shebang-regex/1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==, + } + engines: { node: ">=0.10.0" } dev: false /shebang-regex/3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, + } + engines: { node: ">=8" } dev: true /side-channel/1.0.4: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + resolution: + { + integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, + } dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.3 object-inspect: 1.12.2 /siginfo/2.0.0: - resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} + resolution: + { + integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==, + } dev: false /sigmund/1.0.1: - resolution: {integrity: sha512-fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g==} + resolution: + { + integrity: sha512-fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g==, + } dev: false /signal-exit/3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + resolution: + { + integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, + } /signedsource/1.0.0: - resolution: {integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==} + resolution: + { + integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==, + } dev: true /slash/3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, + } + engines: { node: ">=8" } /slash/4.0.0: - resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==, + } + engines: { node: ">=12" } dev: true /slice-ansi/3.0.0: - resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==, + } + engines: { node: ">=8" } dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 @@ -7608,8 +10427,11 @@ packages: dev: true /slice-ansi/4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==, + } + engines: { node: ">=10" } dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 @@ -7617,12 +10439,18 @@ packages: dev: true /slick/1.12.2: - resolution: {integrity: sha512-4qdtOGcBjral6YIBCWJ0ljFSKNLz9KkhbWtuGvUyRowl1kxfuE1x/Z/aJcaiilpb3do9bl5K7/1h9XC5wWpY/A==} + resolution: + { + integrity: sha512-4qdtOGcBjral6YIBCWJ0ljFSKNLz9KkhbWtuGvUyRowl1kxfuE1x/Z/aJcaiilpb3do9bl5K7/1h9XC5wWpY/A==, + } dev: false /smartwrap/2.0.2: - resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==, + } + engines: { node: ">=6" } hasBin: true dependencies: array.prototype.flat: 1.3.0 @@ -7634,116 +10462,179 @@ packages: dev: false /snake-case/3.0.4: - resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + resolution: + { + integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==, + } dependencies: dot-case: 3.0.4 tslib: 2.4.0 dev: true /sonic-boom/3.2.1: - resolution: {integrity: sha512-iITeTHxy3B9FGu8aVdiDXUVAcHMF9Ss0cCsAOo2HfCrmVGT3/DT5oYaeu0M/YKZDlKTvChEyPq0zI9Hf33EX6A==} + resolution: + { + integrity: sha512-iITeTHxy3B9FGu8aVdiDXUVAcHMF9Ss0cCsAOo2HfCrmVGT3/DT5oYaeu0M/YKZDlKTvChEyPq0zI9Hf33EX6A==, + } dependencies: atomic-sleep: 1.0.0 dev: false /source-map-js/1.0.2: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, + } + engines: { node: ">=0.10.0" } dev: false /source-map-support/0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + resolution: + { + integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, + } dependencies: buffer-from: 1.1.2 source-map: 0.6.1 dev: false /source-map/0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, + } + engines: { node: ">=0.10.0" } dev: false /spawndamnit/2.0.0: - resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} + resolution: + { + integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==, + } dependencies: cross-spawn: 5.1.0 signal-exit: 3.0.7 dev: false /spdx-correct/3.1.1: - resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} + resolution: + { + integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==, + } dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.12 dev: false /spdx-exceptions/2.3.0: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + resolution: + { + integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==, + } dev: false /spdx-expression-parse/3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + resolution: + { + integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, + } dependencies: spdx-exceptions: 2.3.0 spdx-license-ids: 3.0.12 dev: false /spdx-license-ids/3.0.12: - resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==} + resolution: + { + integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==, + } dev: false /split2/4.1.0: - resolution: {integrity: sha512-VBiJxFkxiXRlUIeyMQi8s4hgvKCSjtknJv/LVYbrgALPwf5zSKmEwV9Lst25AkvMDnvxODugjdl6KZgwKM1WYQ==} - engines: {node: '>= 10.x'} + resolution: + { + integrity: sha512-VBiJxFkxiXRlUIeyMQi8s4hgvKCSjtknJv/LVYbrgALPwf5zSKmEwV9Lst25AkvMDnvxODugjdl6KZgwKM1WYQ==, + } + engines: { node: ">= 10.x" } dev: false /sponge-case/1.0.1: - resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==} + resolution: + { + integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==, + } dependencies: tslib: 2.4.0 dev: true /sprintf-js/1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + resolution: + { + integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, + } dev: false /stackback/0.0.2: - resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} + resolution: + { + integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==, + } dev: false /state-local/1.0.7: - resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==} + resolution: + { + integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==, + } dev: false /statuses/2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==, + } + engines: { node: ">= 0.8" } dev: false /stream-transform/2.1.3: - resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} + resolution: + { + integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==, + } dependencies: mixme: 0.5.5 dev: false /streamsearch/1.1.0: - resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==, + } + engines: { node: ">=10.0.0" } /string-env-interpolation/1.0.1: - resolution: {integrity: sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==} + resolution: + { + integrity: sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==, + } dev: true /string-width/4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + 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==} + resolution: + { + integrity: sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==, + } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 @@ -7756,60 +10647,87 @@ packages: dev: true /string.prototype.trimend/1.0.5: - resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==} + resolution: + { + integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==, + } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 es-abstract: 1.20.3 /string.prototype.trimstart/1.0.5: - resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==} + resolution: + { + integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==, + } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 es-abstract: 1.20.3 /string_decoder/1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + resolution: + { + integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, + } dependencies: safe-buffer: 5.2.1 /strip-ansi/6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + 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'} + resolution: + { + integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, + } + engines: { node: ">=4" } /strip-indent/3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==, + } + engines: { node: ">=8" } dependencies: min-indent: 1.0.1 dev: false /strip-json-comments/3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==, + } + engines: { node: ">=8" } /strip-literal/1.0.0: - resolution: {integrity: sha512-5o4LsH1lzBzO9UFH63AJ2ad2/S2AVx6NtjOcaz+VTT2h1RiRvbipW72z8M/lxEhcPHDBQwpDrnTF7sXy/7OwCQ==} + resolution: + { + integrity: sha512-5o4LsH1lzBzO9UFH63AJ2ad2/S2AVx6NtjOcaz+VTT2h1RiRvbipW72z8M/lxEhcPHDBQwpDrnTF7sXy/7OwCQ==, + } dependencies: acorn: 8.8.1 dev: false /styled-jsx/5.1.1_react@18.2.0: - resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, + } + engines: { node: ">= 12.0.0" } peerDependencies: - '@babel/core': '*' - babel-plugin-macros: '*' - react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' + "@babel/core": "*" + babel-plugin-macros: "*" + react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" peerDependenciesMeta: - '@babel/core': + "@babel/core": optional: true babel-plugin-macros: optional: true @@ -7819,118 +10737,184 @@ packages: dev: false /supports-color/5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, + } + engines: { node: ">=4" } dependencies: has-flag: 3.0.0 /supports-color/7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + 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'} + resolution: + { + integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, + } + engines: { node: ">= 0.4" } /swap-case/2.0.2: - resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==} + resolution: + { + integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==, + } dependencies: tslib: 2.4.0 dev: true /symbol-tree/3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + resolution: + { + integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==, + } dev: false /synckit/0.8.4: - resolution: {integrity: sha512-Dn2ZkzMdSX827QbowGbU/4yjWuvNaCoScLLoMo/yKbu+P4GBR6cRGKZH27k6a9bRzdqcyd1DE96pQtQ6uNkmyw==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { + integrity: sha512-Dn2ZkzMdSX827QbowGbU/4yjWuvNaCoScLLoMo/yKbu+P4GBR6cRGKZH27k6a9bRzdqcyd1DE96pQtQ6uNkmyw==, + } + engines: { node: ^14.18.0 || >=16.0.0 } dependencies: - '@pkgr/utils': 2.3.1 + "@pkgr/utils": 2.3.1 tslib: 2.4.0 dev: true /tapable/2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, + } + engines: { node: ">=6" } dev: true /term-size/2.2.1: - resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==, + } + engines: { node: ">=8" } dev: false /text-table/0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + resolution: + { + integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, + } dev: true /thread-stream/2.3.0: - resolution: {integrity: sha512-kaDqm1DET9pp3NXwR8382WHbnpXnRkN9xGN9dQt3B2+dmXiW8X1SOwmFOxAErEQ47ObhZ96J6yhZNXuyCOL7KA==} + resolution: + { + integrity: sha512-kaDqm1DET9pp3NXwR8382WHbnpXnRkN9xGN9dQt3B2+dmXiW8X1SOwmFOxAErEQ47ObhZ96J6yhZNXuyCOL7KA==, + } dependencies: real-require: 0.2.0 dev: false /through/2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + resolution: + { + integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, + } dev: true /tiny-glob/0.2.9: - resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} + 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==} + resolution: + { + integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==, + } dev: false /tinybench/2.3.1: - resolution: {integrity: sha512-hGYWYBMPr7p4g5IarQE7XhlyWveh1EKhy4wUBS1LrHXCKYgvz+4/jCqgmJqZxxldesn05vccrtME2RLLZNW7iA==} + resolution: + { + integrity: sha512-hGYWYBMPr7p4g5IarQE7XhlyWveh1EKhy4wUBS1LrHXCKYgvz+4/jCqgmJqZxxldesn05vccrtME2RLLZNW7iA==, + } dev: false /tinypool/0.3.0: - resolution: {integrity: sha512-NX5KeqHOBZU6Bc0xj9Vr5Szbb1j8tUHIeD18s41aDJaPeC5QTdEhK0SpdpUrZlj2nv5cctNcSjaKNanXlfcVEQ==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-NX5KeqHOBZU6Bc0xj9Vr5Szbb1j8tUHIeD18s41aDJaPeC5QTdEhK0SpdpUrZlj2nv5cctNcSjaKNanXlfcVEQ==, + } + engines: { node: ">=14.0.0" } dev: false /tinyspy/1.0.2: - resolution: {integrity: sha512-bSGlgwLBYf7PnUsQ6WOc6SJ3pGOcd+d8AA6EUnLDDM0kWEstC1JIlSZA3UNliDXhd9ABoS7hiRBDCu+XP/sf1Q==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-bSGlgwLBYf7PnUsQ6WOc6SJ3pGOcd+d8AA6EUnLDDM0kWEstC1JIlSZA3UNliDXhd9ABoS7hiRBDCu+XP/sf1Q==, + } + engines: { node: ">=14.0.0" } dev: false /title-case/3.0.3: - resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==} + 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'} + resolution: + { + integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, + } + engines: { node: ">=0.6.0" } dependencies: os-tmpdir: 1.0.2 /to-fast-properties/2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, + } + engines: { node: ">=4" } /to-regex-range/5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + 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'} + resolution: + { + integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==, + } + engines: { node: ">=0.6" } dev: false /tough-cookie/4.1.2: - resolution: {integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==, + } + engines: { node: ">=6" } dependencies: psl: 1.9.0 punycode: 2.1.1 @@ -7939,44 +10923,59 @@ packages: dev: false /tr46/0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + resolution: + { + integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, + } /tr46/3.0.0: - resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==, + } + engines: { node: ">=12" } dependencies: punycode: 2.1.1 dev: false /trim-newlines/3.0.1: - resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==, + } + engines: { node: ">=8" } dev: false /ts-log/2.2.5: - resolution: {integrity: sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==} + resolution: + { + integrity: sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==, + } dev: true /ts-node/10.9.1_awa2wsr5thmg3i7jqycphctjfq: - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + resolution: + { + integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, + } hasBin: true peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' + "@swc/core": ">=1.2.50" + "@swc/wasm": ">=1.2.50" + "@types/node": "*" + typescript: ">=2.7" peerDependenciesMeta: - '@swc/core': + "@swc/core": optional: true - '@swc/wasm': + "@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.11.18 + "@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.11.18 acorn: 8.8.1 acorn-walk: 8.2.0 arg: 4.1.3 @@ -7989,34 +10988,49 @@ packages: dev: true /tsconfig-paths/3.14.1: - resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==} + resolution: + { + integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==, + } dependencies: - '@types/json5': 0.0.29 + "@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==} + resolution: + { + integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==, + } dev: true /tslib/2.4.0: - resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} + resolution: + { + integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==, + } /tsutils/3.21.0_typescript@4.9.4: - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} + 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' + 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.9.4 dev: true /tty-table/4.1.6: - resolution: {integrity: sha512-kRj5CBzOrakV4VRRY5kUWbNYvo/FpOsz65DzI5op9P+cHov3+IqPbo1JE1ZnQGkHdZgNFDsrEjrfqqy/Ply9fw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-kRj5CBzOrakV4VRRY5kUWbNYvo/FpOsz65DzI5op9P+cHov3+IqPbo1JE1ZnQGkHdZgNFDsrEjrfqqy/Ply9fw==, + } + engines: { node: ">=8.0.0" } hasBin: true dependencies: chalk: 4.1.2 @@ -8029,71 +11043,110 @@ packages: dev: false /type-check/0.3.2: - resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==, + } + engines: { node: ">= 0.8.0" } dependencies: prelude-ls: 1.1.2 dev: false /type-check/0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==, + } + engines: { node: ">= 0.8.0" } dependencies: prelude-ls: 1.2.1 dev: true /type-detect/4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==, + } + engines: { node: ">=4" } dev: false /type-fest/0.13.1: - resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==, + } + engines: { node: ">=10" } dev: false /type-fest/0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} + 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'} + resolution: + { + integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, + } + engines: { node: ">=10" } dev: true /type-fest/0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==, + } + engines: { node: ">=8" } dev: false /type-fest/0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==, + } + engines: { node: ">=8" } dev: false /typescript/4.9.4: - resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==} - engines: {node: '>=4.2.0'} + resolution: + { + integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==, + } + engines: { node: ">=4.2.0" } hasBin: true dev: true /ua-parser-js/0.7.31: - resolution: {integrity: sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==} + resolution: + { + integrity: sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==, + } dev: true /ufo/1.0.1: - resolution: {integrity: sha512-boAm74ubXHY7KJQZLlXrtMz52qFvpsbOxDcZOnw/Wf+LS4Mmyu7JxmzD4tDLtUQtmZECypJ0FrCz4QIe6dvKRA==} + resolution: + { + integrity: sha512-boAm74ubXHY7KJQZLlXrtMz52qFvpsbOxDcZOnw/Wf+LS4Mmyu7JxmzD4tDLtUQtmZECypJ0FrCz4QIe6dvKRA==, + } dev: false /uglify-js/3.17.4: - resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==, + } + engines: { node: ">=0.8.0" } hasBin: true dev: false /unbox-primitive/1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + resolution: + { + integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, + } dependencies: call-bind: 1.0.2 has-bigints: 1.0.2 @@ -8101,112 +11154,160 @@ packages: which-boxed-primitive: 1.0.2 /unc-path-regex/0.1.2: - resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==, + } + engines: { node: ">=0.10.0" } dev: true /undici/5.11.0: - resolution: {integrity: sha512-oWjWJHzFet0Ow4YZBkyiJwiK5vWqEYoH7BINzJAJOLedZ++JpAlCbUktW2GQ2DS2FpKmxD/JMtWUUWl1BtghGw==} - engines: {node: '>=12.18'} + resolution: + { + integrity: sha512-oWjWJHzFet0Ow4YZBkyiJwiK5vWqEYoH7BINzJAJOLedZ++JpAlCbUktW2GQ2DS2FpKmxD/JMtWUUWl1BtghGw==, + } + engines: { node: ">=12.18" } dependencies: busboy: 1.6.0 dev: true /universalify/0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} + resolution: + { + integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==, + } + engines: { node: ">= 4.0.0" } dev: false /universalify/0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} + resolution: + { + integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==, + } + engines: { node: ">= 4.0.0" } dev: false /unixify/1.0.0: - resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==, + } + engines: { node: ">=0.10.0" } dependencies: normalize-path: 2.1.1 dev: true /unload/2.2.0: - resolution: {integrity: sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==} + resolution: + { + integrity: sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==, + } dependencies: - '@babel/runtime': 7.21.0 + "@babel/runtime": 7.21.0 detect-node: 2.1.0 dev: false /unpipe/1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==, + } + engines: { node: ">= 0.8" } dev: false /update-browserslist-db/1.0.9_browserslist@4.21.4: - resolution: {integrity: sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==} + resolution: + { + integrity: sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==, + } hasBin: true peerDependencies: - browserslist: '>= 4.21.0' + browserslist: ">= 4.21.0" dependencies: browserslist: 4.21.4 escalade: 3.1.1 picocolors: 1.0.0 /upper-case-first/2.0.2: - resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} + resolution: + { + integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==, + } dependencies: tslib: 2.4.0 dev: true /upper-case/1.1.3: - resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==} + resolution: + { + integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==, + } dev: false /upper-case/2.0.2: - resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} + resolution: + { + integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==, + } dependencies: tslib: 2.4.0 dev: true /uri-js/4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + resolution: + { + integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, + } dependencies: punycode: 2.1.1 dev: true /url-parse/1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + resolution: + { + integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==, + } dependencies: querystringify: 2.2.0 requires-port: 1.0.0 dev: false /urql/3.0.3_onqnqwb3ubg5opvemcqf7c2qhy: - resolution: {integrity: sha512-aVUAMRLdc5AOk239DxgXt6ZxTl/fEmjr7oyU5OGo8uvpqu42FkeJErzd2qBzhAQ3DyusoZIbqbBLPlnKo/yy2A==} + resolution: + { + integrity: sha512-aVUAMRLdc5AOk239DxgXt6ZxTl/fEmjr7oyU5OGo8uvpqu42FkeJErzd2qBzhAQ3DyusoZIbqbBLPlnKo/yy2A==, + } peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - react: '>= 16.8.0' + react: ">= 16.8.0" dependencies: - '@urql/core': 3.0.3_graphql@16.6.0 + "@urql/core": 3.0.3_graphql@16.6.0 graphql: 16.6.0 react: 18.2.0 wonka: 6.1.0 dev: false /use-isomorphic-layout-effect/1.1.2_kzbn2opkn2327fwg5yzwzya5o4: - resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} + resolution: + { + integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true dependencies: - '@types/react': 18.0.26 + "@types/react": 18.0.26 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==} + resolution: + { + integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -8214,8 +11315,11 @@ packages: dev: false /usehooks-ts/2.9.1_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-2FAuSIGHlY+apM9FVlj8/oNhd+1y+Uwv5QNkMQz1oSfdHk4PXo1qoCw9I5M7j0vpH8CSWFJwXbVPeYDjLCx9PA==} - engines: {node: '>=16.15.0', npm: '>=8'} + resolution: + { + integrity: sha512-2FAuSIGHlY+apM9FVlj8/oNhd+1y+Uwv5QNkMQz1oSfdHk4PXo1qoCw9I5M7j0vpH8CSWFJwXbVPeYDjLCx9PA==, + } + engines: { node: ">=16.15.0", npm: ">=8" } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8225,37 +11329,58 @@ packages: dev: false /util-deprecate/1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + resolution: + { + integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, + } /uuid/8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + 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==} + resolution: + { + integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==, + } dev: true /valid-data-url/3.0.1: - resolution: {integrity: sha512-jOWVmzVceKlVVdwjNSenT4PbGghU0SBIizAev8ofZVgivk/TVHXSbNL8LP6M3spZvkR9/QolkyJavGSX5Cs0UA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-jOWVmzVceKlVVdwjNSenT4PbGghU0SBIizAev8ofZVgivk/TVHXSbNL8LP6M3spZvkR9/QolkyJavGSX5Cs0UA==, + } + engines: { node: ">=10" } dev: false /validate-npm-package-license/3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + resolution: + { + integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==, + } dependencies: spdx-correct: 3.1.1 spdx-expression-parse: 3.0.1 dev: false /value-or-promise/1.0.11: - resolution: {integrity: sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==, + } + engines: { node: ">=12" } dev: true /vite-node/0.27.1_@types+node@18.11.18: - resolution: {integrity: sha512-d6+ue/3NzsfndWaPbYh/bFkHbmAWfDXI4B874zRx+WREnG6CUHUbBC8lKaRYZjeR6gCPN5m1aVNNRXBYICA9XA==} - engines: {node: '>=v14.16.0'} + resolution: + { + integrity: sha512-d6+ue/3NzsfndWaPbYh/bFkHbmAWfDXI4B874zRx+WREnG6CUHUbBC8lKaRYZjeR6gCPN5m1aVNNRXBYICA9XA==, + } + engines: { node: ">=v14.16.0" } hasBin: true dependencies: cac: 6.7.14 @@ -8267,7 +11392,7 @@ packages: source-map-support: 0.5.21 vite: 4.0.4_@types+node@18.11.18 transitivePeerDependencies: - - '@types/node' + - "@types/node" - less - sass - stylus @@ -8277,18 +11402,21 @@ packages: dev: false /vite/4.0.4_@types+node@18.11.18: - resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { + integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==, + } + engines: { node: ^14.18.0 || >=16.0.0 } hasBin: true peerDependencies: - '@types/node': '>= 14' - less: '*' - sass: '*' - stylus: '*' - sugarss: '*' + "@types/node": ">= 14" + less: "*" + sass: "*" + stylus: "*" + sugarss: "*" terser: ^5.4.0 peerDependenciesMeta: - '@types/node': + "@types/node": optional: true less: optional: true @@ -8301,7 +11429,7 @@ packages: terser: optional: true dependencies: - '@types/node': 18.11.18 + "@types/node": 18.11.18 esbuild: 0.16.4 postcss: 8.4.20 resolve: 1.22.1 @@ -8311,30 +11439,33 @@ packages: dev: false /vitest/0.27.1_jsdom@20.0.3: - resolution: {integrity: sha512-1sIpQ1DVFTEn7c1ici1XHcVfdU4nKiBmPtPAtGKJJJLuJjojTv/OHGgcf69P57alM4ty8V4NMv+7Yoi5Cxqx9g==} - engines: {node: '>=v14.16.0'} + resolution: + { + integrity: sha512-1sIpQ1DVFTEn7c1ici1XHcVfdU4nKiBmPtPAtGKJJJLuJjojTv/OHGgcf69P57alM4ty8V4NMv+7Yoi5Cxqx9g==, + } + engines: { node: ">=v14.16.0" } hasBin: true peerDependencies: - '@edge-runtime/vm': '*' - '@vitest/browser': '*' - '@vitest/ui': '*' - happy-dom: '*' - jsdom: '*' + "@edge-runtime/vm": "*" + "@vitest/browser": "*" + "@vitest/ui": "*" + happy-dom: "*" + jsdom: "*" peerDependenciesMeta: - '@edge-runtime/vm': + "@edge-runtime/vm": optional: true - '@vitest/browser': + "@vitest/browser": optional: true - '@vitest/ui': + "@vitest/ui": optional: true happy-dom: optional: true jsdom: optional: true dependencies: - '@types/chai': 4.3.4 - '@types/chai-subset': 1.3.3 - '@types/node': 18.11.18 + "@types/chai": 4.3.4 + "@types/chai-subset": 1.3.3 + "@types/node": 18.11.18 acorn: 8.8.1 acorn-walk: 8.2.0 cac: 6.7.14 @@ -8361,20 +11492,29 @@ packages: dev: false /w3c-xmlserializer/4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==, + } + engines: { node: ">=14" } dependencies: xml-name-validator: 4.0.0 dev: false /wcwidth/1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + resolution: + { + integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, + } dependencies: defaults: 1.0.3 /web-resource-inliner/5.0.0: - resolution: {integrity: sha512-AIihwH+ZmdHfkJm7BjSXiEClVt4zUFqX4YlFAzjL13wLtDuUneSaFvDBTbdYRecs35SiU7iNKbMnN+++wVfb6A==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-AIihwH+ZmdHfkJm7BjSXiEClVt4zUFqX4YlFAzjL13wLtDuUneSaFvDBTbdYRecs35SiU7iNKbMnN+++wVfb6A==, + } + engines: { node: ">=10.0.0" } dependencies: ansi-colors: 4.1.3 escape-goat: 3.0.0 @@ -8387,65 +11527,98 @@ packages: dev: false /web-streams-polyfill/3.2.1: - resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==, + } + engines: { node: ">= 8" } dev: true /web-streams-polyfill/4.0.0-beta.3: - resolution: {integrity: sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==} - engines: {node: '>= 14'} + resolution: + { + integrity: sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==, + } + engines: { node: ">= 14" } dev: true /webcrypto-core/1.7.5: - resolution: {integrity: sha512-gaExY2/3EHQlRNNNVSrbG2Cg94Rutl7fAaKILS1w8ZDhGxdFOaw6EbCfHIxPy9vt/xwp5o0VQAx9aySPF6hU1A==} + resolution: + { + integrity: sha512-gaExY2/3EHQlRNNNVSrbG2Cg94Rutl7fAaKILS1w8ZDhGxdFOaw6EbCfHIxPy9vt/xwp5o0VQAx9aySPF6hU1A==, + } dependencies: - '@peculiar/asn1-schema': 2.3.0 - '@peculiar/json-schema': 1.1.12 + "@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==} + resolution: + { + integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==, + } /webidl-conversions/7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==, + } + engines: { node: ">=12" } dev: false /whatwg-encoding/2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==, + } + engines: { node: ">=12" } dependencies: iconv-lite: 0.6.3 dev: false /whatwg-fetch/3.6.2: - resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==} + resolution: + { + integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==, + } dev: true /whatwg-mimetype/3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==, + } + engines: { node: ">=12" } dev: false /whatwg-url/11.0.0: - resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==, + } + engines: { node: ">=12" } dependencies: tr46: 3.0.0 webidl-conversions: 7.0.0 dev: false /whatwg-url/5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + 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==} + resolution: + { + integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, + } dependencies: is-bigint: 1.0.4 is-boolean-object: 1.1.2 @@ -8454,7 +11627,10 @@ packages: is-symbol: 1.0.4 /which-collection/1.0.1: - resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} + resolution: + { + integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==, + } dependencies: is-map: 2.0.2 is-set: 2.0.2 @@ -8463,19 +11639,28 @@ packages: dev: true /which-module/2.0.0: - resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==} + resolution: + { + integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==, + } /which-pm/2.0.0: - resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} - engines: {node: '>=8.15'} + resolution: + { + integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==, + } + engines: { node: ">=8.15" } dependencies: load-yaml-file: 0.2.0 path-exists: 4.0.0 dev: false /which-typed-array/1.1.9: - resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==, + } + engines: { node: ">= 0.4" } dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.2 @@ -8486,23 +11671,32 @@ packages: dev: true /which/1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + resolution: + { + integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==, + } hasBin: true dependencies: isexe: 2.0.0 dev: false /which/2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, + } + engines: { node: ">= 8" } hasBin: true dependencies: isexe: 2.0.0 dev: true /why-is-node-running/2.2.2: - resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==, + } + engines: { node: ">=8" } hasBin: true dependencies: siginfo: 2.0.0 @@ -8510,39 +11704,60 @@ packages: dev: false /wonka/6.1.0: - resolution: {integrity: sha512-VgiMCz7BXOiDbgpVhf5iNhK7hurteY5Jv0fDJewUkY0s4fbxQD2iKqfGxNXNTwp2v3bgT8QVu2l5H7YdkZ5WIA==} + resolution: + { + integrity: sha512-VgiMCz7BXOiDbgpVhf5iNhK7hurteY5Jv0fDJewUkY0s4fbxQD2iKqfGxNXNTwp2v3bgT8QVu2l5H7YdkZ5WIA==, + } dev: false /word-wrap/1.2.3: - resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==, + } + engines: { node: ">=0.10.0" } /wordwrap/1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + resolution: + { + integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==, + } dev: false /wrap-ansi/6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} + 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 /wrap-ansi/7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} + 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 /wrappy/1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + resolution: + { + integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, + } /ws/8.11.0: - resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==, + } + engines: { node: ">=10.0.0" } peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -8553,61 +11768,100 @@ packages: optional: true /xml-name-validator/4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==, + } + engines: { node: ">=12" } dev: false /xmlchars/2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + resolution: + { + integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==, + } dev: false /y18n/4.0.3: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + resolution: + { + integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==, + } /y18n/5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, + } + engines: { node: ">=10" } /yallist/2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + resolution: + { + integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==, + } dev: false /yallist/3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + resolution: + { + integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, + } dev: false /yallist/4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + resolution: + { + integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, + } dev: true /yaml-ast-parser/0.0.43: - resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==} + resolution: + { + integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==, + } dev: true /yaml/1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==, + } + engines: { node: ">= 6" } dev: true /yargs-parser/18.1.3: - resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==, + } + engines: { node: ">=6" } dependencies: camelcase: 5.3.1 decamelize: 1.2.0 /yargs-parser/20.2.9: - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==, + } + engines: { node: ">=10" } dev: false /yargs-parser/21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, + } + engines: { node: ">=12" } /yargs/15.4.1: - resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==, + } + engines: { node: ">=8" } dependencies: cliui: 6.0.0 decamelize: 1.2.0 @@ -8622,8 +11876,11 @@ packages: yargs-parser: 18.1.3 /yargs/16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==, + } + engines: { node: ">=10" } dependencies: cliui: 7.0.4 escalade: 3.1.1 @@ -8635,8 +11892,11 @@ packages: dev: false /yargs/17.6.0: - resolution: {integrity: sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g==, + } + engines: { node: ">=12" } dependencies: cliui: 8.0.1 escalade: 3.1.1 @@ -8647,14 +11907,23 @@ packages: yargs-parser: 21.1.1 /yn/3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} + 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'} + resolution: + { + integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, + } + engines: { node: ">=10" } /zod/3.20.2: - resolution: {integrity: sha512-1MzNQdAvO+54H+EaK5YpyEy0T+Ejo/7YLHS93G3RnYWh5gaotGHwGeN/ZO687qEDU2y4CdStQYXVHIgrUl5UVQ==} + resolution: + { + integrity: sha512-1MzNQdAvO+54H+EaK5YpyEy0T+Ejo/7YLHS93G3RnYWh5gaotGHwGeN/ZO687qEDU2y4CdStQYXVHIgrUl5UVQ==, + } dev: false diff --git a/apps/emails-and-messages/src/modules/app-configuration/ui/channels-configuration-tab.tsx b/apps/emails-and-messages/src/modules/app-configuration/ui/channels-configuration-tab.tsx index 329e48a..d263cff 100644 --- a/apps/emails-and-messages/src/modules/app-configuration/ui/channels-configuration-tab.tsx +++ b/apps/emails-and-messages/src/modules/app-configuration/ui/channels-configuration-tab.tsx @@ -4,7 +4,7 @@ import { AppConfigurationForm } from "./app-configuration-form"; import { actions, useAppBridge } from "@saleor/app-sdk/app-bridge"; import { AppColumnsLayout } from "../../ui/app-columns-layout"; import { trpcClient } from "../../trpc/trpc-client"; -import SideMenu from "./side-menu"; +import { SideMenu } from "./side-menu"; import { LoadingIndicator } from "../../ui/loading-indicator"; import { Instructions } from "./instructions"; diff --git a/apps/emails-and-messages/src/modules/app-configuration/ui/instructions.tsx b/apps/emails-and-messages/src/modules/app-configuration/ui/instructions.tsx index 87c9702..e091880 100644 --- a/apps/emails-and-messages/src/modules/app-configuration/ui/instructions.tsx +++ b/apps/emails-and-messages/src/modules/app-configuration/ui/instructions.tsx @@ -27,7 +27,8 @@ export const Instructions = () => { Start by creating a new configuration for provider of your choice. You can create multiple - configurations and then assign them to channels. Navigate to the relevant tab to configure the provider. + configurations and then assign them to channels. Navigate to the relevant tab to configure + the provider. ); diff --git a/apps/emails-and-messages/src/modules/app-configuration/ui/side-menu.tsx b/apps/emails-and-messages/src/modules/app-configuration/ui/side-menu.tsx index 83ea304..16578b2 100644 --- a/apps/emails-and-messages/src/modules/app-configuration/ui/side-menu.tsx +++ b/apps/emails-and-messages/src/modules/app-configuration/ui/side-menu.tsx @@ -107,5 +107,3 @@ export const SideMenu: React.FC = ({ ); }; - -export default SideMenu; diff --git a/apps/emails-and-messages/src/modules/mjml/configuration/ui/mjml-configuration-tab.tsx b/apps/emails-and-messages/src/modules/mjml/configuration/ui/mjml-configuration-tab.tsx index 9dbad8f..67e5136 100644 --- a/apps/emails-and-messages/src/modules/mjml/configuration/ui/mjml-configuration-tab.tsx +++ b/apps/emails-and-messages/src/modules/mjml/configuration/ui/mjml-configuration-tab.tsx @@ -8,7 +8,7 @@ import { getDefaultEmptyConfiguration } from "../mjml-config-container"; import { NextRouter, useRouter } from "next/router"; import { mjmlUrls } from "../../urls"; import { MjmlTemplatesCard } from "./mjml-templates-card"; -import SideMenu from "../../../app-configuration/ui/side-menu"; +import { SideMenu } from "../../../app-configuration/ui/side-menu"; import { MjmlConfiguration } from "../mjml-config"; import { LoadingIndicator } from "../../../ui/loading-indicator"; import { Add } from "@material-ui/icons"; diff --git a/apps/emails-and-messages/src/modules/sendgrid/configuration/ui/sendgrid-configuration-tab.tsx b/apps/emails-and-messages/src/modules/sendgrid/configuration/ui/sendgrid-configuration-tab.tsx index 6374e20..64edc3b 100644 --- a/apps/emails-and-messages/src/modules/sendgrid/configuration/ui/sendgrid-configuration-tab.tsx +++ b/apps/emails-and-messages/src/modules/sendgrid/configuration/ui/sendgrid-configuration-tab.tsx @@ -6,7 +6,7 @@ import { trpcClient } from "../../../trpc/trpc-client"; import { SendgridConfigurationForm } from "./sendgrid-configuration-form"; import { getDefaultEmptyConfiguration } from "../sendgrid-config-container"; import { NextRouter, useRouter } from "next/router"; -import SideMenu from "../../../app-configuration/ui/side-menu"; +import { SideMenu } from "../../../app-configuration/ui/side-menu"; import { SendgridConfiguration } from "../sendgrid-config"; import { LoadingIndicator } from "../../../ui/loading-indicator"; import { Add } from "@material-ui/icons"; diff --git a/apps/emails-and-messages/src/not-ready.tsx b/apps/emails-and-messages/src/not-ready.tsx index f9d57af..daa4739 100644 --- a/apps/emails-and-messages/src/not-ready.tsx +++ b/apps/emails-and-messages/src/not-ready.tsx @@ -4,7 +4,7 @@ import { Typography } from "@material-ui/core"; import { actions, useAppBridge } from "@saleor/app-sdk/app-bridge"; import { appName } from "./const"; -const NotReadyPage = () => { +export const NotReadyPage = () => { const { appBridge } = useAppBridge(); return ( @@ -33,5 +33,3 @@ const NotReadyPage = () => { ); }; - -export default NotReadyPage; diff --git a/apps/klaviyo/components/AccessWarning/AccessWarning.tsx b/apps/klaviyo/src/components/AccessWarning/AccessWarning.tsx similarity index 88% rename from apps/klaviyo/components/AccessWarning/AccessWarning.tsx rename to apps/klaviyo/src/components/AccessWarning/AccessWarning.tsx index 19cdb8e..1091756 100644 --- a/apps/klaviyo/components/AccessWarning/AccessWarning.tsx +++ b/apps/klaviyo/src/components/AccessWarning/AccessWarning.tsx @@ -18,7 +18,7 @@ const warnings: Record = { unknown_cause: "Something went wrong.", }; -function AccessWarning({ cause = "unknown_cause" }: AccessWarningProps) { +export function AccessWarning({ cause = "unknown_cause" }: AccessWarningProps) { return (
@@ -30,5 +30,3 @@ function AccessWarning({ cause = "unknown_cause" }: AccessWarningProps) {
); } - -export default AccessWarning; diff --git a/apps/klaviyo/components/LoadingPage/LoadingPage.tsx b/apps/klaviyo/src/components/LoadingPage/LoadingPage.tsx similarity index 88% rename from apps/klaviyo/components/LoadingPage/LoadingPage.tsx rename to apps/klaviyo/src/components/LoadingPage/LoadingPage.tsx index 02b98e9..69c2501 100644 --- a/apps/klaviyo/components/LoadingPage/LoadingPage.tsx +++ b/apps/klaviyo/src/components/LoadingPage/LoadingPage.tsx @@ -3,7 +3,7 @@ import React from "react"; import { useStyles } from "./styles"; -function LoadingPage() { +export function LoadingPage() { const classes = useStyles(); return ( @@ -16,5 +16,3 @@ function LoadingPage() { ); } - -export default LoadingPage; diff --git a/apps/klaviyo/components/LoadingPage/styles.ts b/apps/klaviyo/src/components/LoadingPage/styles.ts similarity index 100% rename from apps/klaviyo/components/LoadingPage/styles.ts rename to apps/klaviyo/src/components/LoadingPage/styles.ts diff --git a/apps/klaviyo/hooks/theme-synchronizer.tsx b/apps/klaviyo/src/hooks/theme-synchronizer.tsx similarity index 100% rename from apps/klaviyo/hooks/theme-synchronizer.tsx rename to apps/klaviyo/src/hooks/theme-synchronizer.tsx diff --git a/apps/klaviyo/hooks/useAppApi.ts b/apps/klaviyo/src/hooks/useAppApi.ts similarity index 94% rename from apps/klaviyo/hooks/useAppApi.ts rename to apps/klaviyo/src/hooks/useAppApi.ts index 7944ac3..e0a5b7f 100644 --- a/apps/klaviyo/hooks/useAppApi.ts +++ b/apps/klaviyo/src/hooks/useAppApi.ts @@ -11,7 +11,7 @@ interface UseFetchProps { } // This hook is meant to be used mainly for internal API calls -const useAppApi = ({ url, options, skip }: UseFetchProps) => { +export const useAppApi = ({ url, options, skip }: UseFetchProps) => { const { appBridgeState } = useAppBridge(); const [data, setData] = useState(); @@ -60,5 +60,3 @@ const useAppApi = ({ url, options, skip }: UseFetchProps) => { return { data, error, loading }; }; - -export default useAppApi; diff --git a/apps/klaviyo/lib/graphql.ts b/apps/klaviyo/src/lib/graphql.ts similarity index 100% rename from apps/klaviyo/lib/graphql.ts rename to apps/klaviyo/src/lib/graphql.ts diff --git a/apps/klaviyo/lib/klaviyo.ts b/apps/klaviyo/src/lib/klaviyo.ts similarity index 89% rename from apps/klaviyo/lib/klaviyo.ts rename to apps/klaviyo/src/lib/klaviyo.ts index 03d8651..1d6e392 100644 --- a/apps/klaviyo/lib/klaviyo.ts +++ b/apps/klaviyo/src/lib/klaviyo.ts @@ -2,7 +2,7 @@ interface EmailServiceProvider { send: (event: string, recipient: string, context: any) => Promise; } -const Klaviyo = (token: string): EmailServiceProvider => ({ +export const Klaviyo = (token: string): EmailServiceProvider => ({ send: async (event, recipient, context) => { const formParams = new URLSearchParams(); formParams.append( @@ -27,5 +27,3 @@ const Klaviyo = (token: string): EmailServiceProvider => ({ return response; }, }); - -export default Klaviyo; diff --git a/apps/klaviyo/lib/metadata.ts b/apps/klaviyo/src/lib/metadata.ts similarity index 96% rename from apps/klaviyo/lib/metadata.ts rename to apps/klaviyo/src/lib/metadata.ts index 491ffa3..28def01 100644 --- a/apps/klaviyo/lib/metadata.ts +++ b/apps/klaviyo/src/lib/metadata.ts @@ -5,8 +5,8 @@ import { FetchAppDetailsDocument, FetchAppDetailsQuery, UpdateAppMetadataDocument, -} from "../generated/graphql"; -import { settingsManagerSecretKey } from "../saleor-app"; +} 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 diff --git a/apps/klaviyo/lib/ui/app-columns-layout.tsx b/apps/klaviyo/src/lib/ui/app-columns-layout.tsx similarity index 100% rename from apps/klaviyo/lib/ui/app-columns-layout.tsx rename to apps/klaviyo/src/lib/ui/app-columns-layout.tsx diff --git a/apps/klaviyo/pages/_app.tsx b/apps/klaviyo/src/pages/_app.tsx similarity index 98% rename from apps/klaviyo/pages/_app.tsx rename to apps/klaviyo/src/pages/_app.tsx index a94540e..5e45f66 100644 --- a/apps/klaviyo/pages/_app.tsx +++ b/apps/klaviyo/src/pages/_app.tsx @@ -11,7 +11,7 @@ import { import React, { PropsWithChildren, useEffect } from "react"; import { ThemeSynchronizer } from "../hooks/theme-synchronizer"; -import { AppLayoutProps } from "../types"; +import { AppLayoutProps } from "../../types"; import { createGenerateClassName } from "@material-ui/core"; type PalettesOverride = Record<"light" | "dark", SaleorThemeColors>; diff --git a/apps/klaviyo/pages/_document.tsx b/apps/klaviyo/src/pages/_document.tsx similarity index 100% rename from apps/klaviyo/pages/_document.tsx rename to apps/klaviyo/src/pages/_document.tsx diff --git a/apps/klaviyo/pages/_error.tsx b/apps/klaviyo/src/pages/_error.tsx similarity index 100% rename from apps/klaviyo/pages/_error.tsx rename to apps/klaviyo/src/pages/_error.tsx diff --git a/apps/klaviyo/pages/api/configuration.ts b/apps/klaviyo/src/pages/api/configuration.ts similarity index 97% rename from apps/klaviyo/pages/api/configuration.ts rename to apps/klaviyo/src/pages/api/configuration.ts index 27fa4ff..eb90562 100644 --- a/apps/klaviyo/pages/api/configuration.ts +++ b/apps/klaviyo/src/pages/api/configuration.ts @@ -3,7 +3,7 @@ import { EncryptedMetadataManager } from "@saleor/app-sdk/settings-manager"; import { createClient } from "../../lib/graphql"; import { createSettingsManager } from "../../lib/metadata"; -import { saleorApp } from "../../saleor-app"; +import { saleorApp } from "../../../saleor-app"; type ConfigurationKeysType = | "PUBLIC_TOKEN" diff --git a/apps/klaviyo/pages/api/manifest.ts b/apps/klaviyo/src/pages/api/manifest.ts similarity index 96% rename from apps/klaviyo/pages/api/manifest.ts rename to apps/klaviyo/src/pages/api/manifest.ts index f1044b5..70b712c 100644 --- a/apps/klaviyo/pages/api/manifest.ts +++ b/apps/klaviyo/src/pages/api/manifest.ts @@ -1,7 +1,7 @@ import { createManifestHandler } from "@saleor/app-sdk/handlers/next"; import { AppManifest } from "@saleor/app-sdk/types"; -import pkg from "../../package.json"; +import pkg from "../../../package.json"; import { customerCreatedWebhook } from "./webhooks/customer-created"; import { fulfillmentCreatedWebhook } from "./webhooks/fulfillment-created"; import { orderCreatedWebhook } from "./webhooks/order-created"; diff --git a/apps/klaviyo/pages/api/register.ts b/apps/klaviyo/src/pages/api/register.ts similarity index 92% rename from apps/klaviyo/pages/api/register.ts rename to apps/klaviyo/src/pages/api/register.ts index dd0cef2..b1c9a74 100644 --- a/apps/klaviyo/pages/api/register.ts +++ b/apps/klaviyo/src/pages/api/register.ts @@ -1,6 +1,6 @@ import { createAppRegisterHandler } from "@saleor/app-sdk/handlers/next"; -import { saleorApp } from "../../saleor-app"; +import { saleorApp } from "../../../saleor-app"; const allowedUrlsPattern = process.env.ALLOWED_DOMAIN_PATTERN; diff --git a/apps/klaviyo/pages/api/webhooks/customer-created.ts b/apps/klaviyo/src/pages/api/webhooks/customer-created.ts similarity index 95% rename from apps/klaviyo/pages/api/webhooks/customer-created.ts rename to apps/klaviyo/src/pages/api/webhooks/customer-created.ts index d2062e5..140a702 100644 --- a/apps/klaviyo/pages/api/webhooks/customer-created.ts +++ b/apps/klaviyo/src/pages/api/webhooks/customer-created.ts @@ -4,11 +4,11 @@ import { gql } from "urql"; import { CustomerCreatedWebhookPayloadFragment, UntypedCustomerCreatedDocument, -} from "../../../generated/graphql"; +} from "../../../../generated/graphql"; import { createClient } from "../../../lib/graphql"; -import Klaviyo from "../../../lib/klaviyo"; +import { Klaviyo } from "../../../lib/klaviyo"; import { createSettingsManager } from "../../../lib/metadata"; -import { saleorApp } from "../../../saleor-app"; +import { saleorApp } from "../../../../saleor-app"; const CustomerCreatedWebhookPayload = gql` fragment CustomerCreatedWebhookPayload on CustomerCreated { diff --git a/apps/klaviyo/pages/api/webhooks/fulfillment-created.ts b/apps/klaviyo/src/pages/api/webhooks/fulfillment-created.ts similarity index 95% rename from apps/klaviyo/pages/api/webhooks/fulfillment-created.ts rename to apps/klaviyo/src/pages/api/webhooks/fulfillment-created.ts index 50f6c5a..751955d 100644 --- a/apps/klaviyo/pages/api/webhooks/fulfillment-created.ts +++ b/apps/klaviyo/src/pages/api/webhooks/fulfillment-created.ts @@ -4,11 +4,11 @@ import { gql } from "urql"; import { FulfillmentCreatedWebhookPayloadFragment, UntypedFulfillmentCreatedDocument, -} from "../../../generated/graphql"; +} from "../../../../generated/graphql"; import { createClient } from "../../../lib/graphql"; -import Klaviyo from "../../../lib/klaviyo"; +import { Klaviyo } from "../../../lib/klaviyo"; import { createSettingsManager } from "../../../lib/metadata"; -import { saleorApp } from "../../../saleor-app"; +import { saleorApp } from "../../../../saleor-app"; const FulfillmentCreatedWebhookPayload = gql` fragment FulfillmentCreatedWebhookPayload on FulfillmentCreated { diff --git a/apps/klaviyo/pages/api/webhooks/order-created.ts b/apps/klaviyo/src/pages/api/webhooks/order-created.ts similarity index 94% rename from apps/klaviyo/pages/api/webhooks/order-created.ts rename to apps/klaviyo/src/pages/api/webhooks/order-created.ts index 261c1b8..bb3fe63 100644 --- a/apps/klaviyo/pages/api/webhooks/order-created.ts +++ b/apps/klaviyo/src/pages/api/webhooks/order-created.ts @@ -4,11 +4,11 @@ import { gql } from "urql"; import { OrderCreatedWebhookPayloadFragment, UntypedOrderCreatedDocument, -} from "../../../generated/graphql"; +} from "../../../../generated/graphql"; import { createClient } from "../../../lib/graphql"; -import Klaviyo from "../../../lib/klaviyo"; +import { Klaviyo } from "../../../lib/klaviyo"; import { createSettingsManager } from "../../../lib/metadata"; -import { saleorApp } from "../../../saleor-app"; +import { saleorApp } from "../../../../saleor-app"; const OrderCreatedWebhookPayload = gql` fragment OrderCreatedWebhookPayload on OrderCreated { diff --git a/apps/klaviyo/pages/api/webhooks/order-fully-paid.ts b/apps/klaviyo/src/pages/api/webhooks/order-fully-paid.ts similarity index 94% rename from apps/klaviyo/pages/api/webhooks/order-fully-paid.ts rename to apps/klaviyo/src/pages/api/webhooks/order-fully-paid.ts index d59dacd..ddde85a 100644 --- a/apps/klaviyo/pages/api/webhooks/order-fully-paid.ts +++ b/apps/klaviyo/src/pages/api/webhooks/order-fully-paid.ts @@ -4,11 +4,11 @@ import { gql } from "urql"; import { OrderFullyPaidWebhookPayloadFragment, UntypedOrderFullyPaidDocument, -} from "../../../generated/graphql"; +} from "../../../../generated/graphql"; import { createClient } from "../../../lib/graphql"; -import Klaviyo from "../../../lib/klaviyo"; +import { Klaviyo } from "../../../lib/klaviyo"; import { createSettingsManager } from "../../../lib/metadata"; -import { saleorApp } from "../../../saleor-app"; +import { saleorApp } from "../../../../saleor-app"; const OrderFullyPaidWebhookPayload = gql` fragment OrderFullyPaidWebhookPayload on OrderFullyPaid { diff --git a/apps/klaviyo/pages/configuration.tsx b/apps/klaviyo/src/pages/configuration.tsx similarity index 97% rename from apps/klaviyo/pages/configuration.tsx rename to apps/klaviyo/src/pages/configuration.tsx index 8b6c6c8..0d8feb8 100644 --- a/apps/klaviyo/pages/configuration.tsx +++ b/apps/klaviyo/src/pages/configuration.tsx @@ -6,11 +6,11 @@ import { SALEOR_API_URL_HEADER, SALEOR_AUTHORIZATION_BEARER_HEADER } from "@sale 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 { AccessWarning } from "../components/AccessWarning/AccessWarning"; +import { useAppApi } from "../hooks/useAppApi"; import { AppColumnsLayout } from "../lib/ui/app-columns-layout"; -import useDashboardNotifier from "../utils/useDashboardNotifier"; +import { useDashboardNotifier } from "../utils/useDashboardNotifier"; interface ConfigurationField { key: string; diff --git a/apps/klaviyo/styles/globals.css b/apps/klaviyo/src/styles/globals.css similarity index 100% rename from apps/klaviyo/styles/globals.css rename to apps/klaviyo/src/styles/globals.css diff --git a/apps/klaviyo/utils/useDashboardNotifier.ts b/apps/klaviyo/src/utils/useDashboardNotifier.ts similarity index 80% rename from apps/klaviyo/utils/useDashboardNotifier.ts rename to apps/klaviyo/src/utils/useDashboardNotifier.ts index 0b6d80d..e42b451 100644 --- a/apps/klaviyo/utils/useDashboardNotifier.ts +++ b/apps/klaviyo/src/utils/useDashboardNotifier.ts @@ -1,6 +1,6 @@ import { actions, NotificationPayload, useAppBridge } from "@saleor/app-sdk/app-bridge"; -const useDashboardNotifier = () => { +export const useDashboardNotifier = () => { const { appBridgeState, appBridge } = useAppBridge(); const notify = (payload: NotificationPayload) => @@ -8,5 +8,3 @@ const useDashboardNotifier = () => { return [notify]; }; - -export default useDashboardNotifier; diff --git a/apps/monitoring/src/graphql-provider.tsx b/apps/monitoring/src/graphql-provider.tsx index 0da93d9..8ad0a04 100644 --- a/apps/monitoring/src/graphql-provider.tsx +++ b/apps/monitoring/src/graphql-provider.tsx @@ -3,7 +3,7 @@ import { PropsWithChildren } from "react"; import { Provider } from "urql"; import { createClient } from "./lib/create-graphq-client"; -function GraphQLProvider(props: PropsWithChildren<{}>) { +export function GraphQLProvider(props: PropsWithChildren<{}>) { const { appBridgeState } = useAppBridge(); const client = createClient( @@ -14,5 +14,3 @@ function GraphQLProvider(props: PropsWithChildren<{}>) { return ; } - -export default GraphQLProvider; diff --git a/apps/monitoring/src/pages/_app.tsx b/apps/monitoring/src/pages/_app.tsx index 7949c08..fa42ec3 100644 --- a/apps/monitoring/src/pages/_app.tsx +++ b/apps/monitoring/src/pages/_app.tsx @@ -14,7 +14,7 @@ import { AppProps } from "next/app"; import { ThemeSynchronizer } from "../lib/theme-synchronizer"; import { NoSSRWrapper } from "../lib/no-ssr-wrapper"; -import GraphQLProvider from "../graphql-provider"; +import { GraphQLProvider } from "../graphql-provider"; const themeOverrides: Partial = { /** diff --git a/apps/products-feed/src/modules/app-configuration/ui/channels-configuration.tsx b/apps/products-feed/src/modules/app-configuration/ui/channels-configuration.tsx index 483f78a..cc36470 100644 --- a/apps/products-feed/src/modules/app-configuration/ui/channels-configuration.tsx +++ b/apps/products-feed/src/modules/app-configuration/ui/channels-configuration.tsx @@ -8,8 +8,7 @@ import { actions, useAppBridge } from "@saleor/app-sdk/app-bridge"; import { AppColumnsLayout } from "../../ui/app-columns-layout"; import { FeedPreviewCard } from "./feed-preview-card"; import { Instructions } from "./instructions"; -import SideMenu from "./side-menu"; -import { CategoryMappingForm } from "../../category-mapping/ui/category-mapping-form"; +import { SideMenu } from "./side-menu"; const useStyles = makeStyles((theme) => { return { diff --git a/apps/products-feed/src/modules/app-configuration/ui/side-menu.tsx b/apps/products-feed/src/modules/app-configuration/ui/side-menu.tsx index 83ea304..16578b2 100644 --- a/apps/products-feed/src/modules/app-configuration/ui/side-menu.tsx +++ b/apps/products-feed/src/modules/app-configuration/ui/side-menu.tsx @@ -107,5 +107,3 @@ export const SideMenu: React.FC = ({ ); }; - -export default SideMenu; diff --git a/apps/search/package.json b/apps/search/package.json index ad2bfe5..9f70f94 100644 --- a/apps/search/package.json +++ b/apps/search/package.json @@ -20,7 +20,7 @@ "@saleor/app-sdk": "0.37.1", "@saleor/apps-shared": "workspace:*", "@saleor/macaw-ui": "0.7.2", - "@sentry/nextjs": "^7.31.1", + "@sentry/nextjs": "^7.46.0", "@types/debug": "^4.1.7", "@urql/exchange-auth": "^1.0.0", "algoliasearch": "4.14.2", @@ -29,7 +29,7 @@ "graphql": "^16.6.0", "graphql-tag": "^2.12.6", "instantsearch.css": "^7.4.5", - "next": "13.1.6", + "next": "13.2.4", "next-urql": "4.0.0", "react": "18.2.0", "react-dom": "18.2.0", diff --git a/apps/search/src/components/AlgoliaConfigurationCard.tsx b/apps/search/src/components/AlgoliaConfigurationCard.tsx index 04f39b4..72ed708 100644 --- a/apps/search/src/components/AlgoliaConfigurationCard.tsx +++ b/apps/search/src/components/AlgoliaConfigurationCard.tsx @@ -164,4 +164,3 @@ export const AlgoliaConfigurationCard = () => { /** * Export default for Next.dynamic */ -export default AlgoliaConfigurationCard; diff --git a/apps/search/src/components/ConfigurationView.tsx b/apps/search/src/components/ConfigurationView.tsx index 9c88f48..bcc9bdd 100644 --- a/apps/search/src/components/ConfigurationView.tsx +++ b/apps/search/src/components/ConfigurationView.tsx @@ -1,9 +1,9 @@ import { Card, CardContent, CardHeader } from "@material-ui/core"; import { ImportProductsToAlgolia } from "./ImportProductsToAlgolia"; -import AlgoliaConfigurationCard from "./AlgoliaConfigurationCard"; -import { makeStyles, PageTab, PageTabs } from "@saleor/macaw-ui"; +import { AlgoliaConfigurationCard } from "./AlgoliaConfigurationCard"; +import { makeStyles } from "@saleor/macaw-ui"; import { useRouter } from "next/router"; -import Instructions from "./Instructions"; +import { Instructions } from "./Instructions"; import { AppColumnsLayout } from "./AppColumnsLayout"; @@ -24,15 +24,9 @@ const useStyles = makeStyles((theme) => ({ export const ConfigurationView = () => { const styles = useStyles(); - const router = useRouter(); - const handleClick = (val: string) => router.push("/" + val); return (
- - - -
@@ -49,8 +43,3 @@ export const ConfigurationView = () => {
); }; - -/** - * Export default for Next.dynamic - */ -export default ConfigurationView; diff --git a/apps/search/src/components/Instructions.tsx b/apps/search/src/components/Instructions.tsx index 029f3c8..7c5eadb 100644 --- a/apps/search/src/components/Instructions.tsx +++ b/apps/search/src/components/Instructions.tsx @@ -1,7 +1,7 @@ import { Card, CardContent, CardHeader, List, ListItem, Typography, Link } from "@material-ui/core"; import { useAppBridge } from "@saleor/app-sdk/app-bridge"; -function Instructions() { +export function Instructions() { const { appBridge } = useAppBridge(); const algoliaDashboardUrl = "https://www.algolia.com/apps/dashboard"; @@ -70,5 +70,3 @@ function Instructions() { ); } - -export default Instructions; diff --git a/apps/search/src/pages/_app.tsx b/apps/search/src/pages/_app.tsx index a3c810c..cc28f2f 100644 --- a/apps/search/src/pages/_app.tsx +++ b/apps/search/src/pages/_app.tsx @@ -10,7 +10,7 @@ import { } from "@saleor/macaw-ui"; import React, { PropsWithChildren, useEffect } from "react"; import { AppProps } from "next/app"; -import GraphQLProvider from "../providers/GraphQLProvider"; +import { GraphQLProvider } from "../providers/GraphQLProvider"; import { QueryClient, QueryClientProvider } from "react-query"; import { RoutePropagator } from "@saleor/app-sdk/app-bridge/next"; import { ThemeSynchronizer } from "../lib/theme-synchronizer"; diff --git a/apps/search/src/pages/index.tsx b/apps/search/src/pages/index.tsx index a7796bc..a8ecb0f 100644 --- a/apps/search/src/pages/index.tsx +++ b/apps/search/src/pages/index.tsx @@ -1,5 +1,5 @@ import { useAppBridge, withAuthorization } from "@saleor/app-sdk/app-bridge"; -import ConfigurationView from "../components/ConfigurationView"; +import { ConfigurationView } from "../components/ConfigurationView"; import { isInIframe } from "@saleor/apps-shared"; import { LinearProgress } from "@material-ui/core"; diff --git a/apps/search/src/pages/search/index.tsx b/apps/search/src/pages/search/index.tsx deleted file mode 100644 index b218697..0000000 --- a/apps/search/src/pages/search/index.tsx +++ /dev/null @@ -1,110 +0,0 @@ -import algoliasearch from "algoliasearch"; -import { InstantSearch, Pagination } from "react-instantsearch-hooks-web"; -import { Card, CardContent, CardHeader, MenuItem, Select } from "@material-ui/core"; -import "instantsearch.css/themes/reset.css"; -import "instantsearch.css/themes/satellite.css"; -import styles from "../../styles/search.module.css"; - -import { makeStyles, PageTab, PageTabs } from "@saleor/macaw-ui"; -import { SearchBox } from "../../components/SearchBox"; -import { Hits } from "../../components/Hits"; -import { useRouter } from "next/router"; -import { useAppBridge } from "@saleor/app-sdk/app-bridge"; -import { useConfiguration } from "../../lib/configuration"; -import { useMemo, useState } from "react"; -import { useQuery } from "react-query"; - -import { AppColumnsLayout } from "../../components/AppColumnsLayout"; - -const useStyles = makeStyles((theme) => ({ - wrapper: { - paddingBottom: 50, - }, - content: { - padding: "0 50px", - }, -})); - -function Search() { - const classes = useStyles(); - const { appBridgeState } = useAppBridge(); - const [indexName, setIndexName] = useState(); - const algoliaConfiguration = useConfiguration( - appBridgeState?.saleorApiUrl, - appBridgeState?.token - ); - - const searchClient = useMemo(() => { - if (!algoliaConfiguration.data?.appId || !algoliaConfiguration.data.secretKey) { - return null; - } - return algoliasearch(algoliaConfiguration.data.appId, algoliaConfiguration.data.secretKey); - }, [algoliaConfiguration?.data?.appId, algoliaConfiguration?.data?.secretKey]); - - const router = useRouter(); - const handleClick = (val: string) => router.push("/" + val); - - const indicesQuery = useQuery({ - queryKey: ["indices"], - queryFn: () => searchClient?.listIndices(), - onSuccess: (data) => { - // auto select the first fetched index to display its contents - if (data?.items?.length) { - setIndexName(data.items[0].name); - } - }, - enabled: !!searchClient, - }); - - const availableIndices = indicesQuery.data?.items.map((index) => index.name) || []; - - const displayInterface = !!searchClient && indexName; - - return ( -
- - - - - -
- {displayInterface ? ( - - -
- - - - - - -
-
- - - -
-
-
- ) : ( - - - - )} -
-
- ); -} - -export default Search; diff --git a/apps/search/src/providers/GraphQLProvider.tsx b/apps/search/src/providers/GraphQLProvider.tsx index 4767d19..33b3611 100644 --- a/apps/search/src/providers/GraphQLProvider.tsx +++ b/apps/search/src/providers/GraphQLProvider.tsx @@ -4,7 +4,7 @@ import { Provider } from "urql"; import { createClient } from "../lib/graphql"; -function GraphQLProvider(props: PropsWithChildren<{}>) { +export function GraphQLProvider(props: PropsWithChildren<{}>) { const { appBridgeState } = useAppBridge(); const saleorApiUrl = appBridgeState?.saleorApiUrl!; @@ -18,5 +18,3 @@ function GraphQLProvider(props: PropsWithChildren<{}>) { return ; } - -export default GraphQLProvider; diff --git a/apps/slack/src/components/AccessWarning/AccessWarning.tsx b/apps/slack/src/components/AccessWarning/AccessWarning.tsx index 19cdb8e..1091756 100644 --- a/apps/slack/src/components/AccessWarning/AccessWarning.tsx +++ b/apps/slack/src/components/AccessWarning/AccessWarning.tsx @@ -18,7 +18,7 @@ const warnings: Record = { unknown_cause: "Something went wrong.", }; -function AccessWarning({ cause = "unknown_cause" }: AccessWarningProps) { +export function AccessWarning({ cause = "unknown_cause" }: AccessWarningProps) { return (
@@ -30,5 +30,3 @@ function AccessWarning({ cause = "unknown_cause" }: AccessWarningProps) {
); } - -export default AccessWarning; diff --git a/apps/slack/src/components/LoadingPage/LoadingPage.tsx b/apps/slack/src/components/LoadingPage/LoadingPage.tsx index 02b98e9..a87ee61 100644 --- a/apps/slack/src/components/LoadingPage/LoadingPage.tsx +++ b/apps/slack/src/components/LoadingPage/LoadingPage.tsx @@ -16,5 +16,3 @@ function LoadingPage() {
); } - -export default LoadingPage; diff --git a/apps/slack/src/hooks/useAppApi.ts b/apps/slack/src/hooks/useAppApi.ts index 63f07ee..073e557 100644 --- a/apps/slack/src/hooks/useAppApi.ts +++ b/apps/slack/src/hooks/useAppApi.ts @@ -11,7 +11,7 @@ interface UseFetchProps { } // This hook is meant to be used mainly for internal API calls -const useAppApi = ({ url, options, skip }: UseFetchProps) => { +export const useAppApi = ({ url, options, skip }: UseFetchProps) => { const { appBridgeState } = useAppBridge(); const [data, setData] = useState(); @@ -60,5 +60,3 @@ const useAppApi = ({ url, options, skip }: UseFetchProps) => { return { data, error, loading }; }; - -export default useAppApi; diff --git a/apps/slack/src/pages/configuration.tsx b/apps/slack/src/pages/configuration.tsx index e03e828..e48d553 100644 --- a/apps/slack/src/pages/configuration.tsx +++ b/apps/slack/src/pages/configuration.tsx @@ -14,10 +14,10 @@ import { SALEOR_API_URL_HEADER, SALEOR_AUTHORIZATION_BEARER_HEADER } from "@sale import { ConfirmButton, ConfirmButtonTransitionState, makeStyles } from "@saleor/macaw-ui"; import { ChangeEvent, ReactElement, SyntheticEvent, useEffect, useState } from "react"; -import AccessWarning from "../components/AccessWarning/AccessWarning"; +import { AccessWarning } from "../components/AccessWarning/AccessWarning"; import { ConfigurationError } from "../components/ConfigurationError/ConfigurationError"; -import useAppApi from "../hooks/useAppApi"; -import useDashboardNotifier from "../utils/useDashboardNotifier"; +import { useAppApi } from "../hooks/useAppApi"; +import { useDashboardNotifier } from "../utils/useDashboardNotifier"; import { AppColumnsLayout } from "../components/AppColumnsLayout/AppColumnsLayout"; interface ConfigurationField { diff --git a/apps/slack/src/utils/useDashboardNotifier.ts b/apps/slack/src/utils/useDashboardNotifier.ts index 199a4a4..9c0f071 100644 --- a/apps/slack/src/utils/useDashboardNotifier.ts +++ b/apps/slack/src/utils/useDashboardNotifier.ts @@ -1,6 +1,6 @@ import { actions, NotificationPayload, useAppBridge } from "@saleor/app-sdk/app-bridge"; -const useDashboardNotifier = () => { +export const useDashboardNotifier = () => { const { appBridge, appBridgeState } = useAppBridge(); const notify = (payload: NotificationPayload) => @@ -8,5 +8,3 @@ const useDashboardNotifier = () => { return [notify]; }; - -export default useDashboardNotifier; diff --git a/apps/taxes/src/pages/_app.tsx b/apps/taxes/src/pages/_app.tsx index ce2f574..d54fa7b 100644 --- a/apps/taxes/src/pages/_app.tsx +++ b/apps/taxes/src/pages/_app.tsx @@ -12,7 +12,7 @@ import { import React, { PropsWithChildren, useEffect } from "react"; import { AppProps } from "next/app"; -import GraphQLProvider from "../providers/GraphQLProvider"; +import { GraphQLProvider } from "../providers/GraphQLProvider"; import { ThemeSynchronizer } from "../lib/theme-synchronizer"; import { trpcClient } from "../modules/trpc/trpc-client"; import { NoSSRWrapper } from "../lib/no-ssr-wrapper"; diff --git a/apps/taxes/src/providers/GraphQLProvider.tsx b/apps/taxes/src/providers/GraphQLProvider.tsx index 39c892f..8019543 100644 --- a/apps/taxes/src/providers/GraphQLProvider.tsx +++ b/apps/taxes/src/providers/GraphQLProvider.tsx @@ -4,7 +4,7 @@ import { Provider } from "urql"; import { createClient } from "../lib/graphql"; -function GraphQLProvider(props: PropsWithChildren<{}>) { +export function GraphQLProvider(props: PropsWithChildren<{}>) { const { appBridgeState } = useAppBridge(); if (!appBridgeState?.saleorApiUrl) { @@ -17,5 +17,3 @@ function GraphQLProvider(props: PropsWithChildren<{}>) { return ; } - -export default GraphQLProvider; diff --git a/packages/eslint-config-saleor/index.js b/packages/eslint-config-saleor/index.js index 59d8ee4..9d625ee 100644 --- a/packages/eslint-config-saleor/index.js +++ b/packages/eslint-config-saleor/index.js @@ -3,11 +3,19 @@ module.exports = { rules: { "@next/next/no-html-link-for-pages": "off", "react/jsx-key": "off", + "import/no-default-export": "error", }, parserOptions: { babelOptions: { presets: [require.resolve("next/babel")], }, }, + overrides: [ + { + files: ["src/pages/**/*", "src/pages/api/**/*", "vitest.config.ts", "generated/graphql.ts"], + rules: { + "import/no-default-export": "off", + }, + }, + ], }; - diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bd89d7b..f621a86 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -734,7 +734,7 @@ importers: '@saleor/app-sdk': 0.37.1 '@saleor/apps-shared': workspace:* '@saleor/macaw-ui': 0.7.2 - '@sentry/nextjs': ^7.31.1 + '@sentry/nextjs': ^7.46.0 '@types/debug': ^4.1.7 '@types/node': ^18.11.9 '@types/react': ^18.0.25 @@ -750,7 +750,7 @@ importers: graphql: ^16.6.0 graphql-tag: ^2.12.6 instantsearch.css: ^7.4.5 - next: 13.1.6 + next: 13.2.4 next-urql: 4.0.0 prettier: ^2.7.1 react: 18.2.0 @@ -765,10 +765,10 @@ importers: '@material-ui/core': 4.12.4_5ndqzdd6t4rivxsukjv3i3ak2q '@material-ui/icons': 4.11.3_x54wk6dsnsxe7g7vvfmytp77te '@material-ui/lab': 4.0.0-alpha.61_x54wk6dsnsxe7g7vvfmytp77te - '@saleor/app-sdk': 0.37.1_3vryta7zmbcsw4rrqf4axjqggm + '@saleor/app-sdk': 0.37.1_ld2jel3hspngo3u5lti2kgl2sq '@saleor/apps-shared': link:../../packages/shared '@saleor/macaw-ui': 0.7.2_2dwar4pp5qoelfawvjffoi6dne - '@sentry/nextjs': 7.36.0_next@13.1.6+react@18.2.0 + '@sentry/nextjs': 7.46.0_next@13.2.4+react@18.2.0 '@types/debug': 4.1.7 '@urql/exchange-auth': 1.0.0_graphql@16.6.0 algoliasearch: 4.14.2 @@ -777,7 +777,7 @@ importers: graphql: 16.6.0 graphql-tag: 2.12.6_graphql@16.6.0 instantsearch.css: 7.4.5 - next: 13.1.6_biqbaboplfbrettd7655fr4n2y + next: 13.2.4_biqbaboplfbrettd7655fr4n2y next-urql: 4.0.0_react@18.2.0+urql@3.0.3 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -4901,6 +4901,16 @@ packages: tslib: 1.14.1 dev: false + /@sentry-internal/tracing/7.46.0: + resolution: {integrity: sha512-KYoppa7PPL8Er7bdPoxTNUfIY804JL7hhOEomQHYD22rLynwQ4AaLm3YEY75QWwcGb0B7ZDMV+tSumW7Rxuwuw==} + engines: {node: '>=8'} + dependencies: + '@sentry/core': 7.46.0 + '@sentry/types': 7.46.0 + '@sentry/utils': 7.46.0 + tslib: 1.14.1 + dev: false + /@sentry/browser/7.36.0: resolution: {integrity: sha512-Mu0OpisCZFICBGxVXdHWjUDgSvuQKjnO9acNcXR1+68IU08iX+cU6f2kq6VzI4mW/pNieI20FDFbx9KA0YZ4+A==} engines: {node: '>=8'} @@ -4946,6 +4956,18 @@ packages: tslib: 1.14.1 dev: false + /@sentry/browser/7.46.0: + resolution: {integrity: sha512-4rX9hKPjxzfH5LhZzO5DlS5NXQ8qZg2ibepaqEgcDHrpYh5813mjjnE4OQA8wiZ6WuG3xKFgHBrGeliD5jXz9w==} + engines: {node: '>=8'} + dependencies: + '@sentry-internal/tracing': 7.46.0 + '@sentry/core': 7.46.0 + '@sentry/replay': 7.46.0 + '@sentry/types': 7.46.0 + '@sentry/utils': 7.46.0 + tslib: 1.14.1 + dev: false + /@sentry/cli/1.74.6: resolution: {integrity: sha512-pJ7JJgozyjKZSTjOGi86chIngZMLUlYt2HOog+OJn+WGvqEkVymu8m462j1DiXAnex9NspB4zLLNuZ/R6rTQHg==} engines: {node: '>= 8'} @@ -5000,6 +5022,15 @@ packages: tslib: 1.14.1 dev: false + /@sentry/core/7.46.0: + resolution: {integrity: sha512-BnNHGh/ZTztqQedFko7vb2u6yLs/kWesOQNivav32ZbsEpVCjcmG1gOJXh2YmGIvj3jXOC9a4xfIuh+lYFcA6A==} + engines: {node: '>=8'} + dependencies: + '@sentry/types': 7.46.0 + '@sentry/utils': 7.46.0 + tslib: 1.14.1 + dev: false + /@sentry/integrations/7.36.0: resolution: {integrity: sha512-wrRoUqdeGi64NNimGVk8U8DBiXamxTYPBux0/faFDyau8EJyQFcv8zOyB78Za4W2Ss3ZXNaE/WtFF8UxalHzBQ==} engines: {node: '>=8'} @@ -5040,6 +5071,16 @@ packages: tslib: 1.14.1 dev: false + /@sentry/integrations/7.46.0: + resolution: {integrity: sha512-Y/KreRcROYJif0nM8+kQAkaCvuwGzpqMwLKkC5CfG1xLLDch+OI7HRU98HevyqXNk6YAzQdvBOYXSe7Ny6Zc0A==} + engines: {node: '>=8'} + dependencies: + '@sentry/types': 7.46.0 + '@sentry/utils': 7.46.0 + localforage: 1.10.0 + tslib: 1.14.1 + dev: false + /@sentry/nextjs/7.36.0_next@13.1.0+react@18.2.0: resolution: {integrity: sha512-7IUwBjCjo3rWuvEG16D1wKb0D+aMyCU920VGCAQVZaqTZAgrgAKfpTa1Sk0fmDxYglW1EBI9QM+WEnOa9RleLw==} engines: {node: '>=8'} @@ -5191,6 +5232,36 @@ packages: - supports-color dev: false + /@sentry/nextjs/7.46.0_next@13.2.4+react@18.2.0: + resolution: {integrity: sha512-v6Eigug95d2BUkFNPSLJ3L5PX2SEObcR14H0B9KSoX8nbocIEpIN6joQ+V0YPv9NR35kI83RUBZI36V3RsMl4A==} + 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.46.0 + '@sentry/integrations': 7.46.0 + '@sentry/node': 7.46.0 + '@sentry/react': 7.46.0_react@18.2.0 + '@sentry/types': 7.46.0 + '@sentry/utils': 7.46.0 + '@sentry/webpack-plugin': 1.20.0 + chalk: 3.0.0 + next: 13.2.4_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + rollup: 2.78.0 + stacktrace-parser: 0.1.10 + tslib: 1.14.1 + transitivePeerDependencies: + - encoding + - supports-color + dev: false + /@sentry/node/7.36.0: resolution: {integrity: sha512-nAHAY+Rbn5OlTpNX/i6wYrmw3hT/BtwPZ/vNU52cKgw7CpeE1UrCeFjnPn18rQPB7lIh7x0vNvoaPrfemRzpSQ==} engines: {node: '>=8'} @@ -5252,6 +5323,22 @@ packages: - supports-color dev: false + /@sentry/node/7.46.0: + resolution: {integrity: sha512-+GrgJMCye2WXGarRiU5IJHCK27xg7xbPc2XjGojBKbBoZfqxVAWbXEK4bnBQgRGP1pCmrU/M6ZhVgR3dP580xA==} + engines: {node: '>=8'} + dependencies: + '@sentry-internal/tracing': 7.46.0 + '@sentry/core': 7.46.0 + '@sentry/types': 7.46.0 + '@sentry/utils': 7.46.0 + 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.36.0_react@18.2.0: resolution: {integrity: sha512-ttrRqbgeqvkV3DwkDRZC/V8OEnBKGpQf4dKpG8oMlfdVbMTINzrxYUgkhi9xAkxkH9O+vj3Md8L3Rdqw/SDwKQ==} engines: {node: '>=8'} @@ -5308,6 +5395,20 @@ packages: tslib: 1.14.1 dev: false + /@sentry/react/7.46.0_react@18.2.0: + resolution: {integrity: sha512-4U7gZ5XwzCgIAH00SJe2MEjJfZq1vB4M7/YYFTjfo5geVux/c+54xgVCxZiQpCaLJBJ5NoB9Fi47RrHbxauTGA==} + engines: {node: '>=8'} + peerDependencies: + react: 15.x || 16.x || 17.x || 18.x + dependencies: + '@sentry/browser': 7.46.0 + '@sentry/types': 7.46.0 + '@sentry/utils': 7.46.0 + hoist-non-react-statics: 3.3.2 + react: 18.2.0 + tslib: 1.14.1 + dev: false + /@sentry/replay/7.36.0: resolution: {integrity: sha512-wNbME74/2GtkqdDXz7NaStyfPWVLjYmN9TFWvu6E9sNl9pkDDvii/Qc8F6ps1wa7bozkKcWRHgNvYiGCxUBHcg==} engines: {node: '>=12'} @@ -5344,6 +5445,15 @@ packages: '@sentry/utils': 7.45.0 dev: false + /@sentry/replay/7.46.0: + resolution: {integrity: sha512-rHsAFdeEu47JRy6mEwwN+M+zTTWlOFWw9sR/eDCvik2lxAXBN2mXvf/N/MN9zQB3+QnS13ke+SvwVW7CshLOXg==} + engines: {node: '>=12'} + dependencies: + '@sentry/core': 7.46.0 + '@sentry/types': 7.46.0 + '@sentry/utils': 7.46.0 + dev: false + /@sentry/tracing/7.36.0: resolution: {integrity: sha512-5R5mfWMDncOcTMmmyYMjgus1vZJzIFw4LHaSbrX7e1IRNT/6vFyNeVxATa2ePXb9mI3XHo5f2p7YrnreAtaSXw==} engines: {node: '>=8'} @@ -5394,6 +5504,11 @@ packages: engines: {node: '>=8'} dev: false + /@sentry/types/7.46.0: + resolution: {integrity: sha512-2FMEMgt2h6u7AoELhNhu9L54GAh67KKfK2pJ1kEXJHmWxM9FSCkizjLs/t+49xtY7jEXr8qYq8bV967VfDPQ9g==} + engines: {node: '>=8'} + dev: false + /@sentry/utils/7.36.0: resolution: {integrity: sha512-mgDi5X5Bm0sydCzXpnyKD/sD98yc2qnKXyRdNX4HRRwruhC/P53LT0hGhZXsyqsB/l8OAMl0zWXJLg0xONQsEw==} engines: {node: '>=8'} @@ -5426,6 +5541,14 @@ packages: tslib: 1.14.1 dev: false + /@sentry/utils/7.46.0: + resolution: {integrity: sha512-elRezDAF84guMG0OVIIZEWm6wUpgbda4HGks98CFnPsrnMm3N1bdBI9XdlxYLtf+ir5KsGR5YlEIf/a0kRUwAQ==} + engines: {node: '>=8'} + dependencies: + '@sentry/types': 7.46.0 + tslib: 1.14.1 + dev: false + /@sentry/webpack-plugin/1.20.0: resolution: {integrity: sha512-Ssj1mJVFsfU6vMCOM2d+h+KQR7QHSfeIP16t4l20Uq/neqWXZUQ2yvQfe4S3BjdbJXz/X4Rw8Hfy1Sd0ocunYw==} engines: {node: '>= 8'}