diff --git a/gatsby-frontend/gatsby-config.js b/gatsby-frontend/gatsby-config.js index 09d801d..8ae0596 100644 --- a/gatsby-frontend/gatsby-config.js +++ b/gatsby-frontend/gatsby-config.js @@ -49,8 +49,10 @@ module.exports = { options: { // Your GraphCMS API endpoint. Available from your project settings. endpoint: process.env.GRAPHCMS_ENDPOINT, - // A PAT (Permanent Auth Token) for your project. Required if your project is not available publicly, or you want to scope access to a specific content stage (i.e. draft content). stages: ['DRAFT', 'PUBLISHED'].filter(stage => process.env.NODE_ENV !== 'production' || stage === 'PUBLISHED'), + queryConcurrency: 1, + // A PAT (Permanent Auth Token) for your project. Required if your project is not available publicly, or you want to scope access to a specific content stage (i.e. draft content). + token: process.env.GRAPHCMS_TOKEN, }, }, ], diff --git a/gatsby-frontend/graphcms-fragments/Asset.graphql b/gatsby-frontend/graphcms-fragments/Asset.graphql index 500797c..5271624 100644 --- a/gatsby-frontend/graphcms-fragments/Asset.graphql +++ b/gatsby-frontend/graphcms-fragments/Asset.graphql @@ -1,17 +1,17 @@ fragment Asset on Asset { stage locale - remoteId: id - createdAt(variation: COMBINED) - updatedAt(variation: COMBINED) - publishedAt(variation: COMBINED) - handle - fileName - height - width - size mimeType - createdBy { + size + width + height + fileName + handle + publishedAt(variation: COMBINED) + updatedAt(variation: COMBINED) + createdAt(variation: COMBINED) + remoteId: id + publishedBy { ... on User { remoteTypeName: __typename remoteId: id @@ -25,7 +25,7 @@ fragment Asset on Asset { stage } } - publishedBy { + createdBy { ... on User { remoteTypeName: __typename remoteId: id @@ -39,6 +39,27 @@ fragment Asset on Asset { stage } } + iconSpeciality { + ... on Speciality { + remoteTypeName: __typename + remoteId: id + stage + } + } + iconTechnology { + ... on Technology { + remoteTypeName: __typename + remoteId: id + stage + } + } + headerImageBlog { + ... on Blog { + remoteTypeName: __typename + remoteId: id + stage + } + } scheduledIn { ... on ScheduledOperation { remoteTypeName: __typename diff --git a/gatsby-frontend/graphcms-fragments/Blog.graphql b/gatsby-frontend/graphcms-fragments/Blog.graphql index cedcdfb..f3ed583 100644 --- a/gatsby-frontend/graphcms-fragments/Blog.graphql +++ b/gatsby-frontend/graphcms-fragments/Blog.graphql @@ -1,9 +1,9 @@ fragment Blog on Blog { stage - remoteId: id - createdAt - updatedAt publishedAt + updatedAt + createdAt + remoteId: id title description content { @@ -14,7 +14,7 @@ fragment Blog on Blog { text } } - createdBy { + publishedBy { ... on User { remoteTypeName: __typename remoteId: id @@ -28,7 +28,7 @@ fragment Blog on Blog { stage } } - publishedBy { + createdBy { ... on User { remoteTypeName: __typename remoteId: id diff --git a/gatsby-frontend/graphcms-fragments/Link.graphql b/gatsby-frontend/graphcms-fragments/Link.graphql index 134709a..e92699e 100644 --- a/gatsby-frontend/graphcms-fragments/Link.graphql +++ b/gatsby-frontend/graphcms-fragments/Link.graphql @@ -1,13 +1,12 @@ fragment Link on Link { stage - remoteId: id - createdAt - updatedAt publishedAt + updatedAt + createdAt + remoteId: id title url - type - createdBy { + publishedBy { ... on User { remoteTypeName: __typename remoteId: id @@ -21,13 +20,14 @@ fragment Link on Link { stage } } - publishedBy { + createdBy { ... on User { remoteTypeName: __typename remoteId: id stage } } + type scheduledIn { ... on ScheduledOperation { remoteTypeName: __typename diff --git a/gatsby-frontend/graphcms-fragments/PortfolioItem.graphql b/gatsby-frontend/graphcms-fragments/PortfolioItem.graphql index 0e9bb46..08fcc63 100644 --- a/gatsby-frontend/graphcms-fragments/PortfolioItem.graphql +++ b/gatsby-frontend/graphcms-fragments/PortfolioItem.graphql @@ -1,12 +1,11 @@ fragment PortfolioItem on PortfolioItem { stage - remoteId: id - createdAt - updatedAt publishedAt + updatedAt + createdAt + remoteId: id title description - techSheet about { ... on RichText { raw @@ -15,7 +14,8 @@ fragment PortfolioItem on PortfolioItem { text } } - createdBy { + techSheet + publishedBy { ... on User { remoteTypeName: __typename remoteId: id @@ -29,7 +29,7 @@ fragment PortfolioItem on PortfolioItem { stage } } - publishedBy { + createdBy { ... on User { remoteTypeName: __typename remoteId: id diff --git a/gatsby-frontend/graphcms-fragments/ScheduledOperation.graphql b/gatsby-frontend/graphcms-fragments/ScheduledOperation.graphql index c05d910..a709e0b 100644 --- a/gatsby-frontend/graphcms-fragments/ScheduledOperation.graphql +++ b/gatsby-frontend/graphcms-fragments/ScheduledOperation.graphql @@ -1,35 +1,35 @@ fragment ScheduledOperation on ScheduledOperation { stage - remoteId: id - createdAt - updatedAt - publishedAt - description - errorMessage rawPayload - createdBy { - ... on User { + errorMessage + description + publishedAt + updatedAt + createdAt + remoteId: id + release { + ... on ScheduledRelease { remoteTypeName: __typename remoteId: id stage } } - updatedBy { + publishedBy { ... on User { remoteTypeName: __typename remoteId: id stage } } - publishedBy { + updatedBy { ... on User { remoteTypeName: __typename remoteId: id stage } } - release { - ... on ScheduledRelease { + createdBy { + ... on User { remoteTypeName: __typename remoteId: id stage @@ -43,6 +43,11 @@ fragment ScheduledOperation on ScheduledOperation { locale stage } + ... on Blog { + remoteTypeName: __typename + remoteId: id + stage + } ... on Link { remoteTypeName: __typename remoteId: id @@ -53,5 +58,15 @@ fragment ScheduledOperation on ScheduledOperation { remoteId: id stage } + ... on Speciality { + remoteTypeName: __typename + remoteId: id + stage + } + ... on Technology { + remoteTypeName: __typename + remoteId: id + stage + } } } \ No newline at end of file diff --git a/gatsby-frontend/graphcms-fragments/ScheduledRelease.graphql b/gatsby-frontend/graphcms-fragments/ScheduledRelease.graphql index f949c0c..1ea2b07 100644 --- a/gatsby-frontend/graphcms-fragments/ScheduledRelease.graphql +++ b/gatsby-frontend/graphcms-fragments/ScheduledRelease.graphql @@ -1,38 +1,38 @@ fragment ScheduledRelease on ScheduledRelease { stage - remoteId: id - createdAt - updatedAt - publishedAt - title - description - errorMessage - isActive - isImplicit releaseAt - createdBy { - ... on User { + isImplicit + isActive + errorMessage + description + title + publishedAt + updatedAt + createdAt + remoteId: id + operations { + ... on ScheduledOperation { remoteTypeName: __typename remoteId: id stage } } - updatedBy { + publishedBy { ... on User { remoteTypeName: __typename remoteId: id stage } } - publishedBy { + updatedBy { ... on User { remoteTypeName: __typename remoteId: id stage } } - operations { - ... on ScheduledOperation { + createdBy { + ... on User { remoteTypeName: __typename remoteId: id stage diff --git a/gatsby-frontend/graphcms-fragments/Speciality.graphql b/gatsby-frontend/graphcms-fragments/Speciality.graphql index 110c546..80fa1d3 100644 --- a/gatsby-frontend/graphcms-fragments/Speciality.graphql +++ b/gatsby-frontend/graphcms-fragments/Speciality.graphql @@ -1,9 +1,9 @@ fragment Speciality on Speciality { stage - remoteId: id - createdAt - updatedAt publishedAt + updatedAt + createdAt + remoteId: id title description { ... on RichText { @@ -13,7 +13,7 @@ fragment Speciality on Speciality { text } } - createdBy { + publishedBy { ... on User { remoteTypeName: __typename remoteId: id @@ -27,7 +27,7 @@ fragment Speciality on Speciality { stage } } - publishedBy { + createdBy { ... on User { remoteTypeName: __typename remoteId: id diff --git a/gatsby-frontend/graphcms-fragments/Technology.graphql b/gatsby-frontend/graphcms-fragments/Technology.graphql index 28f55c2..d4fe081 100644 --- a/gatsby-frontend/graphcms-fragments/Technology.graphql +++ b/gatsby-frontend/graphcms-fragments/Technology.graphql @@ -1,9 +1,9 @@ fragment Technology on Technology { stage - remoteId: id - createdAt - updatedAt publishedAt + updatedAt + createdAt + remoteId: id title description { ... on RichText { @@ -27,7 +27,7 @@ fragment Technology on Technology { css } } - createdBy { + publishedBy { ... on User { remoteTypeName: __typename remoteId: id @@ -41,7 +41,7 @@ fragment Technology on Technology { stage } } - publishedBy { + createdBy { ... on User { remoteTypeName: __typename remoteId: id diff --git a/gatsby-frontend/graphcms-fragments/User.graphql b/gatsby-frontend/graphcms-fragments/User.graphql index 5cdc585..be8155d 100644 --- a/gatsby-frontend/graphcms-fragments/User.graphql +++ b/gatsby-frontend/graphcms-fragments/User.graphql @@ -1,11 +1,11 @@ fragment User on User { stage - remoteId: id - createdAt - updatedAt - publishedAt - name - picture isActive + picture + name + publishedAt + updatedAt + createdAt + remoteId: id kind } \ No newline at end of file diff --git a/gatsby-frontend/graphql-types.ts b/gatsby-frontend/graphql-types.ts index bf9f454..121066f 100644 --- a/gatsby-frontend/graphql-types.ts +++ b/gatsby-frontend/graphql-types.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/naming-convention */ export type Maybe = T | null; export type InputMaybe = Maybe; export type Exact = { [K in keyof T]: T[K] }; @@ -19,6 +20,7 @@ export type Scalars = { Date: any; /** The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */ JSON: any; + GatsbyImageData: any; }; export type File = Node & { @@ -69,7 +71,6 @@ export type File = Node & { internal: Internal; }; - export type FileModifiedTimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -77,7 +78,6 @@ export type FileModifiedTimeArgs = { locale?: InputMaybe; }; - export type FileAccessTimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -85,7 +85,6 @@ export type FileAccessTimeArgs = { locale?: InputMaybe; }; - export type FileChangeTimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -93,7 +92,6 @@ export type FileChangeTimeArgs = { locale?: InputMaybe; }; - export type FileBirthTimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -101,7 +99,6 @@ export type FileBirthTimeArgs = { locale?: InputMaybe; }; - export type FileAtimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -109,7 +106,6 @@ export type FileAtimeArgs = { locale?: InputMaybe; }; - export type FileMtimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -117,7 +113,6 @@ export type FileMtimeArgs = { locale?: InputMaybe; }; - export type FileCtimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -142,6 +137,7 @@ export type Internal = { mediaType?: Maybe; owner: Scalars['String']; type: Scalars['String']; + contentFilePath?: Maybe; }; export type Directory = Node & { @@ -184,7 +180,6 @@ export type Directory = Node & { internal: Internal; }; - export type DirectoryModifiedTimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -192,7 +187,6 @@ export type DirectoryModifiedTimeArgs = { locale?: InputMaybe; }; - export type DirectoryAccessTimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -200,7 +194,6 @@ export type DirectoryAccessTimeArgs = { locale?: InputMaybe; }; - export type DirectoryChangeTimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -208,7 +201,6 @@ export type DirectoryChangeTimeArgs = { locale?: InputMaybe; }; - export type DirectoryBirthTimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -216,7 +208,6 @@ export type DirectoryBirthTimeArgs = { locale?: InputMaybe; }; - export type DirectoryAtimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -224,7 +215,6 @@ export type DirectoryAtimeArgs = { locale?: InputMaybe; }; - export type DirectoryMtimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -232,7 +222,6 @@ export type DirectoryMtimeArgs = { locale?: InputMaybe; }; - export type DirectoryCtimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -248,13 +237,14 @@ export type Site = Node & { polyfill?: Maybe; pathPrefix?: Maybe; jsxRuntime?: Maybe; + trailingSlash?: Maybe; + graphqlTypegen?: Maybe; id: Scalars['ID']; parent?: Maybe; children: Array; internal: Internal; }; - export type SiteBuildTimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -266,6 +256,7 @@ export type SiteSiteMetadata = { title?: Maybe; description?: Maybe; siteUrl?: Maybe; + image?: Maybe; }; export type SiteFunction = Node & { @@ -320,7 +311,6 @@ export type SiteBuildMetadata = Node & { internal: Internal; }; - export type SiteBuildMetadataBuildTimeArgs = { formatString?: InputMaybe; fromNow?: InputMaybe; @@ -328,44 +318,17 @@ export type SiteBuildMetadataBuildTimeArgs = { locale?: InputMaybe; }; -export type GatsbyImageFormat = - | 'NO_CHANGE' - | 'AUTO' - | 'JPG' - | 'PNG' - | 'WEBP' - | 'AVIF'; - -export type GatsbyImageLayout = - | 'FIXED' - | 'FULL_WIDTH' - | 'CONSTRAINED'; - -export type GatsbyImagePlaceholder = - | 'DOMINANT_COLOR' - | 'TRACED_SVG' - | 'BLURRED' - | 'NONE'; - -export type ImageFormat = - | 'NO_CHANGE' - | 'AUTO' - | 'JPG' - | 'PNG' - | 'WEBP' - | 'AVIF'; - -export type ImageFit = - | 'COVER' - | 'CONTAIN' - | 'FILL' - | 'INSIDE' - | 'OUTSIDE'; - -export type ImageLayout = - | 'FIXED' - | 'FULL_WIDTH' - | 'CONSTRAINED'; +export type GatsbyImageFormat = 'NO_CHANGE' | 'AUTO' | 'JPG' | 'PNG' | 'WEBP' | 'AVIF'; + +export type GatsbyImageLayout = 'FIXED' | 'FULL_WIDTH' | 'CONSTRAINED'; + +export type GatsbyImagePlaceholder = 'DOMINANT_COLOR' | 'TRACED_SVG' | 'BLURRED' | 'NONE'; + +export type ImageFormat = 'NO_CHANGE' | 'AUTO' | 'JPG' | 'PNG' | 'WEBP' | 'AVIF'; + +export type ImageFit = 'COVER' | 'CONTAIN' | 'FILL' | 'INSIDE' | 'OUTSIDE'; + +export type ImageLayout = 'FIXED' | 'FULL_WIDTH' | 'CONSTRAINED'; export type ImageCropFocus = | 'CENTER' @@ -409,7 +372,7 @@ export type Potrace = { export type ImageSharp = Node & { fixed?: Maybe; fluid?: Maybe; - gatsbyImageData: Scalars['JSON']; + gatsbyImageData: Scalars['GatsbyImageData']; original?: Maybe; resize?: Maybe; id: Scalars['ID']; @@ -418,7 +381,6 @@ export type ImageSharp = Node & { internal: Internal; }; - export type ImageSharpFixedArgs = { width?: InputMaybe; height?: InputMaybe; @@ -441,7 +403,6 @@ export type ImageSharpFixedArgs = { trim?: InputMaybe; }; - export type ImageSharpFluidArgs = { maxWidth?: InputMaybe; maxHeight?: InputMaybe; @@ -466,7 +427,6 @@ export type ImageSharpFluidArgs = { srcSetBreakpoints?: InputMaybe>>; }; - export type ImageSharpGatsbyImageDataArgs = { layout?: InputMaybe; width?: InputMaybe; @@ -488,7 +448,6 @@ export type ImageSharpGatsbyImageDataArgs = { backgroundColor?: InputMaybe; }; - export type ImageSharpResizeArgs = { width?: InputMaybe; height?: InputMaybe; @@ -539,11 +498,7 @@ export type ImageSharpFluid = { presentationHeight: Scalars['Int']; }; -export type ImagePlaceholder = - | 'DOMINANT_COLOR' - | 'TRACED_SVG' - | 'BLURRED' - | 'NONE'; +export type ImagePlaceholder = 'DOMINANT_COLOR' | 'TRACED_SVG' | 'BLURRED' | 'NONE'; export type BlurredOptions = { /** Width of the generated low-res preview. Default is 20px */ @@ -601,29 +556,31 @@ export type GraphCms_Asset = Node & { remoteId: Scalars['ID']; locale: GraphCms_Locale; stage: GraphCms_Stage; - createdAt: Scalars['JSON']; - updatedAt: Scalars['JSON']; - publishedAt?: Maybe; - handle: Scalars['String']; - fileName: Scalars['String']; - height?: Maybe; - width?: Maybe; - size?: Maybe; mimeType?: Maybe; - createdBy?: Maybe; - updatedBy?: Maybe; + size?: Maybe; + width?: Maybe; + height?: Maybe; + fileName: Scalars['String']; + handle: Scalars['String']; + publishedAt?: Maybe; + updatedAt: Scalars['JSON']; + createdAt: Scalars['JSON']; publishedBy?: Maybe; + updatedBy?: Maybe; + createdBy?: Maybe; carouselImagesPortfolioItem: Array; + iconSpeciality: Array; + iconTechnology: Array; + headerImageBlog: Array; scheduledIn: Array; url: Scalars['String']; id: Scalars['ID']; parent?: Maybe; children: Array; internal: Internal; - gatsbyImageData: Scalars['JSON']; + gatsbyImageData?: Maybe; }; - export type GraphCms_AssetGatsbyImageDataArgs = { layout?: InputMaybe; width?: InputMaybe; @@ -637,29 +594,22 @@ export type GraphCms_AssetGatsbyImageDataArgs = { placeholder?: InputMaybe; }; -export type GraphCmsImagePlaceholder = - | 'NONE' - | 'BLURRED' - | 'DOMINANT_COLOR' - | 'TRACED_SVG'; +export type GraphCmsImagePlaceholder = 'NONE' | 'BLURRED' | 'DOMINANT_COLOR' | 'TRACED_SVG'; -export type GraphCms_Locale = - | 'en'; +export type GraphCms_Locale = 'en'; -export type GraphCms_Stage = - | 'DRAFT' - | 'PUBLISHED'; +export type GraphCms_Stage = 'DRAFT' | 'PUBLISHED'; export type GraphCms_User = Node & { remoteTypeName: Scalars['String']; remoteId: Scalars['ID']; stage: GraphCms_Stage; - createdAt: Scalars['JSON']; - updatedAt: Scalars['JSON']; - publishedAt?: Maybe; - name: Scalars['String']; - picture?: Maybe; isActive: Scalars['Boolean']; + picture?: Maybe; + name: Scalars['String']; + publishedAt?: Maybe; + updatedAt: Scalars['JSON']; + createdAt: Scalars['JSON']; kind: GraphCms_UserKind; id: Scalars['ID']; parent?: Maybe; @@ -671,16 +621,16 @@ export type GraphCms_PortfolioItem = Node & { remoteTypeName: Scalars['String']; remoteId: Scalars['ID']; stage: GraphCms_Stage; - createdAt: Scalars['JSON']; - updatedAt: Scalars['JSON']; publishedAt?: Maybe; + updatedAt: Scalars['JSON']; + createdAt: Scalars['JSON']; title: Scalars['String']; description: Scalars['String']; + about: GraphCms_RichText; techSheet: Array; - about?: Maybe; - createdBy?: Maybe; - updatedBy?: Maybe; publishedBy?: Maybe; + updatedBy?: Maybe; + createdBy?: Maybe; carouselImages: Array; links: Array; scheduledIn: Array; @@ -691,27 +641,45 @@ export type GraphCms_PortfolioItem = Node & { internal: Internal; }; - export type GraphCms_PortfolioItemGatsbyPathArgs = { filePath?: InputMaybe; }; -export type GraphCms_ScheduledOperation = Node & { +export type GraphCms_Speciality = Node & { remoteTypeName: Scalars['String']; remoteId: Scalars['ID']; stage: GraphCms_Stage; - createdAt: Scalars['JSON']; - updatedAt: Scalars['JSON']; publishedAt?: Maybe; - description?: Maybe; - errorMessage?: Maybe; - rawPayload: Scalars['JSON']; - createdBy?: Maybe; + updatedAt: Scalars['JSON']; + createdAt: Scalars['JSON']; + title: Scalars['String']; + description: GraphCms_RichText; + publishedBy?: Maybe; updatedBy?: Maybe; + createdBy?: Maybe; + icon: GraphCms_Asset; + scheduledIn: Array; + id: Scalars['ID']; + parent?: Maybe; + children: Array; + internal: Internal; +}; + +export type GraphCms_Technology = Node & { + remoteTypeName: Scalars['String']; + remoteId: Scalars['ID']; + stage: GraphCms_Stage; + publishedAt?: Maybe; + updatedAt: Scalars['JSON']; + createdAt: Scalars['JSON']; + title: Scalars['String']; + description: GraphCms_RichText; + backgroundColor: GraphCms_Color; publishedBy?: Maybe; - release?: Maybe; - status: GraphCms_ScheduledOperationStatus; - affectedDocuments: Array; + updatedBy?: Maybe; + createdBy?: Maybe; + icon: GraphCms_Asset; + scheduledIn: Array; id: Scalars['ID']; parent?: Maybe; children: Array; @@ -722,15 +690,15 @@ export type GraphCms_Blog = Node & { remoteTypeName: Scalars['String']; remoteId: Scalars['ID']; stage: GraphCms_Stage; - createdAt: Scalars['JSON']; - updatedAt: Scalars['JSON']; publishedAt?: Maybe; + updatedAt: Scalars['JSON']; + createdAt: Scalars['JSON']; title: Scalars['String']; description: Scalars['String']; content: GraphCms_RichText; - createdBy?: Maybe; - updatedBy?: Maybe; publishedBy?: Maybe; + updatedBy?: Maybe; + createdBy?: Maybe; headerImage: GraphCms_Asset; type: GraphCms_BlogType; categories: Array; @@ -742,11 +710,32 @@ export type GraphCms_Blog = Node & { internal: Internal; }; - export type GraphCms_BlogGatsbyPathArgs = { filePath?: InputMaybe; }; +export type GraphCms_ScheduledOperation = Node & { + remoteTypeName: Scalars['String']; + remoteId: Scalars['ID']; + stage: GraphCms_Stage; + rawPayload: Scalars['JSON']; + errorMessage?: Maybe; + description?: Maybe; + publishedAt?: Maybe; + updatedAt: Scalars['JSON']; + createdAt: Scalars['JSON']; + release?: Maybe; + publishedBy?: Maybe; + updatedBy?: Maybe; + createdBy?: Maybe; + status: GraphCms_ScheduledOperationStatus; + affectedDocuments: Array; + id: Scalars['ID']; + parent?: Maybe; + children: Array; + internal: Internal; +}; + export type GraphCms_RichText = { remoteTypeName: Scalars['String']; raw: Scalars['JSON']; @@ -755,29 +744,23 @@ export type GraphCms_RichText = { text: Scalars['String']; }; -export type GraphCms_BlogType = - | 'Blog' - | 'Tutorial' - | 'Lab'; +export type GraphCms_BlogType = 'Blog' | 'Tutorial' | 'Lab'; -export type GraphCms_BlogCategories = - | 'Javascript' - | 'Vue' - | 'React'; +export type GraphCms_BlogCategories = 'Javascript' | 'Vue' | 'React'; export type GraphCms_Link = Node & { remoteTypeName: Scalars['String']; remoteId: Scalars['ID']; stage: GraphCms_Stage; - createdAt: Scalars['JSON']; - updatedAt: Scalars['JSON']; publishedAt?: Maybe; + updatedAt: Scalars['JSON']; + createdAt: Scalars['JSON']; title: Scalars['String']; url: Scalars['String']; - type?: Maybe; - createdBy?: Maybe; - updatedBy?: Maybe; publishedBy?: Maybe; + updatedBy?: Maybe; + createdBy?: Maybe; + type?: Maybe; scheduledIn: Array; id: Scalars['ID']; parent?: Maybe; @@ -785,23 +768,25 @@ export type GraphCms_Link = Node & { internal: Internal; }; +export type GraphCms_LinkType = 'GITHUB' | 'NPM' | 'GOOGLE_PLAY' | 'APP_STORE_IOS'; + export type GraphCms_ScheduledRelease = Node & { remoteTypeName: Scalars['String']; remoteId: Scalars['ID']; stage: GraphCms_Stage; - createdAt: Scalars['JSON']; - updatedAt: Scalars['JSON']; - publishedAt?: Maybe; - title?: Maybe; - description?: Maybe; - errorMessage?: Maybe; - isActive: Scalars['Boolean']; - isImplicit: Scalars['Boolean']; releaseAt?: Maybe; - createdBy?: Maybe; - updatedBy?: Maybe; - publishedBy?: Maybe; + isImplicit: Scalars['Boolean']; + isActive: Scalars['Boolean']; + errorMessage?: Maybe; + description?: Maybe; + title?: Maybe; + publishedAt?: Maybe; + updatedAt: Scalars['JSON']; + createdAt: Scalars['JSON']; operations: Array; + publishedBy?: Maybe; + updatedBy?: Maybe; + createdBy?: Maybe; status: GraphCms_ScheduledReleaseStatus; id: Scalars['ID']; parent?: Maybe; @@ -809,20 +794,17 @@ export type GraphCms_ScheduledRelease = Node & { internal: Internal; }; -export type GraphCms_ScheduledOperationStatus = - | 'PENDING' - | 'IN_PROGRESS' - | 'COMPLETED' - | 'FAILED' - | 'CANCELED'; +export type GraphCms_ScheduledOperationStatus = 'PENDING' | 'IN_PROGRESS' | 'COMPLETED' | 'FAILED' | 'CANCELED'; -export type GraphCms_ScheduledOperationAffectedDocument = GraphCms_Asset | GraphCms_Blog | GraphCms_Link | GraphCms_PortfolioItem | GraphCms_Speciality | GraphCms_Technology; +export type GraphCms_ScheduledOperationAffectedDocument = + | GraphCms_Asset + | GraphCms_Blog + | GraphCms_Link + | GraphCms_PortfolioItem + | GraphCms_Speciality + | GraphCms_Technology; -export type GraphCms_ScheduledReleaseStatus = - | 'PENDING' - | 'IN_PROGRESS' - | 'COMPLETED' - | 'FAILED'; +export type GraphCms_ScheduledReleaseStatus = 'PENDING' | 'IN_PROGRESS' | 'COMPLETED' | 'FAILED'; export type GraphCms_Color = { remoteTypeName: Scalars['String']; @@ -839,52 +821,7 @@ export type GraphCms_Rgba = { a: Scalars['JSON']; }; -export type GraphCms_UserKind = - | 'MEMBER' - | 'PAT' - | 'PUBLIC' - | 'WEBHOOK'; - -export type GraphCms_Speciality = Node & { - remoteTypeName: Scalars['String']; - remoteId: Scalars['ID']; - stage: GraphCms_Stage; - createdAt: Scalars['JSON']; - updatedAt: Scalars['JSON']; - publishedAt?: Maybe; - title: Scalars['String']; - description: GraphCms_RichText; - createdBy?: Maybe; - updatedBy?: Maybe; - publishedBy?: Maybe; - icon: GraphCms_Asset; - scheduledIn: Array; - id: Scalars['ID']; - parent?: Maybe; - children: Array; - internal: Internal; -}; - -export type GraphCms_Technology = Node & { - remoteTypeName: Scalars['String']; - remoteId: Scalars['ID']; - stage: GraphCms_Stage; - createdAt: Scalars['JSON']; - updatedAt: Scalars['JSON']; - publishedAt?: Maybe; - title: Scalars['String']; - description: GraphCms_RichText; - backgroundColor: GraphCms_Color; - createdBy?: Maybe; - updatedBy?: Maybe; - publishedBy?: Maybe; - icon: GraphCms_Asset; - scheduledIn: Array; - id: Scalars['ID']; - parent?: Maybe; - children: Array; - internal: Internal; -}; +export type GraphCms_UserKind = 'MEMBER' | 'PAT' | 'PUBLIC' | 'WEBHOOK' | 'APP_TOKEN'; export type Query = { file?: Maybe; @@ -909,21 +846,20 @@ export type Query = { allGraphCmsUser: GraphCms_UserConnection; graphCmsPortfolioItem?: Maybe; allGraphCmsPortfolioItem: GraphCms_PortfolioItemConnection; - graphCmsScheduledOperation?: Maybe; - allGraphCmsScheduledOperation: GraphCms_ScheduledOperationConnection; + graphCmsSpeciality?: Maybe; + allGraphCmsSpeciality: GraphCms_SpecialityConnection; + graphCmsTechnology?: Maybe; + allGraphCmsTechnology: GraphCms_TechnologyConnection; graphCmsBlog?: Maybe; allGraphCmsBlog: GraphCms_BlogConnection; + graphCmsScheduledOperation?: Maybe; + allGraphCmsScheduledOperation: GraphCms_ScheduledOperationConnection; graphCmsLink?: Maybe; allGraphCmsLink: GraphCms_LinkConnection; graphCmsScheduledRelease?: Maybe; allGraphCmsScheduledRelease: GraphCms_ScheduledReleaseConnection; - graphCmsSpeciality?: Maybe; - allGraphCmsSpeciality: GraphCms_SpecialityConnection; - graphCmsTechnology?: Maybe; - allGraphCmsTechnology: GraphCms_TechnologyConnection; }; - export type QueryFileArgs = { sourceInstanceName?: InputMaybe; absolutePath?: InputMaybe; @@ -967,7 +903,6 @@ export type QueryFileArgs = { internal?: InputMaybe; }; - export type QueryAllFileArgs = { filter?: InputMaybe; sort?: InputMaybe; @@ -975,7 +910,6 @@ export type QueryAllFileArgs = { limit?: InputMaybe; }; - export type QueryDirectoryArgs = { sourceInstanceName?: InputMaybe; absolutePath?: InputMaybe; @@ -1014,7 +948,6 @@ export type QueryDirectoryArgs = { internal?: InputMaybe; }; - export type QueryAllDirectoryArgs = { filter?: InputMaybe; sort?: InputMaybe; @@ -1022,7 +955,6 @@ export type QueryAllDirectoryArgs = { limit?: InputMaybe; }; - export type QuerySiteArgs = { buildTime?: InputMaybe; siteMetadata?: InputMaybe; @@ -1031,13 +963,14 @@ export type QuerySiteArgs = { polyfill?: InputMaybe; pathPrefix?: InputMaybe; jsxRuntime?: InputMaybe; + trailingSlash?: InputMaybe; + graphqlTypegen?: InputMaybe; id?: InputMaybe; parent?: InputMaybe; children?: InputMaybe; internal?: InputMaybe; }; - export type QueryAllSiteArgs = { filter?: InputMaybe; sort?: InputMaybe; @@ -1045,7 +978,6 @@ export type QueryAllSiteArgs = { limit?: InputMaybe; }; - export type QuerySiteFunctionArgs = { functionRoute?: InputMaybe; pluginName?: InputMaybe; @@ -1060,7 +992,6 @@ export type QuerySiteFunctionArgs = { internal?: InputMaybe; }; - export type QueryAllSiteFunctionArgs = { filter?: InputMaybe; sort?: InputMaybe; @@ -1068,7 +999,6 @@ export type QueryAllSiteFunctionArgs = { limit?: InputMaybe; }; - export type QuerySitePageArgs = { path?: InputMaybe; component?: InputMaybe; @@ -1083,7 +1013,6 @@ export type QuerySitePageArgs = { internal?: InputMaybe; }; - export type QueryAllSitePageArgs = { filter?: InputMaybe; sort?: InputMaybe; @@ -1091,7 +1020,6 @@ export type QueryAllSitePageArgs = { limit?: InputMaybe; }; - export type QuerySitePluginArgs = { resolve?: InputMaybe; name?: InputMaybe; @@ -1108,7 +1036,6 @@ export type QuerySitePluginArgs = { internal?: InputMaybe; }; - export type QueryAllSitePluginArgs = { filter?: InputMaybe; sort?: InputMaybe; @@ -1116,7 +1043,6 @@ export type QueryAllSitePluginArgs = { limit?: InputMaybe; }; - export type QuerySiteBuildMetadataArgs = { buildTime?: InputMaybe; id?: InputMaybe; @@ -1125,7 +1051,6 @@ export type QuerySiteBuildMetadataArgs = { internal?: InputMaybe; }; - export type QueryAllSiteBuildMetadataArgs = { filter?: InputMaybe; sort?: InputMaybe; @@ -1133,11 +1058,10 @@ export type QueryAllSiteBuildMetadataArgs = { limit?: InputMaybe; }; - export type QueryImageSharpArgs = { fixed?: InputMaybe; fluid?: InputMaybe; - gatsbyImageData?: InputMaybe; + gatsbyImageData?: InputMaybe; original?: InputMaybe; resize?: InputMaybe; id?: InputMaybe; @@ -1146,7 +1070,6 @@ export type QueryImageSharpArgs = { internal?: InputMaybe; }; - export type QueryAllImageSharpArgs = { filter?: InputMaybe; sort?: InputMaybe; @@ -1154,25 +1077,27 @@ export type QueryAllImageSharpArgs = { limit?: InputMaybe; }; - export type QueryGraphCmsAssetArgs = { remoteTypeName?: InputMaybe; remoteId?: InputMaybe; locale?: InputMaybe; stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; - publishedAt?: InputMaybe; - handle?: InputMaybe; - fileName?: InputMaybe; - height?: InputMaybe; - width?: InputMaybe; - size?: InputMaybe; mimeType?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; + size?: InputMaybe; + width?: InputMaybe; + height?: InputMaybe; + fileName?: InputMaybe; + handle?: InputMaybe; + publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; publishedBy?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; carouselImagesPortfolioItem?: InputMaybe; + iconSpeciality?: InputMaybe; + iconTechnology?: InputMaybe; + headerImageBlog?: InputMaybe; scheduledIn?: InputMaybe; url?: InputMaybe; id?: InputMaybe; @@ -1181,7 +1106,6 @@ export type QueryGraphCmsAssetArgs = { internal?: InputMaybe; }; - export type QueryAllGraphCmsAssetArgs = { filter?: InputMaybe; sort?: InputMaybe; @@ -1189,17 +1113,16 @@ export type QueryAllGraphCmsAssetArgs = { limit?: InputMaybe; }; - export type QueryGraphCmsUserArgs = { remoteTypeName?: InputMaybe; remoteId?: InputMaybe; stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; - publishedAt?: InputMaybe; - name?: InputMaybe; - picture?: InputMaybe; isActive?: InputMaybe; + picture?: InputMaybe; + name?: InputMaybe; + publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; kind?: InputMaybe; id?: InputMaybe; parent?: InputMaybe; @@ -1207,7 +1130,6 @@ export type QueryGraphCmsUserArgs = { internal?: InputMaybe; }; - export type QueryAllGraphCmsUserArgs = { filter?: InputMaybe; sort?: InputMaybe; @@ -1215,21 +1137,20 @@ export type QueryAllGraphCmsUserArgs = { limit?: InputMaybe; }; - export type QueryGraphCmsPortfolioItemArgs = { remoteTypeName?: InputMaybe; remoteId?: InputMaybe; stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; title?: InputMaybe; description?: InputMaybe; - techSheet?: InputMaybe; about?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; + techSheet?: InputMaybe; publishedBy?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; carouselImages?: InputMaybe; links?: InputMaybe; scheduledIn?: InputMaybe; @@ -1240,7 +1161,6 @@ export type QueryGraphCmsPortfolioItemArgs = { internal?: InputMaybe; }; - export type QueryAllGraphCmsPortfolioItemArgs = { filter?: InputMaybe; sort?: InputMaybe; @@ -1248,145 +1168,133 @@ export type QueryAllGraphCmsPortfolioItemArgs = { limit?: InputMaybe; }; - -export type QueryGraphCmsScheduledOperationArgs = { +export type QueryGraphCmsSpecialityArgs = { remoteTypeName?: InputMaybe; remoteId?: InputMaybe; stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; publishedAt?: InputMaybe; - description?: InputMaybe; - errorMessage?: InputMaybe; - rawPayload?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; + title?: InputMaybe; + description?: InputMaybe; publishedBy?: InputMaybe; - release?: InputMaybe; - status?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; + icon?: InputMaybe; + scheduledIn?: InputMaybe; id?: InputMaybe; parent?: InputMaybe; children?: InputMaybe; internal?: InputMaybe; }; - -export type QueryAllGraphCmsScheduledOperationArgs = { - filter?: InputMaybe; - sort?: InputMaybe; +export type QueryAllGraphCmsSpecialityArgs = { + filter?: InputMaybe; + sort?: InputMaybe; skip?: InputMaybe; limit?: InputMaybe; }; - -export type QueryGraphCmsBlogArgs = { +export type QueryGraphCmsTechnologyArgs = { remoteTypeName?: InputMaybe; remoteId?: InputMaybe; stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; title?: InputMaybe; - description?: InputMaybe; - content?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; + description?: InputMaybe; + backgroundColor?: InputMaybe; publishedBy?: InputMaybe; - headerImage?: InputMaybe; - type?: InputMaybe; - categories?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; + icon?: InputMaybe; scheduledIn?: InputMaybe; - gatsbyPath?: InputMaybe; id?: InputMaybe; parent?: InputMaybe; children?: InputMaybe; internal?: InputMaybe; }; - -export type QueryAllGraphCmsBlogArgs = { - filter?: InputMaybe; - sort?: InputMaybe; +export type QueryAllGraphCmsTechnologyArgs = { + filter?: InputMaybe; + sort?: InputMaybe; skip?: InputMaybe; limit?: InputMaybe; }; - -export type QueryGraphCmsLinkArgs = { +export type QueryGraphCmsBlogArgs = { remoteTypeName?: InputMaybe; remoteId?: InputMaybe; stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; title?: InputMaybe; - url?: InputMaybe; - type?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; + description?: InputMaybe; + content?: InputMaybe; publishedBy?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; + headerImage?: InputMaybe; + type?: InputMaybe; + categories?: InputMaybe; scheduledIn?: InputMaybe; + gatsbyPath?: InputMaybe; id?: InputMaybe; parent?: InputMaybe; children?: InputMaybe; internal?: InputMaybe; }; - -export type QueryAllGraphCmsLinkArgs = { - filter?: InputMaybe; - sort?: InputMaybe; +export type QueryAllGraphCmsBlogArgs = { + filter?: InputMaybe; + sort?: InputMaybe; skip?: InputMaybe; limit?: InputMaybe; }; - -export type QueryGraphCmsScheduledReleaseArgs = { +export type QueryGraphCmsScheduledOperationArgs = { remoteTypeName?: InputMaybe; remoteId?: InputMaybe; stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; - publishedAt?: InputMaybe; - title?: InputMaybe; - description?: InputMaybe; + rawPayload?: InputMaybe; errorMessage?: InputMaybe; - isActive?: InputMaybe; - isImplicit?: InputMaybe; - releaseAt?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; + description?: InputMaybe; + publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; + release?: InputMaybe; publishedBy?: InputMaybe; - operations?: InputMaybe; - status?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; + status?: InputMaybe; id?: InputMaybe; parent?: InputMaybe; children?: InputMaybe; internal?: InputMaybe; }; - -export type QueryAllGraphCmsScheduledReleaseArgs = { - filter?: InputMaybe; - sort?: InputMaybe; +export type QueryAllGraphCmsScheduledOperationArgs = { + filter?: InputMaybe; + sort?: InputMaybe; skip?: InputMaybe; limit?: InputMaybe; }; - -export type QueryGraphCmsSpecialityArgs = { +export type QueryGraphCmsLinkArgs = { remoteTypeName?: InputMaybe; remoteId?: InputMaybe; stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; title?: InputMaybe; - description?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; + url?: InputMaybe; publishedBy?: InputMaybe; - icon?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; + type?: InputMaybe; scheduledIn?: InputMaybe; id?: InputMaybe; parent?: InputMaybe; @@ -1394,40 +1302,40 @@ export type QueryGraphCmsSpecialityArgs = { internal?: InputMaybe; }; - -export type QueryAllGraphCmsSpecialityArgs = { - filter?: InputMaybe; - sort?: InputMaybe; +export type QueryAllGraphCmsLinkArgs = { + filter?: InputMaybe; + sort?: InputMaybe; skip?: InputMaybe; limit?: InputMaybe; }; - -export type QueryGraphCmsTechnologyArgs = { +export type QueryGraphCmsScheduledReleaseArgs = { remoteTypeName?: InputMaybe; remoteId?: InputMaybe; stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; - publishedAt?: InputMaybe; + releaseAt?: InputMaybe; + isImplicit?: InputMaybe; + isActive?: InputMaybe; + errorMessage?: InputMaybe; + description?: InputMaybe; title?: InputMaybe; - description?: InputMaybe; - backgroundColor?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; + publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; + operations?: InputMaybe; publishedBy?: InputMaybe; - icon?: InputMaybe; - scheduledIn?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; + status?: InputMaybe; id?: InputMaybe; parent?: InputMaybe; children?: InputMaybe; internal?: InputMaybe; }; - -export type QueryAllGraphCmsTechnologyArgs = { - filter?: InputMaybe; - sort?: InputMaybe; +export type QueryAllGraphCmsScheduledReleaseArgs = { + filter?: InputMaybe; + sort?: InputMaybe; skip?: InputMaybe; limit?: InputMaybe; }; @@ -1481,7 +1389,7 @@ export type ImageSharpFilterListInput = { export type ImageSharpFilterInput = { fixed?: InputMaybe; fluid?: InputMaybe; - gatsbyImageData?: InputMaybe; + gatsbyImageData?: InputMaybe; original?: InputMaybe; resize?: InputMaybe; id?: InputMaybe; @@ -1518,13 +1426,11 @@ export type ImageSharpFluidFilterInput = { presentationHeight?: InputMaybe; }; -export type JsonQueryOperatorInput = { - eq?: InputMaybe; - ne?: InputMaybe; - in?: InputMaybe>>; - nin?: InputMaybe>>; - regex?: InputMaybe; - glob?: InputMaybe; +export type GatsbyImageDataQueryOperatorInput = { + eq?: InputMaybe; + ne?: InputMaybe; + in?: InputMaybe>>; + nin?: InputMaybe>>; }; export type ImageSharpOriginalFilterInput = { @@ -1562,6 +1468,7 @@ export type InternalFilterInput = { mediaType?: InputMaybe; owner?: InputMaybe; type?: InputMaybe; + contentFilePath?: InputMaybe; }; export type BooleanQueryOperatorInput = { @@ -1583,27 +1490,22 @@ export type FileConnection = { group: Array; }; - export type FileConnectionDistinctArgs = { field: FileFieldsEnum; }; - export type FileConnectionMaxArgs = { field: FileFieldsEnum; }; - export type FileConnectionMinArgs = { field: FileFieldsEnum; }; - export type FileConnectionSumArgs = { field: FileFieldsEnum; }; - export type FileConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -1709,6 +1611,7 @@ export type FileFieldsEnum = | 'childrenImageSharp___parent___internal___mediaType' | 'childrenImageSharp___parent___internal___owner' | 'childrenImageSharp___parent___internal___type' + | 'childrenImageSharp___parent___internal___contentFilePath' | 'childrenImageSharp___children' | 'childrenImageSharp___children___id' | 'childrenImageSharp___children___parent___id' @@ -1724,6 +1627,7 @@ export type FileFieldsEnum = | 'childrenImageSharp___children___internal___mediaType' | 'childrenImageSharp___children___internal___owner' | 'childrenImageSharp___children___internal___type' + | 'childrenImageSharp___children___internal___contentFilePath' | 'childrenImageSharp___internal___content' | 'childrenImageSharp___internal___contentDigest' | 'childrenImageSharp___internal___description' @@ -1732,6 +1636,7 @@ export type FileFieldsEnum = | 'childrenImageSharp___internal___mediaType' | 'childrenImageSharp___internal___owner' | 'childrenImageSharp___internal___type' + | 'childrenImageSharp___internal___contentFilePath' | 'childImageSharp___fixed___base64' | 'childImageSharp___fixed___tracedSVG' | 'childImageSharp___fixed___aspectRatio' @@ -1779,6 +1684,7 @@ export type FileFieldsEnum = | 'childImageSharp___parent___internal___mediaType' | 'childImageSharp___parent___internal___owner' | 'childImageSharp___parent___internal___type' + | 'childImageSharp___parent___internal___contentFilePath' | 'childImageSharp___children' | 'childImageSharp___children___id' | 'childImageSharp___children___parent___id' @@ -1794,6 +1700,7 @@ export type FileFieldsEnum = | 'childImageSharp___children___internal___mediaType' | 'childImageSharp___children___internal___owner' | 'childImageSharp___children___internal___type' + | 'childImageSharp___children___internal___contentFilePath' | 'childImageSharp___internal___content' | 'childImageSharp___internal___contentDigest' | 'childImageSharp___internal___description' @@ -1802,6 +1709,7 @@ export type FileFieldsEnum = | 'childImageSharp___internal___mediaType' | 'childImageSharp___internal___owner' | 'childImageSharp___internal___type' + | 'childImageSharp___internal___contentFilePath' | 'id' | 'parent___id' | 'parent___parent___id' @@ -1818,6 +1726,7 @@ export type FileFieldsEnum = | 'parent___parent___internal___mediaType' | 'parent___parent___internal___owner' | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' | 'parent___children' | 'parent___children___id' | 'parent___children___parent___id' @@ -1833,6 +1742,7 @@ export type FileFieldsEnum = | 'parent___children___internal___mediaType' | 'parent___children___internal___owner' | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' | 'parent___internal___content' | 'parent___internal___contentDigest' | 'parent___internal___description' @@ -1841,6 +1751,7 @@ export type FileFieldsEnum = | 'parent___internal___mediaType' | 'parent___internal___owner' | 'parent___internal___type' + | 'parent___internal___contentFilePath' | 'children' | 'children___id' | 'children___parent___id' @@ -1857,6 +1768,7 @@ export type FileFieldsEnum = | 'children___parent___internal___mediaType' | 'children___parent___internal___owner' | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' | 'children___children' | 'children___children___id' | 'children___children___parent___id' @@ -1872,6 +1784,7 @@ export type FileFieldsEnum = | 'children___children___internal___mediaType' | 'children___children___internal___owner' | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' | 'children___internal___content' | 'children___internal___contentDigest' | 'children___internal___description' @@ -1880,6 +1793,7 @@ export type FileFieldsEnum = | 'children___internal___mediaType' | 'children___internal___owner' | 'children___internal___type' + | 'children___internal___contentFilePath' | 'internal___content' | 'internal___contentDigest' | 'internal___description' @@ -1887,7 +1801,8 @@ export type FileFieldsEnum = | 'internal___ignoreType' | 'internal___mediaType' | 'internal___owner' - | 'internal___type'; + | 'internal___type' + | 'internal___contentFilePath'; export type FileGroupConnection = { totalCount: Scalars['Int']; @@ -1903,27 +1818,22 @@ export type FileGroupConnection = { fieldValue?: Maybe; }; - export type FileGroupConnectionDistinctArgs = { field: FileFieldsEnum; }; - export type FileGroupConnectionMaxArgs = { field: FileFieldsEnum; }; - export type FileGroupConnectionMinArgs = { field: FileFieldsEnum; }; - export type FileGroupConnectionSumArgs = { field: FileFieldsEnum; }; - export type FileGroupConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -1978,9 +1888,7 @@ export type FileSortInput = { order?: InputMaybe>>; }; -export type SortOrderEnum = - | 'ASC' - | 'DESC'; +export type SortOrderEnum = 'ASC' | 'DESC'; export type DirectoryConnection = { totalCount: Scalars['Int']; @@ -1994,27 +1902,22 @@ export type DirectoryConnection = { group: Array; }; - export type DirectoryConnectionDistinctArgs = { field: DirectoryFieldsEnum; }; - export type DirectoryConnectionMaxArgs = { field: DirectoryFieldsEnum; }; - export type DirectoryConnectionMinArgs = { field: DirectoryFieldsEnum; }; - export type DirectoryConnectionSumArgs = { field: DirectoryFieldsEnum; }; - export type DirectoryConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -2075,6 +1978,7 @@ export type DirectoryFieldsEnum = | 'parent___parent___internal___mediaType' | 'parent___parent___internal___owner' | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' | 'parent___children' | 'parent___children___id' | 'parent___children___parent___id' @@ -2090,6 +1994,7 @@ export type DirectoryFieldsEnum = | 'parent___children___internal___mediaType' | 'parent___children___internal___owner' | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' | 'parent___internal___content' | 'parent___internal___contentDigest' | 'parent___internal___description' @@ -2098,6 +2003,7 @@ export type DirectoryFieldsEnum = | 'parent___internal___mediaType' | 'parent___internal___owner' | 'parent___internal___type' + | 'parent___internal___contentFilePath' | 'children' | 'children___id' | 'children___parent___id' @@ -2114,6 +2020,7 @@ export type DirectoryFieldsEnum = | 'children___parent___internal___mediaType' | 'children___parent___internal___owner' | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' | 'children___children' | 'children___children___id' | 'children___children___parent___id' @@ -2129,6 +2036,7 @@ export type DirectoryFieldsEnum = | 'children___children___internal___mediaType' | 'children___children___internal___owner' | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' | 'children___internal___content' | 'children___internal___contentDigest' | 'children___internal___description' @@ -2137,6 +2045,7 @@ export type DirectoryFieldsEnum = | 'children___internal___mediaType' | 'children___internal___owner' | 'children___internal___type' + | 'children___internal___contentFilePath' | 'internal___content' | 'internal___contentDigest' | 'internal___description' @@ -2144,7 +2053,8 @@ export type DirectoryFieldsEnum = | 'internal___ignoreType' | 'internal___mediaType' | 'internal___owner' - | 'internal___type'; + | 'internal___type' + | 'internal___contentFilePath'; export type DirectoryGroupConnection = { totalCount: Scalars['Int']; @@ -2160,27 +2070,22 @@ export type DirectoryGroupConnection = { fieldValue?: Maybe; }; - export type DirectoryGroupConnectionDistinctArgs = { field: DirectoryFieldsEnum; }; - export type DirectoryGroupConnectionMaxArgs = { field: DirectoryFieldsEnum; }; - export type DirectoryGroupConnectionMinArgs = { field: DirectoryFieldsEnum; }; - export type DirectoryGroupConnectionSumArgs = { field: DirectoryFieldsEnum; }; - export type DirectoryGroupConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -2234,6 +2139,7 @@ export type SiteSiteMetadataFilterInput = { title?: InputMaybe; description?: InputMaybe; siteUrl?: InputMaybe; + image?: InputMaybe; }; export type SiteConnection = { @@ -2248,27 +2154,22 @@ export type SiteConnection = { group: Array; }; - export type SiteConnectionDistinctArgs = { field: SiteFieldsEnum; }; - export type SiteConnectionMaxArgs = { field: SiteFieldsEnum; }; - export type SiteConnectionMinArgs = { field: SiteFieldsEnum; }; - export type SiteConnectionSumArgs = { field: SiteFieldsEnum; }; - export type SiteConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -2286,11 +2187,14 @@ export type SiteFieldsEnum = | 'siteMetadata___title' | 'siteMetadata___description' | 'siteMetadata___siteUrl' + | 'siteMetadata___image' | 'port' | 'host' | 'polyfill' | 'pathPrefix' | 'jsxRuntime' + | 'trailingSlash' + | 'graphqlTypegen' | 'id' | 'parent___id' | 'parent___parent___id' @@ -2307,6 +2211,7 @@ export type SiteFieldsEnum = | 'parent___parent___internal___mediaType' | 'parent___parent___internal___owner' | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' | 'parent___children' | 'parent___children___id' | 'parent___children___parent___id' @@ -2322,6 +2227,7 @@ export type SiteFieldsEnum = | 'parent___children___internal___mediaType' | 'parent___children___internal___owner' | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' | 'parent___internal___content' | 'parent___internal___contentDigest' | 'parent___internal___description' @@ -2330,6 +2236,7 @@ export type SiteFieldsEnum = | 'parent___internal___mediaType' | 'parent___internal___owner' | 'parent___internal___type' + | 'parent___internal___contentFilePath' | 'children' | 'children___id' | 'children___parent___id' @@ -2346,6 +2253,7 @@ export type SiteFieldsEnum = | 'children___parent___internal___mediaType' | 'children___parent___internal___owner' | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' | 'children___children' | 'children___children___id' | 'children___children___parent___id' @@ -2361,6 +2269,7 @@ export type SiteFieldsEnum = | 'children___children___internal___mediaType' | 'children___children___internal___owner' | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' | 'children___internal___content' | 'children___internal___contentDigest' | 'children___internal___description' @@ -2369,6 +2278,7 @@ export type SiteFieldsEnum = | 'children___internal___mediaType' | 'children___internal___owner' | 'children___internal___type' + | 'children___internal___contentFilePath' | 'internal___content' | 'internal___contentDigest' | 'internal___description' @@ -2376,7 +2286,8 @@ export type SiteFieldsEnum = | 'internal___ignoreType' | 'internal___mediaType' | 'internal___owner' - | 'internal___type'; + | 'internal___type' + | 'internal___contentFilePath'; export type SiteGroupConnection = { totalCount: Scalars['Int']; @@ -2392,27 +2303,22 @@ export type SiteGroupConnection = { fieldValue?: Maybe; }; - export type SiteGroupConnectionDistinctArgs = { field: SiteFieldsEnum; }; - export type SiteGroupConnectionMaxArgs = { field: SiteFieldsEnum; }; - export type SiteGroupConnectionMinArgs = { field: SiteFieldsEnum; }; - export type SiteGroupConnectionSumArgs = { field: SiteFieldsEnum; }; - export type SiteGroupConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -2427,6 +2333,8 @@ export type SiteFilterInput = { polyfill?: InputMaybe; pathPrefix?: InputMaybe; jsxRuntime?: InputMaybe; + trailingSlash?: InputMaybe; + graphqlTypegen?: InputMaybe; id?: InputMaybe; parent?: InputMaybe; children?: InputMaybe; @@ -2450,27 +2358,22 @@ export type SiteFunctionConnection = { group: Array; }; - export type SiteFunctionConnectionDistinctArgs = { field: SiteFunctionFieldsEnum; }; - export type SiteFunctionConnectionMaxArgs = { field: SiteFunctionFieldsEnum; }; - export type SiteFunctionConnectionMinArgs = { field: SiteFunctionFieldsEnum; }; - export type SiteFunctionConnectionSumArgs = { field: SiteFunctionFieldsEnum; }; - export type SiteFunctionConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -2507,6 +2410,7 @@ export type SiteFunctionFieldsEnum = | 'parent___parent___internal___mediaType' | 'parent___parent___internal___owner' | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' | 'parent___children' | 'parent___children___id' | 'parent___children___parent___id' @@ -2522,6 +2426,7 @@ export type SiteFunctionFieldsEnum = | 'parent___children___internal___mediaType' | 'parent___children___internal___owner' | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' | 'parent___internal___content' | 'parent___internal___contentDigest' | 'parent___internal___description' @@ -2530,6 +2435,7 @@ export type SiteFunctionFieldsEnum = | 'parent___internal___mediaType' | 'parent___internal___owner' | 'parent___internal___type' + | 'parent___internal___contentFilePath' | 'children' | 'children___id' | 'children___parent___id' @@ -2546,6 +2452,7 @@ export type SiteFunctionFieldsEnum = | 'children___parent___internal___mediaType' | 'children___parent___internal___owner' | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' | 'children___children' | 'children___children___id' | 'children___children___parent___id' @@ -2561,6 +2468,7 @@ export type SiteFunctionFieldsEnum = | 'children___children___internal___mediaType' | 'children___children___internal___owner' | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' | 'children___internal___content' | 'children___internal___contentDigest' | 'children___internal___description' @@ -2569,6 +2477,7 @@ export type SiteFunctionFieldsEnum = | 'children___internal___mediaType' | 'children___internal___owner' | 'children___internal___type' + | 'children___internal___contentFilePath' | 'internal___content' | 'internal___contentDigest' | 'internal___description' @@ -2576,7 +2485,8 @@ export type SiteFunctionFieldsEnum = | 'internal___ignoreType' | 'internal___mediaType' | 'internal___owner' - | 'internal___type'; + | 'internal___type' + | 'internal___contentFilePath'; export type SiteFunctionGroupConnection = { totalCount: Scalars['Int']; @@ -2592,27 +2502,22 @@ export type SiteFunctionGroupConnection = { fieldValue?: Maybe; }; - export type SiteFunctionGroupConnectionDistinctArgs = { field: SiteFunctionFieldsEnum; }; - export type SiteFunctionGroupConnectionMaxArgs = { field: SiteFunctionFieldsEnum; }; - export type SiteFunctionGroupConnectionMinArgs = { field: SiteFunctionFieldsEnum; }; - export type SiteFunctionGroupConnectionSumArgs = { field: SiteFunctionFieldsEnum; }; - export type SiteFunctionGroupConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -2638,6 +2543,15 @@ export type SiteFunctionSortInput = { order?: InputMaybe>>; }; +export type JsonQueryOperatorInput = { + eq?: InputMaybe; + ne?: InputMaybe; + in?: InputMaybe>>; + nin?: InputMaybe>>; + regex?: InputMaybe; + glob?: InputMaybe; +}; + export type SitePluginFilterInput = { resolve?: InputMaybe; name?: InputMaybe; @@ -2666,27 +2580,22 @@ export type SitePageConnection = { group: Array; }; - export type SitePageConnectionDistinctArgs = { field: SitePageFieldsEnum; }; - export type SitePageConnectionMaxArgs = { field: SitePageFieldsEnum; }; - export type SitePageConnectionMinArgs = { field: SitePageFieldsEnum; }; - export type SitePageConnectionSumArgs = { field: SitePageFieldsEnum; }; - export type SitePageConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -2730,6 +2639,7 @@ export type SitePageFieldsEnum = | 'pluginCreator___parent___internal___mediaType' | 'pluginCreator___parent___internal___owner' | 'pluginCreator___parent___internal___type' + | 'pluginCreator___parent___internal___contentFilePath' | 'pluginCreator___children' | 'pluginCreator___children___id' | 'pluginCreator___children___parent___id' @@ -2745,6 +2655,7 @@ export type SitePageFieldsEnum = | 'pluginCreator___children___internal___mediaType' | 'pluginCreator___children___internal___owner' | 'pluginCreator___children___internal___type' + | 'pluginCreator___children___internal___contentFilePath' | 'pluginCreator___internal___content' | 'pluginCreator___internal___contentDigest' | 'pluginCreator___internal___description' @@ -2753,6 +2664,7 @@ export type SitePageFieldsEnum = | 'pluginCreator___internal___mediaType' | 'pluginCreator___internal___owner' | 'pluginCreator___internal___type' + | 'pluginCreator___internal___contentFilePath' | 'id' | 'parent___id' | 'parent___parent___id' @@ -2769,6 +2681,7 @@ export type SitePageFieldsEnum = | 'parent___parent___internal___mediaType' | 'parent___parent___internal___owner' | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' | 'parent___children' | 'parent___children___id' | 'parent___children___parent___id' @@ -2784,6 +2697,7 @@ export type SitePageFieldsEnum = | 'parent___children___internal___mediaType' | 'parent___children___internal___owner' | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' | 'parent___internal___content' | 'parent___internal___contentDigest' | 'parent___internal___description' @@ -2792,6 +2706,7 @@ export type SitePageFieldsEnum = | 'parent___internal___mediaType' | 'parent___internal___owner' | 'parent___internal___type' + | 'parent___internal___contentFilePath' | 'children' | 'children___id' | 'children___parent___id' @@ -2808,6 +2723,7 @@ export type SitePageFieldsEnum = | 'children___parent___internal___mediaType' | 'children___parent___internal___owner' | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' | 'children___children' | 'children___children___id' | 'children___children___parent___id' @@ -2823,6 +2739,7 @@ export type SitePageFieldsEnum = | 'children___children___internal___mediaType' | 'children___children___internal___owner' | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' | 'children___internal___content' | 'children___internal___contentDigest' | 'children___internal___description' @@ -2831,6 +2748,7 @@ export type SitePageFieldsEnum = | 'children___internal___mediaType' | 'children___internal___owner' | 'children___internal___type' + | 'children___internal___contentFilePath' | 'internal___content' | 'internal___contentDigest' | 'internal___description' @@ -2838,7 +2756,8 @@ export type SitePageFieldsEnum = | 'internal___ignoreType' | 'internal___mediaType' | 'internal___owner' - | 'internal___type'; + | 'internal___type' + | 'internal___contentFilePath'; export type SitePageGroupConnection = { totalCount: Scalars['Int']; @@ -2854,27 +2773,22 @@ export type SitePageGroupConnection = { fieldValue?: Maybe; }; - export type SitePageGroupConnectionDistinctArgs = { field: SitePageFieldsEnum; }; - export type SitePageGroupConnectionMaxArgs = { field: SitePageFieldsEnum; }; - export type SitePageGroupConnectionMinArgs = { field: SitePageFieldsEnum; }; - export type SitePageGroupConnectionSumArgs = { field: SitePageFieldsEnum; }; - export type SitePageGroupConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -2912,27 +2826,22 @@ export type SitePluginConnection = { group: Array; }; - export type SitePluginConnectionDistinctArgs = { field: SitePluginFieldsEnum; }; - export type SitePluginConnectionMaxArgs = { field: SitePluginFieldsEnum; }; - export type SitePluginConnectionMinArgs = { field: SitePluginFieldsEnum; }; - export type SitePluginConnectionSumArgs = { field: SitePluginFieldsEnum; }; - export type SitePluginConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -2971,6 +2880,7 @@ export type SitePluginFieldsEnum = | 'parent___parent___internal___mediaType' | 'parent___parent___internal___owner' | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' | 'parent___children' | 'parent___children___id' | 'parent___children___parent___id' @@ -2986,6 +2896,7 @@ export type SitePluginFieldsEnum = | 'parent___children___internal___mediaType' | 'parent___children___internal___owner' | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' | 'parent___internal___content' | 'parent___internal___contentDigest' | 'parent___internal___description' @@ -2994,6 +2905,7 @@ export type SitePluginFieldsEnum = | 'parent___internal___mediaType' | 'parent___internal___owner' | 'parent___internal___type' + | 'parent___internal___contentFilePath' | 'children' | 'children___id' | 'children___parent___id' @@ -3010,6 +2922,7 @@ export type SitePluginFieldsEnum = | 'children___parent___internal___mediaType' | 'children___parent___internal___owner' | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' | 'children___children' | 'children___children___id' | 'children___children___parent___id' @@ -3025,6 +2938,7 @@ export type SitePluginFieldsEnum = | 'children___children___internal___mediaType' | 'children___children___internal___owner' | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' | 'children___internal___content' | 'children___internal___contentDigest' | 'children___internal___description' @@ -3033,6 +2947,7 @@ export type SitePluginFieldsEnum = | 'children___internal___mediaType' | 'children___internal___owner' | 'children___internal___type' + | 'children___internal___contentFilePath' | 'internal___content' | 'internal___contentDigest' | 'internal___description' @@ -3040,7 +2955,8 @@ export type SitePluginFieldsEnum = | 'internal___ignoreType' | 'internal___mediaType' | 'internal___owner' - | 'internal___type'; + | 'internal___type' + | 'internal___contentFilePath'; export type SitePluginGroupConnection = { totalCount: Scalars['Int']; @@ -3056,27 +2972,22 @@ export type SitePluginGroupConnection = { fieldValue?: Maybe; }; - export type SitePluginGroupConnectionDistinctArgs = { field: SitePluginFieldsEnum; }; - export type SitePluginGroupConnectionMaxArgs = { field: SitePluginFieldsEnum; }; - export type SitePluginGroupConnectionMinArgs = { field: SitePluginFieldsEnum; }; - export type SitePluginGroupConnectionSumArgs = { field: SitePluginFieldsEnum; }; - export type SitePluginGroupConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -3100,27 +3011,22 @@ export type SiteBuildMetadataConnection = { group: Array; }; - export type SiteBuildMetadataConnectionDistinctArgs = { field: SiteBuildMetadataFieldsEnum; }; - export type SiteBuildMetadataConnectionMaxArgs = { field: SiteBuildMetadataFieldsEnum; }; - export type SiteBuildMetadataConnectionMinArgs = { field: SiteBuildMetadataFieldsEnum; }; - export type SiteBuildMetadataConnectionSumArgs = { field: SiteBuildMetadataFieldsEnum; }; - export type SiteBuildMetadataConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -3151,6 +3057,7 @@ export type SiteBuildMetadataFieldsEnum = | 'parent___parent___internal___mediaType' | 'parent___parent___internal___owner' | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' | 'parent___children' | 'parent___children___id' | 'parent___children___parent___id' @@ -3166,6 +3073,7 @@ export type SiteBuildMetadataFieldsEnum = | 'parent___children___internal___mediaType' | 'parent___children___internal___owner' | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' | 'parent___internal___content' | 'parent___internal___contentDigest' | 'parent___internal___description' @@ -3174,6 +3082,7 @@ export type SiteBuildMetadataFieldsEnum = | 'parent___internal___mediaType' | 'parent___internal___owner' | 'parent___internal___type' + | 'parent___internal___contentFilePath' | 'children' | 'children___id' | 'children___parent___id' @@ -3190,6 +3099,7 @@ export type SiteBuildMetadataFieldsEnum = | 'children___parent___internal___mediaType' | 'children___parent___internal___owner' | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' | 'children___children' | 'children___children___id' | 'children___children___parent___id' @@ -3205,6 +3115,7 @@ export type SiteBuildMetadataFieldsEnum = | 'children___children___internal___mediaType' | 'children___children___internal___owner' | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' | 'children___internal___content' | 'children___internal___contentDigest' | 'children___internal___description' @@ -3213,6 +3124,7 @@ export type SiteBuildMetadataFieldsEnum = | 'children___internal___mediaType' | 'children___internal___owner' | 'children___internal___type' + | 'children___internal___contentFilePath' | 'internal___content' | 'internal___contentDigest' | 'internal___description' @@ -3220,7 +3132,8 @@ export type SiteBuildMetadataFieldsEnum = | 'internal___ignoreType' | 'internal___mediaType' | 'internal___owner' - | 'internal___type'; + | 'internal___type' + | 'internal___contentFilePath'; export type SiteBuildMetadataGroupConnection = { totalCount: Scalars['Int']; @@ -3236,27 +3149,22 @@ export type SiteBuildMetadataGroupConnection = { fieldValue?: Maybe; }; - export type SiteBuildMetadataGroupConnectionDistinctArgs = { field: SiteBuildMetadataFieldsEnum; }; - export type SiteBuildMetadataGroupConnectionMaxArgs = { field: SiteBuildMetadataFieldsEnum; }; - export type SiteBuildMetadataGroupConnectionMinArgs = { field: SiteBuildMetadataFieldsEnum; }; - export type SiteBuildMetadataGroupConnectionSumArgs = { field: SiteBuildMetadataFieldsEnum; }; - export type SiteBuildMetadataGroupConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -3288,27 +3196,22 @@ export type ImageSharpConnection = { group: Array; }; - export type ImageSharpConnectionDistinctArgs = { field: ImageSharpFieldsEnum; }; - export type ImageSharpConnectionMaxArgs = { field: ImageSharpFieldsEnum; }; - export type ImageSharpConnectionMinArgs = { field: ImageSharpFieldsEnum; }; - export type ImageSharpConnectionSumArgs = { field: ImageSharpFieldsEnum; }; - export type ImageSharpConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -3370,6 +3273,7 @@ export type ImageSharpFieldsEnum = | 'parent___parent___internal___mediaType' | 'parent___parent___internal___owner' | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' | 'parent___children' | 'parent___children___id' | 'parent___children___parent___id' @@ -3385,6 +3289,7 @@ export type ImageSharpFieldsEnum = | 'parent___children___internal___mediaType' | 'parent___children___internal___owner' | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' | 'parent___internal___content' | 'parent___internal___contentDigest' | 'parent___internal___description' @@ -3393,6 +3298,7 @@ export type ImageSharpFieldsEnum = | 'parent___internal___mediaType' | 'parent___internal___owner' | 'parent___internal___type' + | 'parent___internal___contentFilePath' | 'children' | 'children___id' | 'children___parent___id' @@ -3409,6 +3315,7 @@ export type ImageSharpFieldsEnum = | 'children___parent___internal___mediaType' | 'children___parent___internal___owner' | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' | 'children___children' | 'children___children___id' | 'children___children___parent___id' @@ -3424,6 +3331,7 @@ export type ImageSharpFieldsEnum = | 'children___children___internal___mediaType' | 'children___children___internal___owner' | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' | 'children___internal___content' | 'children___internal___contentDigest' | 'children___internal___description' @@ -3432,6 +3340,7 @@ export type ImageSharpFieldsEnum = | 'children___internal___mediaType' | 'children___internal___owner' | 'children___internal___type' + | 'children___internal___contentFilePath' | 'internal___content' | 'internal___contentDigest' | 'internal___description' @@ -3439,7 +3348,8 @@ export type ImageSharpFieldsEnum = | 'internal___ignoreType' | 'internal___mediaType' | 'internal___owner' - | 'internal___type'; + | 'internal___type' + | 'internal___contentFilePath'; export type ImageSharpGroupConnection = { totalCount: Scalars['Int']; @@ -3455,27 +3365,22 @@ export type ImageSharpGroupConnection = { fieldValue?: Maybe; }; - export type ImageSharpGroupConnectionDistinctArgs = { field: ImageSharpFieldsEnum; }; - export type ImageSharpGroupConnectionMaxArgs = { field: ImageSharpFieldsEnum; }; - export type ImageSharpGroupConnectionMinArgs = { field: ImageSharpFieldsEnum; }; - export type ImageSharpGroupConnectionSumArgs = { field: ImageSharpFieldsEnum; }; - export type ImageSharpGroupConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -3512,12 +3417,12 @@ export type GraphCms_UserFilterInput = { remoteTypeName?: InputMaybe; remoteId?: InputMaybe; stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; - publishedAt?: InputMaybe; - name?: InputMaybe; - picture?: InputMaybe; isActive?: InputMaybe; + picture?: InputMaybe; + name?: InputMaybe; + publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; kind?: InputMaybe; id?: InputMaybe; parent?: InputMaybe; @@ -3540,16 +3445,16 @@ export type GraphCms_PortfolioItemFilterInput = { remoteTypeName?: InputMaybe; remoteId?: InputMaybe; stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; title?: InputMaybe; description?: InputMaybe; - techSheet?: InputMaybe; about?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; + techSheet?: InputMaybe; publishedBy?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; carouselImages?: InputMaybe; links?: InputMaybe; scheduledIn?: InputMaybe; @@ -3577,19 +3482,22 @@ export type GraphCms_AssetFilterInput = { remoteId?: InputMaybe; locale?: InputMaybe; stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; - publishedAt?: InputMaybe; - handle?: InputMaybe; - fileName?: InputMaybe; - height?: InputMaybe; - width?: InputMaybe; - size?: InputMaybe; mimeType?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; + size?: InputMaybe; + width?: InputMaybe; + height?: InputMaybe; + fileName?: InputMaybe; + handle?: InputMaybe; + publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; publishedBy?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; carouselImagesPortfolioItem?: InputMaybe; + iconSpeciality?: InputMaybe; + iconTechnology?: InputMaybe; + headerImageBlog?: InputMaybe; scheduledIn?: InputMaybe; url?: InputMaybe; id?: InputMaybe; @@ -3598,6 +3506,30 @@ export type GraphCms_AssetFilterInput = { internal?: InputMaybe; }; +export type GraphCms_SpecialityFilterListInput = { + elemMatch?: InputMaybe; +}; + +export type GraphCms_SpecialityFilterInput = { + remoteTypeName?: InputMaybe; + remoteId?: InputMaybe; + stage?: InputMaybe; + publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; + title?: InputMaybe; + description?: InputMaybe; + publishedBy?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; + icon?: InputMaybe; + scheduledIn?: InputMaybe; + id?: InputMaybe; + parent?: InputMaybe; + children?: InputMaybe; + internal?: InputMaybe; +}; + export type GraphCms_ScheduledOperationFilterListInput = { elemMatch?: InputMaybe; }; @@ -3606,16 +3538,16 @@ export type GraphCms_ScheduledOperationFilterInput = { remoteTypeName?: InputMaybe; remoteId?: InputMaybe; stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; - publishedAt?: InputMaybe; - description?: InputMaybe; - errorMessage?: InputMaybe; rawPayload?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; - publishedBy?: InputMaybe; + errorMessage?: InputMaybe; + description?: InputMaybe; + publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; release?: InputMaybe; + publishedBy?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; status?: InputMaybe; id?: InputMaybe; parent?: InputMaybe; @@ -3627,19 +3559,19 @@ export type GraphCms_ScheduledReleaseFilterInput = { remoteTypeName?: InputMaybe; remoteId?: InputMaybe; stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; - publishedAt?: InputMaybe; - title?: InputMaybe; - description?: InputMaybe; - errorMessage?: InputMaybe; - isActive?: InputMaybe; - isImplicit?: InputMaybe; releaseAt?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; - publishedBy?: InputMaybe; + isImplicit?: InputMaybe; + isActive?: InputMaybe; + errorMessage?: InputMaybe; + description?: InputMaybe; + title?: InputMaybe; + publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; operations?: InputMaybe; + publishedBy?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; status?: InputMaybe; id?: InputMaybe; parent?: InputMaybe; @@ -3661,6 +3593,88 @@ export type GraphCms_ScheduledOperationStatusQueryOperatorInput = { nin?: InputMaybe>>; }; +export type GraphCms_TechnologyFilterListInput = { + elemMatch?: InputMaybe; +}; + +export type GraphCms_TechnologyFilterInput = { + remoteTypeName?: InputMaybe; + remoteId?: InputMaybe; + stage?: InputMaybe; + publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; + title?: InputMaybe; + description?: InputMaybe; + backgroundColor?: InputMaybe; + publishedBy?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; + icon?: InputMaybe; + scheduledIn?: InputMaybe; + id?: InputMaybe; + parent?: InputMaybe; + children?: InputMaybe; + internal?: InputMaybe; +}; + +export type GraphCms_ColorFilterInput = { + remoteTypeName?: InputMaybe; + hex?: InputMaybe; + rgba?: InputMaybe; + css?: InputMaybe; +}; + +export type GraphCms_RgbaFilterInput = { + remoteTypeName?: InputMaybe; + r?: InputMaybe; + g?: InputMaybe; + b?: InputMaybe; + a?: InputMaybe; +}; + +export type GraphCms_BlogFilterListInput = { + elemMatch?: InputMaybe; +}; + +export type GraphCms_BlogFilterInput = { + remoteTypeName?: InputMaybe; + remoteId?: InputMaybe; + stage?: InputMaybe; + publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; + title?: InputMaybe; + description?: InputMaybe; + content?: InputMaybe; + publishedBy?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; + headerImage?: InputMaybe; + type?: InputMaybe; + categories?: InputMaybe; + scheduledIn?: InputMaybe; + gatsbyPath?: InputMaybe; + id?: InputMaybe; + parent?: InputMaybe; + children?: InputMaybe; + internal?: InputMaybe; +}; + +export type GraphCms_BlogTypeQueryOperatorInput = { + eq?: InputMaybe; + ne?: InputMaybe; + in?: InputMaybe>>; + nin?: InputMaybe>>; +}; + +export type GraphCms_BlogCategoriesQueryOperatorInput = { + eq?: InputMaybe; + ne?: InputMaybe; + in?: InputMaybe>>; + nin?: InputMaybe>>; +}; + export type GraphCms_LinkFilterListInput = { elemMatch?: InputMaybe; }; @@ -3669,15 +3683,15 @@ export type GraphCms_LinkFilterInput = { remoteTypeName?: InputMaybe; remoteId?: InputMaybe; stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; publishedAt?: InputMaybe; + updatedAt?: InputMaybe; + createdAt?: InputMaybe; title?: InputMaybe; url?: InputMaybe; - type?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; publishedBy?: InputMaybe; + updatedBy?: InputMaybe; + createdBy?: InputMaybe; + type?: InputMaybe; scheduledIn?: InputMaybe; id?: InputMaybe; parent?: InputMaybe; @@ -3685,6 +3699,13 @@ export type GraphCms_LinkFilterInput = { internal?: InputMaybe; }; +export type GraphCms_LinkTypeQueryOperatorInput = { + eq?: InputMaybe; + ne?: InputMaybe; + in?: InputMaybe>>; + nin?: InputMaybe>>; +}; + export type GraphCms_AssetConnection = { totalCount: Scalars['Int']; edges: Array; @@ -3697,27 +3718,22 @@ export type GraphCms_AssetConnection = { group: Array; }; - export type GraphCms_AssetConnectionDistinctArgs = { field: GraphCms_AssetFieldsEnum; }; - export type GraphCms_AssetConnectionMaxArgs = { field: GraphCms_AssetFieldsEnum; }; - export type GraphCms_AssetConnectionMinArgs = { field: GraphCms_AssetFieldsEnum; }; - export type GraphCms_AssetConnectionSumArgs = { field: GraphCms_AssetFieldsEnum; }; - export type GraphCms_AssetConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -3735,120 +3751,24 @@ export type GraphCms_AssetFieldsEnum = | 'remoteId' | 'locale' | 'stage' - | 'createdAt' - | 'updatedAt' - | 'publishedAt' - | 'handle' - | 'fileName' - | 'height' - | 'width' - | 'size' | 'mimeType' - | 'createdBy___remoteTypeName' - | 'createdBy___remoteId' - | 'createdBy___stage' - | 'createdBy___createdAt' - | 'createdBy___updatedAt' - | 'createdBy___publishedAt' - | 'createdBy___name' - | 'createdBy___picture' - | 'createdBy___isActive' - | 'createdBy___kind' - | 'createdBy___id' - | 'createdBy___parent___id' - | 'createdBy___parent___parent___id' - | 'createdBy___parent___parent___children' - | 'createdBy___parent___children' - | 'createdBy___parent___children___id' - | 'createdBy___parent___children___children' - | 'createdBy___parent___internal___content' - | 'createdBy___parent___internal___contentDigest' - | 'createdBy___parent___internal___description' - | 'createdBy___parent___internal___fieldOwners' - | 'createdBy___parent___internal___ignoreType' - | 'createdBy___parent___internal___mediaType' - | 'createdBy___parent___internal___owner' - | 'createdBy___parent___internal___type' - | 'createdBy___children' - | 'createdBy___children___id' - | 'createdBy___children___parent___id' - | 'createdBy___children___parent___children' - | 'createdBy___children___children' - | 'createdBy___children___children___id' - | 'createdBy___children___children___children' - | 'createdBy___children___internal___content' - | 'createdBy___children___internal___contentDigest' - | 'createdBy___children___internal___description' - | 'createdBy___children___internal___fieldOwners' - | 'createdBy___children___internal___ignoreType' - | 'createdBy___children___internal___mediaType' - | 'createdBy___children___internal___owner' - | 'createdBy___children___internal___type' - | 'createdBy___internal___content' - | 'createdBy___internal___contentDigest' - | 'createdBy___internal___description' - | 'createdBy___internal___fieldOwners' - | 'createdBy___internal___ignoreType' - | 'createdBy___internal___mediaType' - | 'createdBy___internal___owner' - | 'createdBy___internal___type' - | 'updatedBy___remoteTypeName' - | 'updatedBy___remoteId' - | 'updatedBy___stage' - | 'updatedBy___createdAt' - | 'updatedBy___updatedAt' - | 'updatedBy___publishedAt' - | 'updatedBy___name' - | 'updatedBy___picture' - | 'updatedBy___isActive' - | 'updatedBy___kind' - | 'updatedBy___id' - | 'updatedBy___parent___id' - | 'updatedBy___parent___parent___id' - | 'updatedBy___parent___parent___children' - | 'updatedBy___parent___children' - | 'updatedBy___parent___children___id' - | 'updatedBy___parent___children___children' - | 'updatedBy___parent___internal___content' - | 'updatedBy___parent___internal___contentDigest' - | 'updatedBy___parent___internal___description' - | 'updatedBy___parent___internal___fieldOwners' - | 'updatedBy___parent___internal___ignoreType' - | 'updatedBy___parent___internal___mediaType' - | 'updatedBy___parent___internal___owner' - | 'updatedBy___parent___internal___type' - | 'updatedBy___children' - | 'updatedBy___children___id' - | 'updatedBy___children___parent___id' - | 'updatedBy___children___parent___children' - | 'updatedBy___children___children' - | 'updatedBy___children___children___id' - | 'updatedBy___children___children___children' - | 'updatedBy___children___internal___content' - | 'updatedBy___children___internal___contentDigest' - | 'updatedBy___children___internal___description' - | 'updatedBy___children___internal___fieldOwners' - | 'updatedBy___children___internal___ignoreType' - | 'updatedBy___children___internal___mediaType' - | 'updatedBy___children___internal___owner' - | 'updatedBy___children___internal___type' - | 'updatedBy___internal___content' - | 'updatedBy___internal___contentDigest' - | 'updatedBy___internal___description' - | 'updatedBy___internal___fieldOwners' - | 'updatedBy___internal___ignoreType' - | 'updatedBy___internal___mediaType' - | 'updatedBy___internal___owner' - | 'updatedBy___internal___type' + | 'size' + | 'width' + | 'height' + | 'fileName' + | 'handle' + | 'publishedAt' + | 'updatedAt' + | 'createdAt' | 'publishedBy___remoteTypeName' | 'publishedBy___remoteId' | 'publishedBy___stage' - | 'publishedBy___createdAt' - | 'publishedBy___updatedAt' - | 'publishedBy___publishedAt' - | 'publishedBy___name' - | 'publishedBy___picture' | 'publishedBy___isActive' + | 'publishedBy___picture' + | 'publishedBy___name' + | 'publishedBy___publishedAt' + | 'publishedBy___updatedAt' + | 'publishedBy___createdAt' | 'publishedBy___kind' | 'publishedBy___id' | 'publishedBy___parent___id' @@ -3865,6 +3785,7 @@ export type GraphCms_AssetFieldsEnum = | 'publishedBy___parent___internal___mediaType' | 'publishedBy___parent___internal___owner' | 'publishedBy___parent___internal___type' + | 'publishedBy___parent___internal___contentFilePath' | 'publishedBy___children' | 'publishedBy___children___id' | 'publishedBy___children___parent___id' @@ -3880,6 +3801,7 @@ export type GraphCms_AssetFieldsEnum = | 'publishedBy___children___internal___mediaType' | 'publishedBy___children___internal___owner' | 'publishedBy___children___internal___type' + | 'publishedBy___children___internal___contentFilePath' | 'publishedBy___internal___content' | 'publishedBy___internal___contentDigest' | 'publishedBy___internal___description' @@ -3888,78 +3810,133 @@ export type GraphCms_AssetFieldsEnum = | 'publishedBy___internal___mediaType' | 'publishedBy___internal___owner' | 'publishedBy___internal___type' + | 'publishedBy___internal___contentFilePath' + | 'updatedBy___remoteTypeName' + | 'updatedBy___remoteId' + | 'updatedBy___stage' + | 'updatedBy___isActive' + | 'updatedBy___picture' + | 'updatedBy___name' + | 'updatedBy___publishedAt' + | 'updatedBy___updatedAt' + | 'updatedBy___createdAt' + | 'updatedBy___kind' + | 'updatedBy___id' + | 'updatedBy___parent___id' + | 'updatedBy___parent___parent___id' + | 'updatedBy___parent___parent___children' + | 'updatedBy___parent___children' + | 'updatedBy___parent___children___id' + | 'updatedBy___parent___children___children' + | 'updatedBy___parent___internal___content' + | 'updatedBy___parent___internal___contentDigest' + | 'updatedBy___parent___internal___description' + | 'updatedBy___parent___internal___fieldOwners' + | 'updatedBy___parent___internal___ignoreType' + | 'updatedBy___parent___internal___mediaType' + | 'updatedBy___parent___internal___owner' + | 'updatedBy___parent___internal___type' + | 'updatedBy___parent___internal___contentFilePath' + | 'updatedBy___children' + | 'updatedBy___children___id' + | 'updatedBy___children___parent___id' + | 'updatedBy___children___parent___children' + | 'updatedBy___children___children' + | 'updatedBy___children___children___id' + | 'updatedBy___children___children___children' + | 'updatedBy___children___internal___content' + | 'updatedBy___children___internal___contentDigest' + | 'updatedBy___children___internal___description' + | 'updatedBy___children___internal___fieldOwners' + | 'updatedBy___children___internal___ignoreType' + | 'updatedBy___children___internal___mediaType' + | 'updatedBy___children___internal___owner' + | 'updatedBy___children___internal___type' + | 'updatedBy___children___internal___contentFilePath' + | 'updatedBy___internal___content' + | 'updatedBy___internal___contentDigest' + | 'updatedBy___internal___description' + | 'updatedBy___internal___fieldOwners' + | 'updatedBy___internal___ignoreType' + | 'updatedBy___internal___mediaType' + | 'updatedBy___internal___owner' + | 'updatedBy___internal___type' + | 'updatedBy___internal___contentFilePath' + | 'createdBy___remoteTypeName' + | 'createdBy___remoteId' + | 'createdBy___stage' + | 'createdBy___isActive' + | 'createdBy___picture' + | 'createdBy___name' + | 'createdBy___publishedAt' + | 'createdBy___updatedAt' + | 'createdBy___createdAt' + | 'createdBy___kind' + | 'createdBy___id' + | 'createdBy___parent___id' + | 'createdBy___parent___parent___id' + | 'createdBy___parent___parent___children' + | 'createdBy___parent___children' + | 'createdBy___parent___children___id' + | 'createdBy___parent___children___children' + | 'createdBy___parent___internal___content' + | 'createdBy___parent___internal___contentDigest' + | 'createdBy___parent___internal___description' + | 'createdBy___parent___internal___fieldOwners' + | 'createdBy___parent___internal___ignoreType' + | 'createdBy___parent___internal___mediaType' + | 'createdBy___parent___internal___owner' + | 'createdBy___parent___internal___type' + | 'createdBy___parent___internal___contentFilePath' + | 'createdBy___children' + | 'createdBy___children___id' + | 'createdBy___children___parent___id' + | 'createdBy___children___parent___children' + | 'createdBy___children___children' + | 'createdBy___children___children___id' + | 'createdBy___children___children___children' + | 'createdBy___children___internal___content' + | 'createdBy___children___internal___contentDigest' + | 'createdBy___children___internal___description' + | 'createdBy___children___internal___fieldOwners' + | 'createdBy___children___internal___ignoreType' + | 'createdBy___children___internal___mediaType' + | 'createdBy___children___internal___owner' + | 'createdBy___children___internal___type' + | 'createdBy___children___internal___contentFilePath' + | 'createdBy___internal___content' + | 'createdBy___internal___contentDigest' + | 'createdBy___internal___description' + | 'createdBy___internal___fieldOwners' + | 'createdBy___internal___ignoreType' + | 'createdBy___internal___mediaType' + | 'createdBy___internal___owner' + | 'createdBy___internal___type' + | 'createdBy___internal___contentFilePath' | 'carouselImagesPortfolioItem' | 'carouselImagesPortfolioItem___remoteTypeName' | 'carouselImagesPortfolioItem___remoteId' | 'carouselImagesPortfolioItem___stage' - | 'carouselImagesPortfolioItem___createdAt' - | 'carouselImagesPortfolioItem___updatedAt' | 'carouselImagesPortfolioItem___publishedAt' + | 'carouselImagesPortfolioItem___updatedAt' + | 'carouselImagesPortfolioItem___createdAt' | 'carouselImagesPortfolioItem___title' | 'carouselImagesPortfolioItem___description' - | 'carouselImagesPortfolioItem___techSheet' | 'carouselImagesPortfolioItem___about___remoteTypeName' | 'carouselImagesPortfolioItem___about___raw' | 'carouselImagesPortfolioItem___about___html' | 'carouselImagesPortfolioItem___about___markdown' | 'carouselImagesPortfolioItem___about___text' - | 'carouselImagesPortfolioItem___createdBy___remoteTypeName' - | 'carouselImagesPortfolioItem___createdBy___remoteId' - | 'carouselImagesPortfolioItem___createdBy___stage' - | 'carouselImagesPortfolioItem___createdBy___createdAt' - | 'carouselImagesPortfolioItem___createdBy___updatedAt' - | 'carouselImagesPortfolioItem___createdBy___publishedAt' - | 'carouselImagesPortfolioItem___createdBy___name' - | 'carouselImagesPortfolioItem___createdBy___picture' - | 'carouselImagesPortfolioItem___createdBy___isActive' - | 'carouselImagesPortfolioItem___createdBy___kind' - | 'carouselImagesPortfolioItem___createdBy___id' - | 'carouselImagesPortfolioItem___createdBy___parent___id' - | 'carouselImagesPortfolioItem___createdBy___parent___children' - | 'carouselImagesPortfolioItem___createdBy___children' - | 'carouselImagesPortfolioItem___createdBy___children___id' - | 'carouselImagesPortfolioItem___createdBy___children___children' - | 'carouselImagesPortfolioItem___createdBy___internal___content' - | 'carouselImagesPortfolioItem___createdBy___internal___contentDigest' - | 'carouselImagesPortfolioItem___createdBy___internal___description' - | 'carouselImagesPortfolioItem___createdBy___internal___fieldOwners' - | 'carouselImagesPortfolioItem___createdBy___internal___ignoreType' - | 'carouselImagesPortfolioItem___createdBy___internal___mediaType' - | 'carouselImagesPortfolioItem___createdBy___internal___owner' - | 'carouselImagesPortfolioItem___createdBy___internal___type' - | 'carouselImagesPortfolioItem___updatedBy___remoteTypeName' - | 'carouselImagesPortfolioItem___updatedBy___remoteId' - | 'carouselImagesPortfolioItem___updatedBy___stage' - | 'carouselImagesPortfolioItem___updatedBy___createdAt' - | 'carouselImagesPortfolioItem___updatedBy___updatedAt' - | 'carouselImagesPortfolioItem___updatedBy___publishedAt' - | 'carouselImagesPortfolioItem___updatedBy___name' - | 'carouselImagesPortfolioItem___updatedBy___picture' - | 'carouselImagesPortfolioItem___updatedBy___isActive' - | 'carouselImagesPortfolioItem___updatedBy___kind' - | 'carouselImagesPortfolioItem___updatedBy___id' - | 'carouselImagesPortfolioItem___updatedBy___parent___id' - | 'carouselImagesPortfolioItem___updatedBy___parent___children' - | 'carouselImagesPortfolioItem___updatedBy___children' - | 'carouselImagesPortfolioItem___updatedBy___children___id' - | 'carouselImagesPortfolioItem___updatedBy___children___children' - | 'carouselImagesPortfolioItem___updatedBy___internal___content' - | 'carouselImagesPortfolioItem___updatedBy___internal___contentDigest' - | 'carouselImagesPortfolioItem___updatedBy___internal___description' - | 'carouselImagesPortfolioItem___updatedBy___internal___fieldOwners' - | 'carouselImagesPortfolioItem___updatedBy___internal___ignoreType' - | 'carouselImagesPortfolioItem___updatedBy___internal___mediaType' - | 'carouselImagesPortfolioItem___updatedBy___internal___owner' - | 'carouselImagesPortfolioItem___updatedBy___internal___type' + | 'carouselImagesPortfolioItem___techSheet' | 'carouselImagesPortfolioItem___publishedBy___remoteTypeName' | 'carouselImagesPortfolioItem___publishedBy___remoteId' | 'carouselImagesPortfolioItem___publishedBy___stage' - | 'carouselImagesPortfolioItem___publishedBy___createdAt' - | 'carouselImagesPortfolioItem___publishedBy___updatedAt' - | 'carouselImagesPortfolioItem___publishedBy___publishedAt' - | 'carouselImagesPortfolioItem___publishedBy___name' - | 'carouselImagesPortfolioItem___publishedBy___picture' | 'carouselImagesPortfolioItem___publishedBy___isActive' + | 'carouselImagesPortfolioItem___publishedBy___picture' + | 'carouselImagesPortfolioItem___publishedBy___name' + | 'carouselImagesPortfolioItem___publishedBy___publishedAt' + | 'carouselImagesPortfolioItem___publishedBy___updatedAt' + | 'carouselImagesPortfolioItem___publishedBy___createdAt' | 'carouselImagesPortfolioItem___publishedBy___kind' | 'carouselImagesPortfolioItem___publishedBy___id' | 'carouselImagesPortfolioItem___publishedBy___parent___id' @@ -3975,63 +3952,114 @@ export type GraphCms_AssetFieldsEnum = | 'carouselImagesPortfolioItem___publishedBy___internal___mediaType' | 'carouselImagesPortfolioItem___publishedBy___internal___owner' | 'carouselImagesPortfolioItem___publishedBy___internal___type' - | 'carouselImagesPortfolioItem___carouselImages' - | 'carouselImagesPortfolioItem___carouselImages___remoteTypeName' - | 'carouselImagesPortfolioItem___carouselImages___remoteId' - | 'carouselImagesPortfolioItem___carouselImages___locale' - | 'carouselImagesPortfolioItem___carouselImages___stage' - | 'carouselImagesPortfolioItem___carouselImages___createdAt' - | 'carouselImagesPortfolioItem___carouselImages___updatedAt' - | 'carouselImagesPortfolioItem___carouselImages___publishedAt' - | 'carouselImagesPortfolioItem___carouselImages___handle' - | 'carouselImagesPortfolioItem___carouselImages___fileName' - | 'carouselImagesPortfolioItem___carouselImages___height' - | 'carouselImagesPortfolioItem___carouselImages___width' - | 'carouselImagesPortfolioItem___carouselImages___size' + | 'carouselImagesPortfolioItem___publishedBy___internal___contentFilePath' + | 'carouselImagesPortfolioItem___updatedBy___remoteTypeName' + | 'carouselImagesPortfolioItem___updatedBy___remoteId' + | 'carouselImagesPortfolioItem___updatedBy___stage' + | 'carouselImagesPortfolioItem___updatedBy___isActive' + | 'carouselImagesPortfolioItem___updatedBy___picture' + | 'carouselImagesPortfolioItem___updatedBy___name' + | 'carouselImagesPortfolioItem___updatedBy___publishedAt' + | 'carouselImagesPortfolioItem___updatedBy___updatedAt' + | 'carouselImagesPortfolioItem___updatedBy___createdAt' + | 'carouselImagesPortfolioItem___updatedBy___kind' + | 'carouselImagesPortfolioItem___updatedBy___id' + | 'carouselImagesPortfolioItem___updatedBy___parent___id' + | 'carouselImagesPortfolioItem___updatedBy___parent___children' + | 'carouselImagesPortfolioItem___updatedBy___children' + | 'carouselImagesPortfolioItem___updatedBy___children___id' + | 'carouselImagesPortfolioItem___updatedBy___children___children' + | 'carouselImagesPortfolioItem___updatedBy___internal___content' + | 'carouselImagesPortfolioItem___updatedBy___internal___contentDigest' + | 'carouselImagesPortfolioItem___updatedBy___internal___description' + | 'carouselImagesPortfolioItem___updatedBy___internal___fieldOwners' + | 'carouselImagesPortfolioItem___updatedBy___internal___ignoreType' + | 'carouselImagesPortfolioItem___updatedBy___internal___mediaType' + | 'carouselImagesPortfolioItem___updatedBy___internal___owner' + | 'carouselImagesPortfolioItem___updatedBy___internal___type' + | 'carouselImagesPortfolioItem___updatedBy___internal___contentFilePath' + | 'carouselImagesPortfolioItem___createdBy___remoteTypeName' + | 'carouselImagesPortfolioItem___createdBy___remoteId' + | 'carouselImagesPortfolioItem___createdBy___stage' + | 'carouselImagesPortfolioItem___createdBy___isActive' + | 'carouselImagesPortfolioItem___createdBy___picture' + | 'carouselImagesPortfolioItem___createdBy___name' + | 'carouselImagesPortfolioItem___createdBy___publishedAt' + | 'carouselImagesPortfolioItem___createdBy___updatedAt' + | 'carouselImagesPortfolioItem___createdBy___createdAt' + | 'carouselImagesPortfolioItem___createdBy___kind' + | 'carouselImagesPortfolioItem___createdBy___id' + | 'carouselImagesPortfolioItem___createdBy___parent___id' + | 'carouselImagesPortfolioItem___createdBy___parent___children' + | 'carouselImagesPortfolioItem___createdBy___children' + | 'carouselImagesPortfolioItem___createdBy___children___id' + | 'carouselImagesPortfolioItem___createdBy___children___children' + | 'carouselImagesPortfolioItem___createdBy___internal___content' + | 'carouselImagesPortfolioItem___createdBy___internal___contentDigest' + | 'carouselImagesPortfolioItem___createdBy___internal___description' + | 'carouselImagesPortfolioItem___createdBy___internal___fieldOwners' + | 'carouselImagesPortfolioItem___createdBy___internal___ignoreType' + | 'carouselImagesPortfolioItem___createdBy___internal___mediaType' + | 'carouselImagesPortfolioItem___createdBy___internal___owner' + | 'carouselImagesPortfolioItem___createdBy___internal___type' + | 'carouselImagesPortfolioItem___createdBy___internal___contentFilePath' + | 'carouselImagesPortfolioItem___carouselImages' + | 'carouselImagesPortfolioItem___carouselImages___remoteTypeName' + | 'carouselImagesPortfolioItem___carouselImages___remoteId' + | 'carouselImagesPortfolioItem___carouselImages___locale' + | 'carouselImagesPortfolioItem___carouselImages___stage' | 'carouselImagesPortfolioItem___carouselImages___mimeType' - | 'carouselImagesPortfolioItem___carouselImages___createdBy___remoteTypeName' - | 'carouselImagesPortfolioItem___carouselImages___createdBy___remoteId' - | 'carouselImagesPortfolioItem___carouselImages___createdBy___stage' - | 'carouselImagesPortfolioItem___carouselImages___createdBy___createdAt' - | 'carouselImagesPortfolioItem___carouselImages___createdBy___updatedAt' - | 'carouselImagesPortfolioItem___carouselImages___createdBy___publishedAt' - | 'carouselImagesPortfolioItem___carouselImages___createdBy___name' - | 'carouselImagesPortfolioItem___carouselImages___createdBy___picture' - | 'carouselImagesPortfolioItem___carouselImages___createdBy___isActive' - | 'carouselImagesPortfolioItem___carouselImages___createdBy___kind' - | 'carouselImagesPortfolioItem___carouselImages___createdBy___id' - | 'carouselImagesPortfolioItem___carouselImages___createdBy___children' - | 'carouselImagesPortfolioItem___carouselImages___updatedBy___remoteTypeName' - | 'carouselImagesPortfolioItem___carouselImages___updatedBy___remoteId' - | 'carouselImagesPortfolioItem___carouselImages___updatedBy___stage' - | 'carouselImagesPortfolioItem___carouselImages___updatedBy___createdAt' - | 'carouselImagesPortfolioItem___carouselImages___updatedBy___updatedAt' - | 'carouselImagesPortfolioItem___carouselImages___updatedBy___publishedAt' - | 'carouselImagesPortfolioItem___carouselImages___updatedBy___name' - | 'carouselImagesPortfolioItem___carouselImages___updatedBy___picture' - | 'carouselImagesPortfolioItem___carouselImages___updatedBy___isActive' - | 'carouselImagesPortfolioItem___carouselImages___updatedBy___kind' - | 'carouselImagesPortfolioItem___carouselImages___updatedBy___id' - | 'carouselImagesPortfolioItem___carouselImages___updatedBy___children' + | 'carouselImagesPortfolioItem___carouselImages___size' + | 'carouselImagesPortfolioItem___carouselImages___width' + | 'carouselImagesPortfolioItem___carouselImages___height' + | 'carouselImagesPortfolioItem___carouselImages___fileName' + | 'carouselImagesPortfolioItem___carouselImages___handle' + | 'carouselImagesPortfolioItem___carouselImages___publishedAt' + | 'carouselImagesPortfolioItem___carouselImages___updatedAt' + | 'carouselImagesPortfolioItem___carouselImages___createdAt' | 'carouselImagesPortfolioItem___carouselImages___publishedBy___remoteTypeName' | 'carouselImagesPortfolioItem___carouselImages___publishedBy___remoteId' | 'carouselImagesPortfolioItem___carouselImages___publishedBy___stage' - | 'carouselImagesPortfolioItem___carouselImages___publishedBy___createdAt' - | 'carouselImagesPortfolioItem___carouselImages___publishedBy___updatedAt' - | 'carouselImagesPortfolioItem___carouselImages___publishedBy___publishedAt' - | 'carouselImagesPortfolioItem___carouselImages___publishedBy___name' - | 'carouselImagesPortfolioItem___carouselImages___publishedBy___picture' | 'carouselImagesPortfolioItem___carouselImages___publishedBy___isActive' + | 'carouselImagesPortfolioItem___carouselImages___publishedBy___picture' + | 'carouselImagesPortfolioItem___carouselImages___publishedBy___name' + | 'carouselImagesPortfolioItem___carouselImages___publishedBy___publishedAt' + | 'carouselImagesPortfolioItem___carouselImages___publishedBy___updatedAt' + | 'carouselImagesPortfolioItem___carouselImages___publishedBy___createdAt' | 'carouselImagesPortfolioItem___carouselImages___publishedBy___kind' | 'carouselImagesPortfolioItem___carouselImages___publishedBy___id' | 'carouselImagesPortfolioItem___carouselImages___publishedBy___children' + | 'carouselImagesPortfolioItem___carouselImages___updatedBy___remoteTypeName' + | 'carouselImagesPortfolioItem___carouselImages___updatedBy___remoteId' + | 'carouselImagesPortfolioItem___carouselImages___updatedBy___stage' + | 'carouselImagesPortfolioItem___carouselImages___updatedBy___isActive' + | 'carouselImagesPortfolioItem___carouselImages___updatedBy___picture' + | 'carouselImagesPortfolioItem___carouselImages___updatedBy___name' + | 'carouselImagesPortfolioItem___carouselImages___updatedBy___publishedAt' + | 'carouselImagesPortfolioItem___carouselImages___updatedBy___updatedAt' + | 'carouselImagesPortfolioItem___carouselImages___updatedBy___createdAt' + | 'carouselImagesPortfolioItem___carouselImages___updatedBy___kind' + | 'carouselImagesPortfolioItem___carouselImages___updatedBy___id' + | 'carouselImagesPortfolioItem___carouselImages___updatedBy___children' + | 'carouselImagesPortfolioItem___carouselImages___createdBy___remoteTypeName' + | 'carouselImagesPortfolioItem___carouselImages___createdBy___remoteId' + | 'carouselImagesPortfolioItem___carouselImages___createdBy___stage' + | 'carouselImagesPortfolioItem___carouselImages___createdBy___isActive' + | 'carouselImagesPortfolioItem___carouselImages___createdBy___picture' + | 'carouselImagesPortfolioItem___carouselImages___createdBy___name' + | 'carouselImagesPortfolioItem___carouselImages___createdBy___publishedAt' + | 'carouselImagesPortfolioItem___carouselImages___createdBy___updatedAt' + | 'carouselImagesPortfolioItem___carouselImages___createdBy___createdAt' + | 'carouselImagesPortfolioItem___carouselImages___createdBy___kind' + | 'carouselImagesPortfolioItem___carouselImages___createdBy___id' + | 'carouselImagesPortfolioItem___carouselImages___createdBy___children' | 'carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem' | 'carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem___remoteTypeName' | 'carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem___remoteId' | 'carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem___stage' - | 'carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem___createdAt' - | 'carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem___updatedAt' | 'carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem___publishedAt' + | 'carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem___updatedAt' + | 'carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem___createdAt' | 'carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem___title' | 'carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem___description' | 'carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem___techSheet' @@ -4041,16 +4069,53 @@ export type GraphCms_AssetFieldsEnum = | 'carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem___gatsbyPath' | 'carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem___id' | 'carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem___children' + | 'carouselImagesPortfolioItem___carouselImages___iconSpeciality' + | 'carouselImagesPortfolioItem___carouselImages___iconSpeciality___remoteTypeName' + | 'carouselImagesPortfolioItem___carouselImages___iconSpeciality___remoteId' + | 'carouselImagesPortfolioItem___carouselImages___iconSpeciality___stage' + | 'carouselImagesPortfolioItem___carouselImages___iconSpeciality___publishedAt' + | 'carouselImagesPortfolioItem___carouselImages___iconSpeciality___updatedAt' + | 'carouselImagesPortfolioItem___carouselImages___iconSpeciality___createdAt' + | 'carouselImagesPortfolioItem___carouselImages___iconSpeciality___title' + | 'carouselImagesPortfolioItem___carouselImages___iconSpeciality___scheduledIn' + | 'carouselImagesPortfolioItem___carouselImages___iconSpeciality___id' + | 'carouselImagesPortfolioItem___carouselImages___iconSpeciality___children' + | 'carouselImagesPortfolioItem___carouselImages___iconTechnology' + | 'carouselImagesPortfolioItem___carouselImages___iconTechnology___remoteTypeName' + | 'carouselImagesPortfolioItem___carouselImages___iconTechnology___remoteId' + | 'carouselImagesPortfolioItem___carouselImages___iconTechnology___stage' + | 'carouselImagesPortfolioItem___carouselImages___iconTechnology___publishedAt' + | 'carouselImagesPortfolioItem___carouselImages___iconTechnology___updatedAt' + | 'carouselImagesPortfolioItem___carouselImages___iconTechnology___createdAt' + | 'carouselImagesPortfolioItem___carouselImages___iconTechnology___title' + | 'carouselImagesPortfolioItem___carouselImages___iconTechnology___scheduledIn' + | 'carouselImagesPortfolioItem___carouselImages___iconTechnology___id' + | 'carouselImagesPortfolioItem___carouselImages___iconTechnology___children' + | 'carouselImagesPortfolioItem___carouselImages___headerImageBlog' + | 'carouselImagesPortfolioItem___carouselImages___headerImageBlog___remoteTypeName' + | 'carouselImagesPortfolioItem___carouselImages___headerImageBlog___remoteId' + | 'carouselImagesPortfolioItem___carouselImages___headerImageBlog___stage' + | 'carouselImagesPortfolioItem___carouselImages___headerImageBlog___publishedAt' + | 'carouselImagesPortfolioItem___carouselImages___headerImageBlog___updatedAt' + | 'carouselImagesPortfolioItem___carouselImages___headerImageBlog___createdAt' + | 'carouselImagesPortfolioItem___carouselImages___headerImageBlog___title' + | 'carouselImagesPortfolioItem___carouselImages___headerImageBlog___description' + | 'carouselImagesPortfolioItem___carouselImages___headerImageBlog___type' + | 'carouselImagesPortfolioItem___carouselImages___headerImageBlog___categories' + | 'carouselImagesPortfolioItem___carouselImages___headerImageBlog___scheduledIn' + | 'carouselImagesPortfolioItem___carouselImages___headerImageBlog___gatsbyPath' + | 'carouselImagesPortfolioItem___carouselImages___headerImageBlog___id' + | 'carouselImagesPortfolioItem___carouselImages___headerImageBlog___children' | 'carouselImagesPortfolioItem___carouselImages___scheduledIn' | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___remoteTypeName' | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___remoteId' | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___stage' - | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___createdAt' - | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___updatedAt' - | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___publishedAt' - | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___description' - | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___errorMessage' | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___rawPayload' + | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___errorMessage' + | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___description' + | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___publishedAt' + | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___updatedAt' + | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___createdAt' | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___status' | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___id' | 'carouselImagesPortfolioItem___carouselImages___scheduledIn___children' @@ -4069,62 +4134,63 @@ export type GraphCms_AssetFieldsEnum = | 'carouselImagesPortfolioItem___carouselImages___internal___mediaType' | 'carouselImagesPortfolioItem___carouselImages___internal___owner' | 'carouselImagesPortfolioItem___carouselImages___internal___type' + | 'carouselImagesPortfolioItem___carouselImages___internal___contentFilePath' | 'carouselImagesPortfolioItem___links' | 'carouselImagesPortfolioItem___links___remoteTypeName' | 'carouselImagesPortfolioItem___links___remoteId' | 'carouselImagesPortfolioItem___links___stage' - | 'carouselImagesPortfolioItem___links___createdAt' - | 'carouselImagesPortfolioItem___links___updatedAt' | 'carouselImagesPortfolioItem___links___publishedAt' + | 'carouselImagesPortfolioItem___links___updatedAt' + | 'carouselImagesPortfolioItem___links___createdAt' | 'carouselImagesPortfolioItem___links___title' | 'carouselImagesPortfolioItem___links___url' - | 'carouselImagesPortfolioItem___links___type' - | 'carouselImagesPortfolioItem___links___createdBy___remoteTypeName' - | 'carouselImagesPortfolioItem___links___createdBy___remoteId' - | 'carouselImagesPortfolioItem___links___createdBy___stage' - | 'carouselImagesPortfolioItem___links___createdBy___createdAt' - | 'carouselImagesPortfolioItem___links___createdBy___updatedAt' - | 'carouselImagesPortfolioItem___links___createdBy___publishedAt' - | 'carouselImagesPortfolioItem___links___createdBy___name' - | 'carouselImagesPortfolioItem___links___createdBy___picture' - | 'carouselImagesPortfolioItem___links___createdBy___isActive' - | 'carouselImagesPortfolioItem___links___createdBy___kind' - | 'carouselImagesPortfolioItem___links___createdBy___id' - | 'carouselImagesPortfolioItem___links___createdBy___children' - | 'carouselImagesPortfolioItem___links___updatedBy___remoteTypeName' - | 'carouselImagesPortfolioItem___links___updatedBy___remoteId' - | 'carouselImagesPortfolioItem___links___updatedBy___stage' - | 'carouselImagesPortfolioItem___links___updatedBy___createdAt' - | 'carouselImagesPortfolioItem___links___updatedBy___updatedAt' - | 'carouselImagesPortfolioItem___links___updatedBy___publishedAt' - | 'carouselImagesPortfolioItem___links___updatedBy___name' - | 'carouselImagesPortfolioItem___links___updatedBy___picture' - | 'carouselImagesPortfolioItem___links___updatedBy___isActive' - | 'carouselImagesPortfolioItem___links___updatedBy___kind' - | 'carouselImagesPortfolioItem___links___updatedBy___id' - | 'carouselImagesPortfolioItem___links___updatedBy___children' | 'carouselImagesPortfolioItem___links___publishedBy___remoteTypeName' | 'carouselImagesPortfolioItem___links___publishedBy___remoteId' | 'carouselImagesPortfolioItem___links___publishedBy___stage' - | 'carouselImagesPortfolioItem___links___publishedBy___createdAt' - | 'carouselImagesPortfolioItem___links___publishedBy___updatedAt' - | 'carouselImagesPortfolioItem___links___publishedBy___publishedAt' - | 'carouselImagesPortfolioItem___links___publishedBy___name' - | 'carouselImagesPortfolioItem___links___publishedBy___picture' | 'carouselImagesPortfolioItem___links___publishedBy___isActive' + | 'carouselImagesPortfolioItem___links___publishedBy___picture' + | 'carouselImagesPortfolioItem___links___publishedBy___name' + | 'carouselImagesPortfolioItem___links___publishedBy___publishedAt' + | 'carouselImagesPortfolioItem___links___publishedBy___updatedAt' + | 'carouselImagesPortfolioItem___links___publishedBy___createdAt' | 'carouselImagesPortfolioItem___links___publishedBy___kind' | 'carouselImagesPortfolioItem___links___publishedBy___id' | 'carouselImagesPortfolioItem___links___publishedBy___children' + | 'carouselImagesPortfolioItem___links___updatedBy___remoteTypeName' + | 'carouselImagesPortfolioItem___links___updatedBy___remoteId' + | 'carouselImagesPortfolioItem___links___updatedBy___stage' + | 'carouselImagesPortfolioItem___links___updatedBy___isActive' + | 'carouselImagesPortfolioItem___links___updatedBy___picture' + | 'carouselImagesPortfolioItem___links___updatedBy___name' + | 'carouselImagesPortfolioItem___links___updatedBy___publishedAt' + | 'carouselImagesPortfolioItem___links___updatedBy___updatedAt' + | 'carouselImagesPortfolioItem___links___updatedBy___createdAt' + | 'carouselImagesPortfolioItem___links___updatedBy___kind' + | 'carouselImagesPortfolioItem___links___updatedBy___id' + | 'carouselImagesPortfolioItem___links___updatedBy___children' + | 'carouselImagesPortfolioItem___links___createdBy___remoteTypeName' + | 'carouselImagesPortfolioItem___links___createdBy___remoteId' + | 'carouselImagesPortfolioItem___links___createdBy___stage' + | 'carouselImagesPortfolioItem___links___createdBy___isActive' + | 'carouselImagesPortfolioItem___links___createdBy___picture' + | 'carouselImagesPortfolioItem___links___createdBy___name' + | 'carouselImagesPortfolioItem___links___createdBy___publishedAt' + | 'carouselImagesPortfolioItem___links___createdBy___updatedAt' + | 'carouselImagesPortfolioItem___links___createdBy___createdAt' + | 'carouselImagesPortfolioItem___links___createdBy___kind' + | 'carouselImagesPortfolioItem___links___createdBy___id' + | 'carouselImagesPortfolioItem___links___createdBy___children' + | 'carouselImagesPortfolioItem___links___type' | 'carouselImagesPortfolioItem___links___scheduledIn' | 'carouselImagesPortfolioItem___links___scheduledIn___remoteTypeName' | 'carouselImagesPortfolioItem___links___scheduledIn___remoteId' | 'carouselImagesPortfolioItem___links___scheduledIn___stage' - | 'carouselImagesPortfolioItem___links___scheduledIn___createdAt' - | 'carouselImagesPortfolioItem___links___scheduledIn___updatedAt' - | 'carouselImagesPortfolioItem___links___scheduledIn___publishedAt' - | 'carouselImagesPortfolioItem___links___scheduledIn___description' - | 'carouselImagesPortfolioItem___links___scheduledIn___errorMessage' | 'carouselImagesPortfolioItem___links___scheduledIn___rawPayload' + | 'carouselImagesPortfolioItem___links___scheduledIn___errorMessage' + | 'carouselImagesPortfolioItem___links___scheduledIn___description' + | 'carouselImagesPortfolioItem___links___scheduledIn___publishedAt' + | 'carouselImagesPortfolioItem___links___scheduledIn___updatedAt' + | 'carouselImagesPortfolioItem___links___scheduledIn___createdAt' | 'carouselImagesPortfolioItem___links___scheduledIn___status' | 'carouselImagesPortfolioItem___links___scheduledIn___id' | 'carouselImagesPortfolioItem___links___scheduledIn___children' @@ -4142,68 +4208,69 @@ export type GraphCms_AssetFieldsEnum = | 'carouselImagesPortfolioItem___links___internal___mediaType' | 'carouselImagesPortfolioItem___links___internal___owner' | 'carouselImagesPortfolioItem___links___internal___type' + | 'carouselImagesPortfolioItem___links___internal___contentFilePath' | 'carouselImagesPortfolioItem___scheduledIn' | 'carouselImagesPortfolioItem___scheduledIn___remoteTypeName' | 'carouselImagesPortfolioItem___scheduledIn___remoteId' | 'carouselImagesPortfolioItem___scheduledIn___stage' - | 'carouselImagesPortfolioItem___scheduledIn___createdAt' - | 'carouselImagesPortfolioItem___scheduledIn___updatedAt' - | 'carouselImagesPortfolioItem___scheduledIn___publishedAt' - | 'carouselImagesPortfolioItem___scheduledIn___description' - | 'carouselImagesPortfolioItem___scheduledIn___errorMessage' | 'carouselImagesPortfolioItem___scheduledIn___rawPayload' - | 'carouselImagesPortfolioItem___scheduledIn___createdBy___remoteTypeName' - | 'carouselImagesPortfolioItem___scheduledIn___createdBy___remoteId' - | 'carouselImagesPortfolioItem___scheduledIn___createdBy___stage' - | 'carouselImagesPortfolioItem___scheduledIn___createdBy___createdAt' - | 'carouselImagesPortfolioItem___scheduledIn___createdBy___updatedAt' - | 'carouselImagesPortfolioItem___scheduledIn___createdBy___publishedAt' - | 'carouselImagesPortfolioItem___scheduledIn___createdBy___name' - | 'carouselImagesPortfolioItem___scheduledIn___createdBy___picture' - | 'carouselImagesPortfolioItem___scheduledIn___createdBy___isActive' - | 'carouselImagesPortfolioItem___scheduledIn___createdBy___kind' - | 'carouselImagesPortfolioItem___scheduledIn___createdBy___id' - | 'carouselImagesPortfolioItem___scheduledIn___createdBy___children' - | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___remoteTypeName' - | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___remoteId' - | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___stage' - | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___createdAt' - | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___updatedAt' - | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___publishedAt' - | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___name' - | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___picture' - | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___isActive' - | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___kind' - | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___id' - | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___children' - | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___remoteTypeName' - | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___remoteId' - | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___stage' - | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___createdAt' - | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___updatedAt' - | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___publishedAt' - | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___name' - | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___picture' - | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___isActive' - | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___kind' - | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___id' - | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___children' - | 'carouselImagesPortfolioItem___scheduledIn___release___remoteTypeName' - | 'carouselImagesPortfolioItem___scheduledIn___release___remoteId' - | 'carouselImagesPortfolioItem___scheduledIn___release___stage' - | 'carouselImagesPortfolioItem___scheduledIn___release___createdAt' - | 'carouselImagesPortfolioItem___scheduledIn___release___updatedAt' - | 'carouselImagesPortfolioItem___scheduledIn___release___publishedAt' - | 'carouselImagesPortfolioItem___scheduledIn___release___title' - | 'carouselImagesPortfolioItem___scheduledIn___release___description' - | 'carouselImagesPortfolioItem___scheduledIn___release___errorMessage' - | 'carouselImagesPortfolioItem___scheduledIn___release___isActive' - | 'carouselImagesPortfolioItem___scheduledIn___release___isImplicit' + | 'carouselImagesPortfolioItem___scheduledIn___errorMessage' + | 'carouselImagesPortfolioItem___scheduledIn___description' + | 'carouselImagesPortfolioItem___scheduledIn___publishedAt' + | 'carouselImagesPortfolioItem___scheduledIn___updatedAt' + | 'carouselImagesPortfolioItem___scheduledIn___createdAt' + | 'carouselImagesPortfolioItem___scheduledIn___release___remoteTypeName' + | 'carouselImagesPortfolioItem___scheduledIn___release___remoteId' + | 'carouselImagesPortfolioItem___scheduledIn___release___stage' | 'carouselImagesPortfolioItem___scheduledIn___release___releaseAt' + | 'carouselImagesPortfolioItem___scheduledIn___release___isImplicit' + | 'carouselImagesPortfolioItem___scheduledIn___release___isActive' + | 'carouselImagesPortfolioItem___scheduledIn___release___errorMessage' + | 'carouselImagesPortfolioItem___scheduledIn___release___description' + | 'carouselImagesPortfolioItem___scheduledIn___release___title' + | 'carouselImagesPortfolioItem___scheduledIn___release___publishedAt' + | 'carouselImagesPortfolioItem___scheduledIn___release___updatedAt' + | 'carouselImagesPortfolioItem___scheduledIn___release___createdAt' | 'carouselImagesPortfolioItem___scheduledIn___release___operations' | 'carouselImagesPortfolioItem___scheduledIn___release___status' | 'carouselImagesPortfolioItem___scheduledIn___release___id' | 'carouselImagesPortfolioItem___scheduledIn___release___children' + | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___remoteTypeName' + | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___remoteId' + | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___stage' + | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___isActive' + | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___picture' + | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___name' + | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___publishedAt' + | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___updatedAt' + | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___createdAt' + | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___kind' + | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___id' + | 'carouselImagesPortfolioItem___scheduledIn___publishedBy___children' + | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___remoteTypeName' + | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___remoteId' + | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___stage' + | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___isActive' + | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___picture' + | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___name' + | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___publishedAt' + | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___updatedAt' + | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___createdAt' + | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___kind' + | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___id' + | 'carouselImagesPortfolioItem___scheduledIn___updatedBy___children' + | 'carouselImagesPortfolioItem___scheduledIn___createdBy___remoteTypeName' + | 'carouselImagesPortfolioItem___scheduledIn___createdBy___remoteId' + | 'carouselImagesPortfolioItem___scheduledIn___createdBy___stage' + | 'carouselImagesPortfolioItem___scheduledIn___createdBy___isActive' + | 'carouselImagesPortfolioItem___scheduledIn___createdBy___picture' + | 'carouselImagesPortfolioItem___scheduledIn___createdBy___name' + | 'carouselImagesPortfolioItem___scheduledIn___createdBy___publishedAt' + | 'carouselImagesPortfolioItem___scheduledIn___createdBy___updatedAt' + | 'carouselImagesPortfolioItem___scheduledIn___createdBy___createdAt' + | 'carouselImagesPortfolioItem___scheduledIn___createdBy___kind' + | 'carouselImagesPortfolioItem___scheduledIn___createdBy___id' + | 'carouselImagesPortfolioItem___scheduledIn___createdBy___children' | 'carouselImagesPortfolioItem___scheduledIn___status' | 'carouselImagesPortfolioItem___scheduledIn___id' | 'carouselImagesPortfolioItem___scheduledIn___parent___id' @@ -4219,6 +4286,7 @@ export type GraphCms_AssetFieldsEnum = | 'carouselImagesPortfolioItem___scheduledIn___internal___mediaType' | 'carouselImagesPortfolioItem___scheduledIn___internal___owner' | 'carouselImagesPortfolioItem___scheduledIn___internal___type' + | 'carouselImagesPortfolioItem___scheduledIn___internal___contentFilePath' | 'carouselImagesPortfolioItem___gatsbyPath' | 'carouselImagesPortfolioItem___id' | 'carouselImagesPortfolioItem___parent___id' @@ -4235,6 +4303,7 @@ export type GraphCms_AssetFieldsEnum = | 'carouselImagesPortfolioItem___parent___internal___mediaType' | 'carouselImagesPortfolioItem___parent___internal___owner' | 'carouselImagesPortfolioItem___parent___internal___type' + | 'carouselImagesPortfolioItem___parent___internal___contentFilePath' | 'carouselImagesPortfolioItem___children' | 'carouselImagesPortfolioItem___children___id' | 'carouselImagesPortfolioItem___children___parent___id' @@ -4250,6 +4319,7 @@ export type GraphCms_AssetFieldsEnum = | 'carouselImagesPortfolioItem___children___internal___mediaType' | 'carouselImagesPortfolioItem___children___internal___owner' | 'carouselImagesPortfolioItem___children___internal___type' + | 'carouselImagesPortfolioItem___children___internal___contentFilePath' | 'carouselImagesPortfolioItem___internal___content' | 'carouselImagesPortfolioItem___internal___contentDigest' | 'carouselImagesPortfolioItem___internal___description' @@ -4258,149 +4328,1104 @@ export type GraphCms_AssetFieldsEnum = | 'carouselImagesPortfolioItem___internal___mediaType' | 'carouselImagesPortfolioItem___internal___owner' | 'carouselImagesPortfolioItem___internal___type' + | 'carouselImagesPortfolioItem___internal___contentFilePath' + | 'iconSpeciality' + | 'iconSpeciality___remoteTypeName' + | 'iconSpeciality___remoteId' + | 'iconSpeciality___stage' + | 'iconSpeciality___publishedAt' + | 'iconSpeciality___updatedAt' + | 'iconSpeciality___createdAt' + | 'iconSpeciality___title' + | 'iconSpeciality___description___remoteTypeName' + | 'iconSpeciality___description___raw' + | 'iconSpeciality___description___html' + | 'iconSpeciality___description___markdown' + | 'iconSpeciality___description___text' + | 'iconSpeciality___publishedBy___remoteTypeName' + | 'iconSpeciality___publishedBy___remoteId' + | 'iconSpeciality___publishedBy___stage' + | 'iconSpeciality___publishedBy___isActive' + | 'iconSpeciality___publishedBy___picture' + | 'iconSpeciality___publishedBy___name' + | 'iconSpeciality___publishedBy___publishedAt' + | 'iconSpeciality___publishedBy___updatedAt' + | 'iconSpeciality___publishedBy___createdAt' + | 'iconSpeciality___publishedBy___kind' + | 'iconSpeciality___publishedBy___id' + | 'iconSpeciality___publishedBy___parent___id' + | 'iconSpeciality___publishedBy___parent___children' + | 'iconSpeciality___publishedBy___children' + | 'iconSpeciality___publishedBy___children___id' + | 'iconSpeciality___publishedBy___children___children' + | 'iconSpeciality___publishedBy___internal___content' + | 'iconSpeciality___publishedBy___internal___contentDigest' + | 'iconSpeciality___publishedBy___internal___description' + | 'iconSpeciality___publishedBy___internal___fieldOwners' + | 'iconSpeciality___publishedBy___internal___ignoreType' + | 'iconSpeciality___publishedBy___internal___mediaType' + | 'iconSpeciality___publishedBy___internal___owner' + | 'iconSpeciality___publishedBy___internal___type' + | 'iconSpeciality___publishedBy___internal___contentFilePath' + | 'iconSpeciality___updatedBy___remoteTypeName' + | 'iconSpeciality___updatedBy___remoteId' + | 'iconSpeciality___updatedBy___stage' + | 'iconSpeciality___updatedBy___isActive' + | 'iconSpeciality___updatedBy___picture' + | 'iconSpeciality___updatedBy___name' + | 'iconSpeciality___updatedBy___publishedAt' + | 'iconSpeciality___updatedBy___updatedAt' + | 'iconSpeciality___updatedBy___createdAt' + | 'iconSpeciality___updatedBy___kind' + | 'iconSpeciality___updatedBy___id' + | 'iconSpeciality___updatedBy___parent___id' + | 'iconSpeciality___updatedBy___parent___children' + | 'iconSpeciality___updatedBy___children' + | 'iconSpeciality___updatedBy___children___id' + | 'iconSpeciality___updatedBy___children___children' + | 'iconSpeciality___updatedBy___internal___content' + | 'iconSpeciality___updatedBy___internal___contentDigest' + | 'iconSpeciality___updatedBy___internal___description' + | 'iconSpeciality___updatedBy___internal___fieldOwners' + | 'iconSpeciality___updatedBy___internal___ignoreType' + | 'iconSpeciality___updatedBy___internal___mediaType' + | 'iconSpeciality___updatedBy___internal___owner' + | 'iconSpeciality___updatedBy___internal___type' + | 'iconSpeciality___updatedBy___internal___contentFilePath' + | 'iconSpeciality___createdBy___remoteTypeName' + | 'iconSpeciality___createdBy___remoteId' + | 'iconSpeciality___createdBy___stage' + | 'iconSpeciality___createdBy___isActive' + | 'iconSpeciality___createdBy___picture' + | 'iconSpeciality___createdBy___name' + | 'iconSpeciality___createdBy___publishedAt' + | 'iconSpeciality___createdBy___updatedAt' + | 'iconSpeciality___createdBy___createdAt' + | 'iconSpeciality___createdBy___kind' + | 'iconSpeciality___createdBy___id' + | 'iconSpeciality___createdBy___parent___id' + | 'iconSpeciality___createdBy___parent___children' + | 'iconSpeciality___createdBy___children' + | 'iconSpeciality___createdBy___children___id' + | 'iconSpeciality___createdBy___children___children' + | 'iconSpeciality___createdBy___internal___content' + | 'iconSpeciality___createdBy___internal___contentDigest' + | 'iconSpeciality___createdBy___internal___description' + | 'iconSpeciality___createdBy___internal___fieldOwners' + | 'iconSpeciality___createdBy___internal___ignoreType' + | 'iconSpeciality___createdBy___internal___mediaType' + | 'iconSpeciality___createdBy___internal___owner' + | 'iconSpeciality___createdBy___internal___type' + | 'iconSpeciality___createdBy___internal___contentFilePath' + | 'iconSpeciality___icon___remoteTypeName' + | 'iconSpeciality___icon___remoteId' + | 'iconSpeciality___icon___locale' + | 'iconSpeciality___icon___stage' + | 'iconSpeciality___icon___mimeType' + | 'iconSpeciality___icon___size' + | 'iconSpeciality___icon___width' + | 'iconSpeciality___icon___height' + | 'iconSpeciality___icon___fileName' + | 'iconSpeciality___icon___handle' + | 'iconSpeciality___icon___publishedAt' + | 'iconSpeciality___icon___updatedAt' + | 'iconSpeciality___icon___createdAt' + | 'iconSpeciality___icon___publishedBy___remoteTypeName' + | 'iconSpeciality___icon___publishedBy___remoteId' + | 'iconSpeciality___icon___publishedBy___stage' + | 'iconSpeciality___icon___publishedBy___isActive' + | 'iconSpeciality___icon___publishedBy___picture' + | 'iconSpeciality___icon___publishedBy___name' + | 'iconSpeciality___icon___publishedBy___publishedAt' + | 'iconSpeciality___icon___publishedBy___updatedAt' + | 'iconSpeciality___icon___publishedBy___createdAt' + | 'iconSpeciality___icon___publishedBy___kind' + | 'iconSpeciality___icon___publishedBy___id' + | 'iconSpeciality___icon___publishedBy___children' + | 'iconSpeciality___icon___updatedBy___remoteTypeName' + | 'iconSpeciality___icon___updatedBy___remoteId' + | 'iconSpeciality___icon___updatedBy___stage' + | 'iconSpeciality___icon___updatedBy___isActive' + | 'iconSpeciality___icon___updatedBy___picture' + | 'iconSpeciality___icon___updatedBy___name' + | 'iconSpeciality___icon___updatedBy___publishedAt' + | 'iconSpeciality___icon___updatedBy___updatedAt' + | 'iconSpeciality___icon___updatedBy___createdAt' + | 'iconSpeciality___icon___updatedBy___kind' + | 'iconSpeciality___icon___updatedBy___id' + | 'iconSpeciality___icon___updatedBy___children' + | 'iconSpeciality___icon___createdBy___remoteTypeName' + | 'iconSpeciality___icon___createdBy___remoteId' + | 'iconSpeciality___icon___createdBy___stage' + | 'iconSpeciality___icon___createdBy___isActive' + | 'iconSpeciality___icon___createdBy___picture' + | 'iconSpeciality___icon___createdBy___name' + | 'iconSpeciality___icon___createdBy___publishedAt' + | 'iconSpeciality___icon___createdBy___updatedAt' + | 'iconSpeciality___icon___createdBy___createdAt' + | 'iconSpeciality___icon___createdBy___kind' + | 'iconSpeciality___icon___createdBy___id' + | 'iconSpeciality___icon___createdBy___children' + | 'iconSpeciality___icon___carouselImagesPortfolioItem' + | 'iconSpeciality___icon___carouselImagesPortfolioItem___remoteTypeName' + | 'iconSpeciality___icon___carouselImagesPortfolioItem___remoteId' + | 'iconSpeciality___icon___carouselImagesPortfolioItem___stage' + | 'iconSpeciality___icon___carouselImagesPortfolioItem___publishedAt' + | 'iconSpeciality___icon___carouselImagesPortfolioItem___updatedAt' + | 'iconSpeciality___icon___carouselImagesPortfolioItem___createdAt' + | 'iconSpeciality___icon___carouselImagesPortfolioItem___title' + | 'iconSpeciality___icon___carouselImagesPortfolioItem___description' + | 'iconSpeciality___icon___carouselImagesPortfolioItem___techSheet' + | 'iconSpeciality___icon___carouselImagesPortfolioItem___carouselImages' + | 'iconSpeciality___icon___carouselImagesPortfolioItem___links' + | 'iconSpeciality___icon___carouselImagesPortfolioItem___scheduledIn' + | 'iconSpeciality___icon___carouselImagesPortfolioItem___gatsbyPath' + | 'iconSpeciality___icon___carouselImagesPortfolioItem___id' + | 'iconSpeciality___icon___carouselImagesPortfolioItem___children' + | 'iconSpeciality___icon___iconSpeciality' + | 'iconSpeciality___icon___iconSpeciality___remoteTypeName' + | 'iconSpeciality___icon___iconSpeciality___remoteId' + | 'iconSpeciality___icon___iconSpeciality___stage' + | 'iconSpeciality___icon___iconSpeciality___publishedAt' + | 'iconSpeciality___icon___iconSpeciality___updatedAt' + | 'iconSpeciality___icon___iconSpeciality___createdAt' + | 'iconSpeciality___icon___iconSpeciality___title' + | 'iconSpeciality___icon___iconSpeciality___scheduledIn' + | 'iconSpeciality___icon___iconSpeciality___id' + | 'iconSpeciality___icon___iconSpeciality___children' + | 'iconSpeciality___icon___iconTechnology' + | 'iconSpeciality___icon___iconTechnology___remoteTypeName' + | 'iconSpeciality___icon___iconTechnology___remoteId' + | 'iconSpeciality___icon___iconTechnology___stage' + | 'iconSpeciality___icon___iconTechnology___publishedAt' + | 'iconSpeciality___icon___iconTechnology___updatedAt' + | 'iconSpeciality___icon___iconTechnology___createdAt' + | 'iconSpeciality___icon___iconTechnology___title' + | 'iconSpeciality___icon___iconTechnology___scheduledIn' + | 'iconSpeciality___icon___iconTechnology___id' + | 'iconSpeciality___icon___iconTechnology___children' + | 'iconSpeciality___icon___headerImageBlog' + | 'iconSpeciality___icon___headerImageBlog___remoteTypeName' + | 'iconSpeciality___icon___headerImageBlog___remoteId' + | 'iconSpeciality___icon___headerImageBlog___stage' + | 'iconSpeciality___icon___headerImageBlog___publishedAt' + | 'iconSpeciality___icon___headerImageBlog___updatedAt' + | 'iconSpeciality___icon___headerImageBlog___createdAt' + | 'iconSpeciality___icon___headerImageBlog___title' + | 'iconSpeciality___icon___headerImageBlog___description' + | 'iconSpeciality___icon___headerImageBlog___type' + | 'iconSpeciality___icon___headerImageBlog___categories' + | 'iconSpeciality___icon___headerImageBlog___scheduledIn' + | 'iconSpeciality___icon___headerImageBlog___gatsbyPath' + | 'iconSpeciality___icon___headerImageBlog___id' + | 'iconSpeciality___icon___headerImageBlog___children' + | 'iconSpeciality___icon___scheduledIn' + | 'iconSpeciality___icon___scheduledIn___remoteTypeName' + | 'iconSpeciality___icon___scheduledIn___remoteId' + | 'iconSpeciality___icon___scheduledIn___stage' + | 'iconSpeciality___icon___scheduledIn___rawPayload' + | 'iconSpeciality___icon___scheduledIn___errorMessage' + | 'iconSpeciality___icon___scheduledIn___description' + | 'iconSpeciality___icon___scheduledIn___publishedAt' + | 'iconSpeciality___icon___scheduledIn___updatedAt' + | 'iconSpeciality___icon___scheduledIn___createdAt' + | 'iconSpeciality___icon___scheduledIn___status' + | 'iconSpeciality___icon___scheduledIn___id' + | 'iconSpeciality___icon___scheduledIn___children' + | 'iconSpeciality___icon___url' + | 'iconSpeciality___icon___id' + | 'iconSpeciality___icon___parent___id' + | 'iconSpeciality___icon___parent___children' + | 'iconSpeciality___icon___children' + | 'iconSpeciality___icon___children___id' + | 'iconSpeciality___icon___children___children' + | 'iconSpeciality___icon___internal___content' + | 'iconSpeciality___icon___internal___contentDigest' + | 'iconSpeciality___icon___internal___description' + | 'iconSpeciality___icon___internal___fieldOwners' + | 'iconSpeciality___icon___internal___ignoreType' + | 'iconSpeciality___icon___internal___mediaType' + | 'iconSpeciality___icon___internal___owner' + | 'iconSpeciality___icon___internal___type' + | 'iconSpeciality___icon___internal___contentFilePath' + | 'iconSpeciality___scheduledIn' + | 'iconSpeciality___scheduledIn___remoteTypeName' + | 'iconSpeciality___scheduledIn___remoteId' + | 'iconSpeciality___scheduledIn___stage' + | 'iconSpeciality___scheduledIn___rawPayload' + | 'iconSpeciality___scheduledIn___errorMessage' + | 'iconSpeciality___scheduledIn___description' + | 'iconSpeciality___scheduledIn___publishedAt' + | 'iconSpeciality___scheduledIn___updatedAt' + | 'iconSpeciality___scheduledIn___createdAt' + | 'iconSpeciality___scheduledIn___release___remoteTypeName' + | 'iconSpeciality___scheduledIn___release___remoteId' + | 'iconSpeciality___scheduledIn___release___stage' + | 'iconSpeciality___scheduledIn___release___releaseAt' + | 'iconSpeciality___scheduledIn___release___isImplicit' + | 'iconSpeciality___scheduledIn___release___isActive' + | 'iconSpeciality___scheduledIn___release___errorMessage' + | 'iconSpeciality___scheduledIn___release___description' + | 'iconSpeciality___scheduledIn___release___title' + | 'iconSpeciality___scheduledIn___release___publishedAt' + | 'iconSpeciality___scheduledIn___release___updatedAt' + | 'iconSpeciality___scheduledIn___release___createdAt' + | 'iconSpeciality___scheduledIn___release___operations' + | 'iconSpeciality___scheduledIn___release___status' + | 'iconSpeciality___scheduledIn___release___id' + | 'iconSpeciality___scheduledIn___release___children' + | 'iconSpeciality___scheduledIn___publishedBy___remoteTypeName' + | 'iconSpeciality___scheduledIn___publishedBy___remoteId' + | 'iconSpeciality___scheduledIn___publishedBy___stage' + | 'iconSpeciality___scheduledIn___publishedBy___isActive' + | 'iconSpeciality___scheduledIn___publishedBy___picture' + | 'iconSpeciality___scheduledIn___publishedBy___name' + | 'iconSpeciality___scheduledIn___publishedBy___publishedAt' + | 'iconSpeciality___scheduledIn___publishedBy___updatedAt' + | 'iconSpeciality___scheduledIn___publishedBy___createdAt' + | 'iconSpeciality___scheduledIn___publishedBy___kind' + | 'iconSpeciality___scheduledIn___publishedBy___id' + | 'iconSpeciality___scheduledIn___publishedBy___children' + | 'iconSpeciality___scheduledIn___updatedBy___remoteTypeName' + | 'iconSpeciality___scheduledIn___updatedBy___remoteId' + | 'iconSpeciality___scheduledIn___updatedBy___stage' + | 'iconSpeciality___scheduledIn___updatedBy___isActive' + | 'iconSpeciality___scheduledIn___updatedBy___picture' + | 'iconSpeciality___scheduledIn___updatedBy___name' + | 'iconSpeciality___scheduledIn___updatedBy___publishedAt' + | 'iconSpeciality___scheduledIn___updatedBy___updatedAt' + | 'iconSpeciality___scheduledIn___updatedBy___createdAt' + | 'iconSpeciality___scheduledIn___updatedBy___kind' + | 'iconSpeciality___scheduledIn___updatedBy___id' + | 'iconSpeciality___scheduledIn___updatedBy___children' + | 'iconSpeciality___scheduledIn___createdBy___remoteTypeName' + | 'iconSpeciality___scheduledIn___createdBy___remoteId' + | 'iconSpeciality___scheduledIn___createdBy___stage' + | 'iconSpeciality___scheduledIn___createdBy___isActive' + | 'iconSpeciality___scheduledIn___createdBy___picture' + | 'iconSpeciality___scheduledIn___createdBy___name' + | 'iconSpeciality___scheduledIn___createdBy___publishedAt' + | 'iconSpeciality___scheduledIn___createdBy___updatedAt' + | 'iconSpeciality___scheduledIn___createdBy___createdAt' + | 'iconSpeciality___scheduledIn___createdBy___kind' + | 'iconSpeciality___scheduledIn___createdBy___id' + | 'iconSpeciality___scheduledIn___createdBy___children' + | 'iconSpeciality___scheduledIn___status' + | 'iconSpeciality___scheduledIn___id' + | 'iconSpeciality___scheduledIn___parent___id' + | 'iconSpeciality___scheduledIn___parent___children' + | 'iconSpeciality___scheduledIn___children' + | 'iconSpeciality___scheduledIn___children___id' + | 'iconSpeciality___scheduledIn___children___children' + | 'iconSpeciality___scheduledIn___internal___content' + | 'iconSpeciality___scheduledIn___internal___contentDigest' + | 'iconSpeciality___scheduledIn___internal___description' + | 'iconSpeciality___scheduledIn___internal___fieldOwners' + | 'iconSpeciality___scheduledIn___internal___ignoreType' + | 'iconSpeciality___scheduledIn___internal___mediaType' + | 'iconSpeciality___scheduledIn___internal___owner' + | 'iconSpeciality___scheduledIn___internal___type' + | 'iconSpeciality___scheduledIn___internal___contentFilePath' + | 'iconSpeciality___id' + | 'iconSpeciality___parent___id' + | 'iconSpeciality___parent___parent___id' + | 'iconSpeciality___parent___parent___children' + | 'iconSpeciality___parent___children' + | 'iconSpeciality___parent___children___id' + | 'iconSpeciality___parent___children___children' + | 'iconSpeciality___parent___internal___content' + | 'iconSpeciality___parent___internal___contentDigest' + | 'iconSpeciality___parent___internal___description' + | 'iconSpeciality___parent___internal___fieldOwners' + | 'iconSpeciality___parent___internal___ignoreType' + | 'iconSpeciality___parent___internal___mediaType' + | 'iconSpeciality___parent___internal___owner' + | 'iconSpeciality___parent___internal___type' + | 'iconSpeciality___parent___internal___contentFilePath' + | 'iconSpeciality___children' + | 'iconSpeciality___children___id' + | 'iconSpeciality___children___parent___id' + | 'iconSpeciality___children___parent___children' + | 'iconSpeciality___children___children' + | 'iconSpeciality___children___children___id' + | 'iconSpeciality___children___children___children' + | 'iconSpeciality___children___internal___content' + | 'iconSpeciality___children___internal___contentDigest' + | 'iconSpeciality___children___internal___description' + | 'iconSpeciality___children___internal___fieldOwners' + | 'iconSpeciality___children___internal___ignoreType' + | 'iconSpeciality___children___internal___mediaType' + | 'iconSpeciality___children___internal___owner' + | 'iconSpeciality___children___internal___type' + | 'iconSpeciality___children___internal___contentFilePath' + | 'iconSpeciality___internal___content' + | 'iconSpeciality___internal___contentDigest' + | 'iconSpeciality___internal___description' + | 'iconSpeciality___internal___fieldOwners' + | 'iconSpeciality___internal___ignoreType' + | 'iconSpeciality___internal___mediaType' + | 'iconSpeciality___internal___owner' + | 'iconSpeciality___internal___type' + | 'iconSpeciality___internal___contentFilePath' + | 'iconTechnology' + | 'iconTechnology___remoteTypeName' + | 'iconTechnology___remoteId' + | 'iconTechnology___stage' + | 'iconTechnology___publishedAt' + | 'iconTechnology___updatedAt' + | 'iconTechnology___createdAt' + | 'iconTechnology___title' + | 'iconTechnology___description___remoteTypeName' + | 'iconTechnology___description___raw' + | 'iconTechnology___description___html' + | 'iconTechnology___description___markdown' + | 'iconTechnology___description___text' + | 'iconTechnology___backgroundColor___remoteTypeName' + | 'iconTechnology___backgroundColor___hex' + | 'iconTechnology___backgroundColor___rgba___remoteTypeName' + | 'iconTechnology___backgroundColor___rgba___r' + | 'iconTechnology___backgroundColor___rgba___g' + | 'iconTechnology___backgroundColor___rgba___b' + | 'iconTechnology___backgroundColor___rgba___a' + | 'iconTechnology___backgroundColor___css' + | 'iconTechnology___publishedBy___remoteTypeName' + | 'iconTechnology___publishedBy___remoteId' + | 'iconTechnology___publishedBy___stage' + | 'iconTechnology___publishedBy___isActive' + | 'iconTechnology___publishedBy___picture' + | 'iconTechnology___publishedBy___name' + | 'iconTechnology___publishedBy___publishedAt' + | 'iconTechnology___publishedBy___updatedAt' + | 'iconTechnology___publishedBy___createdAt' + | 'iconTechnology___publishedBy___kind' + | 'iconTechnology___publishedBy___id' + | 'iconTechnology___publishedBy___parent___id' + | 'iconTechnology___publishedBy___parent___children' + | 'iconTechnology___publishedBy___children' + | 'iconTechnology___publishedBy___children___id' + | 'iconTechnology___publishedBy___children___children' + | 'iconTechnology___publishedBy___internal___content' + | 'iconTechnology___publishedBy___internal___contentDigest' + | 'iconTechnology___publishedBy___internal___description' + | 'iconTechnology___publishedBy___internal___fieldOwners' + | 'iconTechnology___publishedBy___internal___ignoreType' + | 'iconTechnology___publishedBy___internal___mediaType' + | 'iconTechnology___publishedBy___internal___owner' + | 'iconTechnology___publishedBy___internal___type' + | 'iconTechnology___publishedBy___internal___contentFilePath' + | 'iconTechnology___updatedBy___remoteTypeName' + | 'iconTechnology___updatedBy___remoteId' + | 'iconTechnology___updatedBy___stage' + | 'iconTechnology___updatedBy___isActive' + | 'iconTechnology___updatedBy___picture' + | 'iconTechnology___updatedBy___name' + | 'iconTechnology___updatedBy___publishedAt' + | 'iconTechnology___updatedBy___updatedAt' + | 'iconTechnology___updatedBy___createdAt' + | 'iconTechnology___updatedBy___kind' + | 'iconTechnology___updatedBy___id' + | 'iconTechnology___updatedBy___parent___id' + | 'iconTechnology___updatedBy___parent___children' + | 'iconTechnology___updatedBy___children' + | 'iconTechnology___updatedBy___children___id' + | 'iconTechnology___updatedBy___children___children' + | 'iconTechnology___updatedBy___internal___content' + | 'iconTechnology___updatedBy___internal___contentDigest' + | 'iconTechnology___updatedBy___internal___description' + | 'iconTechnology___updatedBy___internal___fieldOwners' + | 'iconTechnology___updatedBy___internal___ignoreType' + | 'iconTechnology___updatedBy___internal___mediaType' + | 'iconTechnology___updatedBy___internal___owner' + | 'iconTechnology___updatedBy___internal___type' + | 'iconTechnology___updatedBy___internal___contentFilePath' + | 'iconTechnology___createdBy___remoteTypeName' + | 'iconTechnology___createdBy___remoteId' + | 'iconTechnology___createdBy___stage' + | 'iconTechnology___createdBy___isActive' + | 'iconTechnology___createdBy___picture' + | 'iconTechnology___createdBy___name' + | 'iconTechnology___createdBy___publishedAt' + | 'iconTechnology___createdBy___updatedAt' + | 'iconTechnology___createdBy___createdAt' + | 'iconTechnology___createdBy___kind' + | 'iconTechnology___createdBy___id' + | 'iconTechnology___createdBy___parent___id' + | 'iconTechnology___createdBy___parent___children' + | 'iconTechnology___createdBy___children' + | 'iconTechnology___createdBy___children___id' + | 'iconTechnology___createdBy___children___children' + | 'iconTechnology___createdBy___internal___content' + | 'iconTechnology___createdBy___internal___contentDigest' + | 'iconTechnology___createdBy___internal___description' + | 'iconTechnology___createdBy___internal___fieldOwners' + | 'iconTechnology___createdBy___internal___ignoreType' + | 'iconTechnology___createdBy___internal___mediaType' + | 'iconTechnology___createdBy___internal___owner' + | 'iconTechnology___createdBy___internal___type' + | 'iconTechnology___createdBy___internal___contentFilePath' + | 'iconTechnology___icon___remoteTypeName' + | 'iconTechnology___icon___remoteId' + | 'iconTechnology___icon___locale' + | 'iconTechnology___icon___stage' + | 'iconTechnology___icon___mimeType' + | 'iconTechnology___icon___size' + | 'iconTechnology___icon___width' + | 'iconTechnology___icon___height' + | 'iconTechnology___icon___fileName' + | 'iconTechnology___icon___handle' + | 'iconTechnology___icon___publishedAt' + | 'iconTechnology___icon___updatedAt' + | 'iconTechnology___icon___createdAt' + | 'iconTechnology___icon___publishedBy___remoteTypeName' + | 'iconTechnology___icon___publishedBy___remoteId' + | 'iconTechnology___icon___publishedBy___stage' + | 'iconTechnology___icon___publishedBy___isActive' + | 'iconTechnology___icon___publishedBy___picture' + | 'iconTechnology___icon___publishedBy___name' + | 'iconTechnology___icon___publishedBy___publishedAt' + | 'iconTechnology___icon___publishedBy___updatedAt' + | 'iconTechnology___icon___publishedBy___createdAt' + | 'iconTechnology___icon___publishedBy___kind' + | 'iconTechnology___icon___publishedBy___id' + | 'iconTechnology___icon___publishedBy___children' + | 'iconTechnology___icon___updatedBy___remoteTypeName' + | 'iconTechnology___icon___updatedBy___remoteId' + | 'iconTechnology___icon___updatedBy___stage' + | 'iconTechnology___icon___updatedBy___isActive' + | 'iconTechnology___icon___updatedBy___picture' + | 'iconTechnology___icon___updatedBy___name' + | 'iconTechnology___icon___updatedBy___publishedAt' + | 'iconTechnology___icon___updatedBy___updatedAt' + | 'iconTechnology___icon___updatedBy___createdAt' + | 'iconTechnology___icon___updatedBy___kind' + | 'iconTechnology___icon___updatedBy___id' + | 'iconTechnology___icon___updatedBy___children' + | 'iconTechnology___icon___createdBy___remoteTypeName' + | 'iconTechnology___icon___createdBy___remoteId' + | 'iconTechnology___icon___createdBy___stage' + | 'iconTechnology___icon___createdBy___isActive' + | 'iconTechnology___icon___createdBy___picture' + | 'iconTechnology___icon___createdBy___name' + | 'iconTechnology___icon___createdBy___publishedAt' + | 'iconTechnology___icon___createdBy___updatedAt' + | 'iconTechnology___icon___createdBy___createdAt' + | 'iconTechnology___icon___createdBy___kind' + | 'iconTechnology___icon___createdBy___id' + | 'iconTechnology___icon___createdBy___children' + | 'iconTechnology___icon___carouselImagesPortfolioItem' + | 'iconTechnology___icon___carouselImagesPortfolioItem___remoteTypeName' + | 'iconTechnology___icon___carouselImagesPortfolioItem___remoteId' + | 'iconTechnology___icon___carouselImagesPortfolioItem___stage' + | 'iconTechnology___icon___carouselImagesPortfolioItem___publishedAt' + | 'iconTechnology___icon___carouselImagesPortfolioItem___updatedAt' + | 'iconTechnology___icon___carouselImagesPortfolioItem___createdAt' + | 'iconTechnology___icon___carouselImagesPortfolioItem___title' + | 'iconTechnology___icon___carouselImagesPortfolioItem___description' + | 'iconTechnology___icon___carouselImagesPortfolioItem___techSheet' + | 'iconTechnology___icon___carouselImagesPortfolioItem___carouselImages' + | 'iconTechnology___icon___carouselImagesPortfolioItem___links' + | 'iconTechnology___icon___carouselImagesPortfolioItem___scheduledIn' + | 'iconTechnology___icon___carouselImagesPortfolioItem___gatsbyPath' + | 'iconTechnology___icon___carouselImagesPortfolioItem___id' + | 'iconTechnology___icon___carouselImagesPortfolioItem___children' + | 'iconTechnology___icon___iconSpeciality' + | 'iconTechnology___icon___iconSpeciality___remoteTypeName' + | 'iconTechnology___icon___iconSpeciality___remoteId' + | 'iconTechnology___icon___iconSpeciality___stage' + | 'iconTechnology___icon___iconSpeciality___publishedAt' + | 'iconTechnology___icon___iconSpeciality___updatedAt' + | 'iconTechnology___icon___iconSpeciality___createdAt' + | 'iconTechnology___icon___iconSpeciality___title' + | 'iconTechnology___icon___iconSpeciality___scheduledIn' + | 'iconTechnology___icon___iconSpeciality___id' + | 'iconTechnology___icon___iconSpeciality___children' + | 'iconTechnology___icon___iconTechnology' + | 'iconTechnology___icon___iconTechnology___remoteTypeName' + | 'iconTechnology___icon___iconTechnology___remoteId' + | 'iconTechnology___icon___iconTechnology___stage' + | 'iconTechnology___icon___iconTechnology___publishedAt' + | 'iconTechnology___icon___iconTechnology___updatedAt' + | 'iconTechnology___icon___iconTechnology___createdAt' + | 'iconTechnology___icon___iconTechnology___title' + | 'iconTechnology___icon___iconTechnology___scheduledIn' + | 'iconTechnology___icon___iconTechnology___id' + | 'iconTechnology___icon___iconTechnology___children' + | 'iconTechnology___icon___headerImageBlog' + | 'iconTechnology___icon___headerImageBlog___remoteTypeName' + | 'iconTechnology___icon___headerImageBlog___remoteId' + | 'iconTechnology___icon___headerImageBlog___stage' + | 'iconTechnology___icon___headerImageBlog___publishedAt' + | 'iconTechnology___icon___headerImageBlog___updatedAt' + | 'iconTechnology___icon___headerImageBlog___createdAt' + | 'iconTechnology___icon___headerImageBlog___title' + | 'iconTechnology___icon___headerImageBlog___description' + | 'iconTechnology___icon___headerImageBlog___type' + | 'iconTechnology___icon___headerImageBlog___categories' + | 'iconTechnology___icon___headerImageBlog___scheduledIn' + | 'iconTechnology___icon___headerImageBlog___gatsbyPath' + | 'iconTechnology___icon___headerImageBlog___id' + | 'iconTechnology___icon___headerImageBlog___children' + | 'iconTechnology___icon___scheduledIn' + | 'iconTechnology___icon___scheduledIn___remoteTypeName' + | 'iconTechnology___icon___scheduledIn___remoteId' + | 'iconTechnology___icon___scheduledIn___stage' + | 'iconTechnology___icon___scheduledIn___rawPayload' + | 'iconTechnology___icon___scheduledIn___errorMessage' + | 'iconTechnology___icon___scheduledIn___description' + | 'iconTechnology___icon___scheduledIn___publishedAt' + | 'iconTechnology___icon___scheduledIn___updatedAt' + | 'iconTechnology___icon___scheduledIn___createdAt' + | 'iconTechnology___icon___scheduledIn___status' + | 'iconTechnology___icon___scheduledIn___id' + | 'iconTechnology___icon___scheduledIn___children' + | 'iconTechnology___icon___url' + | 'iconTechnology___icon___id' + | 'iconTechnology___icon___parent___id' + | 'iconTechnology___icon___parent___children' + | 'iconTechnology___icon___children' + | 'iconTechnology___icon___children___id' + | 'iconTechnology___icon___children___children' + | 'iconTechnology___icon___internal___content' + | 'iconTechnology___icon___internal___contentDigest' + | 'iconTechnology___icon___internal___description' + | 'iconTechnology___icon___internal___fieldOwners' + | 'iconTechnology___icon___internal___ignoreType' + | 'iconTechnology___icon___internal___mediaType' + | 'iconTechnology___icon___internal___owner' + | 'iconTechnology___icon___internal___type' + | 'iconTechnology___icon___internal___contentFilePath' + | 'iconTechnology___scheduledIn' + | 'iconTechnology___scheduledIn___remoteTypeName' + | 'iconTechnology___scheduledIn___remoteId' + | 'iconTechnology___scheduledIn___stage' + | 'iconTechnology___scheduledIn___rawPayload' + | 'iconTechnology___scheduledIn___errorMessage' + | 'iconTechnology___scheduledIn___description' + | 'iconTechnology___scheduledIn___publishedAt' + | 'iconTechnology___scheduledIn___updatedAt' + | 'iconTechnology___scheduledIn___createdAt' + | 'iconTechnology___scheduledIn___release___remoteTypeName' + | 'iconTechnology___scheduledIn___release___remoteId' + | 'iconTechnology___scheduledIn___release___stage' + | 'iconTechnology___scheduledIn___release___releaseAt' + | 'iconTechnology___scheduledIn___release___isImplicit' + | 'iconTechnology___scheduledIn___release___isActive' + | 'iconTechnology___scheduledIn___release___errorMessage' + | 'iconTechnology___scheduledIn___release___description' + | 'iconTechnology___scheduledIn___release___title' + | 'iconTechnology___scheduledIn___release___publishedAt' + | 'iconTechnology___scheduledIn___release___updatedAt' + | 'iconTechnology___scheduledIn___release___createdAt' + | 'iconTechnology___scheduledIn___release___operations' + | 'iconTechnology___scheduledIn___release___status' + | 'iconTechnology___scheduledIn___release___id' + | 'iconTechnology___scheduledIn___release___children' + | 'iconTechnology___scheduledIn___publishedBy___remoteTypeName' + | 'iconTechnology___scheduledIn___publishedBy___remoteId' + | 'iconTechnology___scheduledIn___publishedBy___stage' + | 'iconTechnology___scheduledIn___publishedBy___isActive' + | 'iconTechnology___scheduledIn___publishedBy___picture' + | 'iconTechnology___scheduledIn___publishedBy___name' + | 'iconTechnology___scheduledIn___publishedBy___publishedAt' + | 'iconTechnology___scheduledIn___publishedBy___updatedAt' + | 'iconTechnology___scheduledIn___publishedBy___createdAt' + | 'iconTechnology___scheduledIn___publishedBy___kind' + | 'iconTechnology___scheduledIn___publishedBy___id' + | 'iconTechnology___scheduledIn___publishedBy___children' + | 'iconTechnology___scheduledIn___updatedBy___remoteTypeName' + | 'iconTechnology___scheduledIn___updatedBy___remoteId' + | 'iconTechnology___scheduledIn___updatedBy___stage' + | 'iconTechnology___scheduledIn___updatedBy___isActive' + | 'iconTechnology___scheduledIn___updatedBy___picture' + | 'iconTechnology___scheduledIn___updatedBy___name' + | 'iconTechnology___scheduledIn___updatedBy___publishedAt' + | 'iconTechnology___scheduledIn___updatedBy___updatedAt' + | 'iconTechnology___scheduledIn___updatedBy___createdAt' + | 'iconTechnology___scheduledIn___updatedBy___kind' + | 'iconTechnology___scheduledIn___updatedBy___id' + | 'iconTechnology___scheduledIn___updatedBy___children' + | 'iconTechnology___scheduledIn___createdBy___remoteTypeName' + | 'iconTechnology___scheduledIn___createdBy___remoteId' + | 'iconTechnology___scheduledIn___createdBy___stage' + | 'iconTechnology___scheduledIn___createdBy___isActive' + | 'iconTechnology___scheduledIn___createdBy___picture' + | 'iconTechnology___scheduledIn___createdBy___name' + | 'iconTechnology___scheduledIn___createdBy___publishedAt' + | 'iconTechnology___scheduledIn___createdBy___updatedAt' + | 'iconTechnology___scheduledIn___createdBy___createdAt' + | 'iconTechnology___scheduledIn___createdBy___kind' + | 'iconTechnology___scheduledIn___createdBy___id' + | 'iconTechnology___scheduledIn___createdBy___children' + | 'iconTechnology___scheduledIn___status' + | 'iconTechnology___scheduledIn___id' + | 'iconTechnology___scheduledIn___parent___id' + | 'iconTechnology___scheduledIn___parent___children' + | 'iconTechnology___scheduledIn___children' + | 'iconTechnology___scheduledIn___children___id' + | 'iconTechnology___scheduledIn___children___children' + | 'iconTechnology___scheduledIn___internal___content' + | 'iconTechnology___scheduledIn___internal___contentDigest' + | 'iconTechnology___scheduledIn___internal___description' + | 'iconTechnology___scheduledIn___internal___fieldOwners' + | 'iconTechnology___scheduledIn___internal___ignoreType' + | 'iconTechnology___scheduledIn___internal___mediaType' + | 'iconTechnology___scheduledIn___internal___owner' + | 'iconTechnology___scheduledIn___internal___type' + | 'iconTechnology___scheduledIn___internal___contentFilePath' + | 'iconTechnology___id' + | 'iconTechnology___parent___id' + | 'iconTechnology___parent___parent___id' + | 'iconTechnology___parent___parent___children' + | 'iconTechnology___parent___children' + | 'iconTechnology___parent___children___id' + | 'iconTechnology___parent___children___children' + | 'iconTechnology___parent___internal___content' + | 'iconTechnology___parent___internal___contentDigest' + | 'iconTechnology___parent___internal___description' + | 'iconTechnology___parent___internal___fieldOwners' + | 'iconTechnology___parent___internal___ignoreType' + | 'iconTechnology___parent___internal___mediaType' + | 'iconTechnology___parent___internal___owner' + | 'iconTechnology___parent___internal___type' + | 'iconTechnology___parent___internal___contentFilePath' + | 'iconTechnology___children' + | 'iconTechnology___children___id' + | 'iconTechnology___children___parent___id' + | 'iconTechnology___children___parent___children' + | 'iconTechnology___children___children' + | 'iconTechnology___children___children___id' + | 'iconTechnology___children___children___children' + | 'iconTechnology___children___internal___content' + | 'iconTechnology___children___internal___contentDigest' + | 'iconTechnology___children___internal___description' + | 'iconTechnology___children___internal___fieldOwners' + | 'iconTechnology___children___internal___ignoreType' + | 'iconTechnology___children___internal___mediaType' + | 'iconTechnology___children___internal___owner' + | 'iconTechnology___children___internal___type' + | 'iconTechnology___children___internal___contentFilePath' + | 'iconTechnology___internal___content' + | 'iconTechnology___internal___contentDigest' + | 'iconTechnology___internal___description' + | 'iconTechnology___internal___fieldOwners' + | 'iconTechnology___internal___ignoreType' + | 'iconTechnology___internal___mediaType' + | 'iconTechnology___internal___owner' + | 'iconTechnology___internal___type' + | 'iconTechnology___internal___contentFilePath' + | 'headerImageBlog' + | 'headerImageBlog___remoteTypeName' + | 'headerImageBlog___remoteId' + | 'headerImageBlog___stage' + | 'headerImageBlog___publishedAt' + | 'headerImageBlog___updatedAt' + | 'headerImageBlog___createdAt' + | 'headerImageBlog___title' + | 'headerImageBlog___description' + | 'headerImageBlog___content___remoteTypeName' + | 'headerImageBlog___content___raw' + | 'headerImageBlog___content___html' + | 'headerImageBlog___content___markdown' + | 'headerImageBlog___content___text' + | 'headerImageBlog___publishedBy___remoteTypeName' + | 'headerImageBlog___publishedBy___remoteId' + | 'headerImageBlog___publishedBy___stage' + | 'headerImageBlog___publishedBy___isActive' + | 'headerImageBlog___publishedBy___picture' + | 'headerImageBlog___publishedBy___name' + | 'headerImageBlog___publishedBy___publishedAt' + | 'headerImageBlog___publishedBy___updatedAt' + | 'headerImageBlog___publishedBy___createdAt' + | 'headerImageBlog___publishedBy___kind' + | 'headerImageBlog___publishedBy___id' + | 'headerImageBlog___publishedBy___parent___id' + | 'headerImageBlog___publishedBy___parent___children' + | 'headerImageBlog___publishedBy___children' + | 'headerImageBlog___publishedBy___children___id' + | 'headerImageBlog___publishedBy___children___children' + | 'headerImageBlog___publishedBy___internal___content' + | 'headerImageBlog___publishedBy___internal___contentDigest' + | 'headerImageBlog___publishedBy___internal___description' + | 'headerImageBlog___publishedBy___internal___fieldOwners' + | 'headerImageBlog___publishedBy___internal___ignoreType' + | 'headerImageBlog___publishedBy___internal___mediaType' + | 'headerImageBlog___publishedBy___internal___owner' + | 'headerImageBlog___publishedBy___internal___type' + | 'headerImageBlog___publishedBy___internal___contentFilePath' + | 'headerImageBlog___updatedBy___remoteTypeName' + | 'headerImageBlog___updatedBy___remoteId' + | 'headerImageBlog___updatedBy___stage' + | 'headerImageBlog___updatedBy___isActive' + | 'headerImageBlog___updatedBy___picture' + | 'headerImageBlog___updatedBy___name' + | 'headerImageBlog___updatedBy___publishedAt' + | 'headerImageBlog___updatedBy___updatedAt' + | 'headerImageBlog___updatedBy___createdAt' + | 'headerImageBlog___updatedBy___kind' + | 'headerImageBlog___updatedBy___id' + | 'headerImageBlog___updatedBy___parent___id' + | 'headerImageBlog___updatedBy___parent___children' + | 'headerImageBlog___updatedBy___children' + | 'headerImageBlog___updatedBy___children___id' + | 'headerImageBlog___updatedBy___children___children' + | 'headerImageBlog___updatedBy___internal___content' + | 'headerImageBlog___updatedBy___internal___contentDigest' + | 'headerImageBlog___updatedBy___internal___description' + | 'headerImageBlog___updatedBy___internal___fieldOwners' + | 'headerImageBlog___updatedBy___internal___ignoreType' + | 'headerImageBlog___updatedBy___internal___mediaType' + | 'headerImageBlog___updatedBy___internal___owner' + | 'headerImageBlog___updatedBy___internal___type' + | 'headerImageBlog___updatedBy___internal___contentFilePath' + | 'headerImageBlog___createdBy___remoteTypeName' + | 'headerImageBlog___createdBy___remoteId' + | 'headerImageBlog___createdBy___stage' + | 'headerImageBlog___createdBy___isActive' + | 'headerImageBlog___createdBy___picture' + | 'headerImageBlog___createdBy___name' + | 'headerImageBlog___createdBy___publishedAt' + | 'headerImageBlog___createdBy___updatedAt' + | 'headerImageBlog___createdBy___createdAt' + | 'headerImageBlog___createdBy___kind' + | 'headerImageBlog___createdBy___id' + | 'headerImageBlog___createdBy___parent___id' + | 'headerImageBlog___createdBy___parent___children' + | 'headerImageBlog___createdBy___children' + | 'headerImageBlog___createdBy___children___id' + | 'headerImageBlog___createdBy___children___children' + | 'headerImageBlog___createdBy___internal___content' + | 'headerImageBlog___createdBy___internal___contentDigest' + | 'headerImageBlog___createdBy___internal___description' + | 'headerImageBlog___createdBy___internal___fieldOwners' + | 'headerImageBlog___createdBy___internal___ignoreType' + | 'headerImageBlog___createdBy___internal___mediaType' + | 'headerImageBlog___createdBy___internal___owner' + | 'headerImageBlog___createdBy___internal___type' + | 'headerImageBlog___createdBy___internal___contentFilePath' + | 'headerImageBlog___headerImage___remoteTypeName' + | 'headerImageBlog___headerImage___remoteId' + | 'headerImageBlog___headerImage___locale' + | 'headerImageBlog___headerImage___stage' + | 'headerImageBlog___headerImage___mimeType' + | 'headerImageBlog___headerImage___size' + | 'headerImageBlog___headerImage___width' + | 'headerImageBlog___headerImage___height' + | 'headerImageBlog___headerImage___fileName' + | 'headerImageBlog___headerImage___handle' + | 'headerImageBlog___headerImage___publishedAt' + | 'headerImageBlog___headerImage___updatedAt' + | 'headerImageBlog___headerImage___createdAt' + | 'headerImageBlog___headerImage___publishedBy___remoteTypeName' + | 'headerImageBlog___headerImage___publishedBy___remoteId' + | 'headerImageBlog___headerImage___publishedBy___stage' + | 'headerImageBlog___headerImage___publishedBy___isActive' + | 'headerImageBlog___headerImage___publishedBy___picture' + | 'headerImageBlog___headerImage___publishedBy___name' + | 'headerImageBlog___headerImage___publishedBy___publishedAt' + | 'headerImageBlog___headerImage___publishedBy___updatedAt' + | 'headerImageBlog___headerImage___publishedBy___createdAt' + | 'headerImageBlog___headerImage___publishedBy___kind' + | 'headerImageBlog___headerImage___publishedBy___id' + | 'headerImageBlog___headerImage___publishedBy___children' + | 'headerImageBlog___headerImage___updatedBy___remoteTypeName' + | 'headerImageBlog___headerImage___updatedBy___remoteId' + | 'headerImageBlog___headerImage___updatedBy___stage' + | 'headerImageBlog___headerImage___updatedBy___isActive' + | 'headerImageBlog___headerImage___updatedBy___picture' + | 'headerImageBlog___headerImage___updatedBy___name' + | 'headerImageBlog___headerImage___updatedBy___publishedAt' + | 'headerImageBlog___headerImage___updatedBy___updatedAt' + | 'headerImageBlog___headerImage___updatedBy___createdAt' + | 'headerImageBlog___headerImage___updatedBy___kind' + | 'headerImageBlog___headerImage___updatedBy___id' + | 'headerImageBlog___headerImage___updatedBy___children' + | 'headerImageBlog___headerImage___createdBy___remoteTypeName' + | 'headerImageBlog___headerImage___createdBy___remoteId' + | 'headerImageBlog___headerImage___createdBy___stage' + | 'headerImageBlog___headerImage___createdBy___isActive' + | 'headerImageBlog___headerImage___createdBy___picture' + | 'headerImageBlog___headerImage___createdBy___name' + | 'headerImageBlog___headerImage___createdBy___publishedAt' + | 'headerImageBlog___headerImage___createdBy___updatedAt' + | 'headerImageBlog___headerImage___createdBy___createdAt' + | 'headerImageBlog___headerImage___createdBy___kind' + | 'headerImageBlog___headerImage___createdBy___id' + | 'headerImageBlog___headerImage___createdBy___children' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem___remoteTypeName' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem___remoteId' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem___stage' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem___publishedAt' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem___updatedAt' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem___createdAt' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem___title' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem___description' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem___techSheet' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem___carouselImages' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem___links' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem___scheduledIn' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem___gatsbyPath' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem___id' + | 'headerImageBlog___headerImage___carouselImagesPortfolioItem___children' + | 'headerImageBlog___headerImage___iconSpeciality' + | 'headerImageBlog___headerImage___iconSpeciality___remoteTypeName' + | 'headerImageBlog___headerImage___iconSpeciality___remoteId' + | 'headerImageBlog___headerImage___iconSpeciality___stage' + | 'headerImageBlog___headerImage___iconSpeciality___publishedAt' + | 'headerImageBlog___headerImage___iconSpeciality___updatedAt' + | 'headerImageBlog___headerImage___iconSpeciality___createdAt' + | 'headerImageBlog___headerImage___iconSpeciality___title' + | 'headerImageBlog___headerImage___iconSpeciality___scheduledIn' + | 'headerImageBlog___headerImage___iconSpeciality___id' + | 'headerImageBlog___headerImage___iconSpeciality___children' + | 'headerImageBlog___headerImage___iconTechnology' + | 'headerImageBlog___headerImage___iconTechnology___remoteTypeName' + | 'headerImageBlog___headerImage___iconTechnology___remoteId' + | 'headerImageBlog___headerImage___iconTechnology___stage' + | 'headerImageBlog___headerImage___iconTechnology___publishedAt' + | 'headerImageBlog___headerImage___iconTechnology___updatedAt' + | 'headerImageBlog___headerImage___iconTechnology___createdAt' + | 'headerImageBlog___headerImage___iconTechnology___title' + | 'headerImageBlog___headerImage___iconTechnology___scheduledIn' + | 'headerImageBlog___headerImage___iconTechnology___id' + | 'headerImageBlog___headerImage___iconTechnology___children' + | 'headerImageBlog___headerImage___headerImageBlog' + | 'headerImageBlog___headerImage___headerImageBlog___remoteTypeName' + | 'headerImageBlog___headerImage___headerImageBlog___remoteId' + | 'headerImageBlog___headerImage___headerImageBlog___stage' + | 'headerImageBlog___headerImage___headerImageBlog___publishedAt' + | 'headerImageBlog___headerImage___headerImageBlog___updatedAt' + | 'headerImageBlog___headerImage___headerImageBlog___createdAt' + | 'headerImageBlog___headerImage___headerImageBlog___title' + | 'headerImageBlog___headerImage___headerImageBlog___description' + | 'headerImageBlog___headerImage___headerImageBlog___type' + | 'headerImageBlog___headerImage___headerImageBlog___categories' + | 'headerImageBlog___headerImage___headerImageBlog___scheduledIn' + | 'headerImageBlog___headerImage___headerImageBlog___gatsbyPath' + | 'headerImageBlog___headerImage___headerImageBlog___id' + | 'headerImageBlog___headerImage___headerImageBlog___children' + | 'headerImageBlog___headerImage___scheduledIn' + | 'headerImageBlog___headerImage___scheduledIn___remoteTypeName' + | 'headerImageBlog___headerImage___scheduledIn___remoteId' + | 'headerImageBlog___headerImage___scheduledIn___stage' + | 'headerImageBlog___headerImage___scheduledIn___rawPayload' + | 'headerImageBlog___headerImage___scheduledIn___errorMessage' + | 'headerImageBlog___headerImage___scheduledIn___description' + | 'headerImageBlog___headerImage___scheduledIn___publishedAt' + | 'headerImageBlog___headerImage___scheduledIn___updatedAt' + | 'headerImageBlog___headerImage___scheduledIn___createdAt' + | 'headerImageBlog___headerImage___scheduledIn___status' + | 'headerImageBlog___headerImage___scheduledIn___id' + | 'headerImageBlog___headerImage___scheduledIn___children' + | 'headerImageBlog___headerImage___url' + | 'headerImageBlog___headerImage___id' + | 'headerImageBlog___headerImage___parent___id' + | 'headerImageBlog___headerImage___parent___children' + | 'headerImageBlog___headerImage___children' + | 'headerImageBlog___headerImage___children___id' + | 'headerImageBlog___headerImage___children___children' + | 'headerImageBlog___headerImage___internal___content' + | 'headerImageBlog___headerImage___internal___contentDigest' + | 'headerImageBlog___headerImage___internal___description' + | 'headerImageBlog___headerImage___internal___fieldOwners' + | 'headerImageBlog___headerImage___internal___ignoreType' + | 'headerImageBlog___headerImage___internal___mediaType' + | 'headerImageBlog___headerImage___internal___owner' + | 'headerImageBlog___headerImage___internal___type' + | 'headerImageBlog___headerImage___internal___contentFilePath' + | 'headerImageBlog___type' + | 'headerImageBlog___categories' + | 'headerImageBlog___scheduledIn' + | 'headerImageBlog___scheduledIn___remoteTypeName' + | 'headerImageBlog___scheduledIn___remoteId' + | 'headerImageBlog___scheduledIn___stage' + | 'headerImageBlog___scheduledIn___rawPayload' + | 'headerImageBlog___scheduledIn___errorMessage' + | 'headerImageBlog___scheduledIn___description' + | 'headerImageBlog___scheduledIn___publishedAt' + | 'headerImageBlog___scheduledIn___updatedAt' + | 'headerImageBlog___scheduledIn___createdAt' + | 'headerImageBlog___scheduledIn___release___remoteTypeName' + | 'headerImageBlog___scheduledIn___release___remoteId' + | 'headerImageBlog___scheduledIn___release___stage' + | 'headerImageBlog___scheduledIn___release___releaseAt' + | 'headerImageBlog___scheduledIn___release___isImplicit' + | 'headerImageBlog___scheduledIn___release___isActive' + | 'headerImageBlog___scheduledIn___release___errorMessage' + | 'headerImageBlog___scheduledIn___release___description' + | 'headerImageBlog___scheduledIn___release___title' + | 'headerImageBlog___scheduledIn___release___publishedAt' + | 'headerImageBlog___scheduledIn___release___updatedAt' + | 'headerImageBlog___scheduledIn___release___createdAt' + | 'headerImageBlog___scheduledIn___release___operations' + | 'headerImageBlog___scheduledIn___release___status' + | 'headerImageBlog___scheduledIn___release___id' + | 'headerImageBlog___scheduledIn___release___children' + | 'headerImageBlog___scheduledIn___publishedBy___remoteTypeName' + | 'headerImageBlog___scheduledIn___publishedBy___remoteId' + | 'headerImageBlog___scheduledIn___publishedBy___stage' + | 'headerImageBlog___scheduledIn___publishedBy___isActive' + | 'headerImageBlog___scheduledIn___publishedBy___picture' + | 'headerImageBlog___scheduledIn___publishedBy___name' + | 'headerImageBlog___scheduledIn___publishedBy___publishedAt' + | 'headerImageBlog___scheduledIn___publishedBy___updatedAt' + | 'headerImageBlog___scheduledIn___publishedBy___createdAt' + | 'headerImageBlog___scheduledIn___publishedBy___kind' + | 'headerImageBlog___scheduledIn___publishedBy___id' + | 'headerImageBlog___scheduledIn___publishedBy___children' + | 'headerImageBlog___scheduledIn___updatedBy___remoteTypeName' + | 'headerImageBlog___scheduledIn___updatedBy___remoteId' + | 'headerImageBlog___scheduledIn___updatedBy___stage' + | 'headerImageBlog___scheduledIn___updatedBy___isActive' + | 'headerImageBlog___scheduledIn___updatedBy___picture' + | 'headerImageBlog___scheduledIn___updatedBy___name' + | 'headerImageBlog___scheduledIn___updatedBy___publishedAt' + | 'headerImageBlog___scheduledIn___updatedBy___updatedAt' + | 'headerImageBlog___scheduledIn___updatedBy___createdAt' + | 'headerImageBlog___scheduledIn___updatedBy___kind' + | 'headerImageBlog___scheduledIn___updatedBy___id' + | 'headerImageBlog___scheduledIn___updatedBy___children' + | 'headerImageBlog___scheduledIn___createdBy___remoteTypeName' + | 'headerImageBlog___scheduledIn___createdBy___remoteId' + | 'headerImageBlog___scheduledIn___createdBy___stage' + | 'headerImageBlog___scheduledIn___createdBy___isActive' + | 'headerImageBlog___scheduledIn___createdBy___picture' + | 'headerImageBlog___scheduledIn___createdBy___name' + | 'headerImageBlog___scheduledIn___createdBy___publishedAt' + | 'headerImageBlog___scheduledIn___createdBy___updatedAt' + | 'headerImageBlog___scheduledIn___createdBy___createdAt' + | 'headerImageBlog___scheduledIn___createdBy___kind' + | 'headerImageBlog___scheduledIn___createdBy___id' + | 'headerImageBlog___scheduledIn___createdBy___children' + | 'headerImageBlog___scheduledIn___status' + | 'headerImageBlog___scheduledIn___id' + | 'headerImageBlog___scheduledIn___parent___id' + | 'headerImageBlog___scheduledIn___parent___children' + | 'headerImageBlog___scheduledIn___children' + | 'headerImageBlog___scheduledIn___children___id' + | 'headerImageBlog___scheduledIn___children___children' + | 'headerImageBlog___scheduledIn___internal___content' + | 'headerImageBlog___scheduledIn___internal___contentDigest' + | 'headerImageBlog___scheduledIn___internal___description' + | 'headerImageBlog___scheduledIn___internal___fieldOwners' + | 'headerImageBlog___scheduledIn___internal___ignoreType' + | 'headerImageBlog___scheduledIn___internal___mediaType' + | 'headerImageBlog___scheduledIn___internal___owner' + | 'headerImageBlog___scheduledIn___internal___type' + | 'headerImageBlog___scheduledIn___internal___contentFilePath' + | 'headerImageBlog___gatsbyPath' + | 'headerImageBlog___id' + | 'headerImageBlog___parent___id' + | 'headerImageBlog___parent___parent___id' + | 'headerImageBlog___parent___parent___children' + | 'headerImageBlog___parent___children' + | 'headerImageBlog___parent___children___id' + | 'headerImageBlog___parent___children___children' + | 'headerImageBlog___parent___internal___content' + | 'headerImageBlog___parent___internal___contentDigest' + | 'headerImageBlog___parent___internal___description' + | 'headerImageBlog___parent___internal___fieldOwners' + | 'headerImageBlog___parent___internal___ignoreType' + | 'headerImageBlog___parent___internal___mediaType' + | 'headerImageBlog___parent___internal___owner' + | 'headerImageBlog___parent___internal___type' + | 'headerImageBlog___parent___internal___contentFilePath' + | 'headerImageBlog___children' + | 'headerImageBlog___children___id' + | 'headerImageBlog___children___parent___id' + | 'headerImageBlog___children___parent___children' + | 'headerImageBlog___children___children' + | 'headerImageBlog___children___children___id' + | 'headerImageBlog___children___children___children' + | 'headerImageBlog___children___internal___content' + | 'headerImageBlog___children___internal___contentDigest' + | 'headerImageBlog___children___internal___description' + | 'headerImageBlog___children___internal___fieldOwners' + | 'headerImageBlog___children___internal___ignoreType' + | 'headerImageBlog___children___internal___mediaType' + | 'headerImageBlog___children___internal___owner' + | 'headerImageBlog___children___internal___type' + | 'headerImageBlog___children___internal___contentFilePath' + | 'headerImageBlog___internal___content' + | 'headerImageBlog___internal___contentDigest' + | 'headerImageBlog___internal___description' + | 'headerImageBlog___internal___fieldOwners' + | 'headerImageBlog___internal___ignoreType' + | 'headerImageBlog___internal___mediaType' + | 'headerImageBlog___internal___owner' + | 'headerImageBlog___internal___type' + | 'headerImageBlog___internal___contentFilePath' | 'scheduledIn' | 'scheduledIn___remoteTypeName' | 'scheduledIn___remoteId' | 'scheduledIn___stage' - | 'scheduledIn___createdAt' - | 'scheduledIn___updatedAt' - | 'scheduledIn___publishedAt' - | 'scheduledIn___description' - | 'scheduledIn___errorMessage' | 'scheduledIn___rawPayload' - | 'scheduledIn___createdBy___remoteTypeName' - | 'scheduledIn___createdBy___remoteId' - | 'scheduledIn___createdBy___stage' - | 'scheduledIn___createdBy___createdAt' - | 'scheduledIn___createdBy___updatedAt' - | 'scheduledIn___createdBy___publishedAt' - | 'scheduledIn___createdBy___name' - | 'scheduledIn___createdBy___picture' - | 'scheduledIn___createdBy___isActive' - | 'scheduledIn___createdBy___kind' - | 'scheduledIn___createdBy___id' - | 'scheduledIn___createdBy___parent___id' - | 'scheduledIn___createdBy___parent___children' - | 'scheduledIn___createdBy___children' - | 'scheduledIn___createdBy___children___id' - | 'scheduledIn___createdBy___children___children' - | 'scheduledIn___createdBy___internal___content' - | 'scheduledIn___createdBy___internal___contentDigest' - | 'scheduledIn___createdBy___internal___description' - | 'scheduledIn___createdBy___internal___fieldOwners' - | 'scheduledIn___createdBy___internal___ignoreType' - | 'scheduledIn___createdBy___internal___mediaType' - | 'scheduledIn___createdBy___internal___owner' - | 'scheduledIn___createdBy___internal___type' - | 'scheduledIn___updatedBy___remoteTypeName' - | 'scheduledIn___updatedBy___remoteId' - | 'scheduledIn___updatedBy___stage' - | 'scheduledIn___updatedBy___createdAt' - | 'scheduledIn___updatedBy___updatedAt' - | 'scheduledIn___updatedBy___publishedAt' - | 'scheduledIn___updatedBy___name' - | 'scheduledIn___updatedBy___picture' - | 'scheduledIn___updatedBy___isActive' - | 'scheduledIn___updatedBy___kind' - | 'scheduledIn___updatedBy___id' - | 'scheduledIn___updatedBy___parent___id' - | 'scheduledIn___updatedBy___parent___children' - | 'scheduledIn___updatedBy___children' - | 'scheduledIn___updatedBy___children___id' - | 'scheduledIn___updatedBy___children___children' - | 'scheduledIn___updatedBy___internal___content' - | 'scheduledIn___updatedBy___internal___contentDigest' - | 'scheduledIn___updatedBy___internal___description' - | 'scheduledIn___updatedBy___internal___fieldOwners' - | 'scheduledIn___updatedBy___internal___ignoreType' - | 'scheduledIn___updatedBy___internal___mediaType' - | 'scheduledIn___updatedBy___internal___owner' - | 'scheduledIn___updatedBy___internal___type' - | 'scheduledIn___publishedBy___remoteTypeName' - | 'scheduledIn___publishedBy___remoteId' - | 'scheduledIn___publishedBy___stage' - | 'scheduledIn___publishedBy___createdAt' - | 'scheduledIn___publishedBy___updatedAt' - | 'scheduledIn___publishedBy___publishedAt' - | 'scheduledIn___publishedBy___name' - | 'scheduledIn___publishedBy___picture' - | 'scheduledIn___publishedBy___isActive' - | 'scheduledIn___publishedBy___kind' - | 'scheduledIn___publishedBy___id' - | 'scheduledIn___publishedBy___parent___id' - | 'scheduledIn___publishedBy___parent___children' - | 'scheduledIn___publishedBy___children' - | 'scheduledIn___publishedBy___children___id' - | 'scheduledIn___publishedBy___children___children' - | 'scheduledIn___publishedBy___internal___content' - | 'scheduledIn___publishedBy___internal___contentDigest' - | 'scheduledIn___publishedBy___internal___description' - | 'scheduledIn___publishedBy___internal___fieldOwners' - | 'scheduledIn___publishedBy___internal___ignoreType' - | 'scheduledIn___publishedBy___internal___mediaType' - | 'scheduledIn___publishedBy___internal___owner' - | 'scheduledIn___publishedBy___internal___type' + | 'scheduledIn___errorMessage' + | 'scheduledIn___description' + | 'scheduledIn___publishedAt' + | 'scheduledIn___updatedAt' + | 'scheduledIn___createdAt' | 'scheduledIn___release___remoteTypeName' | 'scheduledIn___release___remoteId' | 'scheduledIn___release___stage' - | 'scheduledIn___release___createdAt' - | 'scheduledIn___release___updatedAt' - | 'scheduledIn___release___publishedAt' - | 'scheduledIn___release___title' - | 'scheduledIn___release___description' - | 'scheduledIn___release___errorMessage' - | 'scheduledIn___release___isActive' - | 'scheduledIn___release___isImplicit' | 'scheduledIn___release___releaseAt' - | 'scheduledIn___release___createdBy___remoteTypeName' - | 'scheduledIn___release___createdBy___remoteId' - | 'scheduledIn___release___createdBy___stage' - | 'scheduledIn___release___createdBy___createdAt' - | 'scheduledIn___release___createdBy___updatedAt' - | 'scheduledIn___release___createdBy___publishedAt' - | 'scheduledIn___release___createdBy___name' - | 'scheduledIn___release___createdBy___picture' - | 'scheduledIn___release___createdBy___isActive' - | 'scheduledIn___release___createdBy___kind' - | 'scheduledIn___release___createdBy___id' - | 'scheduledIn___release___createdBy___children' - | 'scheduledIn___release___updatedBy___remoteTypeName' - | 'scheduledIn___release___updatedBy___remoteId' - | 'scheduledIn___release___updatedBy___stage' - | 'scheduledIn___release___updatedBy___createdAt' - | 'scheduledIn___release___updatedBy___updatedAt' - | 'scheduledIn___release___updatedBy___publishedAt' - | 'scheduledIn___release___updatedBy___name' - | 'scheduledIn___release___updatedBy___picture' - | 'scheduledIn___release___updatedBy___isActive' - | 'scheduledIn___release___updatedBy___kind' - | 'scheduledIn___release___updatedBy___id' - | 'scheduledIn___release___updatedBy___children' - | 'scheduledIn___release___publishedBy___remoteTypeName' - | 'scheduledIn___release___publishedBy___remoteId' - | 'scheduledIn___release___publishedBy___stage' - | 'scheduledIn___release___publishedBy___createdAt' - | 'scheduledIn___release___publishedBy___updatedAt' - | 'scheduledIn___release___publishedBy___publishedAt' - | 'scheduledIn___release___publishedBy___name' - | 'scheduledIn___release___publishedBy___picture' - | 'scheduledIn___release___publishedBy___isActive' - | 'scheduledIn___release___publishedBy___kind' - | 'scheduledIn___release___publishedBy___id' - | 'scheduledIn___release___publishedBy___children' + | 'scheduledIn___release___isImplicit' + | 'scheduledIn___release___isActive' + | 'scheduledIn___release___errorMessage' + | 'scheduledIn___release___description' + | 'scheduledIn___release___title' + | 'scheduledIn___release___publishedAt' + | 'scheduledIn___release___updatedAt' + | 'scheduledIn___release___createdAt' | 'scheduledIn___release___operations' | 'scheduledIn___release___operations___remoteTypeName' | 'scheduledIn___release___operations___remoteId' | 'scheduledIn___release___operations___stage' - | 'scheduledIn___release___operations___createdAt' - | 'scheduledIn___release___operations___updatedAt' - | 'scheduledIn___release___operations___publishedAt' - | 'scheduledIn___release___operations___description' - | 'scheduledIn___release___operations___errorMessage' | 'scheduledIn___release___operations___rawPayload' + | 'scheduledIn___release___operations___errorMessage' + | 'scheduledIn___release___operations___description' + | 'scheduledIn___release___operations___publishedAt' + | 'scheduledIn___release___operations___updatedAt' + | 'scheduledIn___release___operations___createdAt' | 'scheduledIn___release___operations___status' | 'scheduledIn___release___operations___id' | 'scheduledIn___release___operations___children' + | 'scheduledIn___release___publishedBy___remoteTypeName' + | 'scheduledIn___release___publishedBy___remoteId' + | 'scheduledIn___release___publishedBy___stage' + | 'scheduledIn___release___publishedBy___isActive' + | 'scheduledIn___release___publishedBy___picture' + | 'scheduledIn___release___publishedBy___name' + | 'scheduledIn___release___publishedBy___publishedAt' + | 'scheduledIn___release___publishedBy___updatedAt' + | 'scheduledIn___release___publishedBy___createdAt' + | 'scheduledIn___release___publishedBy___kind' + | 'scheduledIn___release___publishedBy___id' + | 'scheduledIn___release___publishedBy___children' + | 'scheduledIn___release___updatedBy___remoteTypeName' + | 'scheduledIn___release___updatedBy___remoteId' + | 'scheduledIn___release___updatedBy___stage' + | 'scheduledIn___release___updatedBy___isActive' + | 'scheduledIn___release___updatedBy___picture' + | 'scheduledIn___release___updatedBy___name' + | 'scheduledIn___release___updatedBy___publishedAt' + | 'scheduledIn___release___updatedBy___updatedAt' + | 'scheduledIn___release___updatedBy___createdAt' + | 'scheduledIn___release___updatedBy___kind' + | 'scheduledIn___release___updatedBy___id' + | 'scheduledIn___release___updatedBy___children' + | 'scheduledIn___release___createdBy___remoteTypeName' + | 'scheduledIn___release___createdBy___remoteId' + | 'scheduledIn___release___createdBy___stage' + | 'scheduledIn___release___createdBy___isActive' + | 'scheduledIn___release___createdBy___picture' + | 'scheduledIn___release___createdBy___name' + | 'scheduledIn___release___createdBy___publishedAt' + | 'scheduledIn___release___createdBy___updatedAt' + | 'scheduledIn___release___createdBy___createdAt' + | 'scheduledIn___release___createdBy___kind' + | 'scheduledIn___release___createdBy___id' + | 'scheduledIn___release___createdBy___children' | 'scheduledIn___release___status' | 'scheduledIn___release___id' | 'scheduledIn___release___parent___id' @@ -4416,22 +5441,99 @@ export type GraphCms_AssetFieldsEnum = | 'scheduledIn___release___internal___mediaType' | 'scheduledIn___release___internal___owner' | 'scheduledIn___release___internal___type' - | 'scheduledIn___status' - | 'scheduledIn___id' - | 'scheduledIn___parent___id' - | 'scheduledIn___parent___parent___id' - | 'scheduledIn___parent___parent___children' - | 'scheduledIn___parent___children' - | 'scheduledIn___parent___children___id' - | 'scheduledIn___parent___children___children' - | 'scheduledIn___parent___internal___content' - | 'scheduledIn___parent___internal___contentDigest' - | 'scheduledIn___parent___internal___description' - | 'scheduledIn___parent___internal___fieldOwners' - | 'scheduledIn___parent___internal___ignoreType' - | 'scheduledIn___parent___internal___mediaType' - | 'scheduledIn___parent___internal___owner' - | 'scheduledIn___parent___internal___type' + | 'scheduledIn___release___internal___contentFilePath' + | 'scheduledIn___publishedBy___remoteTypeName' + | 'scheduledIn___publishedBy___remoteId' + | 'scheduledIn___publishedBy___stage' + | 'scheduledIn___publishedBy___isActive' + | 'scheduledIn___publishedBy___picture' + | 'scheduledIn___publishedBy___name' + | 'scheduledIn___publishedBy___publishedAt' + | 'scheduledIn___publishedBy___updatedAt' + | 'scheduledIn___publishedBy___createdAt' + | 'scheduledIn___publishedBy___kind' + | 'scheduledIn___publishedBy___id' + | 'scheduledIn___publishedBy___parent___id' + | 'scheduledIn___publishedBy___parent___children' + | 'scheduledIn___publishedBy___children' + | 'scheduledIn___publishedBy___children___id' + | 'scheduledIn___publishedBy___children___children' + | 'scheduledIn___publishedBy___internal___content' + | 'scheduledIn___publishedBy___internal___contentDigest' + | 'scheduledIn___publishedBy___internal___description' + | 'scheduledIn___publishedBy___internal___fieldOwners' + | 'scheduledIn___publishedBy___internal___ignoreType' + | 'scheduledIn___publishedBy___internal___mediaType' + | 'scheduledIn___publishedBy___internal___owner' + | 'scheduledIn___publishedBy___internal___type' + | 'scheduledIn___publishedBy___internal___contentFilePath' + | 'scheduledIn___updatedBy___remoteTypeName' + | 'scheduledIn___updatedBy___remoteId' + | 'scheduledIn___updatedBy___stage' + | 'scheduledIn___updatedBy___isActive' + | 'scheduledIn___updatedBy___picture' + | 'scheduledIn___updatedBy___name' + | 'scheduledIn___updatedBy___publishedAt' + | 'scheduledIn___updatedBy___updatedAt' + | 'scheduledIn___updatedBy___createdAt' + | 'scheduledIn___updatedBy___kind' + | 'scheduledIn___updatedBy___id' + | 'scheduledIn___updatedBy___parent___id' + | 'scheduledIn___updatedBy___parent___children' + | 'scheduledIn___updatedBy___children' + | 'scheduledIn___updatedBy___children___id' + | 'scheduledIn___updatedBy___children___children' + | 'scheduledIn___updatedBy___internal___content' + | 'scheduledIn___updatedBy___internal___contentDigest' + | 'scheduledIn___updatedBy___internal___description' + | 'scheduledIn___updatedBy___internal___fieldOwners' + | 'scheduledIn___updatedBy___internal___ignoreType' + | 'scheduledIn___updatedBy___internal___mediaType' + | 'scheduledIn___updatedBy___internal___owner' + | 'scheduledIn___updatedBy___internal___type' + | 'scheduledIn___updatedBy___internal___contentFilePath' + | 'scheduledIn___createdBy___remoteTypeName' + | 'scheduledIn___createdBy___remoteId' + | 'scheduledIn___createdBy___stage' + | 'scheduledIn___createdBy___isActive' + | 'scheduledIn___createdBy___picture' + | 'scheduledIn___createdBy___name' + | 'scheduledIn___createdBy___publishedAt' + | 'scheduledIn___createdBy___updatedAt' + | 'scheduledIn___createdBy___createdAt' + | 'scheduledIn___createdBy___kind' + | 'scheduledIn___createdBy___id' + | 'scheduledIn___createdBy___parent___id' + | 'scheduledIn___createdBy___parent___children' + | 'scheduledIn___createdBy___children' + | 'scheduledIn___createdBy___children___id' + | 'scheduledIn___createdBy___children___children' + | 'scheduledIn___createdBy___internal___content' + | 'scheduledIn___createdBy___internal___contentDigest' + | 'scheduledIn___createdBy___internal___description' + | 'scheduledIn___createdBy___internal___fieldOwners' + | 'scheduledIn___createdBy___internal___ignoreType' + | 'scheduledIn___createdBy___internal___mediaType' + | 'scheduledIn___createdBy___internal___owner' + | 'scheduledIn___createdBy___internal___type' + | 'scheduledIn___createdBy___internal___contentFilePath' + | 'scheduledIn___status' + | 'scheduledIn___id' + | 'scheduledIn___parent___id' + | 'scheduledIn___parent___parent___id' + | 'scheduledIn___parent___parent___children' + | 'scheduledIn___parent___children' + | 'scheduledIn___parent___children___id' + | 'scheduledIn___parent___children___children' + | 'scheduledIn___parent___internal___content' + | 'scheduledIn___parent___internal___contentDigest' + | 'scheduledIn___parent___internal___description' + | 'scheduledIn___parent___internal___fieldOwners' + | 'scheduledIn___parent___internal___ignoreType' + | 'scheduledIn___parent___internal___mediaType' + | 'scheduledIn___parent___internal___owner' + | 'scheduledIn___parent___internal___type' + | 'scheduledIn___parent___internal___contentFilePath' | 'scheduledIn___children' | 'scheduledIn___children___id' | 'scheduledIn___children___parent___id' @@ -4447,6 +5549,7 @@ export type GraphCms_AssetFieldsEnum = | 'scheduledIn___children___internal___mediaType' | 'scheduledIn___children___internal___owner' | 'scheduledIn___children___internal___type' + | 'scheduledIn___children___internal___contentFilePath' | 'scheduledIn___internal___content' | 'scheduledIn___internal___contentDigest' | 'scheduledIn___internal___description' @@ -4455,6 +5558,7 @@ export type GraphCms_AssetFieldsEnum = | 'scheduledIn___internal___mediaType' | 'scheduledIn___internal___owner' | 'scheduledIn___internal___type' + | 'scheduledIn___internal___contentFilePath' | 'url' | 'id' | 'parent___id' @@ -4472,6 +5576,7 @@ export type GraphCms_AssetFieldsEnum = | 'parent___parent___internal___mediaType' | 'parent___parent___internal___owner' | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' | 'parent___children' | 'parent___children___id' | 'parent___children___parent___id' @@ -4487,6 +5592,7 @@ export type GraphCms_AssetFieldsEnum = | 'parent___children___internal___mediaType' | 'parent___children___internal___owner' | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' | 'parent___internal___content' | 'parent___internal___contentDigest' | 'parent___internal___description' @@ -4495,6 +5601,7 @@ export type GraphCms_AssetFieldsEnum = | 'parent___internal___mediaType' | 'parent___internal___owner' | 'parent___internal___type' + | 'parent___internal___contentFilePath' | 'children' | 'children___id' | 'children___parent___id' @@ -4511,6 +5618,7 @@ export type GraphCms_AssetFieldsEnum = | 'children___parent___internal___mediaType' | 'children___parent___internal___owner' | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' | 'children___children' | 'children___children___id' | 'children___children___parent___id' @@ -4526,6 +5634,7 @@ export type GraphCms_AssetFieldsEnum = | 'children___children___internal___mediaType' | 'children___children___internal___owner' | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' | 'children___internal___content' | 'children___internal___contentDigest' | 'children___internal___description' @@ -4534,6 +5643,7 @@ export type GraphCms_AssetFieldsEnum = | 'children___internal___mediaType' | 'children___internal___owner' | 'children___internal___type' + | 'children___internal___contentFilePath' | 'internal___content' | 'internal___contentDigest' | 'internal___description' @@ -4541,7 +5651,8 @@ export type GraphCms_AssetFieldsEnum = | 'internal___ignoreType' | 'internal___mediaType' | 'internal___owner' - | 'internal___type'; + | 'internal___type' + | 'internal___contentFilePath'; export type GraphCms_AssetGroupConnection = { totalCount: Scalars['Int']; @@ -4557,27 +5668,22 @@ export type GraphCms_AssetGroupConnection = { fieldValue?: Maybe; }; - export type GraphCms_AssetGroupConnectionDistinctArgs = { field: GraphCms_AssetFieldsEnum; }; - export type GraphCms_AssetGroupConnectionMaxArgs = { field: GraphCms_AssetFieldsEnum; }; - export type GraphCms_AssetGroupConnectionMinArgs = { field: GraphCms_AssetFieldsEnum; }; - export type GraphCms_AssetGroupConnectionSumArgs = { field: GraphCms_AssetFieldsEnum; }; - export type GraphCms_AssetGroupConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -4601,27 +5707,22 @@ export type GraphCms_UserConnection = { group: Array; }; - export type GraphCms_UserConnectionDistinctArgs = { field: GraphCms_UserFieldsEnum; }; - export type GraphCms_UserConnectionMaxArgs = { field: GraphCms_UserFieldsEnum; }; - export type GraphCms_UserConnectionMinArgs = { field: GraphCms_UserFieldsEnum; }; - export type GraphCms_UserConnectionSumArgs = { field: GraphCms_UserFieldsEnum; }; - export type GraphCms_UserConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -4638,12 +5739,12 @@ export type GraphCms_UserFieldsEnum = | 'remoteTypeName' | 'remoteId' | 'stage' - | 'createdAt' - | 'updatedAt' - | 'publishedAt' - | 'name' - | 'picture' | 'isActive' + | 'picture' + | 'name' + | 'publishedAt' + | 'updatedAt' + | 'createdAt' | 'kind' | 'id' | 'parent___id' @@ -4661,6 +5762,7 @@ export type GraphCms_UserFieldsEnum = | 'parent___parent___internal___mediaType' | 'parent___parent___internal___owner' | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' | 'parent___children' | 'parent___children___id' | 'parent___children___parent___id' @@ -4676,6 +5778,7 @@ export type GraphCms_UserFieldsEnum = | 'parent___children___internal___mediaType' | 'parent___children___internal___owner' | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' | 'parent___internal___content' | 'parent___internal___contentDigest' | 'parent___internal___description' @@ -4684,6 +5787,7 @@ export type GraphCms_UserFieldsEnum = | 'parent___internal___mediaType' | 'parent___internal___owner' | 'parent___internal___type' + | 'parent___internal___contentFilePath' | 'children' | 'children___id' | 'children___parent___id' @@ -4700,6 +5804,7 @@ export type GraphCms_UserFieldsEnum = | 'children___parent___internal___mediaType' | 'children___parent___internal___owner' | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' | 'children___children' | 'children___children___id' | 'children___children___parent___id' @@ -4715,6 +5820,7 @@ export type GraphCms_UserFieldsEnum = | 'children___children___internal___mediaType' | 'children___children___internal___owner' | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' | 'children___internal___content' | 'children___internal___contentDigest' | 'children___internal___description' @@ -4723,6 +5829,7 @@ export type GraphCms_UserFieldsEnum = | 'children___internal___mediaType' | 'children___internal___owner' | 'children___internal___type' + | 'children___internal___contentFilePath' | 'internal___content' | 'internal___contentDigest' | 'internal___description' @@ -4730,7 +5837,8 @@ export type GraphCms_UserFieldsEnum = | 'internal___ignoreType' | 'internal___mediaType' | 'internal___owner' - | 'internal___type'; + | 'internal___type' + | 'internal___contentFilePath'; export type GraphCms_UserGroupConnection = { totalCount: Scalars['Int']; @@ -4746,27 +5854,22 @@ export type GraphCms_UserGroupConnection = { fieldValue?: Maybe; }; - export type GraphCms_UserGroupConnectionDistinctArgs = { field: GraphCms_UserFieldsEnum; }; - export type GraphCms_UserGroupConnectionMaxArgs = { field: GraphCms_UserFieldsEnum; }; - export type GraphCms_UserGroupConnectionMinArgs = { field: GraphCms_UserFieldsEnum; }; - export type GraphCms_UserGroupConnectionSumArgs = { field: GraphCms_UserFieldsEnum; }; - export type GraphCms_UserGroupConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -4790,27 +5893,22 @@ export type GraphCms_PortfolioItemConnection = { group: Array; }; - export type GraphCms_PortfolioItemConnectionDistinctArgs = { field: GraphCms_PortfolioItemFieldsEnum; }; - export type GraphCms_PortfolioItemConnectionMaxArgs = { field: GraphCms_PortfolioItemFieldsEnum; }; - export type GraphCms_PortfolioItemConnectionMinArgs = { field: GraphCms_PortfolioItemFieldsEnum; }; - export type GraphCms_PortfolioItemConnectionSumArgs = { field: GraphCms_PortfolioItemFieldsEnum; }; - export type GraphCms_PortfolioItemConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -4827,122 +5925,26 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'remoteTypeName' | 'remoteId' | 'stage' - | 'createdAt' - | 'updatedAt' | 'publishedAt' + | 'updatedAt' + | 'createdAt' | 'title' | 'description' - | 'techSheet' | 'about___remoteTypeName' | 'about___raw' | 'about___html' | 'about___markdown' | 'about___text' - | 'createdBy___remoteTypeName' - | 'createdBy___remoteId' - | 'createdBy___stage' - | 'createdBy___createdAt' - | 'createdBy___updatedAt' - | 'createdBy___publishedAt' - | 'createdBy___name' - | 'createdBy___picture' - | 'createdBy___isActive' - | 'createdBy___kind' - | 'createdBy___id' - | 'createdBy___parent___id' - | 'createdBy___parent___parent___id' - | 'createdBy___parent___parent___children' - | 'createdBy___parent___children' - | 'createdBy___parent___children___id' - | 'createdBy___parent___children___children' - | 'createdBy___parent___internal___content' - | 'createdBy___parent___internal___contentDigest' - | 'createdBy___parent___internal___description' - | 'createdBy___parent___internal___fieldOwners' - | 'createdBy___parent___internal___ignoreType' - | 'createdBy___parent___internal___mediaType' - | 'createdBy___parent___internal___owner' - | 'createdBy___parent___internal___type' - | 'createdBy___children' - | 'createdBy___children___id' - | 'createdBy___children___parent___id' - | 'createdBy___children___parent___children' - | 'createdBy___children___children' - | 'createdBy___children___children___id' - | 'createdBy___children___children___children' - | 'createdBy___children___internal___content' - | 'createdBy___children___internal___contentDigest' - | 'createdBy___children___internal___description' - | 'createdBy___children___internal___fieldOwners' - | 'createdBy___children___internal___ignoreType' - | 'createdBy___children___internal___mediaType' - | 'createdBy___children___internal___owner' - | 'createdBy___children___internal___type' - | 'createdBy___internal___content' - | 'createdBy___internal___contentDigest' - | 'createdBy___internal___description' - | 'createdBy___internal___fieldOwners' - | 'createdBy___internal___ignoreType' - | 'createdBy___internal___mediaType' - | 'createdBy___internal___owner' - | 'createdBy___internal___type' - | 'updatedBy___remoteTypeName' - | 'updatedBy___remoteId' - | 'updatedBy___stage' - | 'updatedBy___createdAt' - | 'updatedBy___updatedAt' - | 'updatedBy___publishedAt' - | 'updatedBy___name' - | 'updatedBy___picture' - | 'updatedBy___isActive' - | 'updatedBy___kind' - | 'updatedBy___id' - | 'updatedBy___parent___id' - | 'updatedBy___parent___parent___id' - | 'updatedBy___parent___parent___children' - | 'updatedBy___parent___children' - | 'updatedBy___parent___children___id' - | 'updatedBy___parent___children___children' - | 'updatedBy___parent___internal___content' - | 'updatedBy___parent___internal___contentDigest' - | 'updatedBy___parent___internal___description' - | 'updatedBy___parent___internal___fieldOwners' - | 'updatedBy___parent___internal___ignoreType' - | 'updatedBy___parent___internal___mediaType' - | 'updatedBy___parent___internal___owner' - | 'updatedBy___parent___internal___type' - | 'updatedBy___children' - | 'updatedBy___children___id' - | 'updatedBy___children___parent___id' - | 'updatedBy___children___parent___children' - | 'updatedBy___children___children' - | 'updatedBy___children___children___id' - | 'updatedBy___children___children___children' - | 'updatedBy___children___internal___content' - | 'updatedBy___children___internal___contentDigest' - | 'updatedBy___children___internal___description' - | 'updatedBy___children___internal___fieldOwners' - | 'updatedBy___children___internal___ignoreType' - | 'updatedBy___children___internal___mediaType' - | 'updatedBy___children___internal___owner' - | 'updatedBy___children___internal___type' - | 'updatedBy___internal___content' - | 'updatedBy___internal___contentDigest' - | 'updatedBy___internal___description' - | 'updatedBy___internal___fieldOwners' - | 'updatedBy___internal___ignoreType' - | 'updatedBy___internal___mediaType' - | 'updatedBy___internal___owner' - | 'updatedBy___internal___type' + | 'techSheet' | 'publishedBy___remoteTypeName' | 'publishedBy___remoteId' | 'publishedBy___stage' - | 'publishedBy___createdAt' - | 'publishedBy___updatedAt' - | 'publishedBy___publishedAt' - | 'publishedBy___name' - | 'publishedBy___picture' | 'publishedBy___isActive' + | 'publishedBy___picture' + | 'publishedBy___name' + | 'publishedBy___publishedAt' + | 'publishedBy___updatedAt' + | 'publishedBy___createdAt' | 'publishedBy___kind' | 'publishedBy___id' | 'publishedBy___parent___id' @@ -4959,6 +5961,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'publishedBy___parent___internal___mediaType' | 'publishedBy___parent___internal___owner' | 'publishedBy___parent___internal___type' + | 'publishedBy___parent___internal___contentFilePath' | 'publishedBy___children' | 'publishedBy___children___id' | 'publishedBy___children___parent___id' @@ -4974,6 +5977,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'publishedBy___children___internal___mediaType' | 'publishedBy___children___internal___owner' | 'publishedBy___children___internal___type' + | 'publishedBy___children___internal___contentFilePath' | 'publishedBy___internal___content' | 'publishedBy___internal___contentDigest' | 'publishedBy___internal___description' @@ -4982,77 +5986,132 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'publishedBy___internal___mediaType' | 'publishedBy___internal___owner' | 'publishedBy___internal___type' - | 'carouselImages' - | 'carouselImages___remoteTypeName' - | 'carouselImages___remoteId' - | 'carouselImages___locale' - | 'carouselImages___stage' - | 'carouselImages___createdAt' - | 'carouselImages___updatedAt' - | 'carouselImages___publishedAt' - | 'carouselImages___handle' - | 'carouselImages___fileName' - | 'carouselImages___height' - | 'carouselImages___width' - | 'carouselImages___size' - | 'carouselImages___mimeType' - | 'carouselImages___createdBy___remoteTypeName' - | 'carouselImages___createdBy___remoteId' - | 'carouselImages___createdBy___stage' - | 'carouselImages___createdBy___createdAt' - | 'carouselImages___createdBy___updatedAt' - | 'carouselImages___createdBy___publishedAt' - | 'carouselImages___createdBy___name' - | 'carouselImages___createdBy___picture' - | 'carouselImages___createdBy___isActive' - | 'carouselImages___createdBy___kind' - | 'carouselImages___createdBy___id' - | 'carouselImages___createdBy___parent___id' - | 'carouselImages___createdBy___parent___children' - | 'carouselImages___createdBy___children' - | 'carouselImages___createdBy___children___id' - | 'carouselImages___createdBy___children___children' - | 'carouselImages___createdBy___internal___content' - | 'carouselImages___createdBy___internal___contentDigest' - | 'carouselImages___createdBy___internal___description' - | 'carouselImages___createdBy___internal___fieldOwners' - | 'carouselImages___createdBy___internal___ignoreType' - | 'carouselImages___createdBy___internal___mediaType' - | 'carouselImages___createdBy___internal___owner' - | 'carouselImages___createdBy___internal___type' - | 'carouselImages___updatedBy___remoteTypeName' - | 'carouselImages___updatedBy___remoteId' - | 'carouselImages___updatedBy___stage' - | 'carouselImages___updatedBy___createdAt' - | 'carouselImages___updatedBy___updatedAt' - | 'carouselImages___updatedBy___publishedAt' - | 'carouselImages___updatedBy___name' - | 'carouselImages___updatedBy___picture' - | 'carouselImages___updatedBy___isActive' - | 'carouselImages___updatedBy___kind' - | 'carouselImages___updatedBy___id' - | 'carouselImages___updatedBy___parent___id' - | 'carouselImages___updatedBy___parent___children' - | 'carouselImages___updatedBy___children' - | 'carouselImages___updatedBy___children___id' - | 'carouselImages___updatedBy___children___children' - | 'carouselImages___updatedBy___internal___content' - | 'carouselImages___updatedBy___internal___contentDigest' - | 'carouselImages___updatedBy___internal___description' - | 'carouselImages___updatedBy___internal___fieldOwners' - | 'carouselImages___updatedBy___internal___ignoreType' - | 'carouselImages___updatedBy___internal___mediaType' - | 'carouselImages___updatedBy___internal___owner' - | 'carouselImages___updatedBy___internal___type' + | 'publishedBy___internal___contentFilePath' + | 'updatedBy___remoteTypeName' + | 'updatedBy___remoteId' + | 'updatedBy___stage' + | 'updatedBy___isActive' + | 'updatedBy___picture' + | 'updatedBy___name' + | 'updatedBy___publishedAt' + | 'updatedBy___updatedAt' + | 'updatedBy___createdAt' + | 'updatedBy___kind' + | 'updatedBy___id' + | 'updatedBy___parent___id' + | 'updatedBy___parent___parent___id' + | 'updatedBy___parent___parent___children' + | 'updatedBy___parent___children' + | 'updatedBy___parent___children___id' + | 'updatedBy___parent___children___children' + | 'updatedBy___parent___internal___content' + | 'updatedBy___parent___internal___contentDigest' + | 'updatedBy___parent___internal___description' + | 'updatedBy___parent___internal___fieldOwners' + | 'updatedBy___parent___internal___ignoreType' + | 'updatedBy___parent___internal___mediaType' + | 'updatedBy___parent___internal___owner' + | 'updatedBy___parent___internal___type' + | 'updatedBy___parent___internal___contentFilePath' + | 'updatedBy___children' + | 'updatedBy___children___id' + | 'updatedBy___children___parent___id' + | 'updatedBy___children___parent___children' + | 'updatedBy___children___children' + | 'updatedBy___children___children___id' + | 'updatedBy___children___children___children' + | 'updatedBy___children___internal___content' + | 'updatedBy___children___internal___contentDigest' + | 'updatedBy___children___internal___description' + | 'updatedBy___children___internal___fieldOwners' + | 'updatedBy___children___internal___ignoreType' + | 'updatedBy___children___internal___mediaType' + | 'updatedBy___children___internal___owner' + | 'updatedBy___children___internal___type' + | 'updatedBy___children___internal___contentFilePath' + | 'updatedBy___internal___content' + | 'updatedBy___internal___contentDigest' + | 'updatedBy___internal___description' + | 'updatedBy___internal___fieldOwners' + | 'updatedBy___internal___ignoreType' + | 'updatedBy___internal___mediaType' + | 'updatedBy___internal___owner' + | 'updatedBy___internal___type' + | 'updatedBy___internal___contentFilePath' + | 'createdBy___remoteTypeName' + | 'createdBy___remoteId' + | 'createdBy___stage' + | 'createdBy___isActive' + | 'createdBy___picture' + | 'createdBy___name' + | 'createdBy___publishedAt' + | 'createdBy___updatedAt' + | 'createdBy___createdAt' + | 'createdBy___kind' + | 'createdBy___id' + | 'createdBy___parent___id' + | 'createdBy___parent___parent___id' + | 'createdBy___parent___parent___children' + | 'createdBy___parent___children' + | 'createdBy___parent___children___id' + | 'createdBy___parent___children___children' + | 'createdBy___parent___internal___content' + | 'createdBy___parent___internal___contentDigest' + | 'createdBy___parent___internal___description' + | 'createdBy___parent___internal___fieldOwners' + | 'createdBy___parent___internal___ignoreType' + | 'createdBy___parent___internal___mediaType' + | 'createdBy___parent___internal___owner' + | 'createdBy___parent___internal___type' + | 'createdBy___parent___internal___contentFilePath' + | 'createdBy___children' + | 'createdBy___children___id' + | 'createdBy___children___parent___id' + | 'createdBy___children___parent___children' + | 'createdBy___children___children' + | 'createdBy___children___children___id' + | 'createdBy___children___children___children' + | 'createdBy___children___internal___content' + | 'createdBy___children___internal___contentDigest' + | 'createdBy___children___internal___description' + | 'createdBy___children___internal___fieldOwners' + | 'createdBy___children___internal___ignoreType' + | 'createdBy___children___internal___mediaType' + | 'createdBy___children___internal___owner' + | 'createdBy___children___internal___type' + | 'createdBy___children___internal___contentFilePath' + | 'createdBy___internal___content' + | 'createdBy___internal___contentDigest' + | 'createdBy___internal___description' + | 'createdBy___internal___fieldOwners' + | 'createdBy___internal___ignoreType' + | 'createdBy___internal___mediaType' + | 'createdBy___internal___owner' + | 'createdBy___internal___type' + | 'createdBy___internal___contentFilePath' + | 'carouselImages' + | 'carouselImages___remoteTypeName' + | 'carouselImages___remoteId' + | 'carouselImages___locale' + | 'carouselImages___stage' + | 'carouselImages___mimeType' + | 'carouselImages___size' + | 'carouselImages___width' + | 'carouselImages___height' + | 'carouselImages___fileName' + | 'carouselImages___handle' + | 'carouselImages___publishedAt' + | 'carouselImages___updatedAt' + | 'carouselImages___createdAt' | 'carouselImages___publishedBy___remoteTypeName' | 'carouselImages___publishedBy___remoteId' | 'carouselImages___publishedBy___stage' - | 'carouselImages___publishedBy___createdAt' - | 'carouselImages___publishedBy___updatedAt' - | 'carouselImages___publishedBy___publishedAt' - | 'carouselImages___publishedBy___name' - | 'carouselImages___publishedBy___picture' | 'carouselImages___publishedBy___isActive' + | 'carouselImages___publishedBy___picture' + | 'carouselImages___publishedBy___name' + | 'carouselImages___publishedBy___publishedAt' + | 'carouselImages___publishedBy___updatedAt' + | 'carouselImages___publishedBy___createdAt' | 'carouselImages___publishedBy___kind' | 'carouselImages___publishedBy___id' | 'carouselImages___publishedBy___parent___id' @@ -5068,72 +6127,126 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'carouselImages___publishedBy___internal___mediaType' | 'carouselImages___publishedBy___internal___owner' | 'carouselImages___publishedBy___internal___type' + | 'carouselImages___publishedBy___internal___contentFilePath' + | 'carouselImages___updatedBy___remoteTypeName' + | 'carouselImages___updatedBy___remoteId' + | 'carouselImages___updatedBy___stage' + | 'carouselImages___updatedBy___isActive' + | 'carouselImages___updatedBy___picture' + | 'carouselImages___updatedBy___name' + | 'carouselImages___updatedBy___publishedAt' + | 'carouselImages___updatedBy___updatedAt' + | 'carouselImages___updatedBy___createdAt' + | 'carouselImages___updatedBy___kind' + | 'carouselImages___updatedBy___id' + | 'carouselImages___updatedBy___parent___id' + | 'carouselImages___updatedBy___parent___children' + | 'carouselImages___updatedBy___children' + | 'carouselImages___updatedBy___children___id' + | 'carouselImages___updatedBy___children___children' + | 'carouselImages___updatedBy___internal___content' + | 'carouselImages___updatedBy___internal___contentDigest' + | 'carouselImages___updatedBy___internal___description' + | 'carouselImages___updatedBy___internal___fieldOwners' + | 'carouselImages___updatedBy___internal___ignoreType' + | 'carouselImages___updatedBy___internal___mediaType' + | 'carouselImages___updatedBy___internal___owner' + | 'carouselImages___updatedBy___internal___type' + | 'carouselImages___updatedBy___internal___contentFilePath' + | 'carouselImages___createdBy___remoteTypeName' + | 'carouselImages___createdBy___remoteId' + | 'carouselImages___createdBy___stage' + | 'carouselImages___createdBy___isActive' + | 'carouselImages___createdBy___picture' + | 'carouselImages___createdBy___name' + | 'carouselImages___createdBy___publishedAt' + | 'carouselImages___createdBy___updatedAt' + | 'carouselImages___createdBy___createdAt' + | 'carouselImages___createdBy___kind' + | 'carouselImages___createdBy___id' + | 'carouselImages___createdBy___parent___id' + | 'carouselImages___createdBy___parent___children' + | 'carouselImages___createdBy___children' + | 'carouselImages___createdBy___children___id' + | 'carouselImages___createdBy___children___children' + | 'carouselImages___createdBy___internal___content' + | 'carouselImages___createdBy___internal___contentDigest' + | 'carouselImages___createdBy___internal___description' + | 'carouselImages___createdBy___internal___fieldOwners' + | 'carouselImages___createdBy___internal___ignoreType' + | 'carouselImages___createdBy___internal___mediaType' + | 'carouselImages___createdBy___internal___owner' + | 'carouselImages___createdBy___internal___type' + | 'carouselImages___createdBy___internal___contentFilePath' | 'carouselImages___carouselImagesPortfolioItem' | 'carouselImages___carouselImagesPortfolioItem___remoteTypeName' | 'carouselImages___carouselImagesPortfolioItem___remoteId' | 'carouselImages___carouselImagesPortfolioItem___stage' - | 'carouselImages___carouselImagesPortfolioItem___createdAt' - | 'carouselImages___carouselImagesPortfolioItem___updatedAt' | 'carouselImages___carouselImagesPortfolioItem___publishedAt' + | 'carouselImages___carouselImagesPortfolioItem___updatedAt' + | 'carouselImages___carouselImagesPortfolioItem___createdAt' | 'carouselImages___carouselImagesPortfolioItem___title' | 'carouselImages___carouselImagesPortfolioItem___description' - | 'carouselImages___carouselImagesPortfolioItem___techSheet' | 'carouselImages___carouselImagesPortfolioItem___about___remoteTypeName' | 'carouselImages___carouselImagesPortfolioItem___about___raw' | 'carouselImages___carouselImagesPortfolioItem___about___html' | 'carouselImages___carouselImagesPortfolioItem___about___markdown' | 'carouselImages___carouselImagesPortfolioItem___about___text' - | 'carouselImages___carouselImagesPortfolioItem___createdBy___remoteTypeName' - | 'carouselImages___carouselImagesPortfolioItem___createdBy___remoteId' - | 'carouselImages___carouselImagesPortfolioItem___createdBy___stage' - | 'carouselImages___carouselImagesPortfolioItem___createdBy___createdAt' - | 'carouselImages___carouselImagesPortfolioItem___createdBy___updatedAt' - | 'carouselImages___carouselImagesPortfolioItem___createdBy___publishedAt' - | 'carouselImages___carouselImagesPortfolioItem___createdBy___name' - | 'carouselImages___carouselImagesPortfolioItem___createdBy___picture' - | 'carouselImages___carouselImagesPortfolioItem___createdBy___isActive' - | 'carouselImages___carouselImagesPortfolioItem___createdBy___kind' - | 'carouselImages___carouselImagesPortfolioItem___createdBy___id' - | 'carouselImages___carouselImagesPortfolioItem___createdBy___children' - | 'carouselImages___carouselImagesPortfolioItem___updatedBy___remoteTypeName' - | 'carouselImages___carouselImagesPortfolioItem___updatedBy___remoteId' - | 'carouselImages___carouselImagesPortfolioItem___updatedBy___stage' - | 'carouselImages___carouselImagesPortfolioItem___updatedBy___createdAt' - | 'carouselImages___carouselImagesPortfolioItem___updatedBy___updatedAt' - | 'carouselImages___carouselImagesPortfolioItem___updatedBy___publishedAt' - | 'carouselImages___carouselImagesPortfolioItem___updatedBy___name' - | 'carouselImages___carouselImagesPortfolioItem___updatedBy___picture' - | 'carouselImages___carouselImagesPortfolioItem___updatedBy___isActive' - | 'carouselImages___carouselImagesPortfolioItem___updatedBy___kind' - | 'carouselImages___carouselImagesPortfolioItem___updatedBy___id' - | 'carouselImages___carouselImagesPortfolioItem___updatedBy___children' + | 'carouselImages___carouselImagesPortfolioItem___techSheet' | 'carouselImages___carouselImagesPortfolioItem___publishedBy___remoteTypeName' | 'carouselImages___carouselImagesPortfolioItem___publishedBy___remoteId' | 'carouselImages___carouselImagesPortfolioItem___publishedBy___stage' - | 'carouselImages___carouselImagesPortfolioItem___publishedBy___createdAt' - | 'carouselImages___carouselImagesPortfolioItem___publishedBy___updatedAt' - | 'carouselImages___carouselImagesPortfolioItem___publishedBy___publishedAt' - | 'carouselImages___carouselImagesPortfolioItem___publishedBy___name' - | 'carouselImages___carouselImagesPortfolioItem___publishedBy___picture' | 'carouselImages___carouselImagesPortfolioItem___publishedBy___isActive' + | 'carouselImages___carouselImagesPortfolioItem___publishedBy___picture' + | 'carouselImages___carouselImagesPortfolioItem___publishedBy___name' + | 'carouselImages___carouselImagesPortfolioItem___publishedBy___publishedAt' + | 'carouselImages___carouselImagesPortfolioItem___publishedBy___updatedAt' + | 'carouselImages___carouselImagesPortfolioItem___publishedBy___createdAt' | 'carouselImages___carouselImagesPortfolioItem___publishedBy___kind' | 'carouselImages___carouselImagesPortfolioItem___publishedBy___id' | 'carouselImages___carouselImagesPortfolioItem___publishedBy___children' - | 'carouselImages___carouselImagesPortfolioItem___carouselImages' - | 'carouselImages___carouselImagesPortfolioItem___carouselImages___remoteTypeName' - | 'carouselImages___carouselImagesPortfolioItem___carouselImages___remoteId' - | 'carouselImages___carouselImagesPortfolioItem___carouselImages___locale' - | 'carouselImages___carouselImagesPortfolioItem___carouselImages___stage' - | 'carouselImages___carouselImagesPortfolioItem___carouselImages___createdAt' - | 'carouselImages___carouselImagesPortfolioItem___carouselImages___updatedAt' - | 'carouselImages___carouselImagesPortfolioItem___carouselImages___publishedAt' - | 'carouselImages___carouselImagesPortfolioItem___carouselImages___handle' - | 'carouselImages___carouselImagesPortfolioItem___carouselImages___fileName' - | 'carouselImages___carouselImagesPortfolioItem___carouselImages___height' - | 'carouselImages___carouselImagesPortfolioItem___carouselImages___width' - | 'carouselImages___carouselImagesPortfolioItem___carouselImages___size' + | 'carouselImages___carouselImagesPortfolioItem___updatedBy___remoteTypeName' + | 'carouselImages___carouselImagesPortfolioItem___updatedBy___remoteId' + | 'carouselImages___carouselImagesPortfolioItem___updatedBy___stage' + | 'carouselImages___carouselImagesPortfolioItem___updatedBy___isActive' + | 'carouselImages___carouselImagesPortfolioItem___updatedBy___picture' + | 'carouselImages___carouselImagesPortfolioItem___updatedBy___name' + | 'carouselImages___carouselImagesPortfolioItem___updatedBy___publishedAt' + | 'carouselImages___carouselImagesPortfolioItem___updatedBy___updatedAt' + | 'carouselImages___carouselImagesPortfolioItem___updatedBy___createdAt' + | 'carouselImages___carouselImagesPortfolioItem___updatedBy___kind' + | 'carouselImages___carouselImagesPortfolioItem___updatedBy___id' + | 'carouselImages___carouselImagesPortfolioItem___updatedBy___children' + | 'carouselImages___carouselImagesPortfolioItem___createdBy___remoteTypeName' + | 'carouselImages___carouselImagesPortfolioItem___createdBy___remoteId' + | 'carouselImages___carouselImagesPortfolioItem___createdBy___stage' + | 'carouselImages___carouselImagesPortfolioItem___createdBy___isActive' + | 'carouselImages___carouselImagesPortfolioItem___createdBy___picture' + | 'carouselImages___carouselImagesPortfolioItem___createdBy___name' + | 'carouselImages___carouselImagesPortfolioItem___createdBy___publishedAt' + | 'carouselImages___carouselImagesPortfolioItem___createdBy___updatedAt' + | 'carouselImages___carouselImagesPortfolioItem___createdBy___createdAt' + | 'carouselImages___carouselImagesPortfolioItem___createdBy___kind' + | 'carouselImages___carouselImagesPortfolioItem___createdBy___id' + | 'carouselImages___carouselImagesPortfolioItem___createdBy___children' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages___remoteTypeName' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages___remoteId' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages___locale' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages___stage' | 'carouselImages___carouselImagesPortfolioItem___carouselImages___mimeType' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages___size' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages___width' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages___height' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages___fileName' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages___handle' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages___publishedAt' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages___updatedAt' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages___createdAt' | 'carouselImages___carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages___iconSpeciality' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages___iconTechnology' + | 'carouselImages___carouselImagesPortfolioItem___carouselImages___headerImageBlog' | 'carouselImages___carouselImagesPortfolioItem___carouselImages___scheduledIn' | 'carouselImages___carouselImagesPortfolioItem___carouselImages___url' | 'carouselImages___carouselImagesPortfolioItem___carouselImages___id' @@ -5142,9 +6255,9 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'carouselImages___carouselImagesPortfolioItem___links___remoteTypeName' | 'carouselImages___carouselImagesPortfolioItem___links___remoteId' | 'carouselImages___carouselImagesPortfolioItem___links___stage' - | 'carouselImages___carouselImagesPortfolioItem___links___createdAt' - | 'carouselImages___carouselImagesPortfolioItem___links___updatedAt' | 'carouselImages___carouselImagesPortfolioItem___links___publishedAt' + | 'carouselImages___carouselImagesPortfolioItem___links___updatedAt' + | 'carouselImages___carouselImagesPortfolioItem___links___createdAt' | 'carouselImages___carouselImagesPortfolioItem___links___title' | 'carouselImages___carouselImagesPortfolioItem___links___url' | 'carouselImages___carouselImagesPortfolioItem___links___type' @@ -5155,12 +6268,12 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___remoteTypeName' | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___remoteId' | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___stage' - | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___createdAt' - | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___updatedAt' - | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___publishedAt' - | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___description' - | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___errorMessage' | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___rawPayload' + | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___errorMessage' + | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___description' + | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___publishedAt' + | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___updatedAt' + | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___createdAt' | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___status' | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___id' | 'carouselImages___carouselImagesPortfolioItem___scheduledIn___children' @@ -5179,68 +6292,370 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'carouselImages___carouselImagesPortfolioItem___internal___mediaType' | 'carouselImages___carouselImagesPortfolioItem___internal___owner' | 'carouselImages___carouselImagesPortfolioItem___internal___type' + | 'carouselImages___carouselImagesPortfolioItem___internal___contentFilePath' + | 'carouselImages___iconSpeciality' + | 'carouselImages___iconSpeciality___remoteTypeName' + | 'carouselImages___iconSpeciality___remoteId' + | 'carouselImages___iconSpeciality___stage' + | 'carouselImages___iconSpeciality___publishedAt' + | 'carouselImages___iconSpeciality___updatedAt' + | 'carouselImages___iconSpeciality___createdAt' + | 'carouselImages___iconSpeciality___title' + | 'carouselImages___iconSpeciality___description___remoteTypeName' + | 'carouselImages___iconSpeciality___description___raw' + | 'carouselImages___iconSpeciality___description___html' + | 'carouselImages___iconSpeciality___description___markdown' + | 'carouselImages___iconSpeciality___description___text' + | 'carouselImages___iconSpeciality___publishedBy___remoteTypeName' + | 'carouselImages___iconSpeciality___publishedBy___remoteId' + | 'carouselImages___iconSpeciality___publishedBy___stage' + | 'carouselImages___iconSpeciality___publishedBy___isActive' + | 'carouselImages___iconSpeciality___publishedBy___picture' + | 'carouselImages___iconSpeciality___publishedBy___name' + | 'carouselImages___iconSpeciality___publishedBy___publishedAt' + | 'carouselImages___iconSpeciality___publishedBy___updatedAt' + | 'carouselImages___iconSpeciality___publishedBy___createdAt' + | 'carouselImages___iconSpeciality___publishedBy___kind' + | 'carouselImages___iconSpeciality___publishedBy___id' + | 'carouselImages___iconSpeciality___publishedBy___children' + | 'carouselImages___iconSpeciality___updatedBy___remoteTypeName' + | 'carouselImages___iconSpeciality___updatedBy___remoteId' + | 'carouselImages___iconSpeciality___updatedBy___stage' + | 'carouselImages___iconSpeciality___updatedBy___isActive' + | 'carouselImages___iconSpeciality___updatedBy___picture' + | 'carouselImages___iconSpeciality___updatedBy___name' + | 'carouselImages___iconSpeciality___updatedBy___publishedAt' + | 'carouselImages___iconSpeciality___updatedBy___updatedAt' + | 'carouselImages___iconSpeciality___updatedBy___createdAt' + | 'carouselImages___iconSpeciality___updatedBy___kind' + | 'carouselImages___iconSpeciality___updatedBy___id' + | 'carouselImages___iconSpeciality___updatedBy___children' + | 'carouselImages___iconSpeciality___createdBy___remoteTypeName' + | 'carouselImages___iconSpeciality___createdBy___remoteId' + | 'carouselImages___iconSpeciality___createdBy___stage' + | 'carouselImages___iconSpeciality___createdBy___isActive' + | 'carouselImages___iconSpeciality___createdBy___picture' + | 'carouselImages___iconSpeciality___createdBy___name' + | 'carouselImages___iconSpeciality___createdBy___publishedAt' + | 'carouselImages___iconSpeciality___createdBy___updatedAt' + | 'carouselImages___iconSpeciality___createdBy___createdAt' + | 'carouselImages___iconSpeciality___createdBy___kind' + | 'carouselImages___iconSpeciality___createdBy___id' + | 'carouselImages___iconSpeciality___createdBy___children' + | 'carouselImages___iconSpeciality___icon___remoteTypeName' + | 'carouselImages___iconSpeciality___icon___remoteId' + | 'carouselImages___iconSpeciality___icon___locale' + | 'carouselImages___iconSpeciality___icon___stage' + | 'carouselImages___iconSpeciality___icon___mimeType' + | 'carouselImages___iconSpeciality___icon___size' + | 'carouselImages___iconSpeciality___icon___width' + | 'carouselImages___iconSpeciality___icon___height' + | 'carouselImages___iconSpeciality___icon___fileName' + | 'carouselImages___iconSpeciality___icon___handle' + | 'carouselImages___iconSpeciality___icon___publishedAt' + | 'carouselImages___iconSpeciality___icon___updatedAt' + | 'carouselImages___iconSpeciality___icon___createdAt' + | 'carouselImages___iconSpeciality___icon___carouselImagesPortfolioItem' + | 'carouselImages___iconSpeciality___icon___iconSpeciality' + | 'carouselImages___iconSpeciality___icon___iconTechnology' + | 'carouselImages___iconSpeciality___icon___headerImageBlog' + | 'carouselImages___iconSpeciality___icon___scheduledIn' + | 'carouselImages___iconSpeciality___icon___url' + | 'carouselImages___iconSpeciality___icon___id' + | 'carouselImages___iconSpeciality___icon___children' + | 'carouselImages___iconSpeciality___scheduledIn' + | 'carouselImages___iconSpeciality___scheduledIn___remoteTypeName' + | 'carouselImages___iconSpeciality___scheduledIn___remoteId' + | 'carouselImages___iconSpeciality___scheduledIn___stage' + | 'carouselImages___iconSpeciality___scheduledIn___rawPayload' + | 'carouselImages___iconSpeciality___scheduledIn___errorMessage' + | 'carouselImages___iconSpeciality___scheduledIn___description' + | 'carouselImages___iconSpeciality___scheduledIn___publishedAt' + | 'carouselImages___iconSpeciality___scheduledIn___updatedAt' + | 'carouselImages___iconSpeciality___scheduledIn___createdAt' + | 'carouselImages___iconSpeciality___scheduledIn___status' + | 'carouselImages___iconSpeciality___scheduledIn___id' + | 'carouselImages___iconSpeciality___scheduledIn___children' + | 'carouselImages___iconSpeciality___id' + | 'carouselImages___iconSpeciality___parent___id' + | 'carouselImages___iconSpeciality___parent___children' + | 'carouselImages___iconSpeciality___children' + | 'carouselImages___iconSpeciality___children___id' + | 'carouselImages___iconSpeciality___children___children' + | 'carouselImages___iconSpeciality___internal___content' + | 'carouselImages___iconSpeciality___internal___contentDigest' + | 'carouselImages___iconSpeciality___internal___description' + | 'carouselImages___iconSpeciality___internal___fieldOwners' + | 'carouselImages___iconSpeciality___internal___ignoreType' + | 'carouselImages___iconSpeciality___internal___mediaType' + | 'carouselImages___iconSpeciality___internal___owner' + | 'carouselImages___iconSpeciality___internal___type' + | 'carouselImages___iconSpeciality___internal___contentFilePath' + | 'carouselImages___iconTechnology' + | 'carouselImages___iconTechnology___remoteTypeName' + | 'carouselImages___iconTechnology___remoteId' + | 'carouselImages___iconTechnology___stage' + | 'carouselImages___iconTechnology___publishedAt' + | 'carouselImages___iconTechnology___updatedAt' + | 'carouselImages___iconTechnology___createdAt' + | 'carouselImages___iconTechnology___title' + | 'carouselImages___iconTechnology___description___remoteTypeName' + | 'carouselImages___iconTechnology___description___raw' + | 'carouselImages___iconTechnology___description___html' + | 'carouselImages___iconTechnology___description___markdown' + | 'carouselImages___iconTechnology___description___text' + | 'carouselImages___iconTechnology___backgroundColor___remoteTypeName' + | 'carouselImages___iconTechnology___backgroundColor___hex' + | 'carouselImages___iconTechnology___backgroundColor___css' + | 'carouselImages___iconTechnology___publishedBy___remoteTypeName' + | 'carouselImages___iconTechnology___publishedBy___remoteId' + | 'carouselImages___iconTechnology___publishedBy___stage' + | 'carouselImages___iconTechnology___publishedBy___isActive' + | 'carouselImages___iconTechnology___publishedBy___picture' + | 'carouselImages___iconTechnology___publishedBy___name' + | 'carouselImages___iconTechnology___publishedBy___publishedAt' + | 'carouselImages___iconTechnology___publishedBy___updatedAt' + | 'carouselImages___iconTechnology___publishedBy___createdAt' + | 'carouselImages___iconTechnology___publishedBy___kind' + | 'carouselImages___iconTechnology___publishedBy___id' + | 'carouselImages___iconTechnology___publishedBy___children' + | 'carouselImages___iconTechnology___updatedBy___remoteTypeName' + | 'carouselImages___iconTechnology___updatedBy___remoteId' + | 'carouselImages___iconTechnology___updatedBy___stage' + | 'carouselImages___iconTechnology___updatedBy___isActive' + | 'carouselImages___iconTechnology___updatedBy___picture' + | 'carouselImages___iconTechnology___updatedBy___name' + | 'carouselImages___iconTechnology___updatedBy___publishedAt' + | 'carouselImages___iconTechnology___updatedBy___updatedAt' + | 'carouselImages___iconTechnology___updatedBy___createdAt' + | 'carouselImages___iconTechnology___updatedBy___kind' + | 'carouselImages___iconTechnology___updatedBy___id' + | 'carouselImages___iconTechnology___updatedBy___children' + | 'carouselImages___iconTechnology___createdBy___remoteTypeName' + | 'carouselImages___iconTechnology___createdBy___remoteId' + | 'carouselImages___iconTechnology___createdBy___stage' + | 'carouselImages___iconTechnology___createdBy___isActive' + | 'carouselImages___iconTechnology___createdBy___picture' + | 'carouselImages___iconTechnology___createdBy___name' + | 'carouselImages___iconTechnology___createdBy___publishedAt' + | 'carouselImages___iconTechnology___createdBy___updatedAt' + | 'carouselImages___iconTechnology___createdBy___createdAt' + | 'carouselImages___iconTechnology___createdBy___kind' + | 'carouselImages___iconTechnology___createdBy___id' + | 'carouselImages___iconTechnology___createdBy___children' + | 'carouselImages___iconTechnology___icon___remoteTypeName' + | 'carouselImages___iconTechnology___icon___remoteId' + | 'carouselImages___iconTechnology___icon___locale' + | 'carouselImages___iconTechnology___icon___stage' + | 'carouselImages___iconTechnology___icon___mimeType' + | 'carouselImages___iconTechnology___icon___size' + | 'carouselImages___iconTechnology___icon___width' + | 'carouselImages___iconTechnology___icon___height' + | 'carouselImages___iconTechnology___icon___fileName' + | 'carouselImages___iconTechnology___icon___handle' + | 'carouselImages___iconTechnology___icon___publishedAt' + | 'carouselImages___iconTechnology___icon___updatedAt' + | 'carouselImages___iconTechnology___icon___createdAt' + | 'carouselImages___iconTechnology___icon___carouselImagesPortfolioItem' + | 'carouselImages___iconTechnology___icon___iconSpeciality' + | 'carouselImages___iconTechnology___icon___iconTechnology' + | 'carouselImages___iconTechnology___icon___headerImageBlog' + | 'carouselImages___iconTechnology___icon___scheduledIn' + | 'carouselImages___iconTechnology___icon___url' + | 'carouselImages___iconTechnology___icon___id' + | 'carouselImages___iconTechnology___icon___children' + | 'carouselImages___iconTechnology___scheduledIn' + | 'carouselImages___iconTechnology___scheduledIn___remoteTypeName' + | 'carouselImages___iconTechnology___scheduledIn___remoteId' + | 'carouselImages___iconTechnology___scheduledIn___stage' + | 'carouselImages___iconTechnology___scheduledIn___rawPayload' + | 'carouselImages___iconTechnology___scheduledIn___errorMessage' + | 'carouselImages___iconTechnology___scheduledIn___description' + | 'carouselImages___iconTechnology___scheduledIn___publishedAt' + | 'carouselImages___iconTechnology___scheduledIn___updatedAt' + | 'carouselImages___iconTechnology___scheduledIn___createdAt' + | 'carouselImages___iconTechnology___scheduledIn___status' + | 'carouselImages___iconTechnology___scheduledIn___id' + | 'carouselImages___iconTechnology___scheduledIn___children' + | 'carouselImages___iconTechnology___id' + | 'carouselImages___iconTechnology___parent___id' + | 'carouselImages___iconTechnology___parent___children' + | 'carouselImages___iconTechnology___children' + | 'carouselImages___iconTechnology___children___id' + | 'carouselImages___iconTechnology___children___children' + | 'carouselImages___iconTechnology___internal___content' + | 'carouselImages___iconTechnology___internal___contentDigest' + | 'carouselImages___iconTechnology___internal___description' + | 'carouselImages___iconTechnology___internal___fieldOwners' + | 'carouselImages___iconTechnology___internal___ignoreType' + | 'carouselImages___iconTechnology___internal___mediaType' + | 'carouselImages___iconTechnology___internal___owner' + | 'carouselImages___iconTechnology___internal___type' + | 'carouselImages___iconTechnology___internal___contentFilePath' + | 'carouselImages___headerImageBlog' + | 'carouselImages___headerImageBlog___remoteTypeName' + | 'carouselImages___headerImageBlog___remoteId' + | 'carouselImages___headerImageBlog___stage' + | 'carouselImages___headerImageBlog___publishedAt' + | 'carouselImages___headerImageBlog___updatedAt' + | 'carouselImages___headerImageBlog___createdAt' + | 'carouselImages___headerImageBlog___title' + | 'carouselImages___headerImageBlog___description' + | 'carouselImages___headerImageBlog___content___remoteTypeName' + | 'carouselImages___headerImageBlog___content___raw' + | 'carouselImages___headerImageBlog___content___html' + | 'carouselImages___headerImageBlog___content___markdown' + | 'carouselImages___headerImageBlog___content___text' + | 'carouselImages___headerImageBlog___publishedBy___remoteTypeName' + | 'carouselImages___headerImageBlog___publishedBy___remoteId' + | 'carouselImages___headerImageBlog___publishedBy___stage' + | 'carouselImages___headerImageBlog___publishedBy___isActive' + | 'carouselImages___headerImageBlog___publishedBy___picture' + | 'carouselImages___headerImageBlog___publishedBy___name' + | 'carouselImages___headerImageBlog___publishedBy___publishedAt' + | 'carouselImages___headerImageBlog___publishedBy___updatedAt' + | 'carouselImages___headerImageBlog___publishedBy___createdAt' + | 'carouselImages___headerImageBlog___publishedBy___kind' + | 'carouselImages___headerImageBlog___publishedBy___id' + | 'carouselImages___headerImageBlog___publishedBy___children' + | 'carouselImages___headerImageBlog___updatedBy___remoteTypeName' + | 'carouselImages___headerImageBlog___updatedBy___remoteId' + | 'carouselImages___headerImageBlog___updatedBy___stage' + | 'carouselImages___headerImageBlog___updatedBy___isActive' + | 'carouselImages___headerImageBlog___updatedBy___picture' + | 'carouselImages___headerImageBlog___updatedBy___name' + | 'carouselImages___headerImageBlog___updatedBy___publishedAt' + | 'carouselImages___headerImageBlog___updatedBy___updatedAt' + | 'carouselImages___headerImageBlog___updatedBy___createdAt' + | 'carouselImages___headerImageBlog___updatedBy___kind' + | 'carouselImages___headerImageBlog___updatedBy___id' + | 'carouselImages___headerImageBlog___updatedBy___children' + | 'carouselImages___headerImageBlog___createdBy___remoteTypeName' + | 'carouselImages___headerImageBlog___createdBy___remoteId' + | 'carouselImages___headerImageBlog___createdBy___stage' + | 'carouselImages___headerImageBlog___createdBy___isActive' + | 'carouselImages___headerImageBlog___createdBy___picture' + | 'carouselImages___headerImageBlog___createdBy___name' + | 'carouselImages___headerImageBlog___createdBy___publishedAt' + | 'carouselImages___headerImageBlog___createdBy___updatedAt' + | 'carouselImages___headerImageBlog___createdBy___createdAt' + | 'carouselImages___headerImageBlog___createdBy___kind' + | 'carouselImages___headerImageBlog___createdBy___id' + | 'carouselImages___headerImageBlog___createdBy___children' + | 'carouselImages___headerImageBlog___headerImage___remoteTypeName' + | 'carouselImages___headerImageBlog___headerImage___remoteId' + | 'carouselImages___headerImageBlog___headerImage___locale' + | 'carouselImages___headerImageBlog___headerImage___stage' + | 'carouselImages___headerImageBlog___headerImage___mimeType' + | 'carouselImages___headerImageBlog___headerImage___size' + | 'carouselImages___headerImageBlog___headerImage___width' + | 'carouselImages___headerImageBlog___headerImage___height' + | 'carouselImages___headerImageBlog___headerImage___fileName' + | 'carouselImages___headerImageBlog___headerImage___handle' + | 'carouselImages___headerImageBlog___headerImage___publishedAt' + | 'carouselImages___headerImageBlog___headerImage___updatedAt' + | 'carouselImages___headerImageBlog___headerImage___createdAt' + | 'carouselImages___headerImageBlog___headerImage___carouselImagesPortfolioItem' + | 'carouselImages___headerImageBlog___headerImage___iconSpeciality' + | 'carouselImages___headerImageBlog___headerImage___iconTechnology' + | 'carouselImages___headerImageBlog___headerImage___headerImageBlog' + | 'carouselImages___headerImageBlog___headerImage___scheduledIn' + | 'carouselImages___headerImageBlog___headerImage___url' + | 'carouselImages___headerImageBlog___headerImage___id' + | 'carouselImages___headerImageBlog___headerImage___children' + | 'carouselImages___headerImageBlog___type' + | 'carouselImages___headerImageBlog___categories' + | 'carouselImages___headerImageBlog___scheduledIn' + | 'carouselImages___headerImageBlog___scheduledIn___remoteTypeName' + | 'carouselImages___headerImageBlog___scheduledIn___remoteId' + | 'carouselImages___headerImageBlog___scheduledIn___stage' + | 'carouselImages___headerImageBlog___scheduledIn___rawPayload' + | 'carouselImages___headerImageBlog___scheduledIn___errorMessage' + | 'carouselImages___headerImageBlog___scheduledIn___description' + | 'carouselImages___headerImageBlog___scheduledIn___publishedAt' + | 'carouselImages___headerImageBlog___scheduledIn___updatedAt' + | 'carouselImages___headerImageBlog___scheduledIn___createdAt' + | 'carouselImages___headerImageBlog___scheduledIn___status' + | 'carouselImages___headerImageBlog___scheduledIn___id' + | 'carouselImages___headerImageBlog___scheduledIn___children' + | 'carouselImages___headerImageBlog___gatsbyPath' + | 'carouselImages___headerImageBlog___id' + | 'carouselImages___headerImageBlog___parent___id' + | 'carouselImages___headerImageBlog___parent___children' + | 'carouselImages___headerImageBlog___children' + | 'carouselImages___headerImageBlog___children___id' + | 'carouselImages___headerImageBlog___children___children' + | 'carouselImages___headerImageBlog___internal___content' + | 'carouselImages___headerImageBlog___internal___contentDigest' + | 'carouselImages___headerImageBlog___internal___description' + | 'carouselImages___headerImageBlog___internal___fieldOwners' + | 'carouselImages___headerImageBlog___internal___ignoreType' + | 'carouselImages___headerImageBlog___internal___mediaType' + | 'carouselImages___headerImageBlog___internal___owner' + | 'carouselImages___headerImageBlog___internal___type' + | 'carouselImages___headerImageBlog___internal___contentFilePath' | 'carouselImages___scheduledIn' | 'carouselImages___scheduledIn___remoteTypeName' | 'carouselImages___scheduledIn___remoteId' | 'carouselImages___scheduledIn___stage' - | 'carouselImages___scheduledIn___createdAt' - | 'carouselImages___scheduledIn___updatedAt' - | 'carouselImages___scheduledIn___publishedAt' - | 'carouselImages___scheduledIn___description' - | 'carouselImages___scheduledIn___errorMessage' | 'carouselImages___scheduledIn___rawPayload' - | 'carouselImages___scheduledIn___createdBy___remoteTypeName' - | 'carouselImages___scheduledIn___createdBy___remoteId' - | 'carouselImages___scheduledIn___createdBy___stage' - | 'carouselImages___scheduledIn___createdBy___createdAt' - | 'carouselImages___scheduledIn___createdBy___updatedAt' - | 'carouselImages___scheduledIn___createdBy___publishedAt' - | 'carouselImages___scheduledIn___createdBy___name' - | 'carouselImages___scheduledIn___createdBy___picture' - | 'carouselImages___scheduledIn___createdBy___isActive' - | 'carouselImages___scheduledIn___createdBy___kind' - | 'carouselImages___scheduledIn___createdBy___id' - | 'carouselImages___scheduledIn___createdBy___children' - | 'carouselImages___scheduledIn___updatedBy___remoteTypeName' - | 'carouselImages___scheduledIn___updatedBy___remoteId' - | 'carouselImages___scheduledIn___updatedBy___stage' - | 'carouselImages___scheduledIn___updatedBy___createdAt' - | 'carouselImages___scheduledIn___updatedBy___updatedAt' - | 'carouselImages___scheduledIn___updatedBy___publishedAt' - | 'carouselImages___scheduledIn___updatedBy___name' - | 'carouselImages___scheduledIn___updatedBy___picture' - | 'carouselImages___scheduledIn___updatedBy___isActive' - | 'carouselImages___scheduledIn___updatedBy___kind' - | 'carouselImages___scheduledIn___updatedBy___id' - | 'carouselImages___scheduledIn___updatedBy___children' - | 'carouselImages___scheduledIn___publishedBy___remoteTypeName' - | 'carouselImages___scheduledIn___publishedBy___remoteId' - | 'carouselImages___scheduledIn___publishedBy___stage' - | 'carouselImages___scheduledIn___publishedBy___createdAt' - | 'carouselImages___scheduledIn___publishedBy___updatedAt' - | 'carouselImages___scheduledIn___publishedBy___publishedAt' - | 'carouselImages___scheduledIn___publishedBy___name' - | 'carouselImages___scheduledIn___publishedBy___picture' - | 'carouselImages___scheduledIn___publishedBy___isActive' - | 'carouselImages___scheduledIn___publishedBy___kind' - | 'carouselImages___scheduledIn___publishedBy___id' - | 'carouselImages___scheduledIn___publishedBy___children' + | 'carouselImages___scheduledIn___errorMessage' + | 'carouselImages___scheduledIn___description' + | 'carouselImages___scheduledIn___publishedAt' + | 'carouselImages___scheduledIn___updatedAt' + | 'carouselImages___scheduledIn___createdAt' | 'carouselImages___scheduledIn___release___remoteTypeName' | 'carouselImages___scheduledIn___release___remoteId' | 'carouselImages___scheduledIn___release___stage' - | 'carouselImages___scheduledIn___release___createdAt' - | 'carouselImages___scheduledIn___release___updatedAt' - | 'carouselImages___scheduledIn___release___publishedAt' - | 'carouselImages___scheduledIn___release___title' - | 'carouselImages___scheduledIn___release___description' - | 'carouselImages___scheduledIn___release___errorMessage' - | 'carouselImages___scheduledIn___release___isActive' - | 'carouselImages___scheduledIn___release___isImplicit' | 'carouselImages___scheduledIn___release___releaseAt' + | 'carouselImages___scheduledIn___release___isImplicit' + | 'carouselImages___scheduledIn___release___isActive' + | 'carouselImages___scheduledIn___release___errorMessage' + | 'carouselImages___scheduledIn___release___description' + | 'carouselImages___scheduledIn___release___title' + | 'carouselImages___scheduledIn___release___publishedAt' + | 'carouselImages___scheduledIn___release___updatedAt' + | 'carouselImages___scheduledIn___release___createdAt' | 'carouselImages___scheduledIn___release___operations' | 'carouselImages___scheduledIn___release___status' | 'carouselImages___scheduledIn___release___id' | 'carouselImages___scheduledIn___release___children' + | 'carouselImages___scheduledIn___publishedBy___remoteTypeName' + | 'carouselImages___scheduledIn___publishedBy___remoteId' + | 'carouselImages___scheduledIn___publishedBy___stage' + | 'carouselImages___scheduledIn___publishedBy___isActive' + | 'carouselImages___scheduledIn___publishedBy___picture' + | 'carouselImages___scheduledIn___publishedBy___name' + | 'carouselImages___scheduledIn___publishedBy___publishedAt' + | 'carouselImages___scheduledIn___publishedBy___updatedAt' + | 'carouselImages___scheduledIn___publishedBy___createdAt' + | 'carouselImages___scheduledIn___publishedBy___kind' + | 'carouselImages___scheduledIn___publishedBy___id' + | 'carouselImages___scheduledIn___publishedBy___children' + | 'carouselImages___scheduledIn___updatedBy___remoteTypeName' + | 'carouselImages___scheduledIn___updatedBy___remoteId' + | 'carouselImages___scheduledIn___updatedBy___stage' + | 'carouselImages___scheduledIn___updatedBy___isActive' + | 'carouselImages___scheduledIn___updatedBy___picture' + | 'carouselImages___scheduledIn___updatedBy___name' + | 'carouselImages___scheduledIn___updatedBy___publishedAt' + | 'carouselImages___scheduledIn___updatedBy___updatedAt' + | 'carouselImages___scheduledIn___updatedBy___createdAt' + | 'carouselImages___scheduledIn___updatedBy___kind' + | 'carouselImages___scheduledIn___updatedBy___id' + | 'carouselImages___scheduledIn___updatedBy___children' + | 'carouselImages___scheduledIn___createdBy___remoteTypeName' + | 'carouselImages___scheduledIn___createdBy___remoteId' + | 'carouselImages___scheduledIn___createdBy___stage' + | 'carouselImages___scheduledIn___createdBy___isActive' + | 'carouselImages___scheduledIn___createdBy___picture' + | 'carouselImages___scheduledIn___createdBy___name' + | 'carouselImages___scheduledIn___createdBy___publishedAt' + | 'carouselImages___scheduledIn___createdBy___updatedAt' + | 'carouselImages___scheduledIn___createdBy___createdAt' + | 'carouselImages___scheduledIn___createdBy___kind' + | 'carouselImages___scheduledIn___createdBy___id' + | 'carouselImages___scheduledIn___createdBy___children' | 'carouselImages___scheduledIn___status' | 'carouselImages___scheduledIn___id' | 'carouselImages___scheduledIn___parent___id' @@ -5256,6 +6671,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'carouselImages___scheduledIn___internal___mediaType' | 'carouselImages___scheduledIn___internal___owner' | 'carouselImages___scheduledIn___internal___type' + | 'carouselImages___scheduledIn___internal___contentFilePath' | 'carouselImages___url' | 'carouselImages___id' | 'carouselImages___parent___id' @@ -5272,6 +6688,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'carouselImages___parent___internal___mediaType' | 'carouselImages___parent___internal___owner' | 'carouselImages___parent___internal___type' + | 'carouselImages___parent___internal___contentFilePath' | 'carouselImages___children' | 'carouselImages___children___id' | 'carouselImages___children___parent___id' @@ -5287,6 +6704,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'carouselImages___children___internal___mediaType' | 'carouselImages___children___internal___owner' | 'carouselImages___children___internal___type' + | 'carouselImages___children___internal___contentFilePath' | 'carouselImages___internal___content' | 'carouselImages___internal___contentDigest' | 'carouselImages___internal___description' @@ -5295,73 +6713,25 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'carouselImages___internal___mediaType' | 'carouselImages___internal___owner' | 'carouselImages___internal___type' + | 'carouselImages___internal___contentFilePath' | 'links' | 'links___remoteTypeName' | 'links___remoteId' | 'links___stage' - | 'links___createdAt' - | 'links___updatedAt' | 'links___publishedAt' + | 'links___updatedAt' + | 'links___createdAt' | 'links___title' | 'links___url' - | 'links___type' - | 'links___createdBy___remoteTypeName' - | 'links___createdBy___remoteId' - | 'links___createdBy___stage' - | 'links___createdBy___createdAt' - | 'links___createdBy___updatedAt' - | 'links___createdBy___publishedAt' - | 'links___createdBy___name' - | 'links___createdBy___picture' - | 'links___createdBy___isActive' - | 'links___createdBy___kind' - | 'links___createdBy___id' - | 'links___createdBy___parent___id' - | 'links___createdBy___parent___children' - | 'links___createdBy___children' - | 'links___createdBy___children___id' - | 'links___createdBy___children___children' - | 'links___createdBy___internal___content' - | 'links___createdBy___internal___contentDigest' - | 'links___createdBy___internal___description' - | 'links___createdBy___internal___fieldOwners' - | 'links___createdBy___internal___ignoreType' - | 'links___createdBy___internal___mediaType' - | 'links___createdBy___internal___owner' - | 'links___createdBy___internal___type' - | 'links___updatedBy___remoteTypeName' - | 'links___updatedBy___remoteId' - | 'links___updatedBy___stage' - | 'links___updatedBy___createdAt' - | 'links___updatedBy___updatedAt' - | 'links___updatedBy___publishedAt' - | 'links___updatedBy___name' - | 'links___updatedBy___picture' - | 'links___updatedBy___isActive' - | 'links___updatedBy___kind' - | 'links___updatedBy___id' - | 'links___updatedBy___parent___id' - | 'links___updatedBy___parent___children' - | 'links___updatedBy___children' - | 'links___updatedBy___children___id' - | 'links___updatedBy___children___children' - | 'links___updatedBy___internal___content' - | 'links___updatedBy___internal___contentDigest' - | 'links___updatedBy___internal___description' - | 'links___updatedBy___internal___fieldOwners' - | 'links___updatedBy___internal___ignoreType' - | 'links___updatedBy___internal___mediaType' - | 'links___updatedBy___internal___owner' - | 'links___updatedBy___internal___type' | 'links___publishedBy___remoteTypeName' | 'links___publishedBy___remoteId' | 'links___publishedBy___stage' - | 'links___publishedBy___createdAt' - | 'links___publishedBy___updatedAt' - | 'links___publishedBy___publishedAt' - | 'links___publishedBy___name' - | 'links___publishedBy___picture' | 'links___publishedBy___isActive' + | 'links___publishedBy___picture' + | 'links___publishedBy___name' + | 'links___publishedBy___publishedAt' + | 'links___publishedBy___updatedAt' + | 'links___publishedBy___createdAt' | 'links___publishedBy___kind' | 'links___publishedBy___id' | 'links___publishedBy___parent___id' @@ -5377,68 +6747,120 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'links___publishedBy___internal___mediaType' | 'links___publishedBy___internal___owner' | 'links___publishedBy___internal___type' - | 'links___scheduledIn' - | 'links___scheduledIn___remoteTypeName' - | 'links___scheduledIn___remoteId' - | 'links___scheduledIn___stage' - | 'links___scheduledIn___createdAt' - | 'links___scheduledIn___updatedAt' - | 'links___scheduledIn___publishedAt' - | 'links___scheduledIn___description' - | 'links___scheduledIn___errorMessage' - | 'links___scheduledIn___rawPayload' - | 'links___scheduledIn___createdBy___remoteTypeName' - | 'links___scheduledIn___createdBy___remoteId' - | 'links___scheduledIn___createdBy___stage' - | 'links___scheduledIn___createdBy___createdAt' - | 'links___scheduledIn___createdBy___updatedAt' - | 'links___scheduledIn___createdBy___publishedAt' - | 'links___scheduledIn___createdBy___name' - | 'links___scheduledIn___createdBy___picture' - | 'links___scheduledIn___createdBy___isActive' - | 'links___scheduledIn___createdBy___kind' - | 'links___scheduledIn___createdBy___id' - | 'links___scheduledIn___createdBy___children' - | 'links___scheduledIn___updatedBy___remoteTypeName' - | 'links___scheduledIn___updatedBy___remoteId' - | 'links___scheduledIn___updatedBy___stage' - | 'links___scheduledIn___updatedBy___createdAt' - | 'links___scheduledIn___updatedBy___updatedAt' - | 'links___scheduledIn___updatedBy___publishedAt' - | 'links___scheduledIn___updatedBy___name' - | 'links___scheduledIn___updatedBy___picture' - | 'links___scheduledIn___updatedBy___isActive' - | 'links___scheduledIn___updatedBy___kind' - | 'links___scheduledIn___updatedBy___id' - | 'links___scheduledIn___updatedBy___children' - | 'links___scheduledIn___publishedBy___remoteTypeName' - | 'links___scheduledIn___publishedBy___remoteId' - | 'links___scheduledIn___publishedBy___stage' - | 'links___scheduledIn___publishedBy___createdAt' - | 'links___scheduledIn___publishedBy___updatedAt' - | 'links___scheduledIn___publishedBy___publishedAt' - | 'links___scheduledIn___publishedBy___name' - | 'links___scheduledIn___publishedBy___picture' - | 'links___scheduledIn___publishedBy___isActive' - | 'links___scheduledIn___publishedBy___kind' - | 'links___scheduledIn___publishedBy___id' - | 'links___scheduledIn___publishedBy___children' + | 'links___publishedBy___internal___contentFilePath' + | 'links___updatedBy___remoteTypeName' + | 'links___updatedBy___remoteId' + | 'links___updatedBy___stage' + | 'links___updatedBy___isActive' + | 'links___updatedBy___picture' + | 'links___updatedBy___name' + | 'links___updatedBy___publishedAt' + | 'links___updatedBy___updatedAt' + | 'links___updatedBy___createdAt' + | 'links___updatedBy___kind' + | 'links___updatedBy___id' + | 'links___updatedBy___parent___id' + | 'links___updatedBy___parent___children' + | 'links___updatedBy___children' + | 'links___updatedBy___children___id' + | 'links___updatedBy___children___children' + | 'links___updatedBy___internal___content' + | 'links___updatedBy___internal___contentDigest' + | 'links___updatedBy___internal___description' + | 'links___updatedBy___internal___fieldOwners' + | 'links___updatedBy___internal___ignoreType' + | 'links___updatedBy___internal___mediaType' + | 'links___updatedBy___internal___owner' + | 'links___updatedBy___internal___type' + | 'links___updatedBy___internal___contentFilePath' + | 'links___createdBy___remoteTypeName' + | 'links___createdBy___remoteId' + | 'links___createdBy___stage' + | 'links___createdBy___isActive' + | 'links___createdBy___picture' + | 'links___createdBy___name' + | 'links___createdBy___publishedAt' + | 'links___createdBy___updatedAt' + | 'links___createdBy___createdAt' + | 'links___createdBy___kind' + | 'links___createdBy___id' + | 'links___createdBy___parent___id' + | 'links___createdBy___parent___children' + | 'links___createdBy___children' + | 'links___createdBy___children___id' + | 'links___createdBy___children___children' + | 'links___createdBy___internal___content' + | 'links___createdBy___internal___contentDigest' + | 'links___createdBy___internal___description' + | 'links___createdBy___internal___fieldOwners' + | 'links___createdBy___internal___ignoreType' + | 'links___createdBy___internal___mediaType' + | 'links___createdBy___internal___owner' + | 'links___createdBy___internal___type' + | 'links___createdBy___internal___contentFilePath' + | 'links___type' + | 'links___scheduledIn' + | 'links___scheduledIn___remoteTypeName' + | 'links___scheduledIn___remoteId' + | 'links___scheduledIn___stage' + | 'links___scheduledIn___rawPayload' + | 'links___scheduledIn___errorMessage' + | 'links___scheduledIn___description' + | 'links___scheduledIn___publishedAt' + | 'links___scheduledIn___updatedAt' + | 'links___scheduledIn___createdAt' | 'links___scheduledIn___release___remoteTypeName' | 'links___scheduledIn___release___remoteId' | 'links___scheduledIn___release___stage' - | 'links___scheduledIn___release___createdAt' - | 'links___scheduledIn___release___updatedAt' - | 'links___scheduledIn___release___publishedAt' - | 'links___scheduledIn___release___title' - | 'links___scheduledIn___release___description' - | 'links___scheduledIn___release___errorMessage' - | 'links___scheduledIn___release___isActive' - | 'links___scheduledIn___release___isImplicit' | 'links___scheduledIn___release___releaseAt' + | 'links___scheduledIn___release___isImplicit' + | 'links___scheduledIn___release___isActive' + | 'links___scheduledIn___release___errorMessage' + | 'links___scheduledIn___release___description' + | 'links___scheduledIn___release___title' + | 'links___scheduledIn___release___publishedAt' + | 'links___scheduledIn___release___updatedAt' + | 'links___scheduledIn___release___createdAt' | 'links___scheduledIn___release___operations' | 'links___scheduledIn___release___status' | 'links___scheduledIn___release___id' | 'links___scheduledIn___release___children' + | 'links___scheduledIn___publishedBy___remoteTypeName' + | 'links___scheduledIn___publishedBy___remoteId' + | 'links___scheduledIn___publishedBy___stage' + | 'links___scheduledIn___publishedBy___isActive' + | 'links___scheduledIn___publishedBy___picture' + | 'links___scheduledIn___publishedBy___name' + | 'links___scheduledIn___publishedBy___publishedAt' + | 'links___scheduledIn___publishedBy___updatedAt' + | 'links___scheduledIn___publishedBy___createdAt' + | 'links___scheduledIn___publishedBy___kind' + | 'links___scheduledIn___publishedBy___id' + | 'links___scheduledIn___publishedBy___children' + | 'links___scheduledIn___updatedBy___remoteTypeName' + | 'links___scheduledIn___updatedBy___remoteId' + | 'links___scheduledIn___updatedBy___stage' + | 'links___scheduledIn___updatedBy___isActive' + | 'links___scheduledIn___updatedBy___picture' + | 'links___scheduledIn___updatedBy___name' + | 'links___scheduledIn___updatedBy___publishedAt' + | 'links___scheduledIn___updatedBy___updatedAt' + | 'links___scheduledIn___updatedBy___createdAt' + | 'links___scheduledIn___updatedBy___kind' + | 'links___scheduledIn___updatedBy___id' + | 'links___scheduledIn___updatedBy___children' + | 'links___scheduledIn___createdBy___remoteTypeName' + | 'links___scheduledIn___createdBy___remoteId' + | 'links___scheduledIn___createdBy___stage' + | 'links___scheduledIn___createdBy___isActive' + | 'links___scheduledIn___createdBy___picture' + | 'links___scheduledIn___createdBy___name' + | 'links___scheduledIn___createdBy___publishedAt' + | 'links___scheduledIn___createdBy___updatedAt' + | 'links___scheduledIn___createdBy___createdAt' + | 'links___scheduledIn___createdBy___kind' + | 'links___scheduledIn___createdBy___id' + | 'links___scheduledIn___createdBy___children' | 'links___scheduledIn___status' | 'links___scheduledIn___id' | 'links___scheduledIn___parent___id' @@ -5454,6 +6876,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'links___scheduledIn___internal___mediaType' | 'links___scheduledIn___internal___owner' | 'links___scheduledIn___internal___type' + | 'links___scheduledIn___internal___contentFilePath' | 'links___id' | 'links___parent___id' | 'links___parent___parent___id' @@ -5469,6 +6892,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'links___parent___internal___mediaType' | 'links___parent___internal___owner' | 'links___parent___internal___type' + | 'links___parent___internal___contentFilePath' | 'links___children' | 'links___children___id' | 'links___children___parent___id' @@ -5484,6 +6908,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'links___children___internal___mediaType' | 'links___children___internal___owner' | 'links___children___internal___type' + | 'links___children___internal___contentFilePath' | 'links___internal___content' | 'links___internal___contentDigest' | 'links___internal___description' @@ -5492,149 +6917,78 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'links___internal___mediaType' | 'links___internal___owner' | 'links___internal___type' + | 'links___internal___contentFilePath' | 'scheduledIn' | 'scheduledIn___remoteTypeName' | 'scheduledIn___remoteId' | 'scheduledIn___stage' - | 'scheduledIn___createdAt' - | 'scheduledIn___updatedAt' - | 'scheduledIn___publishedAt' - | 'scheduledIn___description' - | 'scheduledIn___errorMessage' | 'scheduledIn___rawPayload' - | 'scheduledIn___createdBy___remoteTypeName' - | 'scheduledIn___createdBy___remoteId' - | 'scheduledIn___createdBy___stage' - | 'scheduledIn___createdBy___createdAt' - | 'scheduledIn___createdBy___updatedAt' - | 'scheduledIn___createdBy___publishedAt' - | 'scheduledIn___createdBy___name' - | 'scheduledIn___createdBy___picture' - | 'scheduledIn___createdBy___isActive' - | 'scheduledIn___createdBy___kind' - | 'scheduledIn___createdBy___id' - | 'scheduledIn___createdBy___parent___id' - | 'scheduledIn___createdBy___parent___children' - | 'scheduledIn___createdBy___children' - | 'scheduledIn___createdBy___children___id' - | 'scheduledIn___createdBy___children___children' - | 'scheduledIn___createdBy___internal___content' - | 'scheduledIn___createdBy___internal___contentDigest' - | 'scheduledIn___createdBy___internal___description' - | 'scheduledIn___createdBy___internal___fieldOwners' - | 'scheduledIn___createdBy___internal___ignoreType' - | 'scheduledIn___createdBy___internal___mediaType' - | 'scheduledIn___createdBy___internal___owner' - | 'scheduledIn___createdBy___internal___type' - | 'scheduledIn___updatedBy___remoteTypeName' - | 'scheduledIn___updatedBy___remoteId' - | 'scheduledIn___updatedBy___stage' - | 'scheduledIn___updatedBy___createdAt' - | 'scheduledIn___updatedBy___updatedAt' - | 'scheduledIn___updatedBy___publishedAt' - | 'scheduledIn___updatedBy___name' - | 'scheduledIn___updatedBy___picture' - | 'scheduledIn___updatedBy___isActive' - | 'scheduledIn___updatedBy___kind' - | 'scheduledIn___updatedBy___id' - | 'scheduledIn___updatedBy___parent___id' - | 'scheduledIn___updatedBy___parent___children' - | 'scheduledIn___updatedBy___children' - | 'scheduledIn___updatedBy___children___id' - | 'scheduledIn___updatedBy___children___children' - | 'scheduledIn___updatedBy___internal___content' - | 'scheduledIn___updatedBy___internal___contentDigest' - | 'scheduledIn___updatedBy___internal___description' - | 'scheduledIn___updatedBy___internal___fieldOwners' - | 'scheduledIn___updatedBy___internal___ignoreType' - | 'scheduledIn___updatedBy___internal___mediaType' - | 'scheduledIn___updatedBy___internal___owner' - | 'scheduledIn___updatedBy___internal___type' - | 'scheduledIn___publishedBy___remoteTypeName' - | 'scheduledIn___publishedBy___remoteId' - | 'scheduledIn___publishedBy___stage' - | 'scheduledIn___publishedBy___createdAt' - | 'scheduledIn___publishedBy___updatedAt' - | 'scheduledIn___publishedBy___publishedAt' - | 'scheduledIn___publishedBy___name' - | 'scheduledIn___publishedBy___picture' - | 'scheduledIn___publishedBy___isActive' - | 'scheduledIn___publishedBy___kind' - | 'scheduledIn___publishedBy___id' - | 'scheduledIn___publishedBy___parent___id' - | 'scheduledIn___publishedBy___parent___children' - | 'scheduledIn___publishedBy___children' - | 'scheduledIn___publishedBy___children___id' - | 'scheduledIn___publishedBy___children___children' - | 'scheduledIn___publishedBy___internal___content' - | 'scheduledIn___publishedBy___internal___contentDigest' - | 'scheduledIn___publishedBy___internal___description' - | 'scheduledIn___publishedBy___internal___fieldOwners' - | 'scheduledIn___publishedBy___internal___ignoreType' - | 'scheduledIn___publishedBy___internal___mediaType' - | 'scheduledIn___publishedBy___internal___owner' - | 'scheduledIn___publishedBy___internal___type' + | 'scheduledIn___errorMessage' + | 'scheduledIn___description' + | 'scheduledIn___publishedAt' + | 'scheduledIn___updatedAt' + | 'scheduledIn___createdAt' | 'scheduledIn___release___remoteTypeName' | 'scheduledIn___release___remoteId' | 'scheduledIn___release___stage' - | 'scheduledIn___release___createdAt' - | 'scheduledIn___release___updatedAt' - | 'scheduledIn___release___publishedAt' - | 'scheduledIn___release___title' - | 'scheduledIn___release___description' - | 'scheduledIn___release___errorMessage' - | 'scheduledIn___release___isActive' - | 'scheduledIn___release___isImplicit' | 'scheduledIn___release___releaseAt' - | 'scheduledIn___release___createdBy___remoteTypeName' - | 'scheduledIn___release___createdBy___remoteId' - | 'scheduledIn___release___createdBy___stage' - | 'scheduledIn___release___createdBy___createdAt' - | 'scheduledIn___release___createdBy___updatedAt' - | 'scheduledIn___release___createdBy___publishedAt' - | 'scheduledIn___release___createdBy___name' - | 'scheduledIn___release___createdBy___picture' - | 'scheduledIn___release___createdBy___isActive' - | 'scheduledIn___release___createdBy___kind' - | 'scheduledIn___release___createdBy___id' - | 'scheduledIn___release___createdBy___children' - | 'scheduledIn___release___updatedBy___remoteTypeName' - | 'scheduledIn___release___updatedBy___remoteId' - | 'scheduledIn___release___updatedBy___stage' - | 'scheduledIn___release___updatedBy___createdAt' - | 'scheduledIn___release___updatedBy___updatedAt' - | 'scheduledIn___release___updatedBy___publishedAt' - | 'scheduledIn___release___updatedBy___name' - | 'scheduledIn___release___updatedBy___picture' - | 'scheduledIn___release___updatedBy___isActive' - | 'scheduledIn___release___updatedBy___kind' - | 'scheduledIn___release___updatedBy___id' - | 'scheduledIn___release___updatedBy___children' - | 'scheduledIn___release___publishedBy___remoteTypeName' - | 'scheduledIn___release___publishedBy___remoteId' - | 'scheduledIn___release___publishedBy___stage' - | 'scheduledIn___release___publishedBy___createdAt' - | 'scheduledIn___release___publishedBy___updatedAt' - | 'scheduledIn___release___publishedBy___publishedAt' - | 'scheduledIn___release___publishedBy___name' - | 'scheduledIn___release___publishedBy___picture' - | 'scheduledIn___release___publishedBy___isActive' - | 'scheduledIn___release___publishedBy___kind' - | 'scheduledIn___release___publishedBy___id' - | 'scheduledIn___release___publishedBy___children' + | 'scheduledIn___release___isImplicit' + | 'scheduledIn___release___isActive' + | 'scheduledIn___release___errorMessage' + | 'scheduledIn___release___description' + | 'scheduledIn___release___title' + | 'scheduledIn___release___publishedAt' + | 'scheduledIn___release___updatedAt' + | 'scheduledIn___release___createdAt' | 'scheduledIn___release___operations' | 'scheduledIn___release___operations___remoteTypeName' | 'scheduledIn___release___operations___remoteId' | 'scheduledIn___release___operations___stage' - | 'scheduledIn___release___operations___createdAt' - | 'scheduledIn___release___operations___updatedAt' - | 'scheduledIn___release___operations___publishedAt' - | 'scheduledIn___release___operations___description' - | 'scheduledIn___release___operations___errorMessage' | 'scheduledIn___release___operations___rawPayload' - | 'scheduledIn___release___operations___status' - | 'scheduledIn___release___operations___id' - | 'scheduledIn___release___operations___children' + | 'scheduledIn___release___operations___errorMessage' + | 'scheduledIn___release___operations___description' + | 'scheduledIn___release___operations___publishedAt' + | 'scheduledIn___release___operations___updatedAt' + | 'scheduledIn___release___operations___createdAt' + | 'scheduledIn___release___operations___status' + | 'scheduledIn___release___operations___id' + | 'scheduledIn___release___operations___children' + | 'scheduledIn___release___publishedBy___remoteTypeName' + | 'scheduledIn___release___publishedBy___remoteId' + | 'scheduledIn___release___publishedBy___stage' + | 'scheduledIn___release___publishedBy___isActive' + | 'scheduledIn___release___publishedBy___picture' + | 'scheduledIn___release___publishedBy___name' + | 'scheduledIn___release___publishedBy___publishedAt' + | 'scheduledIn___release___publishedBy___updatedAt' + | 'scheduledIn___release___publishedBy___createdAt' + | 'scheduledIn___release___publishedBy___kind' + | 'scheduledIn___release___publishedBy___id' + | 'scheduledIn___release___publishedBy___children' + | 'scheduledIn___release___updatedBy___remoteTypeName' + | 'scheduledIn___release___updatedBy___remoteId' + | 'scheduledIn___release___updatedBy___stage' + | 'scheduledIn___release___updatedBy___isActive' + | 'scheduledIn___release___updatedBy___picture' + | 'scheduledIn___release___updatedBy___name' + | 'scheduledIn___release___updatedBy___publishedAt' + | 'scheduledIn___release___updatedBy___updatedAt' + | 'scheduledIn___release___updatedBy___createdAt' + | 'scheduledIn___release___updatedBy___kind' + | 'scheduledIn___release___updatedBy___id' + | 'scheduledIn___release___updatedBy___children' + | 'scheduledIn___release___createdBy___remoteTypeName' + | 'scheduledIn___release___createdBy___remoteId' + | 'scheduledIn___release___createdBy___stage' + | 'scheduledIn___release___createdBy___isActive' + | 'scheduledIn___release___createdBy___picture' + | 'scheduledIn___release___createdBy___name' + | 'scheduledIn___release___createdBy___publishedAt' + | 'scheduledIn___release___createdBy___updatedAt' + | 'scheduledIn___release___createdBy___createdAt' + | 'scheduledIn___release___createdBy___kind' + | 'scheduledIn___release___createdBy___id' + | 'scheduledIn___release___createdBy___children' | 'scheduledIn___release___status' | 'scheduledIn___release___id' | 'scheduledIn___release___parent___id' @@ -5650,6 +7004,82 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'scheduledIn___release___internal___mediaType' | 'scheduledIn___release___internal___owner' | 'scheduledIn___release___internal___type' + | 'scheduledIn___release___internal___contentFilePath' + | 'scheduledIn___publishedBy___remoteTypeName' + | 'scheduledIn___publishedBy___remoteId' + | 'scheduledIn___publishedBy___stage' + | 'scheduledIn___publishedBy___isActive' + | 'scheduledIn___publishedBy___picture' + | 'scheduledIn___publishedBy___name' + | 'scheduledIn___publishedBy___publishedAt' + | 'scheduledIn___publishedBy___updatedAt' + | 'scheduledIn___publishedBy___createdAt' + | 'scheduledIn___publishedBy___kind' + | 'scheduledIn___publishedBy___id' + | 'scheduledIn___publishedBy___parent___id' + | 'scheduledIn___publishedBy___parent___children' + | 'scheduledIn___publishedBy___children' + | 'scheduledIn___publishedBy___children___id' + | 'scheduledIn___publishedBy___children___children' + | 'scheduledIn___publishedBy___internal___content' + | 'scheduledIn___publishedBy___internal___contentDigest' + | 'scheduledIn___publishedBy___internal___description' + | 'scheduledIn___publishedBy___internal___fieldOwners' + | 'scheduledIn___publishedBy___internal___ignoreType' + | 'scheduledIn___publishedBy___internal___mediaType' + | 'scheduledIn___publishedBy___internal___owner' + | 'scheduledIn___publishedBy___internal___type' + | 'scheduledIn___publishedBy___internal___contentFilePath' + | 'scheduledIn___updatedBy___remoteTypeName' + | 'scheduledIn___updatedBy___remoteId' + | 'scheduledIn___updatedBy___stage' + | 'scheduledIn___updatedBy___isActive' + | 'scheduledIn___updatedBy___picture' + | 'scheduledIn___updatedBy___name' + | 'scheduledIn___updatedBy___publishedAt' + | 'scheduledIn___updatedBy___updatedAt' + | 'scheduledIn___updatedBy___createdAt' + | 'scheduledIn___updatedBy___kind' + | 'scheduledIn___updatedBy___id' + | 'scheduledIn___updatedBy___parent___id' + | 'scheduledIn___updatedBy___parent___children' + | 'scheduledIn___updatedBy___children' + | 'scheduledIn___updatedBy___children___id' + | 'scheduledIn___updatedBy___children___children' + | 'scheduledIn___updatedBy___internal___content' + | 'scheduledIn___updatedBy___internal___contentDigest' + | 'scheduledIn___updatedBy___internal___description' + | 'scheduledIn___updatedBy___internal___fieldOwners' + | 'scheduledIn___updatedBy___internal___ignoreType' + | 'scheduledIn___updatedBy___internal___mediaType' + | 'scheduledIn___updatedBy___internal___owner' + | 'scheduledIn___updatedBy___internal___type' + | 'scheduledIn___updatedBy___internal___contentFilePath' + | 'scheduledIn___createdBy___remoteTypeName' + | 'scheduledIn___createdBy___remoteId' + | 'scheduledIn___createdBy___stage' + | 'scheduledIn___createdBy___isActive' + | 'scheduledIn___createdBy___picture' + | 'scheduledIn___createdBy___name' + | 'scheduledIn___createdBy___publishedAt' + | 'scheduledIn___createdBy___updatedAt' + | 'scheduledIn___createdBy___createdAt' + | 'scheduledIn___createdBy___kind' + | 'scheduledIn___createdBy___id' + | 'scheduledIn___createdBy___parent___id' + | 'scheduledIn___createdBy___parent___children' + | 'scheduledIn___createdBy___children' + | 'scheduledIn___createdBy___children___id' + | 'scheduledIn___createdBy___children___children' + | 'scheduledIn___createdBy___internal___content' + | 'scheduledIn___createdBy___internal___contentDigest' + | 'scheduledIn___createdBy___internal___description' + | 'scheduledIn___createdBy___internal___fieldOwners' + | 'scheduledIn___createdBy___internal___ignoreType' + | 'scheduledIn___createdBy___internal___mediaType' + | 'scheduledIn___createdBy___internal___owner' + | 'scheduledIn___createdBy___internal___type' + | 'scheduledIn___createdBy___internal___contentFilePath' | 'scheduledIn___status' | 'scheduledIn___id' | 'scheduledIn___parent___id' @@ -5666,6 +7096,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'scheduledIn___parent___internal___mediaType' | 'scheduledIn___parent___internal___owner' | 'scheduledIn___parent___internal___type' + | 'scheduledIn___parent___internal___contentFilePath' | 'scheduledIn___children' | 'scheduledIn___children___id' | 'scheduledIn___children___parent___id' @@ -5681,6 +7112,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'scheduledIn___children___internal___mediaType' | 'scheduledIn___children___internal___owner' | 'scheduledIn___children___internal___type' + | 'scheduledIn___children___internal___contentFilePath' | 'scheduledIn___internal___content' | 'scheduledIn___internal___contentDigest' | 'scheduledIn___internal___description' @@ -5689,6 +7121,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'scheduledIn___internal___mediaType' | 'scheduledIn___internal___owner' | 'scheduledIn___internal___type' + | 'scheduledIn___internal___contentFilePath' | 'gatsbyPath' | 'id' | 'parent___id' @@ -5706,6 +7139,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'parent___parent___internal___mediaType' | 'parent___parent___internal___owner' | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' | 'parent___children' | 'parent___children___id' | 'parent___children___parent___id' @@ -5721,6 +7155,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'parent___children___internal___mediaType' | 'parent___children___internal___owner' | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' | 'parent___internal___content' | 'parent___internal___contentDigest' | 'parent___internal___description' @@ -5729,6 +7164,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'parent___internal___mediaType' | 'parent___internal___owner' | 'parent___internal___type' + | 'parent___internal___contentFilePath' | 'children' | 'children___id' | 'children___parent___id' @@ -5745,6 +7181,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'children___parent___internal___mediaType' | 'children___parent___internal___owner' | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' | 'children___children' | 'children___children___id' | 'children___children___parent___id' @@ -5760,6 +7197,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'children___children___internal___mediaType' | 'children___children___internal___owner' | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' | 'children___internal___content' | 'children___internal___contentDigest' | 'children___internal___description' @@ -5768,6 +7206,7 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'children___internal___mediaType' | 'children___internal___owner' | 'children___internal___type' + | 'children___internal___contentFilePath' | 'internal___content' | 'internal___contentDigest' | 'internal___description' @@ -5775,7 +7214,8 @@ export type GraphCms_PortfolioItemFieldsEnum = | 'internal___ignoreType' | 'internal___mediaType' | 'internal___owner' - | 'internal___type'; + | 'internal___type' + | 'internal___contentFilePath'; export type GraphCms_PortfolioItemGroupConnection = { totalCount: Scalars['Int']; @@ -5791,27 +7231,22 @@ export type GraphCms_PortfolioItemGroupConnection = { fieldValue?: Maybe; }; - export type GraphCms_PortfolioItemGroupConnectionDistinctArgs = { field: GraphCms_PortfolioItemFieldsEnum; }; - export type GraphCms_PortfolioItemGroupConnectionMaxArgs = { field: GraphCms_PortfolioItemFieldsEnum; }; - export type GraphCms_PortfolioItemGroupConnectionMinArgs = { field: GraphCms_PortfolioItemFieldsEnum; }; - export type GraphCms_PortfolioItemGroupConnectionSumArgs = { field: GraphCms_PortfolioItemFieldsEnum; }; - export type GraphCms_PortfolioItemGroupConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -5823,166 +7258,68 @@ export type GraphCms_PortfolioItemSortInput = { order?: InputMaybe>>; }; -export type GraphCms_ScheduledOperationConnection = { +export type GraphCms_SpecialityConnection = { totalCount: Scalars['Int']; - edges: Array; - nodes: Array; + edges: Array; + nodes: Array; pageInfo: PageInfo; distinct: Array; max?: Maybe; min?: Maybe; sum?: Maybe; - group: Array; + group: Array; }; - -export type GraphCms_ScheduledOperationConnectionDistinctArgs = { - field: GraphCms_ScheduledOperationFieldsEnum; +export type GraphCms_SpecialityConnectionDistinctArgs = { + field: GraphCms_SpecialityFieldsEnum; }; - -export type GraphCms_ScheduledOperationConnectionMaxArgs = { - field: GraphCms_ScheduledOperationFieldsEnum; +export type GraphCms_SpecialityConnectionMaxArgs = { + field: GraphCms_SpecialityFieldsEnum; }; - -export type GraphCms_ScheduledOperationConnectionMinArgs = { - field: GraphCms_ScheduledOperationFieldsEnum; +export type GraphCms_SpecialityConnectionMinArgs = { + field: GraphCms_SpecialityFieldsEnum; }; - -export type GraphCms_ScheduledOperationConnectionSumArgs = { - field: GraphCms_ScheduledOperationFieldsEnum; +export type GraphCms_SpecialityConnectionSumArgs = { + field: GraphCms_SpecialityFieldsEnum; }; - -export type GraphCms_ScheduledOperationConnectionGroupArgs = { +export type GraphCms_SpecialityConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; - field: GraphCms_ScheduledOperationFieldsEnum; + field: GraphCms_SpecialityFieldsEnum; }; -export type GraphCms_ScheduledOperationEdge = { - next?: Maybe; - node: GraphCms_ScheduledOperation; - previous?: Maybe; +export type GraphCms_SpecialityEdge = { + next?: Maybe; + node: GraphCms_Speciality; + previous?: Maybe; }; -export type GraphCms_ScheduledOperationFieldsEnum = +export type GraphCms_SpecialityFieldsEnum = | 'remoteTypeName' | 'remoteId' | 'stage' - | 'createdAt' - | 'updatedAt' | 'publishedAt' - | 'description' - | 'errorMessage' - | 'rawPayload' - | 'createdBy___remoteTypeName' - | 'createdBy___remoteId' - | 'createdBy___stage' - | 'createdBy___createdAt' - | 'createdBy___updatedAt' - | 'createdBy___publishedAt' - | 'createdBy___name' - | 'createdBy___picture' - | 'createdBy___isActive' - | 'createdBy___kind' - | 'createdBy___id' - | 'createdBy___parent___id' - | 'createdBy___parent___parent___id' - | 'createdBy___parent___parent___children' - | 'createdBy___parent___children' - | 'createdBy___parent___children___id' - | 'createdBy___parent___children___children' - | 'createdBy___parent___internal___content' - | 'createdBy___parent___internal___contentDigest' - | 'createdBy___parent___internal___description' - | 'createdBy___parent___internal___fieldOwners' - | 'createdBy___parent___internal___ignoreType' - | 'createdBy___parent___internal___mediaType' - | 'createdBy___parent___internal___owner' - | 'createdBy___parent___internal___type' - | 'createdBy___children' - | 'createdBy___children___id' - | 'createdBy___children___parent___id' - | 'createdBy___children___parent___children' - | 'createdBy___children___children' - | 'createdBy___children___children___id' - | 'createdBy___children___children___children' - | 'createdBy___children___internal___content' - | 'createdBy___children___internal___contentDigest' - | 'createdBy___children___internal___description' - | 'createdBy___children___internal___fieldOwners' - | 'createdBy___children___internal___ignoreType' - | 'createdBy___children___internal___mediaType' - | 'createdBy___children___internal___owner' - | 'createdBy___children___internal___type' - | 'createdBy___internal___content' - | 'createdBy___internal___contentDigest' - | 'createdBy___internal___description' - | 'createdBy___internal___fieldOwners' - | 'createdBy___internal___ignoreType' - | 'createdBy___internal___mediaType' - | 'createdBy___internal___owner' - | 'createdBy___internal___type' - | 'updatedBy___remoteTypeName' - | 'updatedBy___remoteId' - | 'updatedBy___stage' - | 'updatedBy___createdAt' - | 'updatedBy___updatedAt' - | 'updatedBy___publishedAt' - | 'updatedBy___name' - | 'updatedBy___picture' - | 'updatedBy___isActive' - | 'updatedBy___kind' - | 'updatedBy___id' - | 'updatedBy___parent___id' - | 'updatedBy___parent___parent___id' - | 'updatedBy___parent___parent___children' - | 'updatedBy___parent___children' - | 'updatedBy___parent___children___id' - | 'updatedBy___parent___children___children' - | 'updatedBy___parent___internal___content' - | 'updatedBy___parent___internal___contentDigest' - | 'updatedBy___parent___internal___description' - | 'updatedBy___parent___internal___fieldOwners' - | 'updatedBy___parent___internal___ignoreType' - | 'updatedBy___parent___internal___mediaType' - | 'updatedBy___parent___internal___owner' - | 'updatedBy___parent___internal___type' - | 'updatedBy___children' - | 'updatedBy___children___id' - | 'updatedBy___children___parent___id' - | 'updatedBy___children___parent___children' - | 'updatedBy___children___children' - | 'updatedBy___children___children___id' - | 'updatedBy___children___children___children' - | 'updatedBy___children___internal___content' - | 'updatedBy___children___internal___contentDigest' - | 'updatedBy___children___internal___description' - | 'updatedBy___children___internal___fieldOwners' - | 'updatedBy___children___internal___ignoreType' - | 'updatedBy___children___internal___mediaType' - | 'updatedBy___children___internal___owner' - | 'updatedBy___children___internal___type' - | 'updatedBy___internal___content' - | 'updatedBy___internal___contentDigest' - | 'updatedBy___internal___description' - | 'updatedBy___internal___fieldOwners' - | 'updatedBy___internal___ignoreType' - | 'updatedBy___internal___mediaType' - | 'updatedBy___internal___owner' - | 'updatedBy___internal___type' + | 'updatedAt' + | 'createdAt' + | 'title' + | 'description___remoteTypeName' + | 'description___raw' + | 'description___html' + | 'description___markdown' + | 'description___text' | 'publishedBy___remoteTypeName' | 'publishedBy___remoteId' | 'publishedBy___stage' - | 'publishedBy___createdAt' - | 'publishedBy___updatedAt' - | 'publishedBy___publishedAt' - | 'publishedBy___name' - | 'publishedBy___picture' | 'publishedBy___isActive' + | 'publishedBy___picture' + | 'publishedBy___name' + | 'publishedBy___publishedAt' + | 'publishedBy___updatedAt' + | 'publishedBy___createdAt' | 'publishedBy___kind' | 'publishedBy___id' | 'publishedBy___parent___id' @@ -5999,6 +7336,7 @@ export type GraphCms_ScheduledOperationFieldsEnum = | 'publishedBy___parent___internal___mediaType' | 'publishedBy___parent___internal___owner' | 'publishedBy___parent___internal___type' + | 'publishedBy___parent___internal___contentFilePath' | 'publishedBy___children' | 'publishedBy___children___id' | 'publishedBy___children___parent___id' @@ -6014,6 +7352,7 @@ export type GraphCms_ScheduledOperationFieldsEnum = | 'publishedBy___children___internal___mediaType' | 'publishedBy___children___internal___owner' | 'publishedBy___children___internal___type' + | 'publishedBy___children___internal___contentFilePath' | 'publishedBy___internal___content' | 'publishedBy___internal___contentDigest' | 'publishedBy___internal___description' @@ -6022,470 +7361,16 @@ export type GraphCms_ScheduledOperationFieldsEnum = | 'publishedBy___internal___mediaType' | 'publishedBy___internal___owner' | 'publishedBy___internal___type' - | 'release___remoteTypeName' - | 'release___remoteId' - | 'release___stage' - | 'release___createdAt' - | 'release___updatedAt' - | 'release___publishedAt' - | 'release___title' - | 'release___description' - | 'release___errorMessage' - | 'release___isActive' - | 'release___isImplicit' - | 'release___releaseAt' - | 'release___createdBy___remoteTypeName' - | 'release___createdBy___remoteId' - | 'release___createdBy___stage' - | 'release___createdBy___createdAt' - | 'release___createdBy___updatedAt' - | 'release___createdBy___publishedAt' - | 'release___createdBy___name' - | 'release___createdBy___picture' - | 'release___createdBy___isActive' - | 'release___createdBy___kind' - | 'release___createdBy___id' - | 'release___createdBy___parent___id' - | 'release___createdBy___parent___children' - | 'release___createdBy___children' - | 'release___createdBy___children___id' - | 'release___createdBy___children___children' - | 'release___createdBy___internal___content' - | 'release___createdBy___internal___contentDigest' - | 'release___createdBy___internal___description' - | 'release___createdBy___internal___fieldOwners' - | 'release___createdBy___internal___ignoreType' - | 'release___createdBy___internal___mediaType' - | 'release___createdBy___internal___owner' - | 'release___createdBy___internal___type' - | 'release___updatedBy___remoteTypeName' - | 'release___updatedBy___remoteId' - | 'release___updatedBy___stage' - | 'release___updatedBy___createdAt' - | 'release___updatedBy___updatedAt' - | 'release___updatedBy___publishedAt' - | 'release___updatedBy___name' - | 'release___updatedBy___picture' - | 'release___updatedBy___isActive' - | 'release___updatedBy___kind' - | 'release___updatedBy___id' - | 'release___updatedBy___parent___id' - | 'release___updatedBy___parent___children' - | 'release___updatedBy___children' - | 'release___updatedBy___children___id' - | 'release___updatedBy___children___children' - | 'release___updatedBy___internal___content' - | 'release___updatedBy___internal___contentDigest' - | 'release___updatedBy___internal___description' - | 'release___updatedBy___internal___fieldOwners' - | 'release___updatedBy___internal___ignoreType' - | 'release___updatedBy___internal___mediaType' - | 'release___updatedBy___internal___owner' - | 'release___updatedBy___internal___type' - | 'release___publishedBy___remoteTypeName' - | 'release___publishedBy___remoteId' - | 'release___publishedBy___stage' - | 'release___publishedBy___createdAt' - | 'release___publishedBy___updatedAt' - | 'release___publishedBy___publishedAt' - | 'release___publishedBy___name' - | 'release___publishedBy___picture' - | 'release___publishedBy___isActive' - | 'release___publishedBy___kind' - | 'release___publishedBy___id' - | 'release___publishedBy___parent___id' - | 'release___publishedBy___parent___children' - | 'release___publishedBy___children' - | 'release___publishedBy___children___id' - | 'release___publishedBy___children___children' - | 'release___publishedBy___internal___content' - | 'release___publishedBy___internal___contentDigest' - | 'release___publishedBy___internal___description' - | 'release___publishedBy___internal___fieldOwners' - | 'release___publishedBy___internal___ignoreType' - | 'release___publishedBy___internal___mediaType' - | 'release___publishedBy___internal___owner' - | 'release___publishedBy___internal___type' - | 'release___operations' - | 'release___operations___remoteTypeName' - | 'release___operations___remoteId' - | 'release___operations___stage' - | 'release___operations___createdAt' - | 'release___operations___updatedAt' - | 'release___operations___publishedAt' - | 'release___operations___description' - | 'release___operations___errorMessage' - | 'release___operations___rawPayload' - | 'release___operations___createdBy___remoteTypeName' - | 'release___operations___createdBy___remoteId' - | 'release___operations___createdBy___stage' - | 'release___operations___createdBy___createdAt' - | 'release___operations___createdBy___updatedAt' - | 'release___operations___createdBy___publishedAt' - | 'release___operations___createdBy___name' - | 'release___operations___createdBy___picture' - | 'release___operations___createdBy___isActive' - | 'release___operations___createdBy___kind' - | 'release___operations___createdBy___id' - | 'release___operations___createdBy___children' - | 'release___operations___updatedBy___remoteTypeName' - | 'release___operations___updatedBy___remoteId' - | 'release___operations___updatedBy___stage' - | 'release___operations___updatedBy___createdAt' - | 'release___operations___updatedBy___updatedAt' - | 'release___operations___updatedBy___publishedAt' - | 'release___operations___updatedBy___name' - | 'release___operations___updatedBy___picture' - | 'release___operations___updatedBy___isActive' - | 'release___operations___updatedBy___kind' - | 'release___operations___updatedBy___id' - | 'release___operations___updatedBy___children' - | 'release___operations___publishedBy___remoteTypeName' - | 'release___operations___publishedBy___remoteId' - | 'release___operations___publishedBy___stage' - | 'release___operations___publishedBy___createdAt' - | 'release___operations___publishedBy___updatedAt' - | 'release___operations___publishedBy___publishedAt' - | 'release___operations___publishedBy___name' - | 'release___operations___publishedBy___picture' - | 'release___operations___publishedBy___isActive' - | 'release___operations___publishedBy___kind' - | 'release___operations___publishedBy___id' - | 'release___operations___publishedBy___children' - | 'release___operations___release___remoteTypeName' - | 'release___operations___release___remoteId' - | 'release___operations___release___stage' - | 'release___operations___release___createdAt' - | 'release___operations___release___updatedAt' - | 'release___operations___release___publishedAt' - | 'release___operations___release___title' - | 'release___operations___release___description' - | 'release___operations___release___errorMessage' - | 'release___operations___release___isActive' - | 'release___operations___release___isImplicit' - | 'release___operations___release___releaseAt' - | 'release___operations___release___operations' - | 'release___operations___release___status' - | 'release___operations___release___id' - | 'release___operations___release___children' - | 'release___operations___status' - | 'release___operations___id' - | 'release___operations___parent___id' - | 'release___operations___parent___children' - | 'release___operations___children' - | 'release___operations___children___id' - | 'release___operations___children___children' - | 'release___operations___internal___content' - | 'release___operations___internal___contentDigest' - | 'release___operations___internal___description' - | 'release___operations___internal___fieldOwners' - | 'release___operations___internal___ignoreType' - | 'release___operations___internal___mediaType' - | 'release___operations___internal___owner' - | 'release___operations___internal___type' - | 'release___status' - | 'release___id' - | 'release___parent___id' - | 'release___parent___parent___id' - | 'release___parent___parent___children' - | 'release___parent___children' - | 'release___parent___children___id' - | 'release___parent___children___children' - | 'release___parent___internal___content' - | 'release___parent___internal___contentDigest' - | 'release___parent___internal___description' - | 'release___parent___internal___fieldOwners' - | 'release___parent___internal___ignoreType' - | 'release___parent___internal___mediaType' - | 'release___parent___internal___owner' - | 'release___parent___internal___type' - | 'release___children' - | 'release___children___id' - | 'release___children___parent___id' - | 'release___children___parent___children' - | 'release___children___children' - | 'release___children___children___id' - | 'release___children___children___children' - | 'release___children___internal___content' - | 'release___children___internal___contentDigest' - | 'release___children___internal___description' - | 'release___children___internal___fieldOwners' - | 'release___children___internal___ignoreType' - | 'release___children___internal___mediaType' - | 'release___children___internal___owner' - | 'release___children___internal___type' - | 'release___internal___content' - | 'release___internal___contentDigest' - | 'release___internal___description' - | 'release___internal___fieldOwners' - | 'release___internal___ignoreType' - | 'release___internal___mediaType' - | 'release___internal___owner' - | 'release___internal___type' - | 'status' - | 'id' - | 'parent___id' - | 'parent___parent___id' - | 'parent___parent___parent___id' - | 'parent___parent___parent___children' - | 'parent___parent___children' - | 'parent___parent___children___id' - | 'parent___parent___children___children' - | 'parent___parent___internal___content' - | 'parent___parent___internal___contentDigest' - | 'parent___parent___internal___description' - | 'parent___parent___internal___fieldOwners' - | 'parent___parent___internal___ignoreType' - | 'parent___parent___internal___mediaType' - | 'parent___parent___internal___owner' - | 'parent___parent___internal___type' - | 'parent___children' - | 'parent___children___id' - | 'parent___children___parent___id' - | 'parent___children___parent___children' - | 'parent___children___children' - | 'parent___children___children___id' - | 'parent___children___children___children' - | 'parent___children___internal___content' - | 'parent___children___internal___contentDigest' - | 'parent___children___internal___description' - | 'parent___children___internal___fieldOwners' - | 'parent___children___internal___ignoreType' - | 'parent___children___internal___mediaType' - | 'parent___children___internal___owner' - | 'parent___children___internal___type' - | 'parent___internal___content' - | 'parent___internal___contentDigest' - | 'parent___internal___description' - | 'parent___internal___fieldOwners' - | 'parent___internal___ignoreType' - | 'parent___internal___mediaType' - | 'parent___internal___owner' - | 'parent___internal___type' - | 'children' - | 'children___id' - | 'children___parent___id' - | 'children___parent___parent___id' - | 'children___parent___parent___children' - | 'children___parent___children' - | 'children___parent___children___id' - | 'children___parent___children___children' - | 'children___parent___internal___content' - | 'children___parent___internal___contentDigest' - | 'children___parent___internal___description' - | 'children___parent___internal___fieldOwners' - | 'children___parent___internal___ignoreType' - | 'children___parent___internal___mediaType' - | 'children___parent___internal___owner' - | 'children___parent___internal___type' - | 'children___children' - | 'children___children___id' - | 'children___children___parent___id' - | 'children___children___parent___children' - | 'children___children___children' - | 'children___children___children___id' - | 'children___children___children___children' - | 'children___children___internal___content' - | 'children___children___internal___contentDigest' - | 'children___children___internal___description' - | 'children___children___internal___fieldOwners' - | 'children___children___internal___ignoreType' - | 'children___children___internal___mediaType' - | 'children___children___internal___owner' - | 'children___children___internal___type' - | 'children___internal___content' - | 'children___internal___contentDigest' - | 'children___internal___description' - | 'children___internal___fieldOwners' - | 'children___internal___ignoreType' - | 'children___internal___mediaType' - | 'children___internal___owner' - | 'children___internal___type' - | 'internal___content' - | 'internal___contentDigest' - | 'internal___description' - | 'internal___fieldOwners' - | 'internal___ignoreType' - | 'internal___mediaType' - | 'internal___owner' - | 'internal___type'; - -export type GraphCms_ScheduledOperationGroupConnection = { - totalCount: Scalars['Int']; - edges: Array; - nodes: Array; - pageInfo: PageInfo; - distinct: Array; - max?: Maybe; - min?: Maybe; - sum?: Maybe; - group: Array; - field: Scalars['String']; - fieldValue?: Maybe; -}; - - -export type GraphCms_ScheduledOperationGroupConnectionDistinctArgs = { - field: GraphCms_ScheduledOperationFieldsEnum; -}; - - -export type GraphCms_ScheduledOperationGroupConnectionMaxArgs = { - field: GraphCms_ScheduledOperationFieldsEnum; -}; - - -export type GraphCms_ScheduledOperationGroupConnectionMinArgs = { - field: GraphCms_ScheduledOperationFieldsEnum; -}; - - -export type GraphCms_ScheduledOperationGroupConnectionSumArgs = { - field: GraphCms_ScheduledOperationFieldsEnum; -}; - - -export type GraphCms_ScheduledOperationGroupConnectionGroupArgs = { - skip?: InputMaybe; - limit?: InputMaybe; - field: GraphCms_ScheduledOperationFieldsEnum; -}; - -export type GraphCms_ScheduledOperationSortInput = { - fields?: InputMaybe>>; - order?: InputMaybe>>; -}; - -export type GraphCms_BlogTypeQueryOperatorInput = { - eq?: InputMaybe; - ne?: InputMaybe; - in?: InputMaybe>>; - nin?: InputMaybe>>; -}; - -export type GraphCms_BlogCategoriesQueryOperatorInput = { - eq?: InputMaybe; - ne?: InputMaybe; - in?: InputMaybe>>; - nin?: InputMaybe>>; -}; - -export type GraphCms_BlogConnection = { - totalCount: Scalars['Int']; - edges: Array; - nodes: Array; - pageInfo: PageInfo; - distinct: Array; - max?: Maybe; - min?: Maybe; - sum?: Maybe; - group: Array; -}; - - -export type GraphCms_BlogConnectionDistinctArgs = { - field: GraphCms_BlogFieldsEnum; -}; - - -export type GraphCms_BlogConnectionMaxArgs = { - field: GraphCms_BlogFieldsEnum; -}; - - -export type GraphCms_BlogConnectionMinArgs = { - field: GraphCms_BlogFieldsEnum; -}; - - -export type GraphCms_BlogConnectionSumArgs = { - field: GraphCms_BlogFieldsEnum; -}; - - -export type GraphCms_BlogConnectionGroupArgs = { - skip?: InputMaybe; - limit?: InputMaybe; - field: GraphCms_BlogFieldsEnum; -}; - -export type GraphCms_BlogEdge = { - next?: Maybe; - node: GraphCms_Blog; - previous?: Maybe; -}; - -export type GraphCms_BlogFieldsEnum = - | 'remoteTypeName' - | 'remoteId' - | 'stage' - | 'createdAt' - | 'updatedAt' - | 'publishedAt' - | 'title' - | 'description' - | 'content___remoteTypeName' - | 'content___raw' - | 'content___html' - | 'content___markdown' - | 'content___text' - | 'createdBy___remoteTypeName' - | 'createdBy___remoteId' - | 'createdBy___stage' - | 'createdBy___createdAt' - | 'createdBy___updatedAt' - | 'createdBy___publishedAt' - | 'createdBy___name' - | 'createdBy___picture' - | 'createdBy___isActive' - | 'createdBy___kind' - | 'createdBy___id' - | 'createdBy___parent___id' - | 'createdBy___parent___parent___id' - | 'createdBy___parent___parent___children' - | 'createdBy___parent___children' - | 'createdBy___parent___children___id' - | 'createdBy___parent___children___children' - | 'createdBy___parent___internal___content' - | 'createdBy___parent___internal___contentDigest' - | 'createdBy___parent___internal___description' - | 'createdBy___parent___internal___fieldOwners' - | 'createdBy___parent___internal___ignoreType' - | 'createdBy___parent___internal___mediaType' - | 'createdBy___parent___internal___owner' - | 'createdBy___parent___internal___type' - | 'createdBy___children' - | 'createdBy___children___id' - | 'createdBy___children___parent___id' - | 'createdBy___children___parent___children' - | 'createdBy___children___children' - | 'createdBy___children___children___id' - | 'createdBy___children___children___children' - | 'createdBy___children___internal___content' - | 'createdBy___children___internal___contentDigest' - | 'createdBy___children___internal___description' - | 'createdBy___children___internal___fieldOwners' - | 'createdBy___children___internal___ignoreType' - | 'createdBy___children___internal___mediaType' - | 'createdBy___children___internal___owner' - | 'createdBy___children___internal___type' - | 'createdBy___internal___content' - | 'createdBy___internal___contentDigest' - | 'createdBy___internal___description' - | 'createdBy___internal___fieldOwners' - | 'createdBy___internal___ignoreType' - | 'createdBy___internal___mediaType' - | 'createdBy___internal___owner' - | 'createdBy___internal___type' + | 'publishedBy___internal___contentFilePath' | 'updatedBy___remoteTypeName' | 'updatedBy___remoteId' | 'updatedBy___stage' - | 'updatedBy___createdAt' - | 'updatedBy___updatedAt' - | 'updatedBy___publishedAt' - | 'updatedBy___name' - | 'updatedBy___picture' | 'updatedBy___isActive' + | 'updatedBy___picture' + | 'updatedBy___name' + | 'updatedBy___publishedAt' + | 'updatedBy___updatedAt' + | 'updatedBy___createdAt' | 'updatedBy___kind' | 'updatedBy___id' | 'updatedBy___parent___id' @@ -6502,6 +7387,7 @@ export type GraphCms_BlogFieldsEnum = | 'updatedBy___parent___internal___mediaType' | 'updatedBy___parent___internal___owner' | 'updatedBy___parent___internal___type' + | 'updatedBy___parent___internal___contentFilePath' | 'updatedBy___children' | 'updatedBy___children___id' | 'updatedBy___children___parent___id' @@ -6517,6 +7403,7 @@ export type GraphCms_BlogFieldsEnum = | 'updatedBy___children___internal___mediaType' | 'updatedBy___children___internal___owner' | 'updatedBy___children___internal___type' + | 'updatedBy___children___internal___contentFilePath' | 'updatedBy___internal___content' | 'updatedBy___internal___contentDigest' | 'updatedBy___internal___description' @@ -6525,2057 +7412,80 @@ export type GraphCms_BlogFieldsEnum = | 'updatedBy___internal___mediaType' | 'updatedBy___internal___owner' | 'updatedBy___internal___type' - | 'publishedBy___remoteTypeName' - | 'publishedBy___remoteId' - | 'publishedBy___stage' - | 'publishedBy___createdAt' - | 'publishedBy___updatedAt' - | 'publishedBy___publishedAt' - | 'publishedBy___name' - | 'publishedBy___picture' - | 'publishedBy___isActive' - | 'publishedBy___kind' - | 'publishedBy___id' - | 'publishedBy___parent___id' - | 'publishedBy___parent___parent___id' - | 'publishedBy___parent___parent___children' - | 'publishedBy___parent___children' - | 'publishedBy___parent___children___id' - | 'publishedBy___parent___children___children' - | 'publishedBy___parent___internal___content' - | 'publishedBy___parent___internal___contentDigest' - | 'publishedBy___parent___internal___description' - | 'publishedBy___parent___internal___fieldOwners' - | 'publishedBy___parent___internal___ignoreType' - | 'publishedBy___parent___internal___mediaType' - | 'publishedBy___parent___internal___owner' - | 'publishedBy___parent___internal___type' - | 'publishedBy___children' - | 'publishedBy___children___id' - | 'publishedBy___children___parent___id' - | 'publishedBy___children___parent___children' - | 'publishedBy___children___children' - | 'publishedBy___children___children___id' - | 'publishedBy___children___children___children' - | 'publishedBy___children___internal___content' - | 'publishedBy___children___internal___contentDigest' - | 'publishedBy___children___internal___description' - | 'publishedBy___children___internal___fieldOwners' - | 'publishedBy___children___internal___ignoreType' - | 'publishedBy___children___internal___mediaType' - | 'publishedBy___children___internal___owner' - | 'publishedBy___children___internal___type' - | 'publishedBy___internal___content' - | 'publishedBy___internal___contentDigest' - | 'publishedBy___internal___description' - | 'publishedBy___internal___fieldOwners' - | 'publishedBy___internal___ignoreType' - | 'publishedBy___internal___mediaType' - | 'publishedBy___internal___owner' - | 'publishedBy___internal___type' - | 'headerImage___remoteTypeName' - | 'headerImage___remoteId' - | 'headerImage___locale' - | 'headerImage___stage' - | 'headerImage___createdAt' - | 'headerImage___updatedAt' - | 'headerImage___publishedAt' - | 'headerImage___handle' - | 'headerImage___fileName' - | 'headerImage___height' - | 'headerImage___width' - | 'headerImage___size' - | 'headerImage___mimeType' - | 'headerImage___createdBy___remoteTypeName' - | 'headerImage___createdBy___remoteId' - | 'headerImage___createdBy___stage' - | 'headerImage___createdBy___createdAt' - | 'headerImage___createdBy___updatedAt' - | 'headerImage___createdBy___publishedAt' - | 'headerImage___createdBy___name' - | 'headerImage___createdBy___picture' - | 'headerImage___createdBy___isActive' - | 'headerImage___createdBy___kind' - | 'headerImage___createdBy___id' - | 'headerImage___createdBy___parent___id' - | 'headerImage___createdBy___parent___children' - | 'headerImage___createdBy___children' - | 'headerImage___createdBy___children___id' - | 'headerImage___createdBy___children___children' - | 'headerImage___createdBy___internal___content' - | 'headerImage___createdBy___internal___contentDigest' - | 'headerImage___createdBy___internal___description' - | 'headerImage___createdBy___internal___fieldOwners' - | 'headerImage___createdBy___internal___ignoreType' - | 'headerImage___createdBy___internal___mediaType' - | 'headerImage___createdBy___internal___owner' - | 'headerImage___createdBy___internal___type' - | 'headerImage___updatedBy___remoteTypeName' - | 'headerImage___updatedBy___remoteId' - | 'headerImage___updatedBy___stage' - | 'headerImage___updatedBy___createdAt' - | 'headerImage___updatedBy___updatedAt' - | 'headerImage___updatedBy___publishedAt' - | 'headerImage___updatedBy___name' - | 'headerImage___updatedBy___picture' - | 'headerImage___updatedBy___isActive' - | 'headerImage___updatedBy___kind' - | 'headerImage___updatedBy___id' - | 'headerImage___updatedBy___parent___id' - | 'headerImage___updatedBy___parent___children' - | 'headerImage___updatedBy___children' - | 'headerImage___updatedBy___children___id' - | 'headerImage___updatedBy___children___children' - | 'headerImage___updatedBy___internal___content' - | 'headerImage___updatedBy___internal___contentDigest' - | 'headerImage___updatedBy___internal___description' - | 'headerImage___updatedBy___internal___fieldOwners' - | 'headerImage___updatedBy___internal___ignoreType' - | 'headerImage___updatedBy___internal___mediaType' - | 'headerImage___updatedBy___internal___owner' - | 'headerImage___updatedBy___internal___type' - | 'headerImage___publishedBy___remoteTypeName' - | 'headerImage___publishedBy___remoteId' - | 'headerImage___publishedBy___stage' - | 'headerImage___publishedBy___createdAt' - | 'headerImage___publishedBy___updatedAt' - | 'headerImage___publishedBy___publishedAt' - | 'headerImage___publishedBy___name' - | 'headerImage___publishedBy___picture' - | 'headerImage___publishedBy___isActive' - | 'headerImage___publishedBy___kind' - | 'headerImage___publishedBy___id' - | 'headerImage___publishedBy___parent___id' - | 'headerImage___publishedBy___parent___children' - | 'headerImage___publishedBy___children' - | 'headerImage___publishedBy___children___id' - | 'headerImage___publishedBy___children___children' - | 'headerImage___publishedBy___internal___content' - | 'headerImage___publishedBy___internal___contentDigest' - | 'headerImage___publishedBy___internal___description' - | 'headerImage___publishedBy___internal___fieldOwners' - | 'headerImage___publishedBy___internal___ignoreType' - | 'headerImage___publishedBy___internal___mediaType' - | 'headerImage___publishedBy___internal___owner' - | 'headerImage___publishedBy___internal___type' - | 'headerImage___carouselImagesPortfolioItem' - | 'headerImage___carouselImagesPortfolioItem___remoteTypeName' - | 'headerImage___carouselImagesPortfolioItem___remoteId' - | 'headerImage___carouselImagesPortfolioItem___stage' - | 'headerImage___carouselImagesPortfolioItem___createdAt' - | 'headerImage___carouselImagesPortfolioItem___updatedAt' - | 'headerImage___carouselImagesPortfolioItem___publishedAt' - | 'headerImage___carouselImagesPortfolioItem___title' - | 'headerImage___carouselImagesPortfolioItem___description' - | 'headerImage___carouselImagesPortfolioItem___techSheet' - | 'headerImage___carouselImagesPortfolioItem___about___remoteTypeName' - | 'headerImage___carouselImagesPortfolioItem___about___raw' - | 'headerImage___carouselImagesPortfolioItem___about___html' - | 'headerImage___carouselImagesPortfolioItem___about___markdown' - | 'headerImage___carouselImagesPortfolioItem___about___text' - | 'headerImage___carouselImagesPortfolioItem___createdBy___remoteTypeName' - | 'headerImage___carouselImagesPortfolioItem___createdBy___remoteId' - | 'headerImage___carouselImagesPortfolioItem___createdBy___stage' - | 'headerImage___carouselImagesPortfolioItem___createdBy___createdAt' - | 'headerImage___carouselImagesPortfolioItem___createdBy___updatedAt' - | 'headerImage___carouselImagesPortfolioItem___createdBy___publishedAt' - | 'headerImage___carouselImagesPortfolioItem___createdBy___name' - | 'headerImage___carouselImagesPortfolioItem___createdBy___picture' - | 'headerImage___carouselImagesPortfolioItem___createdBy___isActive' - | 'headerImage___carouselImagesPortfolioItem___createdBy___kind' - | 'headerImage___carouselImagesPortfolioItem___createdBy___id' - | 'headerImage___carouselImagesPortfolioItem___createdBy___children' - | 'headerImage___carouselImagesPortfolioItem___updatedBy___remoteTypeName' - | 'headerImage___carouselImagesPortfolioItem___updatedBy___remoteId' - | 'headerImage___carouselImagesPortfolioItem___updatedBy___stage' - | 'headerImage___carouselImagesPortfolioItem___updatedBy___createdAt' - | 'headerImage___carouselImagesPortfolioItem___updatedBy___updatedAt' - | 'headerImage___carouselImagesPortfolioItem___updatedBy___publishedAt' - | 'headerImage___carouselImagesPortfolioItem___updatedBy___name' - | 'headerImage___carouselImagesPortfolioItem___updatedBy___picture' - | 'headerImage___carouselImagesPortfolioItem___updatedBy___isActive' - | 'headerImage___carouselImagesPortfolioItem___updatedBy___kind' - | 'headerImage___carouselImagesPortfolioItem___updatedBy___id' - | 'headerImage___carouselImagesPortfolioItem___updatedBy___children' - | 'headerImage___carouselImagesPortfolioItem___publishedBy___remoteTypeName' - | 'headerImage___carouselImagesPortfolioItem___publishedBy___remoteId' - | 'headerImage___carouselImagesPortfolioItem___publishedBy___stage' - | 'headerImage___carouselImagesPortfolioItem___publishedBy___createdAt' - | 'headerImage___carouselImagesPortfolioItem___publishedBy___updatedAt' - | 'headerImage___carouselImagesPortfolioItem___publishedBy___publishedAt' - | 'headerImage___carouselImagesPortfolioItem___publishedBy___name' - | 'headerImage___carouselImagesPortfolioItem___publishedBy___picture' - | 'headerImage___carouselImagesPortfolioItem___publishedBy___isActive' - | 'headerImage___carouselImagesPortfolioItem___publishedBy___kind' - | 'headerImage___carouselImagesPortfolioItem___publishedBy___id' - | 'headerImage___carouselImagesPortfolioItem___publishedBy___children' - | 'headerImage___carouselImagesPortfolioItem___carouselImages' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___remoteTypeName' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___remoteId' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___locale' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___stage' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___createdAt' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___updatedAt' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___publishedAt' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___handle' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___fileName' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___height' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___width' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___size' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___mimeType' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___scheduledIn' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___url' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___id' - | 'headerImage___carouselImagesPortfolioItem___carouselImages___children' - | 'headerImage___carouselImagesPortfolioItem___links' - | 'headerImage___carouselImagesPortfolioItem___links___remoteTypeName' - | 'headerImage___carouselImagesPortfolioItem___links___remoteId' - | 'headerImage___carouselImagesPortfolioItem___links___stage' - | 'headerImage___carouselImagesPortfolioItem___links___createdAt' - | 'headerImage___carouselImagesPortfolioItem___links___updatedAt' - | 'headerImage___carouselImagesPortfolioItem___links___publishedAt' - | 'headerImage___carouselImagesPortfolioItem___links___title' - | 'headerImage___carouselImagesPortfolioItem___links___url' - | 'headerImage___carouselImagesPortfolioItem___links___type' - | 'headerImage___carouselImagesPortfolioItem___links___scheduledIn' - | 'headerImage___carouselImagesPortfolioItem___links___id' - | 'headerImage___carouselImagesPortfolioItem___links___children' - | 'headerImage___carouselImagesPortfolioItem___scheduledIn' - | 'headerImage___carouselImagesPortfolioItem___scheduledIn___remoteTypeName' - | 'headerImage___carouselImagesPortfolioItem___scheduledIn___remoteId' - | 'headerImage___carouselImagesPortfolioItem___scheduledIn___stage' - | 'headerImage___carouselImagesPortfolioItem___scheduledIn___createdAt' - | 'headerImage___carouselImagesPortfolioItem___scheduledIn___updatedAt' - | 'headerImage___carouselImagesPortfolioItem___scheduledIn___publishedAt' - | 'headerImage___carouselImagesPortfolioItem___scheduledIn___description' - | 'headerImage___carouselImagesPortfolioItem___scheduledIn___errorMessage' - | 'headerImage___carouselImagesPortfolioItem___scheduledIn___rawPayload' - | 'headerImage___carouselImagesPortfolioItem___scheduledIn___status' - | 'headerImage___carouselImagesPortfolioItem___scheduledIn___id' - | 'headerImage___carouselImagesPortfolioItem___scheduledIn___children' - | 'headerImage___carouselImagesPortfolioItem___gatsbyPath' - | 'headerImage___carouselImagesPortfolioItem___id' - | 'headerImage___carouselImagesPortfolioItem___parent___id' - | 'headerImage___carouselImagesPortfolioItem___parent___children' - | 'headerImage___carouselImagesPortfolioItem___children' - | 'headerImage___carouselImagesPortfolioItem___children___id' - | 'headerImage___carouselImagesPortfolioItem___children___children' - | 'headerImage___carouselImagesPortfolioItem___internal___content' - | 'headerImage___carouselImagesPortfolioItem___internal___contentDigest' - | 'headerImage___carouselImagesPortfolioItem___internal___description' - | 'headerImage___carouselImagesPortfolioItem___internal___fieldOwners' - | 'headerImage___carouselImagesPortfolioItem___internal___ignoreType' - | 'headerImage___carouselImagesPortfolioItem___internal___mediaType' - | 'headerImage___carouselImagesPortfolioItem___internal___owner' - | 'headerImage___carouselImagesPortfolioItem___internal___type' - | 'headerImage___scheduledIn' - | 'headerImage___scheduledIn___remoteTypeName' - | 'headerImage___scheduledIn___remoteId' - | 'headerImage___scheduledIn___stage' - | 'headerImage___scheduledIn___createdAt' - | 'headerImage___scheduledIn___updatedAt' - | 'headerImage___scheduledIn___publishedAt' - | 'headerImage___scheduledIn___description' - | 'headerImage___scheduledIn___errorMessage' - | 'headerImage___scheduledIn___rawPayload' - | 'headerImage___scheduledIn___createdBy___remoteTypeName' - | 'headerImage___scheduledIn___createdBy___remoteId' - | 'headerImage___scheduledIn___createdBy___stage' - | 'headerImage___scheduledIn___createdBy___createdAt' - | 'headerImage___scheduledIn___createdBy___updatedAt' - | 'headerImage___scheduledIn___createdBy___publishedAt' - | 'headerImage___scheduledIn___createdBy___name' - | 'headerImage___scheduledIn___createdBy___picture' - | 'headerImage___scheduledIn___createdBy___isActive' - | 'headerImage___scheduledIn___createdBy___kind' - | 'headerImage___scheduledIn___createdBy___id' - | 'headerImage___scheduledIn___createdBy___children' - | 'headerImage___scheduledIn___updatedBy___remoteTypeName' - | 'headerImage___scheduledIn___updatedBy___remoteId' - | 'headerImage___scheduledIn___updatedBy___stage' - | 'headerImage___scheduledIn___updatedBy___createdAt' - | 'headerImage___scheduledIn___updatedBy___updatedAt' - | 'headerImage___scheduledIn___updatedBy___publishedAt' - | 'headerImage___scheduledIn___updatedBy___name' - | 'headerImage___scheduledIn___updatedBy___picture' - | 'headerImage___scheduledIn___updatedBy___isActive' - | 'headerImage___scheduledIn___updatedBy___kind' - | 'headerImage___scheduledIn___updatedBy___id' - | 'headerImage___scheduledIn___updatedBy___children' - | 'headerImage___scheduledIn___publishedBy___remoteTypeName' - | 'headerImage___scheduledIn___publishedBy___remoteId' - | 'headerImage___scheduledIn___publishedBy___stage' - | 'headerImage___scheduledIn___publishedBy___createdAt' - | 'headerImage___scheduledIn___publishedBy___updatedAt' - | 'headerImage___scheduledIn___publishedBy___publishedAt' - | 'headerImage___scheduledIn___publishedBy___name' - | 'headerImage___scheduledIn___publishedBy___picture' - | 'headerImage___scheduledIn___publishedBy___isActive' - | 'headerImage___scheduledIn___publishedBy___kind' - | 'headerImage___scheduledIn___publishedBy___id' - | 'headerImage___scheduledIn___publishedBy___children' - | 'headerImage___scheduledIn___release___remoteTypeName' - | 'headerImage___scheduledIn___release___remoteId' - | 'headerImage___scheduledIn___release___stage' - | 'headerImage___scheduledIn___release___createdAt' - | 'headerImage___scheduledIn___release___updatedAt' - | 'headerImage___scheduledIn___release___publishedAt' - | 'headerImage___scheduledIn___release___title' - | 'headerImage___scheduledIn___release___description' - | 'headerImage___scheduledIn___release___errorMessage' - | 'headerImage___scheduledIn___release___isActive' - | 'headerImage___scheduledIn___release___isImplicit' - | 'headerImage___scheduledIn___release___releaseAt' - | 'headerImage___scheduledIn___release___operations' - | 'headerImage___scheduledIn___release___status' - | 'headerImage___scheduledIn___release___id' - | 'headerImage___scheduledIn___release___children' - | 'headerImage___scheduledIn___status' - | 'headerImage___scheduledIn___id' - | 'headerImage___scheduledIn___parent___id' - | 'headerImage___scheduledIn___parent___children' - | 'headerImage___scheduledIn___children' - | 'headerImage___scheduledIn___children___id' - | 'headerImage___scheduledIn___children___children' - | 'headerImage___scheduledIn___internal___content' - | 'headerImage___scheduledIn___internal___contentDigest' - | 'headerImage___scheduledIn___internal___description' - | 'headerImage___scheduledIn___internal___fieldOwners' - | 'headerImage___scheduledIn___internal___ignoreType' - | 'headerImage___scheduledIn___internal___mediaType' - | 'headerImage___scheduledIn___internal___owner' - | 'headerImage___scheduledIn___internal___type' - | 'headerImage___url' - | 'headerImage___id' - | 'headerImage___parent___id' - | 'headerImage___parent___parent___id' - | 'headerImage___parent___parent___children' - | 'headerImage___parent___children' - | 'headerImage___parent___children___id' - | 'headerImage___parent___children___children' - | 'headerImage___parent___internal___content' - | 'headerImage___parent___internal___contentDigest' - | 'headerImage___parent___internal___description' - | 'headerImage___parent___internal___fieldOwners' - | 'headerImage___parent___internal___ignoreType' - | 'headerImage___parent___internal___mediaType' - | 'headerImage___parent___internal___owner' - | 'headerImage___parent___internal___type' - | 'headerImage___children' - | 'headerImage___children___id' - | 'headerImage___children___parent___id' - | 'headerImage___children___parent___children' - | 'headerImage___children___children' - | 'headerImage___children___children___id' - | 'headerImage___children___children___children' - | 'headerImage___children___internal___content' - | 'headerImage___children___internal___contentDigest' - | 'headerImage___children___internal___description' - | 'headerImage___children___internal___fieldOwners' - | 'headerImage___children___internal___ignoreType' - | 'headerImage___children___internal___mediaType' - | 'headerImage___children___internal___owner' - | 'headerImage___children___internal___type' - | 'headerImage___internal___content' - | 'headerImage___internal___contentDigest' - | 'headerImage___internal___description' - | 'headerImage___internal___fieldOwners' - | 'headerImage___internal___ignoreType' - | 'headerImage___internal___mediaType' - | 'headerImage___internal___owner' - | 'headerImage___internal___type' - | 'type' - | 'categories' - | 'scheduledIn' - | 'scheduledIn___remoteTypeName' - | 'scheduledIn___remoteId' - | 'scheduledIn___stage' - | 'scheduledIn___createdAt' - | 'scheduledIn___updatedAt' - | 'scheduledIn___publishedAt' - | 'scheduledIn___description' - | 'scheduledIn___errorMessage' - | 'scheduledIn___rawPayload' - | 'scheduledIn___createdBy___remoteTypeName' - | 'scheduledIn___createdBy___remoteId' - | 'scheduledIn___createdBy___stage' - | 'scheduledIn___createdBy___createdAt' - | 'scheduledIn___createdBy___updatedAt' - | 'scheduledIn___createdBy___publishedAt' - | 'scheduledIn___createdBy___name' - | 'scheduledIn___createdBy___picture' - | 'scheduledIn___createdBy___isActive' - | 'scheduledIn___createdBy___kind' - | 'scheduledIn___createdBy___id' - | 'scheduledIn___createdBy___parent___id' - | 'scheduledIn___createdBy___parent___children' - | 'scheduledIn___createdBy___children' - | 'scheduledIn___createdBy___children___id' - | 'scheduledIn___createdBy___children___children' - | 'scheduledIn___createdBy___internal___content' - | 'scheduledIn___createdBy___internal___contentDigest' - | 'scheduledIn___createdBy___internal___description' - | 'scheduledIn___createdBy___internal___fieldOwners' - | 'scheduledIn___createdBy___internal___ignoreType' - | 'scheduledIn___createdBy___internal___mediaType' - | 'scheduledIn___createdBy___internal___owner' - | 'scheduledIn___createdBy___internal___type' - | 'scheduledIn___updatedBy___remoteTypeName' - | 'scheduledIn___updatedBy___remoteId' - | 'scheduledIn___updatedBy___stage' - | 'scheduledIn___updatedBy___createdAt' - | 'scheduledIn___updatedBy___updatedAt' - | 'scheduledIn___updatedBy___publishedAt' - | 'scheduledIn___updatedBy___name' - | 'scheduledIn___updatedBy___picture' - | 'scheduledIn___updatedBy___isActive' - | 'scheduledIn___updatedBy___kind' - | 'scheduledIn___updatedBy___id' - | 'scheduledIn___updatedBy___parent___id' - | 'scheduledIn___updatedBy___parent___children' - | 'scheduledIn___updatedBy___children' - | 'scheduledIn___updatedBy___children___id' - | 'scheduledIn___updatedBy___children___children' - | 'scheduledIn___updatedBy___internal___content' - | 'scheduledIn___updatedBy___internal___contentDigest' - | 'scheduledIn___updatedBy___internal___description' - | 'scheduledIn___updatedBy___internal___fieldOwners' - | 'scheduledIn___updatedBy___internal___ignoreType' - | 'scheduledIn___updatedBy___internal___mediaType' - | 'scheduledIn___updatedBy___internal___owner' - | 'scheduledIn___updatedBy___internal___type' - | 'scheduledIn___publishedBy___remoteTypeName' - | 'scheduledIn___publishedBy___remoteId' - | 'scheduledIn___publishedBy___stage' - | 'scheduledIn___publishedBy___createdAt' - | 'scheduledIn___publishedBy___updatedAt' - | 'scheduledIn___publishedBy___publishedAt' - | 'scheduledIn___publishedBy___name' - | 'scheduledIn___publishedBy___picture' - | 'scheduledIn___publishedBy___isActive' - | 'scheduledIn___publishedBy___kind' - | 'scheduledIn___publishedBy___id' - | 'scheduledIn___publishedBy___parent___id' - | 'scheduledIn___publishedBy___parent___children' - | 'scheduledIn___publishedBy___children' - | 'scheduledIn___publishedBy___children___id' - | 'scheduledIn___publishedBy___children___children' - | 'scheduledIn___publishedBy___internal___content' - | 'scheduledIn___publishedBy___internal___contentDigest' - | 'scheduledIn___publishedBy___internal___description' - | 'scheduledIn___publishedBy___internal___fieldOwners' - | 'scheduledIn___publishedBy___internal___ignoreType' - | 'scheduledIn___publishedBy___internal___mediaType' - | 'scheduledIn___publishedBy___internal___owner' - | 'scheduledIn___publishedBy___internal___type' - | 'scheduledIn___release___remoteTypeName' - | 'scheduledIn___release___remoteId' - | 'scheduledIn___release___stage' - | 'scheduledIn___release___createdAt' - | 'scheduledIn___release___updatedAt' - | 'scheduledIn___release___publishedAt' - | 'scheduledIn___release___title' - | 'scheduledIn___release___description' - | 'scheduledIn___release___errorMessage' - | 'scheduledIn___release___isActive' - | 'scheduledIn___release___isImplicit' - | 'scheduledIn___release___releaseAt' - | 'scheduledIn___release___createdBy___remoteTypeName' - | 'scheduledIn___release___createdBy___remoteId' - | 'scheduledIn___release___createdBy___stage' - | 'scheduledIn___release___createdBy___createdAt' - | 'scheduledIn___release___createdBy___updatedAt' - | 'scheduledIn___release___createdBy___publishedAt' - | 'scheduledIn___release___createdBy___name' - | 'scheduledIn___release___createdBy___picture' - | 'scheduledIn___release___createdBy___isActive' - | 'scheduledIn___release___createdBy___kind' - | 'scheduledIn___release___createdBy___id' - | 'scheduledIn___release___createdBy___children' - | 'scheduledIn___release___updatedBy___remoteTypeName' - | 'scheduledIn___release___updatedBy___remoteId' - | 'scheduledIn___release___updatedBy___stage' - | 'scheduledIn___release___updatedBy___createdAt' - | 'scheduledIn___release___updatedBy___updatedAt' - | 'scheduledIn___release___updatedBy___publishedAt' - | 'scheduledIn___release___updatedBy___name' - | 'scheduledIn___release___updatedBy___picture' - | 'scheduledIn___release___updatedBy___isActive' - | 'scheduledIn___release___updatedBy___kind' - | 'scheduledIn___release___updatedBy___id' - | 'scheduledIn___release___updatedBy___children' - | 'scheduledIn___release___publishedBy___remoteTypeName' - | 'scheduledIn___release___publishedBy___remoteId' - | 'scheduledIn___release___publishedBy___stage' - | 'scheduledIn___release___publishedBy___createdAt' - | 'scheduledIn___release___publishedBy___updatedAt' - | 'scheduledIn___release___publishedBy___publishedAt' - | 'scheduledIn___release___publishedBy___name' - | 'scheduledIn___release___publishedBy___picture' - | 'scheduledIn___release___publishedBy___isActive' - | 'scheduledIn___release___publishedBy___kind' - | 'scheduledIn___release___publishedBy___id' - | 'scheduledIn___release___publishedBy___children' - | 'scheduledIn___release___operations' - | 'scheduledIn___release___operations___remoteTypeName' - | 'scheduledIn___release___operations___remoteId' - | 'scheduledIn___release___operations___stage' - | 'scheduledIn___release___operations___createdAt' - | 'scheduledIn___release___operations___updatedAt' - | 'scheduledIn___release___operations___publishedAt' - | 'scheduledIn___release___operations___description' - | 'scheduledIn___release___operations___errorMessage' - | 'scheduledIn___release___operations___rawPayload' - | 'scheduledIn___release___operations___status' - | 'scheduledIn___release___operations___id' - | 'scheduledIn___release___operations___children' - | 'scheduledIn___release___status' - | 'scheduledIn___release___id' - | 'scheduledIn___release___parent___id' - | 'scheduledIn___release___parent___children' - | 'scheduledIn___release___children' - | 'scheduledIn___release___children___id' - | 'scheduledIn___release___children___children' - | 'scheduledIn___release___internal___content' - | 'scheduledIn___release___internal___contentDigest' - | 'scheduledIn___release___internal___description' - | 'scheduledIn___release___internal___fieldOwners' - | 'scheduledIn___release___internal___ignoreType' - | 'scheduledIn___release___internal___mediaType' - | 'scheduledIn___release___internal___owner' - | 'scheduledIn___release___internal___type' - | 'scheduledIn___status' - | 'scheduledIn___id' - | 'scheduledIn___parent___id' - | 'scheduledIn___parent___parent___id' - | 'scheduledIn___parent___parent___children' - | 'scheduledIn___parent___children' - | 'scheduledIn___parent___children___id' - | 'scheduledIn___parent___children___children' - | 'scheduledIn___parent___internal___content' - | 'scheduledIn___parent___internal___contentDigest' - | 'scheduledIn___parent___internal___description' - | 'scheduledIn___parent___internal___fieldOwners' - | 'scheduledIn___parent___internal___ignoreType' - | 'scheduledIn___parent___internal___mediaType' - | 'scheduledIn___parent___internal___owner' - | 'scheduledIn___parent___internal___type' - | 'scheduledIn___children' - | 'scheduledIn___children___id' - | 'scheduledIn___children___parent___id' - | 'scheduledIn___children___parent___children' - | 'scheduledIn___children___children' - | 'scheduledIn___children___children___id' - | 'scheduledIn___children___children___children' - | 'scheduledIn___children___internal___content' - | 'scheduledIn___children___internal___contentDigest' - | 'scheduledIn___children___internal___description' - | 'scheduledIn___children___internal___fieldOwners' - | 'scheduledIn___children___internal___ignoreType' - | 'scheduledIn___children___internal___mediaType' - | 'scheduledIn___children___internal___owner' - | 'scheduledIn___children___internal___type' - | 'scheduledIn___internal___content' - | 'scheduledIn___internal___contentDigest' - | 'scheduledIn___internal___description' - | 'scheduledIn___internal___fieldOwners' - | 'scheduledIn___internal___ignoreType' - | 'scheduledIn___internal___mediaType' - | 'scheduledIn___internal___owner' - | 'scheduledIn___internal___type' - | 'gatsbyPath' - | 'id' - | 'parent___id' - | 'parent___parent___id' - | 'parent___parent___parent___id' - | 'parent___parent___parent___children' - | 'parent___parent___children' - | 'parent___parent___children___id' - | 'parent___parent___children___children' - | 'parent___parent___internal___content' - | 'parent___parent___internal___contentDigest' - | 'parent___parent___internal___description' - | 'parent___parent___internal___fieldOwners' - | 'parent___parent___internal___ignoreType' - | 'parent___parent___internal___mediaType' - | 'parent___parent___internal___owner' - | 'parent___parent___internal___type' - | 'parent___children' - | 'parent___children___id' - | 'parent___children___parent___id' - | 'parent___children___parent___children' - | 'parent___children___children' - | 'parent___children___children___id' - | 'parent___children___children___children' - | 'parent___children___internal___content' - | 'parent___children___internal___contentDigest' - | 'parent___children___internal___description' - | 'parent___children___internal___fieldOwners' - | 'parent___children___internal___ignoreType' - | 'parent___children___internal___mediaType' - | 'parent___children___internal___owner' - | 'parent___children___internal___type' - | 'parent___internal___content' - | 'parent___internal___contentDigest' - | 'parent___internal___description' - | 'parent___internal___fieldOwners' - | 'parent___internal___ignoreType' - | 'parent___internal___mediaType' - | 'parent___internal___owner' - | 'parent___internal___type' - | 'children' - | 'children___id' - | 'children___parent___id' - | 'children___parent___parent___id' - | 'children___parent___parent___children' - | 'children___parent___children' - | 'children___parent___children___id' - | 'children___parent___children___children' - | 'children___parent___internal___content' - | 'children___parent___internal___contentDigest' - | 'children___parent___internal___description' - | 'children___parent___internal___fieldOwners' - | 'children___parent___internal___ignoreType' - | 'children___parent___internal___mediaType' - | 'children___parent___internal___owner' - | 'children___parent___internal___type' - | 'children___children' - | 'children___children___id' - | 'children___children___parent___id' - | 'children___children___parent___children' - | 'children___children___children' - | 'children___children___children___id' - | 'children___children___children___children' - | 'children___children___internal___content' - | 'children___children___internal___contentDigest' - | 'children___children___internal___description' - | 'children___children___internal___fieldOwners' - | 'children___children___internal___ignoreType' - | 'children___children___internal___mediaType' - | 'children___children___internal___owner' - | 'children___children___internal___type' - | 'children___internal___content' - | 'children___internal___contentDigest' - | 'children___internal___description' - | 'children___internal___fieldOwners' - | 'children___internal___ignoreType' - | 'children___internal___mediaType' - | 'children___internal___owner' - | 'children___internal___type' - | 'internal___content' - | 'internal___contentDigest' - | 'internal___description' - | 'internal___fieldOwners' - | 'internal___ignoreType' - | 'internal___mediaType' - | 'internal___owner' - | 'internal___type'; - -export type GraphCms_BlogGroupConnection = { - totalCount: Scalars['Int']; - edges: Array; - nodes: Array; - pageInfo: PageInfo; - distinct: Array; - max?: Maybe; - min?: Maybe; - sum?: Maybe; - group: Array; - field: Scalars['String']; - fieldValue?: Maybe; -}; - - -export type GraphCms_BlogGroupConnectionDistinctArgs = { - field: GraphCms_BlogFieldsEnum; -}; - - -export type GraphCms_BlogGroupConnectionMaxArgs = { - field: GraphCms_BlogFieldsEnum; -}; - - -export type GraphCms_BlogGroupConnectionMinArgs = { - field: GraphCms_BlogFieldsEnum; -}; - - -export type GraphCms_BlogGroupConnectionSumArgs = { - field: GraphCms_BlogFieldsEnum; -}; - - -export type GraphCms_BlogGroupConnectionGroupArgs = { - skip?: InputMaybe; - limit?: InputMaybe; - field: GraphCms_BlogFieldsEnum; -}; - -export type GraphCms_BlogFilterInput = { - remoteTypeName?: InputMaybe; - remoteId?: InputMaybe; - stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; - publishedAt?: InputMaybe; - title?: InputMaybe; - description?: InputMaybe; - content?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; - publishedBy?: InputMaybe; - headerImage?: InputMaybe; - type?: InputMaybe; - categories?: InputMaybe; - scheduledIn?: InputMaybe; - gatsbyPath?: InputMaybe; - id?: InputMaybe; - parent?: InputMaybe; - children?: InputMaybe; - internal?: InputMaybe; -}; - -export type GraphCms_BlogSortInput = { - fields?: InputMaybe>>; - order?: InputMaybe>>; -}; - -export type GraphCms_LinkConnection = { - totalCount: Scalars['Int']; - edges: Array; - nodes: Array; - pageInfo: PageInfo; - distinct: Array; - max?: Maybe; - min?: Maybe; - sum?: Maybe; - group: Array; -}; - - -export type GraphCms_LinkConnectionDistinctArgs = { - field: GraphCms_LinkFieldsEnum; -}; - - -export type GraphCms_LinkConnectionMaxArgs = { - field: GraphCms_LinkFieldsEnum; -}; - - -export type GraphCms_LinkConnectionMinArgs = { - field: GraphCms_LinkFieldsEnum; -}; - - -export type GraphCms_LinkConnectionSumArgs = { - field: GraphCms_LinkFieldsEnum; -}; - - -export type GraphCms_LinkConnectionGroupArgs = { - skip?: InputMaybe; - limit?: InputMaybe; - field: GraphCms_LinkFieldsEnum; -}; - -export type GraphCms_LinkEdge = { - next?: Maybe; - node: GraphCms_Link; - previous?: Maybe; -}; - -export type GraphCms_LinkFieldsEnum = - | 'remoteTypeName' - | 'remoteId' - | 'stage' - | 'createdAt' - | 'updatedAt' - | 'publishedAt' - | 'title' - | 'url' - | 'type' - | 'createdBy___remoteTypeName' - | 'createdBy___remoteId' - | 'createdBy___stage' - | 'createdBy___createdAt' - | 'createdBy___updatedAt' - | 'createdBy___publishedAt' - | 'createdBy___name' - | 'createdBy___picture' - | 'createdBy___isActive' - | 'createdBy___kind' - | 'createdBy___id' - | 'createdBy___parent___id' - | 'createdBy___parent___parent___id' - | 'createdBy___parent___parent___children' - | 'createdBy___parent___children' - | 'createdBy___parent___children___id' - | 'createdBy___parent___children___children' - | 'createdBy___parent___internal___content' - | 'createdBy___parent___internal___contentDigest' - | 'createdBy___parent___internal___description' - | 'createdBy___parent___internal___fieldOwners' - | 'createdBy___parent___internal___ignoreType' - | 'createdBy___parent___internal___mediaType' - | 'createdBy___parent___internal___owner' - | 'createdBy___parent___internal___type' - | 'createdBy___children' - | 'createdBy___children___id' - | 'createdBy___children___parent___id' - | 'createdBy___children___parent___children' - | 'createdBy___children___children' - | 'createdBy___children___children___id' - | 'createdBy___children___children___children' - | 'createdBy___children___internal___content' - | 'createdBy___children___internal___contentDigest' - | 'createdBy___children___internal___description' - | 'createdBy___children___internal___fieldOwners' - | 'createdBy___children___internal___ignoreType' - | 'createdBy___children___internal___mediaType' - | 'createdBy___children___internal___owner' - | 'createdBy___children___internal___type' - | 'createdBy___internal___content' - | 'createdBy___internal___contentDigest' - | 'createdBy___internal___description' - | 'createdBy___internal___fieldOwners' - | 'createdBy___internal___ignoreType' - | 'createdBy___internal___mediaType' - | 'createdBy___internal___owner' - | 'createdBy___internal___type' - | 'updatedBy___remoteTypeName' - | 'updatedBy___remoteId' - | 'updatedBy___stage' - | 'updatedBy___createdAt' - | 'updatedBy___updatedAt' - | 'updatedBy___publishedAt' - | 'updatedBy___name' - | 'updatedBy___picture' - | 'updatedBy___isActive' - | 'updatedBy___kind' - | 'updatedBy___id' - | 'updatedBy___parent___id' - | 'updatedBy___parent___parent___id' - | 'updatedBy___parent___parent___children' - | 'updatedBy___parent___children' - | 'updatedBy___parent___children___id' - | 'updatedBy___parent___children___children' - | 'updatedBy___parent___internal___content' - | 'updatedBy___parent___internal___contentDigest' - | 'updatedBy___parent___internal___description' - | 'updatedBy___parent___internal___fieldOwners' - | 'updatedBy___parent___internal___ignoreType' - | 'updatedBy___parent___internal___mediaType' - | 'updatedBy___parent___internal___owner' - | 'updatedBy___parent___internal___type' - | 'updatedBy___children' - | 'updatedBy___children___id' - | 'updatedBy___children___parent___id' - | 'updatedBy___children___parent___children' - | 'updatedBy___children___children' - | 'updatedBy___children___children___id' - | 'updatedBy___children___children___children' - | 'updatedBy___children___internal___content' - | 'updatedBy___children___internal___contentDigest' - | 'updatedBy___children___internal___description' - | 'updatedBy___children___internal___fieldOwners' - | 'updatedBy___children___internal___ignoreType' - | 'updatedBy___children___internal___mediaType' - | 'updatedBy___children___internal___owner' - | 'updatedBy___children___internal___type' - | 'updatedBy___internal___content' - | 'updatedBy___internal___contentDigest' - | 'updatedBy___internal___description' - | 'updatedBy___internal___fieldOwners' - | 'updatedBy___internal___ignoreType' - | 'updatedBy___internal___mediaType' - | 'updatedBy___internal___owner' - | 'updatedBy___internal___type' - | 'publishedBy___remoteTypeName' - | 'publishedBy___remoteId' - | 'publishedBy___stage' - | 'publishedBy___createdAt' - | 'publishedBy___updatedAt' - | 'publishedBy___publishedAt' - | 'publishedBy___name' - | 'publishedBy___picture' - | 'publishedBy___isActive' - | 'publishedBy___kind' - | 'publishedBy___id' - | 'publishedBy___parent___id' - | 'publishedBy___parent___parent___id' - | 'publishedBy___parent___parent___children' - | 'publishedBy___parent___children' - | 'publishedBy___parent___children___id' - | 'publishedBy___parent___children___children' - | 'publishedBy___parent___internal___content' - | 'publishedBy___parent___internal___contentDigest' - | 'publishedBy___parent___internal___description' - | 'publishedBy___parent___internal___fieldOwners' - | 'publishedBy___parent___internal___ignoreType' - | 'publishedBy___parent___internal___mediaType' - | 'publishedBy___parent___internal___owner' - | 'publishedBy___parent___internal___type' - | 'publishedBy___children' - | 'publishedBy___children___id' - | 'publishedBy___children___parent___id' - | 'publishedBy___children___parent___children' - | 'publishedBy___children___children' - | 'publishedBy___children___children___id' - | 'publishedBy___children___children___children' - | 'publishedBy___children___internal___content' - | 'publishedBy___children___internal___contentDigest' - | 'publishedBy___children___internal___description' - | 'publishedBy___children___internal___fieldOwners' - | 'publishedBy___children___internal___ignoreType' - | 'publishedBy___children___internal___mediaType' - | 'publishedBy___children___internal___owner' - | 'publishedBy___children___internal___type' - | 'publishedBy___internal___content' - | 'publishedBy___internal___contentDigest' - | 'publishedBy___internal___description' - | 'publishedBy___internal___fieldOwners' - | 'publishedBy___internal___ignoreType' - | 'publishedBy___internal___mediaType' - | 'publishedBy___internal___owner' - | 'publishedBy___internal___type' - | 'scheduledIn' - | 'scheduledIn___remoteTypeName' - | 'scheduledIn___remoteId' - | 'scheduledIn___stage' - | 'scheduledIn___createdAt' - | 'scheduledIn___updatedAt' - | 'scheduledIn___publishedAt' - | 'scheduledIn___description' - | 'scheduledIn___errorMessage' - | 'scheduledIn___rawPayload' - | 'scheduledIn___createdBy___remoteTypeName' - | 'scheduledIn___createdBy___remoteId' - | 'scheduledIn___createdBy___stage' - | 'scheduledIn___createdBy___createdAt' - | 'scheduledIn___createdBy___updatedAt' - | 'scheduledIn___createdBy___publishedAt' - | 'scheduledIn___createdBy___name' - | 'scheduledIn___createdBy___picture' - | 'scheduledIn___createdBy___isActive' - | 'scheduledIn___createdBy___kind' - | 'scheduledIn___createdBy___id' - | 'scheduledIn___createdBy___parent___id' - | 'scheduledIn___createdBy___parent___children' - | 'scheduledIn___createdBy___children' - | 'scheduledIn___createdBy___children___id' - | 'scheduledIn___createdBy___children___children' - | 'scheduledIn___createdBy___internal___content' - | 'scheduledIn___createdBy___internal___contentDigest' - | 'scheduledIn___createdBy___internal___description' - | 'scheduledIn___createdBy___internal___fieldOwners' - | 'scheduledIn___createdBy___internal___ignoreType' - | 'scheduledIn___createdBy___internal___mediaType' - | 'scheduledIn___createdBy___internal___owner' - | 'scheduledIn___createdBy___internal___type' - | 'scheduledIn___updatedBy___remoteTypeName' - | 'scheduledIn___updatedBy___remoteId' - | 'scheduledIn___updatedBy___stage' - | 'scheduledIn___updatedBy___createdAt' - | 'scheduledIn___updatedBy___updatedAt' - | 'scheduledIn___updatedBy___publishedAt' - | 'scheduledIn___updatedBy___name' - | 'scheduledIn___updatedBy___picture' - | 'scheduledIn___updatedBy___isActive' - | 'scheduledIn___updatedBy___kind' - | 'scheduledIn___updatedBy___id' - | 'scheduledIn___updatedBy___parent___id' - | 'scheduledIn___updatedBy___parent___children' - | 'scheduledIn___updatedBy___children' - | 'scheduledIn___updatedBy___children___id' - | 'scheduledIn___updatedBy___children___children' - | 'scheduledIn___updatedBy___internal___content' - | 'scheduledIn___updatedBy___internal___contentDigest' - | 'scheduledIn___updatedBy___internal___description' - | 'scheduledIn___updatedBy___internal___fieldOwners' - | 'scheduledIn___updatedBy___internal___ignoreType' - | 'scheduledIn___updatedBy___internal___mediaType' - | 'scheduledIn___updatedBy___internal___owner' - | 'scheduledIn___updatedBy___internal___type' - | 'scheduledIn___publishedBy___remoteTypeName' - | 'scheduledIn___publishedBy___remoteId' - | 'scheduledIn___publishedBy___stage' - | 'scheduledIn___publishedBy___createdAt' - | 'scheduledIn___publishedBy___updatedAt' - | 'scheduledIn___publishedBy___publishedAt' - | 'scheduledIn___publishedBy___name' - | 'scheduledIn___publishedBy___picture' - | 'scheduledIn___publishedBy___isActive' - | 'scheduledIn___publishedBy___kind' - | 'scheduledIn___publishedBy___id' - | 'scheduledIn___publishedBy___parent___id' - | 'scheduledIn___publishedBy___parent___children' - | 'scheduledIn___publishedBy___children' - | 'scheduledIn___publishedBy___children___id' - | 'scheduledIn___publishedBy___children___children' - | 'scheduledIn___publishedBy___internal___content' - | 'scheduledIn___publishedBy___internal___contentDigest' - | 'scheduledIn___publishedBy___internal___description' - | 'scheduledIn___publishedBy___internal___fieldOwners' - | 'scheduledIn___publishedBy___internal___ignoreType' - | 'scheduledIn___publishedBy___internal___mediaType' - | 'scheduledIn___publishedBy___internal___owner' - | 'scheduledIn___publishedBy___internal___type' - | 'scheduledIn___release___remoteTypeName' - | 'scheduledIn___release___remoteId' - | 'scheduledIn___release___stage' - | 'scheduledIn___release___createdAt' - | 'scheduledIn___release___updatedAt' - | 'scheduledIn___release___publishedAt' - | 'scheduledIn___release___title' - | 'scheduledIn___release___description' - | 'scheduledIn___release___errorMessage' - | 'scheduledIn___release___isActive' - | 'scheduledIn___release___isImplicit' - | 'scheduledIn___release___releaseAt' - | 'scheduledIn___release___createdBy___remoteTypeName' - | 'scheduledIn___release___createdBy___remoteId' - | 'scheduledIn___release___createdBy___stage' - | 'scheduledIn___release___createdBy___createdAt' - | 'scheduledIn___release___createdBy___updatedAt' - | 'scheduledIn___release___createdBy___publishedAt' - | 'scheduledIn___release___createdBy___name' - | 'scheduledIn___release___createdBy___picture' - | 'scheduledIn___release___createdBy___isActive' - | 'scheduledIn___release___createdBy___kind' - | 'scheduledIn___release___createdBy___id' - | 'scheduledIn___release___createdBy___children' - | 'scheduledIn___release___updatedBy___remoteTypeName' - | 'scheduledIn___release___updatedBy___remoteId' - | 'scheduledIn___release___updatedBy___stage' - | 'scheduledIn___release___updatedBy___createdAt' - | 'scheduledIn___release___updatedBy___updatedAt' - | 'scheduledIn___release___updatedBy___publishedAt' - | 'scheduledIn___release___updatedBy___name' - | 'scheduledIn___release___updatedBy___picture' - | 'scheduledIn___release___updatedBy___isActive' - | 'scheduledIn___release___updatedBy___kind' - | 'scheduledIn___release___updatedBy___id' - | 'scheduledIn___release___updatedBy___children' - | 'scheduledIn___release___publishedBy___remoteTypeName' - | 'scheduledIn___release___publishedBy___remoteId' - | 'scheduledIn___release___publishedBy___stage' - | 'scheduledIn___release___publishedBy___createdAt' - | 'scheduledIn___release___publishedBy___updatedAt' - | 'scheduledIn___release___publishedBy___publishedAt' - | 'scheduledIn___release___publishedBy___name' - | 'scheduledIn___release___publishedBy___picture' - | 'scheduledIn___release___publishedBy___isActive' - | 'scheduledIn___release___publishedBy___kind' - | 'scheduledIn___release___publishedBy___id' - | 'scheduledIn___release___publishedBy___children' - | 'scheduledIn___release___operations' - | 'scheduledIn___release___operations___remoteTypeName' - | 'scheduledIn___release___operations___remoteId' - | 'scheduledIn___release___operations___stage' - | 'scheduledIn___release___operations___createdAt' - | 'scheduledIn___release___operations___updatedAt' - | 'scheduledIn___release___operations___publishedAt' - | 'scheduledIn___release___operations___description' - | 'scheduledIn___release___operations___errorMessage' - | 'scheduledIn___release___operations___rawPayload' - | 'scheduledIn___release___operations___status' - | 'scheduledIn___release___operations___id' - | 'scheduledIn___release___operations___children' - | 'scheduledIn___release___status' - | 'scheduledIn___release___id' - | 'scheduledIn___release___parent___id' - | 'scheduledIn___release___parent___children' - | 'scheduledIn___release___children' - | 'scheduledIn___release___children___id' - | 'scheduledIn___release___children___children' - | 'scheduledIn___release___internal___content' - | 'scheduledIn___release___internal___contentDigest' - | 'scheduledIn___release___internal___description' - | 'scheduledIn___release___internal___fieldOwners' - | 'scheduledIn___release___internal___ignoreType' - | 'scheduledIn___release___internal___mediaType' - | 'scheduledIn___release___internal___owner' - | 'scheduledIn___release___internal___type' - | 'scheduledIn___status' - | 'scheduledIn___id' - | 'scheduledIn___parent___id' - | 'scheduledIn___parent___parent___id' - | 'scheduledIn___parent___parent___children' - | 'scheduledIn___parent___children' - | 'scheduledIn___parent___children___id' - | 'scheduledIn___parent___children___children' - | 'scheduledIn___parent___internal___content' - | 'scheduledIn___parent___internal___contentDigest' - | 'scheduledIn___parent___internal___description' - | 'scheduledIn___parent___internal___fieldOwners' - | 'scheduledIn___parent___internal___ignoreType' - | 'scheduledIn___parent___internal___mediaType' - | 'scheduledIn___parent___internal___owner' - | 'scheduledIn___parent___internal___type' - | 'scheduledIn___children' - | 'scheduledIn___children___id' - | 'scheduledIn___children___parent___id' - | 'scheduledIn___children___parent___children' - | 'scheduledIn___children___children' - | 'scheduledIn___children___children___id' - | 'scheduledIn___children___children___children' - | 'scheduledIn___children___internal___content' - | 'scheduledIn___children___internal___contentDigest' - | 'scheduledIn___children___internal___description' - | 'scheduledIn___children___internal___fieldOwners' - | 'scheduledIn___children___internal___ignoreType' - | 'scheduledIn___children___internal___mediaType' - | 'scheduledIn___children___internal___owner' - | 'scheduledIn___children___internal___type' - | 'scheduledIn___internal___content' - | 'scheduledIn___internal___contentDigest' - | 'scheduledIn___internal___description' - | 'scheduledIn___internal___fieldOwners' - | 'scheduledIn___internal___ignoreType' - | 'scheduledIn___internal___mediaType' - | 'scheduledIn___internal___owner' - | 'scheduledIn___internal___type' - | 'id' - | 'parent___id' - | 'parent___parent___id' - | 'parent___parent___parent___id' - | 'parent___parent___parent___children' - | 'parent___parent___children' - | 'parent___parent___children___id' - | 'parent___parent___children___children' - | 'parent___parent___internal___content' - | 'parent___parent___internal___contentDigest' - | 'parent___parent___internal___description' - | 'parent___parent___internal___fieldOwners' - | 'parent___parent___internal___ignoreType' - | 'parent___parent___internal___mediaType' - | 'parent___parent___internal___owner' - | 'parent___parent___internal___type' - | 'parent___children' - | 'parent___children___id' - | 'parent___children___parent___id' - | 'parent___children___parent___children' - | 'parent___children___children' - | 'parent___children___children___id' - | 'parent___children___children___children' - | 'parent___children___internal___content' - | 'parent___children___internal___contentDigest' - | 'parent___children___internal___description' - | 'parent___children___internal___fieldOwners' - | 'parent___children___internal___ignoreType' - | 'parent___children___internal___mediaType' - | 'parent___children___internal___owner' - | 'parent___children___internal___type' - | 'parent___internal___content' - | 'parent___internal___contentDigest' - | 'parent___internal___description' - | 'parent___internal___fieldOwners' - | 'parent___internal___ignoreType' - | 'parent___internal___mediaType' - | 'parent___internal___owner' - | 'parent___internal___type' - | 'children' - | 'children___id' - | 'children___parent___id' - | 'children___parent___parent___id' - | 'children___parent___parent___children' - | 'children___parent___children' - | 'children___parent___children___id' - | 'children___parent___children___children' - | 'children___parent___internal___content' - | 'children___parent___internal___contentDigest' - | 'children___parent___internal___description' - | 'children___parent___internal___fieldOwners' - | 'children___parent___internal___ignoreType' - | 'children___parent___internal___mediaType' - | 'children___parent___internal___owner' - | 'children___parent___internal___type' - | 'children___children' - | 'children___children___id' - | 'children___children___parent___id' - | 'children___children___parent___children' - | 'children___children___children' - | 'children___children___children___id' - | 'children___children___children___children' - | 'children___children___internal___content' - | 'children___children___internal___contentDigest' - | 'children___children___internal___description' - | 'children___children___internal___fieldOwners' - | 'children___children___internal___ignoreType' - | 'children___children___internal___mediaType' - | 'children___children___internal___owner' - | 'children___children___internal___type' - | 'children___internal___content' - | 'children___internal___contentDigest' - | 'children___internal___description' - | 'children___internal___fieldOwners' - | 'children___internal___ignoreType' - | 'children___internal___mediaType' - | 'children___internal___owner' - | 'children___internal___type' - | 'internal___content' - | 'internal___contentDigest' - | 'internal___description' - | 'internal___fieldOwners' - | 'internal___ignoreType' - | 'internal___mediaType' - | 'internal___owner' - | 'internal___type'; - -export type GraphCms_LinkGroupConnection = { - totalCount: Scalars['Int']; - edges: Array; - nodes: Array; - pageInfo: PageInfo; - distinct: Array; - max?: Maybe; - min?: Maybe; - sum?: Maybe; - group: Array; - field: Scalars['String']; - fieldValue?: Maybe; -}; - - -export type GraphCms_LinkGroupConnectionDistinctArgs = { - field: GraphCms_LinkFieldsEnum; -}; - - -export type GraphCms_LinkGroupConnectionMaxArgs = { - field: GraphCms_LinkFieldsEnum; -}; - - -export type GraphCms_LinkGroupConnectionMinArgs = { - field: GraphCms_LinkFieldsEnum; -}; - - -export type GraphCms_LinkGroupConnectionSumArgs = { - field: GraphCms_LinkFieldsEnum; -}; - - -export type GraphCms_LinkGroupConnectionGroupArgs = { - skip?: InputMaybe; - limit?: InputMaybe; - field: GraphCms_LinkFieldsEnum; -}; - -export type GraphCms_LinkSortInput = { - fields?: InputMaybe>>; - order?: InputMaybe>>; -}; - -export type GraphCms_ScheduledReleaseConnection = { - totalCount: Scalars['Int']; - edges: Array; - nodes: Array; - pageInfo: PageInfo; - distinct: Array; - max?: Maybe; - min?: Maybe; - sum?: Maybe; - group: Array; -}; - - -export type GraphCms_ScheduledReleaseConnectionDistinctArgs = { - field: GraphCms_ScheduledReleaseFieldsEnum; -}; - - -export type GraphCms_ScheduledReleaseConnectionMaxArgs = { - field: GraphCms_ScheduledReleaseFieldsEnum; -}; - - -export type GraphCms_ScheduledReleaseConnectionMinArgs = { - field: GraphCms_ScheduledReleaseFieldsEnum; -}; - - -export type GraphCms_ScheduledReleaseConnectionSumArgs = { - field: GraphCms_ScheduledReleaseFieldsEnum; -}; - - -export type GraphCms_ScheduledReleaseConnectionGroupArgs = { - skip?: InputMaybe; - limit?: InputMaybe; - field: GraphCms_ScheduledReleaseFieldsEnum; -}; - -export type GraphCms_ScheduledReleaseEdge = { - next?: Maybe; - node: GraphCms_ScheduledRelease; - previous?: Maybe; -}; - -export type GraphCms_ScheduledReleaseFieldsEnum = - | 'remoteTypeName' - | 'remoteId' - | 'stage' - | 'createdAt' - | 'updatedAt' - | 'publishedAt' - | 'title' - | 'description' - | 'errorMessage' - | 'isActive' - | 'isImplicit' - | 'releaseAt' - | 'createdBy___remoteTypeName' - | 'createdBy___remoteId' - | 'createdBy___stage' - | 'createdBy___createdAt' - | 'createdBy___updatedAt' - | 'createdBy___publishedAt' - | 'createdBy___name' - | 'createdBy___picture' - | 'createdBy___isActive' - | 'createdBy___kind' - | 'createdBy___id' - | 'createdBy___parent___id' - | 'createdBy___parent___parent___id' - | 'createdBy___parent___parent___children' - | 'createdBy___parent___children' - | 'createdBy___parent___children___id' - | 'createdBy___parent___children___children' - | 'createdBy___parent___internal___content' - | 'createdBy___parent___internal___contentDigest' - | 'createdBy___parent___internal___description' - | 'createdBy___parent___internal___fieldOwners' - | 'createdBy___parent___internal___ignoreType' - | 'createdBy___parent___internal___mediaType' - | 'createdBy___parent___internal___owner' - | 'createdBy___parent___internal___type' - | 'createdBy___children' - | 'createdBy___children___id' - | 'createdBy___children___parent___id' - | 'createdBy___children___parent___children' - | 'createdBy___children___children' - | 'createdBy___children___children___id' - | 'createdBy___children___children___children' - | 'createdBy___children___internal___content' - | 'createdBy___children___internal___contentDigest' - | 'createdBy___children___internal___description' - | 'createdBy___children___internal___fieldOwners' - | 'createdBy___children___internal___ignoreType' - | 'createdBy___children___internal___mediaType' - | 'createdBy___children___internal___owner' - | 'createdBy___children___internal___type' - | 'createdBy___internal___content' - | 'createdBy___internal___contentDigest' - | 'createdBy___internal___description' - | 'createdBy___internal___fieldOwners' - | 'createdBy___internal___ignoreType' - | 'createdBy___internal___mediaType' - | 'createdBy___internal___owner' - | 'createdBy___internal___type' - | 'updatedBy___remoteTypeName' - | 'updatedBy___remoteId' - | 'updatedBy___stage' - | 'updatedBy___createdAt' - | 'updatedBy___updatedAt' - | 'updatedBy___publishedAt' - | 'updatedBy___name' - | 'updatedBy___picture' - | 'updatedBy___isActive' - | 'updatedBy___kind' - | 'updatedBy___id' - | 'updatedBy___parent___id' - | 'updatedBy___parent___parent___id' - | 'updatedBy___parent___parent___children' - | 'updatedBy___parent___children' - | 'updatedBy___parent___children___id' - | 'updatedBy___parent___children___children' - | 'updatedBy___parent___internal___content' - | 'updatedBy___parent___internal___contentDigest' - | 'updatedBy___parent___internal___description' - | 'updatedBy___parent___internal___fieldOwners' - | 'updatedBy___parent___internal___ignoreType' - | 'updatedBy___parent___internal___mediaType' - | 'updatedBy___parent___internal___owner' - | 'updatedBy___parent___internal___type' - | 'updatedBy___children' - | 'updatedBy___children___id' - | 'updatedBy___children___parent___id' - | 'updatedBy___children___parent___children' - | 'updatedBy___children___children' - | 'updatedBy___children___children___id' - | 'updatedBy___children___children___children' - | 'updatedBy___children___internal___content' - | 'updatedBy___children___internal___contentDigest' - | 'updatedBy___children___internal___description' - | 'updatedBy___children___internal___fieldOwners' - | 'updatedBy___children___internal___ignoreType' - | 'updatedBy___children___internal___mediaType' - | 'updatedBy___children___internal___owner' - | 'updatedBy___children___internal___type' - | 'updatedBy___internal___content' - | 'updatedBy___internal___contentDigest' - | 'updatedBy___internal___description' - | 'updatedBy___internal___fieldOwners' - | 'updatedBy___internal___ignoreType' - | 'updatedBy___internal___mediaType' - | 'updatedBy___internal___owner' - | 'updatedBy___internal___type' - | 'publishedBy___remoteTypeName' - | 'publishedBy___remoteId' - | 'publishedBy___stage' - | 'publishedBy___createdAt' - | 'publishedBy___updatedAt' - | 'publishedBy___publishedAt' - | 'publishedBy___name' - | 'publishedBy___picture' - | 'publishedBy___isActive' - | 'publishedBy___kind' - | 'publishedBy___id' - | 'publishedBy___parent___id' - | 'publishedBy___parent___parent___id' - | 'publishedBy___parent___parent___children' - | 'publishedBy___parent___children' - | 'publishedBy___parent___children___id' - | 'publishedBy___parent___children___children' - | 'publishedBy___parent___internal___content' - | 'publishedBy___parent___internal___contentDigest' - | 'publishedBy___parent___internal___description' - | 'publishedBy___parent___internal___fieldOwners' - | 'publishedBy___parent___internal___ignoreType' - | 'publishedBy___parent___internal___mediaType' - | 'publishedBy___parent___internal___owner' - | 'publishedBy___parent___internal___type' - | 'publishedBy___children' - | 'publishedBy___children___id' - | 'publishedBy___children___parent___id' - | 'publishedBy___children___parent___children' - | 'publishedBy___children___children' - | 'publishedBy___children___children___id' - | 'publishedBy___children___children___children' - | 'publishedBy___children___internal___content' - | 'publishedBy___children___internal___contentDigest' - | 'publishedBy___children___internal___description' - | 'publishedBy___children___internal___fieldOwners' - | 'publishedBy___children___internal___ignoreType' - | 'publishedBy___children___internal___mediaType' - | 'publishedBy___children___internal___owner' - | 'publishedBy___children___internal___type' - | 'publishedBy___internal___content' - | 'publishedBy___internal___contentDigest' - | 'publishedBy___internal___description' - | 'publishedBy___internal___fieldOwners' - | 'publishedBy___internal___ignoreType' - | 'publishedBy___internal___mediaType' - | 'publishedBy___internal___owner' - | 'publishedBy___internal___type' - | 'operations' - | 'operations___remoteTypeName' - | 'operations___remoteId' - | 'operations___stage' - | 'operations___createdAt' - | 'operations___updatedAt' - | 'operations___publishedAt' - | 'operations___description' - | 'operations___errorMessage' - | 'operations___rawPayload' - | 'operations___createdBy___remoteTypeName' - | 'operations___createdBy___remoteId' - | 'operations___createdBy___stage' - | 'operations___createdBy___createdAt' - | 'operations___createdBy___updatedAt' - | 'operations___createdBy___publishedAt' - | 'operations___createdBy___name' - | 'operations___createdBy___picture' - | 'operations___createdBy___isActive' - | 'operations___createdBy___kind' - | 'operations___createdBy___id' - | 'operations___createdBy___parent___id' - | 'operations___createdBy___parent___children' - | 'operations___createdBy___children' - | 'operations___createdBy___children___id' - | 'operations___createdBy___children___children' - | 'operations___createdBy___internal___content' - | 'operations___createdBy___internal___contentDigest' - | 'operations___createdBy___internal___description' - | 'operations___createdBy___internal___fieldOwners' - | 'operations___createdBy___internal___ignoreType' - | 'operations___createdBy___internal___mediaType' - | 'operations___createdBy___internal___owner' - | 'operations___createdBy___internal___type' - | 'operations___updatedBy___remoteTypeName' - | 'operations___updatedBy___remoteId' - | 'operations___updatedBy___stage' - | 'operations___updatedBy___createdAt' - | 'operations___updatedBy___updatedAt' - | 'operations___updatedBy___publishedAt' - | 'operations___updatedBy___name' - | 'operations___updatedBy___picture' - | 'operations___updatedBy___isActive' - | 'operations___updatedBy___kind' - | 'operations___updatedBy___id' - | 'operations___updatedBy___parent___id' - | 'operations___updatedBy___parent___children' - | 'operations___updatedBy___children' - | 'operations___updatedBy___children___id' - | 'operations___updatedBy___children___children' - | 'operations___updatedBy___internal___content' - | 'operations___updatedBy___internal___contentDigest' - | 'operations___updatedBy___internal___description' - | 'operations___updatedBy___internal___fieldOwners' - | 'operations___updatedBy___internal___ignoreType' - | 'operations___updatedBy___internal___mediaType' - | 'operations___updatedBy___internal___owner' - | 'operations___updatedBy___internal___type' - | 'operations___publishedBy___remoteTypeName' - | 'operations___publishedBy___remoteId' - | 'operations___publishedBy___stage' - | 'operations___publishedBy___createdAt' - | 'operations___publishedBy___updatedAt' - | 'operations___publishedBy___publishedAt' - | 'operations___publishedBy___name' - | 'operations___publishedBy___picture' - | 'operations___publishedBy___isActive' - | 'operations___publishedBy___kind' - | 'operations___publishedBy___id' - | 'operations___publishedBy___parent___id' - | 'operations___publishedBy___parent___children' - | 'operations___publishedBy___children' - | 'operations___publishedBy___children___id' - | 'operations___publishedBy___children___children' - | 'operations___publishedBy___internal___content' - | 'operations___publishedBy___internal___contentDigest' - | 'operations___publishedBy___internal___description' - | 'operations___publishedBy___internal___fieldOwners' - | 'operations___publishedBy___internal___ignoreType' - | 'operations___publishedBy___internal___mediaType' - | 'operations___publishedBy___internal___owner' - | 'operations___publishedBy___internal___type' - | 'operations___release___remoteTypeName' - | 'operations___release___remoteId' - | 'operations___release___stage' - | 'operations___release___createdAt' - | 'operations___release___updatedAt' - | 'operations___release___publishedAt' - | 'operations___release___title' - | 'operations___release___description' - | 'operations___release___errorMessage' - | 'operations___release___isActive' - | 'operations___release___isImplicit' - | 'operations___release___releaseAt' - | 'operations___release___createdBy___remoteTypeName' - | 'operations___release___createdBy___remoteId' - | 'operations___release___createdBy___stage' - | 'operations___release___createdBy___createdAt' - | 'operations___release___createdBy___updatedAt' - | 'operations___release___createdBy___publishedAt' - | 'operations___release___createdBy___name' - | 'operations___release___createdBy___picture' - | 'operations___release___createdBy___isActive' - | 'operations___release___createdBy___kind' - | 'operations___release___createdBy___id' - | 'operations___release___createdBy___children' - | 'operations___release___updatedBy___remoteTypeName' - | 'operations___release___updatedBy___remoteId' - | 'operations___release___updatedBy___stage' - | 'operations___release___updatedBy___createdAt' - | 'operations___release___updatedBy___updatedAt' - | 'operations___release___updatedBy___publishedAt' - | 'operations___release___updatedBy___name' - | 'operations___release___updatedBy___picture' - | 'operations___release___updatedBy___isActive' - | 'operations___release___updatedBy___kind' - | 'operations___release___updatedBy___id' - | 'operations___release___updatedBy___children' - | 'operations___release___publishedBy___remoteTypeName' - | 'operations___release___publishedBy___remoteId' - | 'operations___release___publishedBy___stage' - | 'operations___release___publishedBy___createdAt' - | 'operations___release___publishedBy___updatedAt' - | 'operations___release___publishedBy___publishedAt' - | 'operations___release___publishedBy___name' - | 'operations___release___publishedBy___picture' - | 'operations___release___publishedBy___isActive' - | 'operations___release___publishedBy___kind' - | 'operations___release___publishedBy___id' - | 'operations___release___publishedBy___children' - | 'operations___release___operations' - | 'operations___release___operations___remoteTypeName' - | 'operations___release___operations___remoteId' - | 'operations___release___operations___stage' - | 'operations___release___operations___createdAt' - | 'operations___release___operations___updatedAt' - | 'operations___release___operations___publishedAt' - | 'operations___release___operations___description' - | 'operations___release___operations___errorMessage' - | 'operations___release___operations___rawPayload' - | 'operations___release___operations___status' - | 'operations___release___operations___id' - | 'operations___release___operations___children' - | 'operations___release___status' - | 'operations___release___id' - | 'operations___release___parent___id' - | 'operations___release___parent___children' - | 'operations___release___children' - | 'operations___release___children___id' - | 'operations___release___children___children' - | 'operations___release___internal___content' - | 'operations___release___internal___contentDigest' - | 'operations___release___internal___description' - | 'operations___release___internal___fieldOwners' - | 'operations___release___internal___ignoreType' - | 'operations___release___internal___mediaType' - | 'operations___release___internal___owner' - | 'operations___release___internal___type' - | 'operations___status' - | 'operations___id' - | 'operations___parent___id' - | 'operations___parent___parent___id' - | 'operations___parent___parent___children' - | 'operations___parent___children' - | 'operations___parent___children___id' - | 'operations___parent___children___children' - | 'operations___parent___internal___content' - | 'operations___parent___internal___contentDigest' - | 'operations___parent___internal___description' - | 'operations___parent___internal___fieldOwners' - | 'operations___parent___internal___ignoreType' - | 'operations___parent___internal___mediaType' - | 'operations___parent___internal___owner' - | 'operations___parent___internal___type' - | 'operations___children' - | 'operations___children___id' - | 'operations___children___parent___id' - | 'operations___children___parent___children' - | 'operations___children___children' - | 'operations___children___children___id' - | 'operations___children___children___children' - | 'operations___children___internal___content' - | 'operations___children___internal___contentDigest' - | 'operations___children___internal___description' - | 'operations___children___internal___fieldOwners' - | 'operations___children___internal___ignoreType' - | 'operations___children___internal___mediaType' - | 'operations___children___internal___owner' - | 'operations___children___internal___type' - | 'operations___internal___content' - | 'operations___internal___contentDigest' - | 'operations___internal___description' - | 'operations___internal___fieldOwners' - | 'operations___internal___ignoreType' - | 'operations___internal___mediaType' - | 'operations___internal___owner' - | 'operations___internal___type' - | 'status' - | 'id' - | 'parent___id' - | 'parent___parent___id' - | 'parent___parent___parent___id' - | 'parent___parent___parent___children' - | 'parent___parent___children' - | 'parent___parent___children___id' - | 'parent___parent___children___children' - | 'parent___parent___internal___content' - | 'parent___parent___internal___contentDigest' - | 'parent___parent___internal___description' - | 'parent___parent___internal___fieldOwners' - | 'parent___parent___internal___ignoreType' - | 'parent___parent___internal___mediaType' - | 'parent___parent___internal___owner' - | 'parent___parent___internal___type' - | 'parent___children' - | 'parent___children___id' - | 'parent___children___parent___id' - | 'parent___children___parent___children' - | 'parent___children___children' - | 'parent___children___children___id' - | 'parent___children___children___children' - | 'parent___children___internal___content' - | 'parent___children___internal___contentDigest' - | 'parent___children___internal___description' - | 'parent___children___internal___fieldOwners' - | 'parent___children___internal___ignoreType' - | 'parent___children___internal___mediaType' - | 'parent___children___internal___owner' - | 'parent___children___internal___type' - | 'parent___internal___content' - | 'parent___internal___contentDigest' - | 'parent___internal___description' - | 'parent___internal___fieldOwners' - | 'parent___internal___ignoreType' - | 'parent___internal___mediaType' - | 'parent___internal___owner' - | 'parent___internal___type' - | 'children' - | 'children___id' - | 'children___parent___id' - | 'children___parent___parent___id' - | 'children___parent___parent___children' - | 'children___parent___children' - | 'children___parent___children___id' - | 'children___parent___children___children' - | 'children___parent___internal___content' - | 'children___parent___internal___contentDigest' - | 'children___parent___internal___description' - | 'children___parent___internal___fieldOwners' - | 'children___parent___internal___ignoreType' - | 'children___parent___internal___mediaType' - | 'children___parent___internal___owner' - | 'children___parent___internal___type' - | 'children___children' - | 'children___children___id' - | 'children___children___parent___id' - | 'children___children___parent___children' - | 'children___children___children' - | 'children___children___children___id' - | 'children___children___children___children' - | 'children___children___internal___content' - | 'children___children___internal___contentDigest' - | 'children___children___internal___description' - | 'children___children___internal___fieldOwners' - | 'children___children___internal___ignoreType' - | 'children___children___internal___mediaType' - | 'children___children___internal___owner' - | 'children___children___internal___type' - | 'children___internal___content' - | 'children___internal___contentDigest' - | 'children___internal___description' - | 'children___internal___fieldOwners' - | 'children___internal___ignoreType' - | 'children___internal___mediaType' - | 'children___internal___owner' - | 'children___internal___type' - | 'internal___content' - | 'internal___contentDigest' - | 'internal___description' - | 'internal___fieldOwners' - | 'internal___ignoreType' - | 'internal___mediaType' - | 'internal___owner' - | 'internal___type'; - -export type GraphCms_ScheduledReleaseGroupConnection = { - totalCount: Scalars['Int']; - edges: Array; - nodes: Array; - pageInfo: PageInfo; - distinct: Array; - max?: Maybe; - min?: Maybe; - sum?: Maybe; - group: Array; - field: Scalars['String']; - fieldValue?: Maybe; -}; - - -export type GraphCms_ScheduledReleaseGroupConnectionDistinctArgs = { - field: GraphCms_ScheduledReleaseFieldsEnum; -}; - - -export type GraphCms_ScheduledReleaseGroupConnectionMaxArgs = { - field: GraphCms_ScheduledReleaseFieldsEnum; -}; - - -export type GraphCms_ScheduledReleaseGroupConnectionMinArgs = { - field: GraphCms_ScheduledReleaseFieldsEnum; -}; - - -export type GraphCms_ScheduledReleaseGroupConnectionSumArgs = { - field: GraphCms_ScheduledReleaseFieldsEnum; -}; - - -export type GraphCms_ScheduledReleaseGroupConnectionGroupArgs = { - skip?: InputMaybe; - limit?: InputMaybe; - field: GraphCms_ScheduledReleaseFieldsEnum; -}; - -export type GraphCms_ScheduledReleaseSortInput = { - fields?: InputMaybe>>; - order?: InputMaybe>>; -}; - -export type GraphCms_SpecialityConnection = { - totalCount: Scalars['Int']; - edges: Array; - nodes: Array; - pageInfo: PageInfo; - distinct: Array; - max?: Maybe; - min?: Maybe; - sum?: Maybe; - group: Array; -}; - - -export type GraphCms_SpecialityConnectionDistinctArgs = { - field: GraphCms_SpecialityFieldsEnum; -}; - - -export type GraphCms_SpecialityConnectionMaxArgs = { - field: GraphCms_SpecialityFieldsEnum; -}; - - -export type GraphCms_SpecialityConnectionMinArgs = { - field: GraphCms_SpecialityFieldsEnum; -}; - - -export type GraphCms_SpecialityConnectionSumArgs = { - field: GraphCms_SpecialityFieldsEnum; -}; - - -export type GraphCms_SpecialityConnectionGroupArgs = { - skip?: InputMaybe; - limit?: InputMaybe; - field: GraphCms_SpecialityFieldsEnum; -}; - -export type GraphCms_SpecialityEdge = { - next?: Maybe; - node: GraphCms_Speciality; - previous?: Maybe; -}; - -export type GraphCms_SpecialityFieldsEnum = - | 'remoteTypeName' - | 'remoteId' - | 'stage' - | 'createdAt' - | 'updatedAt' - | 'publishedAt' - | 'title' - | 'description___remoteTypeName' - | 'description___raw' - | 'description___html' - | 'description___markdown' - | 'description___text' - | 'createdBy___remoteTypeName' - | 'createdBy___remoteId' - | 'createdBy___stage' - | 'createdBy___createdAt' - | 'createdBy___updatedAt' - | 'createdBy___publishedAt' - | 'createdBy___name' - | 'createdBy___picture' - | 'createdBy___isActive' - | 'createdBy___kind' - | 'createdBy___id' - | 'createdBy___parent___id' - | 'createdBy___parent___parent___id' - | 'createdBy___parent___parent___children' - | 'createdBy___parent___children' - | 'createdBy___parent___children___id' - | 'createdBy___parent___children___children' - | 'createdBy___parent___internal___content' - | 'createdBy___parent___internal___contentDigest' - | 'createdBy___parent___internal___description' - | 'createdBy___parent___internal___fieldOwners' - | 'createdBy___parent___internal___ignoreType' - | 'createdBy___parent___internal___mediaType' - | 'createdBy___parent___internal___owner' - | 'createdBy___parent___internal___type' - | 'createdBy___children' - | 'createdBy___children___id' - | 'createdBy___children___parent___id' - | 'createdBy___children___parent___children' - | 'createdBy___children___children' - | 'createdBy___children___children___id' - | 'createdBy___children___children___children' - | 'createdBy___children___internal___content' - | 'createdBy___children___internal___contentDigest' - | 'createdBy___children___internal___description' - | 'createdBy___children___internal___fieldOwners' - | 'createdBy___children___internal___ignoreType' - | 'createdBy___children___internal___mediaType' - | 'createdBy___children___internal___owner' - | 'createdBy___children___internal___type' - | 'createdBy___internal___content' - | 'createdBy___internal___contentDigest' - | 'createdBy___internal___description' - | 'createdBy___internal___fieldOwners' - | 'createdBy___internal___ignoreType' - | 'createdBy___internal___mediaType' - | 'createdBy___internal___owner' - | 'createdBy___internal___type' - | 'updatedBy___remoteTypeName' - | 'updatedBy___remoteId' - | 'updatedBy___stage' - | 'updatedBy___createdAt' - | 'updatedBy___updatedAt' - | 'updatedBy___publishedAt' - | 'updatedBy___name' - | 'updatedBy___picture' - | 'updatedBy___isActive' - | 'updatedBy___kind' - | 'updatedBy___id' - | 'updatedBy___parent___id' - | 'updatedBy___parent___parent___id' - | 'updatedBy___parent___parent___children' - | 'updatedBy___parent___children' - | 'updatedBy___parent___children___id' - | 'updatedBy___parent___children___children' - | 'updatedBy___parent___internal___content' - | 'updatedBy___parent___internal___contentDigest' - | 'updatedBy___parent___internal___description' - | 'updatedBy___parent___internal___fieldOwners' - | 'updatedBy___parent___internal___ignoreType' - | 'updatedBy___parent___internal___mediaType' - | 'updatedBy___parent___internal___owner' - | 'updatedBy___parent___internal___type' - | 'updatedBy___children' - | 'updatedBy___children___id' - | 'updatedBy___children___parent___id' - | 'updatedBy___children___parent___children' - | 'updatedBy___children___children' - | 'updatedBy___children___children___id' - | 'updatedBy___children___children___children' - | 'updatedBy___children___internal___content' - | 'updatedBy___children___internal___contentDigest' - | 'updatedBy___children___internal___description' - | 'updatedBy___children___internal___fieldOwners' - | 'updatedBy___children___internal___ignoreType' - | 'updatedBy___children___internal___mediaType' - | 'updatedBy___children___internal___owner' - | 'updatedBy___children___internal___type' - | 'updatedBy___internal___content' - | 'updatedBy___internal___contentDigest' - | 'updatedBy___internal___description' - | 'updatedBy___internal___fieldOwners' - | 'updatedBy___internal___ignoreType' - | 'updatedBy___internal___mediaType' - | 'updatedBy___internal___owner' - | 'updatedBy___internal___type' - | 'publishedBy___remoteTypeName' - | 'publishedBy___remoteId' - | 'publishedBy___stage' - | 'publishedBy___createdAt' - | 'publishedBy___updatedAt' - | 'publishedBy___publishedAt' - | 'publishedBy___name' - | 'publishedBy___picture' - | 'publishedBy___isActive' - | 'publishedBy___kind' - | 'publishedBy___id' - | 'publishedBy___parent___id' - | 'publishedBy___parent___parent___id' - | 'publishedBy___parent___parent___children' - | 'publishedBy___parent___children' - | 'publishedBy___parent___children___id' - | 'publishedBy___parent___children___children' - | 'publishedBy___parent___internal___content' - | 'publishedBy___parent___internal___contentDigest' - | 'publishedBy___parent___internal___description' - | 'publishedBy___parent___internal___fieldOwners' - | 'publishedBy___parent___internal___ignoreType' - | 'publishedBy___parent___internal___mediaType' - | 'publishedBy___parent___internal___owner' - | 'publishedBy___parent___internal___type' - | 'publishedBy___children' - | 'publishedBy___children___id' - | 'publishedBy___children___parent___id' - | 'publishedBy___children___parent___children' - | 'publishedBy___children___children' - | 'publishedBy___children___children___id' - | 'publishedBy___children___children___children' - | 'publishedBy___children___internal___content' - | 'publishedBy___children___internal___contentDigest' - | 'publishedBy___children___internal___description' - | 'publishedBy___children___internal___fieldOwners' - | 'publishedBy___children___internal___ignoreType' - | 'publishedBy___children___internal___mediaType' - | 'publishedBy___children___internal___owner' - | 'publishedBy___children___internal___type' - | 'publishedBy___internal___content' - | 'publishedBy___internal___contentDigest' - | 'publishedBy___internal___description' - | 'publishedBy___internal___fieldOwners' - | 'publishedBy___internal___ignoreType' - | 'publishedBy___internal___mediaType' - | 'publishedBy___internal___owner' - | 'publishedBy___internal___type' + | 'updatedBy___internal___contentFilePath' + | 'createdBy___remoteTypeName' + | 'createdBy___remoteId' + | 'createdBy___stage' + | 'createdBy___isActive' + | 'createdBy___picture' + | 'createdBy___name' + | 'createdBy___publishedAt' + | 'createdBy___updatedAt' + | 'createdBy___createdAt' + | 'createdBy___kind' + | 'createdBy___id' + | 'createdBy___parent___id' + | 'createdBy___parent___parent___id' + | 'createdBy___parent___parent___children' + | 'createdBy___parent___children' + | 'createdBy___parent___children___id' + | 'createdBy___parent___children___children' + | 'createdBy___parent___internal___content' + | 'createdBy___parent___internal___contentDigest' + | 'createdBy___parent___internal___description' + | 'createdBy___parent___internal___fieldOwners' + | 'createdBy___parent___internal___ignoreType' + | 'createdBy___parent___internal___mediaType' + | 'createdBy___parent___internal___owner' + | 'createdBy___parent___internal___type' + | 'createdBy___parent___internal___contentFilePath' + | 'createdBy___children' + | 'createdBy___children___id' + | 'createdBy___children___parent___id' + | 'createdBy___children___parent___children' + | 'createdBy___children___children' + | 'createdBy___children___children___id' + | 'createdBy___children___children___children' + | 'createdBy___children___internal___content' + | 'createdBy___children___internal___contentDigest' + | 'createdBy___children___internal___description' + | 'createdBy___children___internal___fieldOwners' + | 'createdBy___children___internal___ignoreType' + | 'createdBy___children___internal___mediaType' + | 'createdBy___children___internal___owner' + | 'createdBy___children___internal___type' + | 'createdBy___children___internal___contentFilePath' + | 'createdBy___internal___content' + | 'createdBy___internal___contentDigest' + | 'createdBy___internal___description' + | 'createdBy___internal___fieldOwners' + | 'createdBy___internal___ignoreType' + | 'createdBy___internal___mediaType' + | 'createdBy___internal___owner' + | 'createdBy___internal___type' + | 'createdBy___internal___contentFilePath' | 'icon___remoteTypeName' | 'icon___remoteId' | 'icon___locale' | 'icon___stage' - | 'icon___createdAt' - | 'icon___updatedAt' - | 'icon___publishedAt' - | 'icon___handle' - | 'icon___fileName' - | 'icon___height' - | 'icon___width' - | 'icon___size' | 'icon___mimeType' - | 'icon___createdBy___remoteTypeName' - | 'icon___createdBy___remoteId' - | 'icon___createdBy___stage' - | 'icon___createdBy___createdAt' - | 'icon___createdBy___updatedAt' - | 'icon___createdBy___publishedAt' - | 'icon___createdBy___name' - | 'icon___createdBy___picture' - | 'icon___createdBy___isActive' - | 'icon___createdBy___kind' - | 'icon___createdBy___id' - | 'icon___createdBy___parent___id' - | 'icon___createdBy___parent___children' - | 'icon___createdBy___children' - | 'icon___createdBy___children___id' - | 'icon___createdBy___children___children' - | 'icon___createdBy___internal___content' - | 'icon___createdBy___internal___contentDigest' - | 'icon___createdBy___internal___description' - | 'icon___createdBy___internal___fieldOwners' - | 'icon___createdBy___internal___ignoreType' - | 'icon___createdBy___internal___mediaType' - | 'icon___createdBy___internal___owner' - | 'icon___createdBy___internal___type' - | 'icon___updatedBy___remoteTypeName' - | 'icon___updatedBy___remoteId' - | 'icon___updatedBy___stage' - | 'icon___updatedBy___createdAt' - | 'icon___updatedBy___updatedAt' - | 'icon___updatedBy___publishedAt' - | 'icon___updatedBy___name' - | 'icon___updatedBy___picture' - | 'icon___updatedBy___isActive' - | 'icon___updatedBy___kind' - | 'icon___updatedBy___id' - | 'icon___updatedBy___parent___id' - | 'icon___updatedBy___parent___children' - | 'icon___updatedBy___children' - | 'icon___updatedBy___children___id' - | 'icon___updatedBy___children___children' - | 'icon___updatedBy___internal___content' - | 'icon___updatedBy___internal___contentDigest' - | 'icon___updatedBy___internal___description' - | 'icon___updatedBy___internal___fieldOwners' - | 'icon___updatedBy___internal___ignoreType' - | 'icon___updatedBy___internal___mediaType' - | 'icon___updatedBy___internal___owner' - | 'icon___updatedBy___internal___type' + | 'icon___size' + | 'icon___width' + | 'icon___height' + | 'icon___fileName' + | 'icon___handle' + | 'icon___publishedAt' + | 'icon___updatedAt' + | 'icon___createdAt' | 'icon___publishedBy___remoteTypeName' | 'icon___publishedBy___remoteId' | 'icon___publishedBy___stage' - | 'icon___publishedBy___createdAt' - | 'icon___publishedBy___updatedAt' - | 'icon___publishedBy___publishedAt' - | 'icon___publishedBy___name' - | 'icon___publishedBy___picture' | 'icon___publishedBy___isActive' + | 'icon___publishedBy___picture' + | 'icon___publishedBy___name' + | 'icon___publishedBy___publishedAt' + | 'icon___publishedBy___updatedAt' + | 'icon___publishedBy___createdAt' | 'icon___publishedBy___kind' | 'icon___publishedBy___id' | 'icon___publishedBy___parent___id' @@ -8591,72 +7501,126 @@ export type GraphCms_SpecialityFieldsEnum = | 'icon___publishedBy___internal___mediaType' | 'icon___publishedBy___internal___owner' | 'icon___publishedBy___internal___type' + | 'icon___publishedBy___internal___contentFilePath' + | 'icon___updatedBy___remoteTypeName' + | 'icon___updatedBy___remoteId' + | 'icon___updatedBy___stage' + | 'icon___updatedBy___isActive' + | 'icon___updatedBy___picture' + | 'icon___updatedBy___name' + | 'icon___updatedBy___publishedAt' + | 'icon___updatedBy___updatedAt' + | 'icon___updatedBy___createdAt' + | 'icon___updatedBy___kind' + | 'icon___updatedBy___id' + | 'icon___updatedBy___parent___id' + | 'icon___updatedBy___parent___children' + | 'icon___updatedBy___children' + | 'icon___updatedBy___children___id' + | 'icon___updatedBy___children___children' + | 'icon___updatedBy___internal___content' + | 'icon___updatedBy___internal___contentDigest' + | 'icon___updatedBy___internal___description' + | 'icon___updatedBy___internal___fieldOwners' + | 'icon___updatedBy___internal___ignoreType' + | 'icon___updatedBy___internal___mediaType' + | 'icon___updatedBy___internal___owner' + | 'icon___updatedBy___internal___type' + | 'icon___updatedBy___internal___contentFilePath' + | 'icon___createdBy___remoteTypeName' + | 'icon___createdBy___remoteId' + | 'icon___createdBy___stage' + | 'icon___createdBy___isActive' + | 'icon___createdBy___picture' + | 'icon___createdBy___name' + | 'icon___createdBy___publishedAt' + | 'icon___createdBy___updatedAt' + | 'icon___createdBy___createdAt' + | 'icon___createdBy___kind' + | 'icon___createdBy___id' + | 'icon___createdBy___parent___id' + | 'icon___createdBy___parent___children' + | 'icon___createdBy___children' + | 'icon___createdBy___children___id' + | 'icon___createdBy___children___children' + | 'icon___createdBy___internal___content' + | 'icon___createdBy___internal___contentDigest' + | 'icon___createdBy___internal___description' + | 'icon___createdBy___internal___fieldOwners' + | 'icon___createdBy___internal___ignoreType' + | 'icon___createdBy___internal___mediaType' + | 'icon___createdBy___internal___owner' + | 'icon___createdBy___internal___type' + | 'icon___createdBy___internal___contentFilePath' | 'icon___carouselImagesPortfolioItem' | 'icon___carouselImagesPortfolioItem___remoteTypeName' | 'icon___carouselImagesPortfolioItem___remoteId' | 'icon___carouselImagesPortfolioItem___stage' - | 'icon___carouselImagesPortfolioItem___createdAt' - | 'icon___carouselImagesPortfolioItem___updatedAt' | 'icon___carouselImagesPortfolioItem___publishedAt' + | 'icon___carouselImagesPortfolioItem___updatedAt' + | 'icon___carouselImagesPortfolioItem___createdAt' | 'icon___carouselImagesPortfolioItem___title' | 'icon___carouselImagesPortfolioItem___description' - | 'icon___carouselImagesPortfolioItem___techSheet' | 'icon___carouselImagesPortfolioItem___about___remoteTypeName' | 'icon___carouselImagesPortfolioItem___about___raw' | 'icon___carouselImagesPortfolioItem___about___html' | 'icon___carouselImagesPortfolioItem___about___markdown' | 'icon___carouselImagesPortfolioItem___about___text' - | 'icon___carouselImagesPortfolioItem___createdBy___remoteTypeName' - | 'icon___carouselImagesPortfolioItem___createdBy___remoteId' - | 'icon___carouselImagesPortfolioItem___createdBy___stage' - | 'icon___carouselImagesPortfolioItem___createdBy___createdAt' - | 'icon___carouselImagesPortfolioItem___createdBy___updatedAt' - | 'icon___carouselImagesPortfolioItem___createdBy___publishedAt' - | 'icon___carouselImagesPortfolioItem___createdBy___name' - | 'icon___carouselImagesPortfolioItem___createdBy___picture' - | 'icon___carouselImagesPortfolioItem___createdBy___isActive' - | 'icon___carouselImagesPortfolioItem___createdBy___kind' - | 'icon___carouselImagesPortfolioItem___createdBy___id' - | 'icon___carouselImagesPortfolioItem___createdBy___children' - | 'icon___carouselImagesPortfolioItem___updatedBy___remoteTypeName' - | 'icon___carouselImagesPortfolioItem___updatedBy___remoteId' - | 'icon___carouselImagesPortfolioItem___updatedBy___stage' - | 'icon___carouselImagesPortfolioItem___updatedBy___createdAt' - | 'icon___carouselImagesPortfolioItem___updatedBy___updatedAt' - | 'icon___carouselImagesPortfolioItem___updatedBy___publishedAt' - | 'icon___carouselImagesPortfolioItem___updatedBy___name' - | 'icon___carouselImagesPortfolioItem___updatedBy___picture' - | 'icon___carouselImagesPortfolioItem___updatedBy___isActive' - | 'icon___carouselImagesPortfolioItem___updatedBy___kind' - | 'icon___carouselImagesPortfolioItem___updatedBy___id' - | 'icon___carouselImagesPortfolioItem___updatedBy___children' + | 'icon___carouselImagesPortfolioItem___techSheet' | 'icon___carouselImagesPortfolioItem___publishedBy___remoteTypeName' | 'icon___carouselImagesPortfolioItem___publishedBy___remoteId' | 'icon___carouselImagesPortfolioItem___publishedBy___stage' - | 'icon___carouselImagesPortfolioItem___publishedBy___createdAt' - | 'icon___carouselImagesPortfolioItem___publishedBy___updatedAt' - | 'icon___carouselImagesPortfolioItem___publishedBy___publishedAt' - | 'icon___carouselImagesPortfolioItem___publishedBy___name' - | 'icon___carouselImagesPortfolioItem___publishedBy___picture' | 'icon___carouselImagesPortfolioItem___publishedBy___isActive' + | 'icon___carouselImagesPortfolioItem___publishedBy___picture' + | 'icon___carouselImagesPortfolioItem___publishedBy___name' + | 'icon___carouselImagesPortfolioItem___publishedBy___publishedAt' + | 'icon___carouselImagesPortfolioItem___publishedBy___updatedAt' + | 'icon___carouselImagesPortfolioItem___publishedBy___createdAt' | 'icon___carouselImagesPortfolioItem___publishedBy___kind' | 'icon___carouselImagesPortfolioItem___publishedBy___id' | 'icon___carouselImagesPortfolioItem___publishedBy___children' + | 'icon___carouselImagesPortfolioItem___updatedBy___remoteTypeName' + | 'icon___carouselImagesPortfolioItem___updatedBy___remoteId' + | 'icon___carouselImagesPortfolioItem___updatedBy___stage' + | 'icon___carouselImagesPortfolioItem___updatedBy___isActive' + | 'icon___carouselImagesPortfolioItem___updatedBy___picture' + | 'icon___carouselImagesPortfolioItem___updatedBy___name' + | 'icon___carouselImagesPortfolioItem___updatedBy___publishedAt' + | 'icon___carouselImagesPortfolioItem___updatedBy___updatedAt' + | 'icon___carouselImagesPortfolioItem___updatedBy___createdAt' + | 'icon___carouselImagesPortfolioItem___updatedBy___kind' + | 'icon___carouselImagesPortfolioItem___updatedBy___id' + | 'icon___carouselImagesPortfolioItem___updatedBy___children' + | 'icon___carouselImagesPortfolioItem___createdBy___remoteTypeName' + | 'icon___carouselImagesPortfolioItem___createdBy___remoteId' + | 'icon___carouselImagesPortfolioItem___createdBy___stage' + | 'icon___carouselImagesPortfolioItem___createdBy___isActive' + | 'icon___carouselImagesPortfolioItem___createdBy___picture' + | 'icon___carouselImagesPortfolioItem___createdBy___name' + | 'icon___carouselImagesPortfolioItem___createdBy___publishedAt' + | 'icon___carouselImagesPortfolioItem___createdBy___updatedAt' + | 'icon___carouselImagesPortfolioItem___createdBy___createdAt' + | 'icon___carouselImagesPortfolioItem___createdBy___kind' + | 'icon___carouselImagesPortfolioItem___createdBy___id' + | 'icon___carouselImagesPortfolioItem___createdBy___children' | 'icon___carouselImagesPortfolioItem___carouselImages' | 'icon___carouselImagesPortfolioItem___carouselImages___remoteTypeName' | 'icon___carouselImagesPortfolioItem___carouselImages___remoteId' | 'icon___carouselImagesPortfolioItem___carouselImages___locale' | 'icon___carouselImagesPortfolioItem___carouselImages___stage' - | 'icon___carouselImagesPortfolioItem___carouselImages___createdAt' - | 'icon___carouselImagesPortfolioItem___carouselImages___updatedAt' - | 'icon___carouselImagesPortfolioItem___carouselImages___publishedAt' - | 'icon___carouselImagesPortfolioItem___carouselImages___handle' - | 'icon___carouselImagesPortfolioItem___carouselImages___fileName' - | 'icon___carouselImagesPortfolioItem___carouselImages___height' - | 'icon___carouselImagesPortfolioItem___carouselImages___width' - | 'icon___carouselImagesPortfolioItem___carouselImages___size' | 'icon___carouselImagesPortfolioItem___carouselImages___mimeType' + | 'icon___carouselImagesPortfolioItem___carouselImages___size' + | 'icon___carouselImagesPortfolioItem___carouselImages___width' + | 'icon___carouselImagesPortfolioItem___carouselImages___height' + | 'icon___carouselImagesPortfolioItem___carouselImages___fileName' + | 'icon___carouselImagesPortfolioItem___carouselImages___handle' + | 'icon___carouselImagesPortfolioItem___carouselImages___publishedAt' + | 'icon___carouselImagesPortfolioItem___carouselImages___updatedAt' + | 'icon___carouselImagesPortfolioItem___carouselImages___createdAt' | 'icon___carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem' + | 'icon___carouselImagesPortfolioItem___carouselImages___iconSpeciality' + | 'icon___carouselImagesPortfolioItem___carouselImages___iconTechnology' + | 'icon___carouselImagesPortfolioItem___carouselImages___headerImageBlog' | 'icon___carouselImagesPortfolioItem___carouselImages___scheduledIn' | 'icon___carouselImagesPortfolioItem___carouselImages___url' | 'icon___carouselImagesPortfolioItem___carouselImages___id' @@ -8665,9 +7629,9 @@ export type GraphCms_SpecialityFieldsEnum = | 'icon___carouselImagesPortfolioItem___links___remoteTypeName' | 'icon___carouselImagesPortfolioItem___links___remoteId' | 'icon___carouselImagesPortfolioItem___links___stage' - | 'icon___carouselImagesPortfolioItem___links___createdAt' - | 'icon___carouselImagesPortfolioItem___links___updatedAt' | 'icon___carouselImagesPortfolioItem___links___publishedAt' + | 'icon___carouselImagesPortfolioItem___links___updatedAt' + | 'icon___carouselImagesPortfolioItem___links___createdAt' | 'icon___carouselImagesPortfolioItem___links___title' | 'icon___carouselImagesPortfolioItem___links___url' | 'icon___carouselImagesPortfolioItem___links___type' @@ -8678,12 +7642,12 @@ export type GraphCms_SpecialityFieldsEnum = | 'icon___carouselImagesPortfolioItem___scheduledIn___remoteTypeName' | 'icon___carouselImagesPortfolioItem___scheduledIn___remoteId' | 'icon___carouselImagesPortfolioItem___scheduledIn___stage' - | 'icon___carouselImagesPortfolioItem___scheduledIn___createdAt' - | 'icon___carouselImagesPortfolioItem___scheduledIn___updatedAt' - | 'icon___carouselImagesPortfolioItem___scheduledIn___publishedAt' - | 'icon___carouselImagesPortfolioItem___scheduledIn___description' - | 'icon___carouselImagesPortfolioItem___scheduledIn___errorMessage' | 'icon___carouselImagesPortfolioItem___scheduledIn___rawPayload' + | 'icon___carouselImagesPortfolioItem___scheduledIn___errorMessage' + | 'icon___carouselImagesPortfolioItem___scheduledIn___description' + | 'icon___carouselImagesPortfolioItem___scheduledIn___publishedAt' + | 'icon___carouselImagesPortfolioItem___scheduledIn___updatedAt' + | 'icon___carouselImagesPortfolioItem___scheduledIn___createdAt' | 'icon___carouselImagesPortfolioItem___scheduledIn___status' | 'icon___carouselImagesPortfolioItem___scheduledIn___id' | 'icon___carouselImagesPortfolioItem___scheduledIn___children' @@ -8702,68 +7666,370 @@ export type GraphCms_SpecialityFieldsEnum = | 'icon___carouselImagesPortfolioItem___internal___mediaType' | 'icon___carouselImagesPortfolioItem___internal___owner' | 'icon___carouselImagesPortfolioItem___internal___type' + | 'icon___carouselImagesPortfolioItem___internal___contentFilePath' + | 'icon___iconSpeciality' + | 'icon___iconSpeciality___remoteTypeName' + | 'icon___iconSpeciality___remoteId' + | 'icon___iconSpeciality___stage' + | 'icon___iconSpeciality___publishedAt' + | 'icon___iconSpeciality___updatedAt' + | 'icon___iconSpeciality___createdAt' + | 'icon___iconSpeciality___title' + | 'icon___iconSpeciality___description___remoteTypeName' + | 'icon___iconSpeciality___description___raw' + | 'icon___iconSpeciality___description___html' + | 'icon___iconSpeciality___description___markdown' + | 'icon___iconSpeciality___description___text' + | 'icon___iconSpeciality___publishedBy___remoteTypeName' + | 'icon___iconSpeciality___publishedBy___remoteId' + | 'icon___iconSpeciality___publishedBy___stage' + | 'icon___iconSpeciality___publishedBy___isActive' + | 'icon___iconSpeciality___publishedBy___picture' + | 'icon___iconSpeciality___publishedBy___name' + | 'icon___iconSpeciality___publishedBy___publishedAt' + | 'icon___iconSpeciality___publishedBy___updatedAt' + | 'icon___iconSpeciality___publishedBy___createdAt' + | 'icon___iconSpeciality___publishedBy___kind' + | 'icon___iconSpeciality___publishedBy___id' + | 'icon___iconSpeciality___publishedBy___children' + | 'icon___iconSpeciality___updatedBy___remoteTypeName' + | 'icon___iconSpeciality___updatedBy___remoteId' + | 'icon___iconSpeciality___updatedBy___stage' + | 'icon___iconSpeciality___updatedBy___isActive' + | 'icon___iconSpeciality___updatedBy___picture' + | 'icon___iconSpeciality___updatedBy___name' + | 'icon___iconSpeciality___updatedBy___publishedAt' + | 'icon___iconSpeciality___updatedBy___updatedAt' + | 'icon___iconSpeciality___updatedBy___createdAt' + | 'icon___iconSpeciality___updatedBy___kind' + | 'icon___iconSpeciality___updatedBy___id' + | 'icon___iconSpeciality___updatedBy___children' + | 'icon___iconSpeciality___createdBy___remoteTypeName' + | 'icon___iconSpeciality___createdBy___remoteId' + | 'icon___iconSpeciality___createdBy___stage' + | 'icon___iconSpeciality___createdBy___isActive' + | 'icon___iconSpeciality___createdBy___picture' + | 'icon___iconSpeciality___createdBy___name' + | 'icon___iconSpeciality___createdBy___publishedAt' + | 'icon___iconSpeciality___createdBy___updatedAt' + | 'icon___iconSpeciality___createdBy___createdAt' + | 'icon___iconSpeciality___createdBy___kind' + | 'icon___iconSpeciality___createdBy___id' + | 'icon___iconSpeciality___createdBy___children' + | 'icon___iconSpeciality___icon___remoteTypeName' + | 'icon___iconSpeciality___icon___remoteId' + | 'icon___iconSpeciality___icon___locale' + | 'icon___iconSpeciality___icon___stage' + | 'icon___iconSpeciality___icon___mimeType' + | 'icon___iconSpeciality___icon___size' + | 'icon___iconSpeciality___icon___width' + | 'icon___iconSpeciality___icon___height' + | 'icon___iconSpeciality___icon___fileName' + | 'icon___iconSpeciality___icon___handle' + | 'icon___iconSpeciality___icon___publishedAt' + | 'icon___iconSpeciality___icon___updatedAt' + | 'icon___iconSpeciality___icon___createdAt' + | 'icon___iconSpeciality___icon___carouselImagesPortfolioItem' + | 'icon___iconSpeciality___icon___iconSpeciality' + | 'icon___iconSpeciality___icon___iconTechnology' + | 'icon___iconSpeciality___icon___headerImageBlog' + | 'icon___iconSpeciality___icon___scheduledIn' + | 'icon___iconSpeciality___icon___url' + | 'icon___iconSpeciality___icon___id' + | 'icon___iconSpeciality___icon___children' + | 'icon___iconSpeciality___scheduledIn' + | 'icon___iconSpeciality___scheduledIn___remoteTypeName' + | 'icon___iconSpeciality___scheduledIn___remoteId' + | 'icon___iconSpeciality___scheduledIn___stage' + | 'icon___iconSpeciality___scheduledIn___rawPayload' + | 'icon___iconSpeciality___scheduledIn___errorMessage' + | 'icon___iconSpeciality___scheduledIn___description' + | 'icon___iconSpeciality___scheduledIn___publishedAt' + | 'icon___iconSpeciality___scheduledIn___updatedAt' + | 'icon___iconSpeciality___scheduledIn___createdAt' + | 'icon___iconSpeciality___scheduledIn___status' + | 'icon___iconSpeciality___scheduledIn___id' + | 'icon___iconSpeciality___scheduledIn___children' + | 'icon___iconSpeciality___id' + | 'icon___iconSpeciality___parent___id' + | 'icon___iconSpeciality___parent___children' + | 'icon___iconSpeciality___children' + | 'icon___iconSpeciality___children___id' + | 'icon___iconSpeciality___children___children' + | 'icon___iconSpeciality___internal___content' + | 'icon___iconSpeciality___internal___contentDigest' + | 'icon___iconSpeciality___internal___description' + | 'icon___iconSpeciality___internal___fieldOwners' + | 'icon___iconSpeciality___internal___ignoreType' + | 'icon___iconSpeciality___internal___mediaType' + | 'icon___iconSpeciality___internal___owner' + | 'icon___iconSpeciality___internal___type' + | 'icon___iconSpeciality___internal___contentFilePath' + | 'icon___iconTechnology' + | 'icon___iconTechnology___remoteTypeName' + | 'icon___iconTechnology___remoteId' + | 'icon___iconTechnology___stage' + | 'icon___iconTechnology___publishedAt' + | 'icon___iconTechnology___updatedAt' + | 'icon___iconTechnology___createdAt' + | 'icon___iconTechnology___title' + | 'icon___iconTechnology___description___remoteTypeName' + | 'icon___iconTechnology___description___raw' + | 'icon___iconTechnology___description___html' + | 'icon___iconTechnology___description___markdown' + | 'icon___iconTechnology___description___text' + | 'icon___iconTechnology___backgroundColor___remoteTypeName' + | 'icon___iconTechnology___backgroundColor___hex' + | 'icon___iconTechnology___backgroundColor___css' + | 'icon___iconTechnology___publishedBy___remoteTypeName' + | 'icon___iconTechnology___publishedBy___remoteId' + | 'icon___iconTechnology___publishedBy___stage' + | 'icon___iconTechnology___publishedBy___isActive' + | 'icon___iconTechnology___publishedBy___picture' + | 'icon___iconTechnology___publishedBy___name' + | 'icon___iconTechnology___publishedBy___publishedAt' + | 'icon___iconTechnology___publishedBy___updatedAt' + | 'icon___iconTechnology___publishedBy___createdAt' + | 'icon___iconTechnology___publishedBy___kind' + | 'icon___iconTechnology___publishedBy___id' + | 'icon___iconTechnology___publishedBy___children' + | 'icon___iconTechnology___updatedBy___remoteTypeName' + | 'icon___iconTechnology___updatedBy___remoteId' + | 'icon___iconTechnology___updatedBy___stage' + | 'icon___iconTechnology___updatedBy___isActive' + | 'icon___iconTechnology___updatedBy___picture' + | 'icon___iconTechnology___updatedBy___name' + | 'icon___iconTechnology___updatedBy___publishedAt' + | 'icon___iconTechnology___updatedBy___updatedAt' + | 'icon___iconTechnology___updatedBy___createdAt' + | 'icon___iconTechnology___updatedBy___kind' + | 'icon___iconTechnology___updatedBy___id' + | 'icon___iconTechnology___updatedBy___children' + | 'icon___iconTechnology___createdBy___remoteTypeName' + | 'icon___iconTechnology___createdBy___remoteId' + | 'icon___iconTechnology___createdBy___stage' + | 'icon___iconTechnology___createdBy___isActive' + | 'icon___iconTechnology___createdBy___picture' + | 'icon___iconTechnology___createdBy___name' + | 'icon___iconTechnology___createdBy___publishedAt' + | 'icon___iconTechnology___createdBy___updatedAt' + | 'icon___iconTechnology___createdBy___createdAt' + | 'icon___iconTechnology___createdBy___kind' + | 'icon___iconTechnology___createdBy___id' + | 'icon___iconTechnology___createdBy___children' + | 'icon___iconTechnology___icon___remoteTypeName' + | 'icon___iconTechnology___icon___remoteId' + | 'icon___iconTechnology___icon___locale' + | 'icon___iconTechnology___icon___stage' + | 'icon___iconTechnology___icon___mimeType' + | 'icon___iconTechnology___icon___size' + | 'icon___iconTechnology___icon___width' + | 'icon___iconTechnology___icon___height' + | 'icon___iconTechnology___icon___fileName' + | 'icon___iconTechnology___icon___handle' + | 'icon___iconTechnology___icon___publishedAt' + | 'icon___iconTechnology___icon___updatedAt' + | 'icon___iconTechnology___icon___createdAt' + | 'icon___iconTechnology___icon___carouselImagesPortfolioItem' + | 'icon___iconTechnology___icon___iconSpeciality' + | 'icon___iconTechnology___icon___iconTechnology' + | 'icon___iconTechnology___icon___headerImageBlog' + | 'icon___iconTechnology___icon___scheduledIn' + | 'icon___iconTechnology___icon___url' + | 'icon___iconTechnology___icon___id' + | 'icon___iconTechnology___icon___children' + | 'icon___iconTechnology___scheduledIn' + | 'icon___iconTechnology___scheduledIn___remoteTypeName' + | 'icon___iconTechnology___scheduledIn___remoteId' + | 'icon___iconTechnology___scheduledIn___stage' + | 'icon___iconTechnology___scheduledIn___rawPayload' + | 'icon___iconTechnology___scheduledIn___errorMessage' + | 'icon___iconTechnology___scheduledIn___description' + | 'icon___iconTechnology___scheduledIn___publishedAt' + | 'icon___iconTechnology___scheduledIn___updatedAt' + | 'icon___iconTechnology___scheduledIn___createdAt' + | 'icon___iconTechnology___scheduledIn___status' + | 'icon___iconTechnology___scheduledIn___id' + | 'icon___iconTechnology___scheduledIn___children' + | 'icon___iconTechnology___id' + | 'icon___iconTechnology___parent___id' + | 'icon___iconTechnology___parent___children' + | 'icon___iconTechnology___children' + | 'icon___iconTechnology___children___id' + | 'icon___iconTechnology___children___children' + | 'icon___iconTechnology___internal___content' + | 'icon___iconTechnology___internal___contentDigest' + | 'icon___iconTechnology___internal___description' + | 'icon___iconTechnology___internal___fieldOwners' + | 'icon___iconTechnology___internal___ignoreType' + | 'icon___iconTechnology___internal___mediaType' + | 'icon___iconTechnology___internal___owner' + | 'icon___iconTechnology___internal___type' + | 'icon___iconTechnology___internal___contentFilePath' + | 'icon___headerImageBlog' + | 'icon___headerImageBlog___remoteTypeName' + | 'icon___headerImageBlog___remoteId' + | 'icon___headerImageBlog___stage' + | 'icon___headerImageBlog___publishedAt' + | 'icon___headerImageBlog___updatedAt' + | 'icon___headerImageBlog___createdAt' + | 'icon___headerImageBlog___title' + | 'icon___headerImageBlog___description' + | 'icon___headerImageBlog___content___remoteTypeName' + | 'icon___headerImageBlog___content___raw' + | 'icon___headerImageBlog___content___html' + | 'icon___headerImageBlog___content___markdown' + | 'icon___headerImageBlog___content___text' + | 'icon___headerImageBlog___publishedBy___remoteTypeName' + | 'icon___headerImageBlog___publishedBy___remoteId' + | 'icon___headerImageBlog___publishedBy___stage' + | 'icon___headerImageBlog___publishedBy___isActive' + | 'icon___headerImageBlog___publishedBy___picture' + | 'icon___headerImageBlog___publishedBy___name' + | 'icon___headerImageBlog___publishedBy___publishedAt' + | 'icon___headerImageBlog___publishedBy___updatedAt' + | 'icon___headerImageBlog___publishedBy___createdAt' + | 'icon___headerImageBlog___publishedBy___kind' + | 'icon___headerImageBlog___publishedBy___id' + | 'icon___headerImageBlog___publishedBy___children' + | 'icon___headerImageBlog___updatedBy___remoteTypeName' + | 'icon___headerImageBlog___updatedBy___remoteId' + | 'icon___headerImageBlog___updatedBy___stage' + | 'icon___headerImageBlog___updatedBy___isActive' + | 'icon___headerImageBlog___updatedBy___picture' + | 'icon___headerImageBlog___updatedBy___name' + | 'icon___headerImageBlog___updatedBy___publishedAt' + | 'icon___headerImageBlog___updatedBy___updatedAt' + | 'icon___headerImageBlog___updatedBy___createdAt' + | 'icon___headerImageBlog___updatedBy___kind' + | 'icon___headerImageBlog___updatedBy___id' + | 'icon___headerImageBlog___updatedBy___children' + | 'icon___headerImageBlog___createdBy___remoteTypeName' + | 'icon___headerImageBlog___createdBy___remoteId' + | 'icon___headerImageBlog___createdBy___stage' + | 'icon___headerImageBlog___createdBy___isActive' + | 'icon___headerImageBlog___createdBy___picture' + | 'icon___headerImageBlog___createdBy___name' + | 'icon___headerImageBlog___createdBy___publishedAt' + | 'icon___headerImageBlog___createdBy___updatedAt' + | 'icon___headerImageBlog___createdBy___createdAt' + | 'icon___headerImageBlog___createdBy___kind' + | 'icon___headerImageBlog___createdBy___id' + | 'icon___headerImageBlog___createdBy___children' + | 'icon___headerImageBlog___headerImage___remoteTypeName' + | 'icon___headerImageBlog___headerImage___remoteId' + | 'icon___headerImageBlog___headerImage___locale' + | 'icon___headerImageBlog___headerImage___stage' + | 'icon___headerImageBlog___headerImage___mimeType' + | 'icon___headerImageBlog___headerImage___size' + | 'icon___headerImageBlog___headerImage___width' + | 'icon___headerImageBlog___headerImage___height' + | 'icon___headerImageBlog___headerImage___fileName' + | 'icon___headerImageBlog___headerImage___handle' + | 'icon___headerImageBlog___headerImage___publishedAt' + | 'icon___headerImageBlog___headerImage___updatedAt' + | 'icon___headerImageBlog___headerImage___createdAt' + | 'icon___headerImageBlog___headerImage___carouselImagesPortfolioItem' + | 'icon___headerImageBlog___headerImage___iconSpeciality' + | 'icon___headerImageBlog___headerImage___iconTechnology' + | 'icon___headerImageBlog___headerImage___headerImageBlog' + | 'icon___headerImageBlog___headerImage___scheduledIn' + | 'icon___headerImageBlog___headerImage___url' + | 'icon___headerImageBlog___headerImage___id' + | 'icon___headerImageBlog___headerImage___children' + | 'icon___headerImageBlog___type' + | 'icon___headerImageBlog___categories' + | 'icon___headerImageBlog___scheduledIn' + | 'icon___headerImageBlog___scheduledIn___remoteTypeName' + | 'icon___headerImageBlog___scheduledIn___remoteId' + | 'icon___headerImageBlog___scheduledIn___stage' + | 'icon___headerImageBlog___scheduledIn___rawPayload' + | 'icon___headerImageBlog___scheduledIn___errorMessage' + | 'icon___headerImageBlog___scheduledIn___description' + | 'icon___headerImageBlog___scheduledIn___publishedAt' + | 'icon___headerImageBlog___scheduledIn___updatedAt' + | 'icon___headerImageBlog___scheduledIn___createdAt' + | 'icon___headerImageBlog___scheduledIn___status' + | 'icon___headerImageBlog___scheduledIn___id' + | 'icon___headerImageBlog___scheduledIn___children' + | 'icon___headerImageBlog___gatsbyPath' + | 'icon___headerImageBlog___id' + | 'icon___headerImageBlog___parent___id' + | 'icon___headerImageBlog___parent___children' + | 'icon___headerImageBlog___children' + | 'icon___headerImageBlog___children___id' + | 'icon___headerImageBlog___children___children' + | 'icon___headerImageBlog___internal___content' + | 'icon___headerImageBlog___internal___contentDigest' + | 'icon___headerImageBlog___internal___description' + | 'icon___headerImageBlog___internal___fieldOwners' + | 'icon___headerImageBlog___internal___ignoreType' + | 'icon___headerImageBlog___internal___mediaType' + | 'icon___headerImageBlog___internal___owner' + | 'icon___headerImageBlog___internal___type' + | 'icon___headerImageBlog___internal___contentFilePath' | 'icon___scheduledIn' | 'icon___scheduledIn___remoteTypeName' | 'icon___scheduledIn___remoteId' | 'icon___scheduledIn___stage' - | 'icon___scheduledIn___createdAt' - | 'icon___scheduledIn___updatedAt' - | 'icon___scheduledIn___publishedAt' - | 'icon___scheduledIn___description' - | 'icon___scheduledIn___errorMessage' | 'icon___scheduledIn___rawPayload' - | 'icon___scheduledIn___createdBy___remoteTypeName' - | 'icon___scheduledIn___createdBy___remoteId' - | 'icon___scheduledIn___createdBy___stage' - | 'icon___scheduledIn___createdBy___createdAt' - | 'icon___scheduledIn___createdBy___updatedAt' - | 'icon___scheduledIn___createdBy___publishedAt' - | 'icon___scheduledIn___createdBy___name' - | 'icon___scheduledIn___createdBy___picture' - | 'icon___scheduledIn___createdBy___isActive' - | 'icon___scheduledIn___createdBy___kind' - | 'icon___scheduledIn___createdBy___id' - | 'icon___scheduledIn___createdBy___children' - | 'icon___scheduledIn___updatedBy___remoteTypeName' - | 'icon___scheduledIn___updatedBy___remoteId' - | 'icon___scheduledIn___updatedBy___stage' - | 'icon___scheduledIn___updatedBy___createdAt' - | 'icon___scheduledIn___updatedBy___updatedAt' - | 'icon___scheduledIn___updatedBy___publishedAt' - | 'icon___scheduledIn___updatedBy___name' - | 'icon___scheduledIn___updatedBy___picture' - | 'icon___scheduledIn___updatedBy___isActive' - | 'icon___scheduledIn___updatedBy___kind' - | 'icon___scheduledIn___updatedBy___id' - | 'icon___scheduledIn___updatedBy___children' - | 'icon___scheduledIn___publishedBy___remoteTypeName' - | 'icon___scheduledIn___publishedBy___remoteId' - | 'icon___scheduledIn___publishedBy___stage' - | 'icon___scheduledIn___publishedBy___createdAt' - | 'icon___scheduledIn___publishedBy___updatedAt' - | 'icon___scheduledIn___publishedBy___publishedAt' - | 'icon___scheduledIn___publishedBy___name' - | 'icon___scheduledIn___publishedBy___picture' - | 'icon___scheduledIn___publishedBy___isActive' - | 'icon___scheduledIn___publishedBy___kind' - | 'icon___scheduledIn___publishedBy___id' - | 'icon___scheduledIn___publishedBy___children' + | 'icon___scheduledIn___errorMessage' + | 'icon___scheduledIn___description' + | 'icon___scheduledIn___publishedAt' + | 'icon___scheduledIn___updatedAt' + | 'icon___scheduledIn___createdAt' | 'icon___scheduledIn___release___remoteTypeName' | 'icon___scheduledIn___release___remoteId' | 'icon___scheduledIn___release___stage' - | 'icon___scheduledIn___release___createdAt' - | 'icon___scheduledIn___release___updatedAt' - | 'icon___scheduledIn___release___publishedAt' - | 'icon___scheduledIn___release___title' - | 'icon___scheduledIn___release___description' - | 'icon___scheduledIn___release___errorMessage' - | 'icon___scheduledIn___release___isActive' - | 'icon___scheduledIn___release___isImplicit' | 'icon___scheduledIn___release___releaseAt' + | 'icon___scheduledIn___release___isImplicit' + | 'icon___scheduledIn___release___isActive' + | 'icon___scheduledIn___release___errorMessage' + | 'icon___scheduledIn___release___description' + | 'icon___scheduledIn___release___title' + | 'icon___scheduledIn___release___publishedAt' + | 'icon___scheduledIn___release___updatedAt' + | 'icon___scheduledIn___release___createdAt' | 'icon___scheduledIn___release___operations' | 'icon___scheduledIn___release___status' | 'icon___scheduledIn___release___id' | 'icon___scheduledIn___release___children' + | 'icon___scheduledIn___publishedBy___remoteTypeName' + | 'icon___scheduledIn___publishedBy___remoteId' + | 'icon___scheduledIn___publishedBy___stage' + | 'icon___scheduledIn___publishedBy___isActive' + | 'icon___scheduledIn___publishedBy___picture' + | 'icon___scheduledIn___publishedBy___name' + | 'icon___scheduledIn___publishedBy___publishedAt' + | 'icon___scheduledIn___publishedBy___updatedAt' + | 'icon___scheduledIn___publishedBy___createdAt' + | 'icon___scheduledIn___publishedBy___kind' + | 'icon___scheduledIn___publishedBy___id' + | 'icon___scheduledIn___publishedBy___children' + | 'icon___scheduledIn___updatedBy___remoteTypeName' + | 'icon___scheduledIn___updatedBy___remoteId' + | 'icon___scheduledIn___updatedBy___stage' + | 'icon___scheduledIn___updatedBy___isActive' + | 'icon___scheduledIn___updatedBy___picture' + | 'icon___scheduledIn___updatedBy___name' + | 'icon___scheduledIn___updatedBy___publishedAt' + | 'icon___scheduledIn___updatedBy___updatedAt' + | 'icon___scheduledIn___updatedBy___createdAt' + | 'icon___scheduledIn___updatedBy___kind' + | 'icon___scheduledIn___updatedBy___id' + | 'icon___scheduledIn___updatedBy___children' + | 'icon___scheduledIn___createdBy___remoteTypeName' + | 'icon___scheduledIn___createdBy___remoteId' + | 'icon___scheduledIn___createdBy___stage' + | 'icon___scheduledIn___createdBy___isActive' + | 'icon___scheduledIn___createdBy___picture' + | 'icon___scheduledIn___createdBy___name' + | 'icon___scheduledIn___createdBy___publishedAt' + | 'icon___scheduledIn___createdBy___updatedAt' + | 'icon___scheduledIn___createdBy___createdAt' + | 'icon___scheduledIn___createdBy___kind' + | 'icon___scheduledIn___createdBy___id' + | 'icon___scheduledIn___createdBy___children' | 'icon___scheduledIn___status' | 'icon___scheduledIn___id' | 'icon___scheduledIn___parent___id' @@ -8779,188 +8045,120 @@ export type GraphCms_SpecialityFieldsEnum = | 'icon___scheduledIn___internal___mediaType' | 'icon___scheduledIn___internal___owner' | 'icon___scheduledIn___internal___type' + | 'icon___scheduledIn___internal___contentFilePath' | 'icon___url' | 'icon___id' | 'icon___parent___id' - | 'icon___parent___parent___id' - | 'icon___parent___parent___children' - | 'icon___parent___children' - | 'icon___parent___children___id' - | 'icon___parent___children___children' - | 'icon___parent___internal___content' - | 'icon___parent___internal___contentDigest' - | 'icon___parent___internal___description' - | 'icon___parent___internal___fieldOwners' - | 'icon___parent___internal___ignoreType' - | 'icon___parent___internal___mediaType' - | 'icon___parent___internal___owner' - | 'icon___parent___internal___type' - | 'icon___children' - | 'icon___children___id' - | 'icon___children___parent___id' - | 'icon___children___parent___children' - | 'icon___children___children' - | 'icon___children___children___id' - | 'icon___children___children___children' - | 'icon___children___internal___content' - | 'icon___children___internal___contentDigest' - | 'icon___children___internal___description' - | 'icon___children___internal___fieldOwners' - | 'icon___children___internal___ignoreType' - | 'icon___children___internal___mediaType' - | 'icon___children___internal___owner' - | 'icon___children___internal___type' - | 'icon___internal___content' - | 'icon___internal___contentDigest' - | 'icon___internal___description' - | 'icon___internal___fieldOwners' - | 'icon___internal___ignoreType' - | 'icon___internal___mediaType' - | 'icon___internal___owner' - | 'icon___internal___type' - | 'scheduledIn' - | 'scheduledIn___remoteTypeName' - | 'scheduledIn___remoteId' - | 'scheduledIn___stage' - | 'scheduledIn___createdAt' - | 'scheduledIn___updatedAt' - | 'scheduledIn___publishedAt' - | 'scheduledIn___description' - | 'scheduledIn___errorMessage' - | 'scheduledIn___rawPayload' - | 'scheduledIn___createdBy___remoteTypeName' - | 'scheduledIn___createdBy___remoteId' - | 'scheduledIn___createdBy___stage' - | 'scheduledIn___createdBy___createdAt' - | 'scheduledIn___createdBy___updatedAt' - | 'scheduledIn___createdBy___publishedAt' - | 'scheduledIn___createdBy___name' - | 'scheduledIn___createdBy___picture' - | 'scheduledIn___createdBy___isActive' - | 'scheduledIn___createdBy___kind' - | 'scheduledIn___createdBy___id' - | 'scheduledIn___createdBy___parent___id' - | 'scheduledIn___createdBy___parent___children' - | 'scheduledIn___createdBy___children' - | 'scheduledIn___createdBy___children___id' - | 'scheduledIn___createdBy___children___children' - | 'scheduledIn___createdBy___internal___content' - | 'scheduledIn___createdBy___internal___contentDigest' - | 'scheduledIn___createdBy___internal___description' - | 'scheduledIn___createdBy___internal___fieldOwners' - | 'scheduledIn___createdBy___internal___ignoreType' - | 'scheduledIn___createdBy___internal___mediaType' - | 'scheduledIn___createdBy___internal___owner' - | 'scheduledIn___createdBy___internal___type' - | 'scheduledIn___updatedBy___remoteTypeName' - | 'scheduledIn___updatedBy___remoteId' - | 'scheduledIn___updatedBy___stage' - | 'scheduledIn___updatedBy___createdAt' - | 'scheduledIn___updatedBy___updatedAt' - | 'scheduledIn___updatedBy___publishedAt' - | 'scheduledIn___updatedBy___name' - | 'scheduledIn___updatedBy___picture' - | 'scheduledIn___updatedBy___isActive' - | 'scheduledIn___updatedBy___kind' - | 'scheduledIn___updatedBy___id' - | 'scheduledIn___updatedBy___parent___id' - | 'scheduledIn___updatedBy___parent___children' - | 'scheduledIn___updatedBy___children' - | 'scheduledIn___updatedBy___children___id' - | 'scheduledIn___updatedBy___children___children' - | 'scheduledIn___updatedBy___internal___content' - | 'scheduledIn___updatedBy___internal___contentDigest' - | 'scheduledIn___updatedBy___internal___description' - | 'scheduledIn___updatedBy___internal___fieldOwners' - | 'scheduledIn___updatedBy___internal___ignoreType' - | 'scheduledIn___updatedBy___internal___mediaType' - | 'scheduledIn___updatedBy___internal___owner' - | 'scheduledIn___updatedBy___internal___type' - | 'scheduledIn___publishedBy___remoteTypeName' - | 'scheduledIn___publishedBy___remoteId' - | 'scheduledIn___publishedBy___stage' - | 'scheduledIn___publishedBy___createdAt' - | 'scheduledIn___publishedBy___updatedAt' - | 'scheduledIn___publishedBy___publishedAt' - | 'scheduledIn___publishedBy___name' - | 'scheduledIn___publishedBy___picture' - | 'scheduledIn___publishedBy___isActive' - | 'scheduledIn___publishedBy___kind' - | 'scheduledIn___publishedBy___id' - | 'scheduledIn___publishedBy___parent___id' - | 'scheduledIn___publishedBy___parent___children' - | 'scheduledIn___publishedBy___children' - | 'scheduledIn___publishedBy___children___id' - | 'scheduledIn___publishedBy___children___children' - | 'scheduledIn___publishedBy___internal___content' - | 'scheduledIn___publishedBy___internal___contentDigest' - | 'scheduledIn___publishedBy___internal___description' - | 'scheduledIn___publishedBy___internal___fieldOwners' - | 'scheduledIn___publishedBy___internal___ignoreType' - | 'scheduledIn___publishedBy___internal___mediaType' - | 'scheduledIn___publishedBy___internal___owner' - | 'scheduledIn___publishedBy___internal___type' + | 'icon___parent___parent___id' + | 'icon___parent___parent___children' + | 'icon___parent___children' + | 'icon___parent___children___id' + | 'icon___parent___children___children' + | 'icon___parent___internal___content' + | 'icon___parent___internal___contentDigest' + | 'icon___parent___internal___description' + | 'icon___parent___internal___fieldOwners' + | 'icon___parent___internal___ignoreType' + | 'icon___parent___internal___mediaType' + | 'icon___parent___internal___owner' + | 'icon___parent___internal___type' + | 'icon___parent___internal___contentFilePath' + | 'icon___children' + | 'icon___children___id' + | 'icon___children___parent___id' + | 'icon___children___parent___children' + | 'icon___children___children' + | 'icon___children___children___id' + | 'icon___children___children___children' + | 'icon___children___internal___content' + | 'icon___children___internal___contentDigest' + | 'icon___children___internal___description' + | 'icon___children___internal___fieldOwners' + | 'icon___children___internal___ignoreType' + | 'icon___children___internal___mediaType' + | 'icon___children___internal___owner' + | 'icon___children___internal___type' + | 'icon___children___internal___contentFilePath' + | 'icon___internal___content' + | 'icon___internal___contentDigest' + | 'icon___internal___description' + | 'icon___internal___fieldOwners' + | 'icon___internal___ignoreType' + | 'icon___internal___mediaType' + | 'icon___internal___owner' + | 'icon___internal___type' + | 'icon___internal___contentFilePath' + | 'scheduledIn' + | 'scheduledIn___remoteTypeName' + | 'scheduledIn___remoteId' + | 'scheduledIn___stage' + | 'scheduledIn___rawPayload' + | 'scheduledIn___errorMessage' + | 'scheduledIn___description' + | 'scheduledIn___publishedAt' + | 'scheduledIn___updatedAt' + | 'scheduledIn___createdAt' | 'scheduledIn___release___remoteTypeName' | 'scheduledIn___release___remoteId' | 'scheduledIn___release___stage' - | 'scheduledIn___release___createdAt' - | 'scheduledIn___release___updatedAt' - | 'scheduledIn___release___publishedAt' - | 'scheduledIn___release___title' - | 'scheduledIn___release___description' - | 'scheduledIn___release___errorMessage' - | 'scheduledIn___release___isActive' - | 'scheduledIn___release___isImplicit' | 'scheduledIn___release___releaseAt' - | 'scheduledIn___release___createdBy___remoteTypeName' - | 'scheduledIn___release___createdBy___remoteId' - | 'scheduledIn___release___createdBy___stage' - | 'scheduledIn___release___createdBy___createdAt' - | 'scheduledIn___release___createdBy___updatedAt' - | 'scheduledIn___release___createdBy___publishedAt' - | 'scheduledIn___release___createdBy___name' - | 'scheduledIn___release___createdBy___picture' - | 'scheduledIn___release___createdBy___isActive' - | 'scheduledIn___release___createdBy___kind' - | 'scheduledIn___release___createdBy___id' - | 'scheduledIn___release___createdBy___children' - | 'scheduledIn___release___updatedBy___remoteTypeName' - | 'scheduledIn___release___updatedBy___remoteId' - | 'scheduledIn___release___updatedBy___stage' - | 'scheduledIn___release___updatedBy___createdAt' - | 'scheduledIn___release___updatedBy___updatedAt' - | 'scheduledIn___release___updatedBy___publishedAt' - | 'scheduledIn___release___updatedBy___name' - | 'scheduledIn___release___updatedBy___picture' - | 'scheduledIn___release___updatedBy___isActive' - | 'scheduledIn___release___updatedBy___kind' - | 'scheduledIn___release___updatedBy___id' - | 'scheduledIn___release___updatedBy___children' - | 'scheduledIn___release___publishedBy___remoteTypeName' - | 'scheduledIn___release___publishedBy___remoteId' - | 'scheduledIn___release___publishedBy___stage' - | 'scheduledIn___release___publishedBy___createdAt' - | 'scheduledIn___release___publishedBy___updatedAt' - | 'scheduledIn___release___publishedBy___publishedAt' - | 'scheduledIn___release___publishedBy___name' - | 'scheduledIn___release___publishedBy___picture' - | 'scheduledIn___release___publishedBy___isActive' - | 'scheduledIn___release___publishedBy___kind' - | 'scheduledIn___release___publishedBy___id' - | 'scheduledIn___release___publishedBy___children' + | 'scheduledIn___release___isImplicit' + | 'scheduledIn___release___isActive' + | 'scheduledIn___release___errorMessage' + | 'scheduledIn___release___description' + | 'scheduledIn___release___title' + | 'scheduledIn___release___publishedAt' + | 'scheduledIn___release___updatedAt' + | 'scheduledIn___release___createdAt' | 'scheduledIn___release___operations' | 'scheduledIn___release___operations___remoteTypeName' | 'scheduledIn___release___operations___remoteId' | 'scheduledIn___release___operations___stage' - | 'scheduledIn___release___operations___createdAt' - | 'scheduledIn___release___operations___updatedAt' - | 'scheduledIn___release___operations___publishedAt' - | 'scheduledIn___release___operations___description' - | 'scheduledIn___release___operations___errorMessage' | 'scheduledIn___release___operations___rawPayload' + | 'scheduledIn___release___operations___errorMessage' + | 'scheduledIn___release___operations___description' + | 'scheduledIn___release___operations___publishedAt' + | 'scheduledIn___release___operations___updatedAt' + | 'scheduledIn___release___operations___createdAt' | 'scheduledIn___release___operations___status' | 'scheduledIn___release___operations___id' | 'scheduledIn___release___operations___children' + | 'scheduledIn___release___publishedBy___remoteTypeName' + | 'scheduledIn___release___publishedBy___remoteId' + | 'scheduledIn___release___publishedBy___stage' + | 'scheduledIn___release___publishedBy___isActive' + | 'scheduledIn___release___publishedBy___picture' + | 'scheduledIn___release___publishedBy___name' + | 'scheduledIn___release___publishedBy___publishedAt' + | 'scheduledIn___release___publishedBy___updatedAt' + | 'scheduledIn___release___publishedBy___createdAt' + | 'scheduledIn___release___publishedBy___kind' + | 'scheduledIn___release___publishedBy___id' + | 'scheduledIn___release___publishedBy___children' + | 'scheduledIn___release___updatedBy___remoteTypeName' + | 'scheduledIn___release___updatedBy___remoteId' + | 'scheduledIn___release___updatedBy___stage' + | 'scheduledIn___release___updatedBy___isActive' + | 'scheduledIn___release___updatedBy___picture' + | 'scheduledIn___release___updatedBy___name' + | 'scheduledIn___release___updatedBy___publishedAt' + | 'scheduledIn___release___updatedBy___updatedAt' + | 'scheduledIn___release___updatedBy___createdAt' + | 'scheduledIn___release___updatedBy___kind' + | 'scheduledIn___release___updatedBy___id' + | 'scheduledIn___release___updatedBy___children' + | 'scheduledIn___release___createdBy___remoteTypeName' + | 'scheduledIn___release___createdBy___remoteId' + | 'scheduledIn___release___createdBy___stage' + | 'scheduledIn___release___createdBy___isActive' + | 'scheduledIn___release___createdBy___picture' + | 'scheduledIn___release___createdBy___name' + | 'scheduledIn___release___createdBy___publishedAt' + | 'scheduledIn___release___createdBy___updatedAt' + | 'scheduledIn___release___createdBy___createdAt' + | 'scheduledIn___release___createdBy___kind' + | 'scheduledIn___release___createdBy___id' + | 'scheduledIn___release___createdBy___children' | 'scheduledIn___release___status' | 'scheduledIn___release___id' | 'scheduledIn___release___parent___id' @@ -8976,6 +8174,82 @@ export type GraphCms_SpecialityFieldsEnum = | 'scheduledIn___release___internal___mediaType' | 'scheduledIn___release___internal___owner' | 'scheduledIn___release___internal___type' + | 'scheduledIn___release___internal___contentFilePath' + | 'scheduledIn___publishedBy___remoteTypeName' + | 'scheduledIn___publishedBy___remoteId' + | 'scheduledIn___publishedBy___stage' + | 'scheduledIn___publishedBy___isActive' + | 'scheduledIn___publishedBy___picture' + | 'scheduledIn___publishedBy___name' + | 'scheduledIn___publishedBy___publishedAt' + | 'scheduledIn___publishedBy___updatedAt' + | 'scheduledIn___publishedBy___createdAt' + | 'scheduledIn___publishedBy___kind' + | 'scheduledIn___publishedBy___id' + | 'scheduledIn___publishedBy___parent___id' + | 'scheduledIn___publishedBy___parent___children' + | 'scheduledIn___publishedBy___children' + | 'scheduledIn___publishedBy___children___id' + | 'scheduledIn___publishedBy___children___children' + | 'scheduledIn___publishedBy___internal___content' + | 'scheduledIn___publishedBy___internal___contentDigest' + | 'scheduledIn___publishedBy___internal___description' + | 'scheduledIn___publishedBy___internal___fieldOwners' + | 'scheduledIn___publishedBy___internal___ignoreType' + | 'scheduledIn___publishedBy___internal___mediaType' + | 'scheduledIn___publishedBy___internal___owner' + | 'scheduledIn___publishedBy___internal___type' + | 'scheduledIn___publishedBy___internal___contentFilePath' + | 'scheduledIn___updatedBy___remoteTypeName' + | 'scheduledIn___updatedBy___remoteId' + | 'scheduledIn___updatedBy___stage' + | 'scheduledIn___updatedBy___isActive' + | 'scheduledIn___updatedBy___picture' + | 'scheduledIn___updatedBy___name' + | 'scheduledIn___updatedBy___publishedAt' + | 'scheduledIn___updatedBy___updatedAt' + | 'scheduledIn___updatedBy___createdAt' + | 'scheduledIn___updatedBy___kind' + | 'scheduledIn___updatedBy___id' + | 'scheduledIn___updatedBy___parent___id' + | 'scheduledIn___updatedBy___parent___children' + | 'scheduledIn___updatedBy___children' + | 'scheduledIn___updatedBy___children___id' + | 'scheduledIn___updatedBy___children___children' + | 'scheduledIn___updatedBy___internal___content' + | 'scheduledIn___updatedBy___internal___contentDigest' + | 'scheduledIn___updatedBy___internal___description' + | 'scheduledIn___updatedBy___internal___fieldOwners' + | 'scheduledIn___updatedBy___internal___ignoreType' + | 'scheduledIn___updatedBy___internal___mediaType' + | 'scheduledIn___updatedBy___internal___owner' + | 'scheduledIn___updatedBy___internal___type' + | 'scheduledIn___updatedBy___internal___contentFilePath' + | 'scheduledIn___createdBy___remoteTypeName' + | 'scheduledIn___createdBy___remoteId' + | 'scheduledIn___createdBy___stage' + | 'scheduledIn___createdBy___isActive' + | 'scheduledIn___createdBy___picture' + | 'scheduledIn___createdBy___name' + | 'scheduledIn___createdBy___publishedAt' + | 'scheduledIn___createdBy___updatedAt' + | 'scheduledIn___createdBy___createdAt' + | 'scheduledIn___createdBy___kind' + | 'scheduledIn___createdBy___id' + | 'scheduledIn___createdBy___parent___id' + | 'scheduledIn___createdBy___parent___children' + | 'scheduledIn___createdBy___children' + | 'scheduledIn___createdBy___children___id' + | 'scheduledIn___createdBy___children___children' + | 'scheduledIn___createdBy___internal___content' + | 'scheduledIn___createdBy___internal___contentDigest' + | 'scheduledIn___createdBy___internal___description' + | 'scheduledIn___createdBy___internal___fieldOwners' + | 'scheduledIn___createdBy___internal___ignoreType' + | 'scheduledIn___createdBy___internal___mediaType' + | 'scheduledIn___createdBy___internal___owner' + | 'scheduledIn___createdBy___internal___type' + | 'scheduledIn___createdBy___internal___contentFilePath' | 'scheduledIn___status' | 'scheduledIn___id' | 'scheduledIn___parent___id' @@ -8992,6 +8266,7 @@ export type GraphCms_SpecialityFieldsEnum = | 'scheduledIn___parent___internal___mediaType' | 'scheduledIn___parent___internal___owner' | 'scheduledIn___parent___internal___type' + | 'scheduledIn___parent___internal___contentFilePath' | 'scheduledIn___children' | 'scheduledIn___children___id' | 'scheduledIn___children___parent___id' @@ -9007,6 +8282,7 @@ export type GraphCms_SpecialityFieldsEnum = | 'scheduledIn___children___internal___mediaType' | 'scheduledIn___children___internal___owner' | 'scheduledIn___children___internal___type' + | 'scheduledIn___children___internal___contentFilePath' | 'scheduledIn___internal___content' | 'scheduledIn___internal___contentDigest' | 'scheduledIn___internal___description' @@ -9015,6 +8291,7 @@ export type GraphCms_SpecialityFieldsEnum = | 'scheduledIn___internal___mediaType' | 'scheduledIn___internal___owner' | 'scheduledIn___internal___type' + | 'scheduledIn___internal___contentFilePath' | 'id' | 'parent___id' | 'parent___parent___id' @@ -9031,6 +8308,7 @@ export type GraphCms_SpecialityFieldsEnum = | 'parent___parent___internal___mediaType' | 'parent___parent___internal___owner' | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' | 'parent___children' | 'parent___children___id' | 'parent___children___parent___id' @@ -9046,6 +8324,7 @@ export type GraphCms_SpecialityFieldsEnum = | 'parent___children___internal___mediaType' | 'parent___children___internal___owner' | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' | 'parent___internal___content' | 'parent___internal___contentDigest' | 'parent___internal___description' @@ -9054,6 +8333,7 @@ export type GraphCms_SpecialityFieldsEnum = | 'parent___internal___mediaType' | 'parent___internal___owner' | 'parent___internal___type' + | 'parent___internal___contentFilePath' | 'children' | 'children___id' | 'children___parent___id' @@ -9070,6 +8350,7 @@ export type GraphCms_SpecialityFieldsEnum = | 'children___parent___internal___mediaType' | 'children___parent___internal___owner' | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' | 'children___children' | 'children___children___id' | 'children___children___parent___id' @@ -9085,6 +8366,7 @@ export type GraphCms_SpecialityFieldsEnum = | 'children___children___internal___mediaType' | 'children___children___internal___owner' | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' | 'children___internal___content' | 'children___internal___contentDigest' | 'children___internal___description' @@ -9093,6 +8375,7 @@ export type GraphCms_SpecialityFieldsEnum = | 'children___internal___mediaType' | 'children___internal___owner' | 'children___internal___type' + | 'children___internal___contentFilePath' | 'internal___content' | 'internal___contentDigest' | 'internal___description' @@ -9100,7 +8383,8 @@ export type GraphCms_SpecialityFieldsEnum = | 'internal___ignoreType' | 'internal___mediaType' | 'internal___owner' - | 'internal___type'; + | 'internal___type' + | 'internal___contentFilePath'; export type GraphCms_SpecialityGroupConnection = { totalCount: Scalars['Int']; @@ -9116,71 +8400,31 @@ export type GraphCms_SpecialityGroupConnection = { fieldValue?: Maybe; }; - export type GraphCms_SpecialityGroupConnectionDistinctArgs = { field: GraphCms_SpecialityFieldsEnum; }; - export type GraphCms_SpecialityGroupConnectionMaxArgs = { field: GraphCms_SpecialityFieldsEnum; }; - export type GraphCms_SpecialityGroupConnectionMinArgs = { field: GraphCms_SpecialityFieldsEnum; }; - export type GraphCms_SpecialityGroupConnectionSumArgs = { field: GraphCms_SpecialityFieldsEnum; }; - export type GraphCms_SpecialityGroupConnectionGroupArgs = { - skip?: InputMaybe; - limit?: InputMaybe; - field: GraphCms_SpecialityFieldsEnum; -}; - -export type GraphCms_SpecialityFilterInput = { - remoteTypeName?: InputMaybe; - remoteId?: InputMaybe; - stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; - publishedAt?: InputMaybe; - title?: InputMaybe; - description?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; - publishedBy?: InputMaybe; - icon?: InputMaybe; - scheduledIn?: InputMaybe; - id?: InputMaybe; - parent?: InputMaybe; - children?: InputMaybe; - internal?: InputMaybe; -}; - -export type GraphCms_SpecialitySortInput = { - fields?: InputMaybe>>; - order?: InputMaybe>>; -}; - -export type GraphCms_ColorFilterInput = { - remoteTypeName?: InputMaybe; - hex?: InputMaybe; - rgba?: InputMaybe; - css?: InputMaybe; + skip?: InputMaybe; + limit?: InputMaybe; + field: GraphCms_SpecialityFieldsEnum; }; -export type GraphCms_RgbaFilterInput = { - remoteTypeName?: InputMaybe; - r?: InputMaybe; - g?: InputMaybe; - b?: InputMaybe; - a?: InputMaybe; +export type GraphCms_SpecialitySortInput = { + fields?: InputMaybe>>; + order?: InputMaybe>>; }; export type GraphCms_TechnologyConnection = { @@ -9195,27 +8439,22 @@ export type GraphCms_TechnologyConnection = { group: Array; }; - export type GraphCms_TechnologyConnectionDistinctArgs = { field: GraphCms_TechnologyFieldsEnum; }; - export type GraphCms_TechnologyConnectionMaxArgs = { field: GraphCms_TechnologyFieldsEnum; }; - export type GraphCms_TechnologyConnectionMinArgs = { field: GraphCms_TechnologyFieldsEnum; }; - export type GraphCms_TechnologyConnectionSumArgs = { field: GraphCms_TechnologyFieldsEnum; }; - export type GraphCms_TechnologyConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; @@ -9232,9 +8471,9 @@ export type GraphCms_TechnologyFieldsEnum = | 'remoteTypeName' | 'remoteId' | 'stage' - | 'createdAt' - | 'updatedAt' | 'publishedAt' + | 'updatedAt' + | 'createdAt' | 'title' | 'description___remoteTypeName' | 'description___raw' @@ -9249,111 +8488,15 @@ export type GraphCms_TechnologyFieldsEnum = | 'backgroundColor___rgba___b' | 'backgroundColor___rgba___a' | 'backgroundColor___css' - | 'createdBy___remoteTypeName' - | 'createdBy___remoteId' - | 'createdBy___stage' - | 'createdBy___createdAt' - | 'createdBy___updatedAt' - | 'createdBy___publishedAt' - | 'createdBy___name' - | 'createdBy___picture' - | 'createdBy___isActive' - | 'createdBy___kind' - | 'createdBy___id' - | 'createdBy___parent___id' - | 'createdBy___parent___parent___id' - | 'createdBy___parent___parent___children' - | 'createdBy___parent___children' - | 'createdBy___parent___children___id' - | 'createdBy___parent___children___children' - | 'createdBy___parent___internal___content' - | 'createdBy___parent___internal___contentDigest' - | 'createdBy___parent___internal___description' - | 'createdBy___parent___internal___fieldOwners' - | 'createdBy___parent___internal___ignoreType' - | 'createdBy___parent___internal___mediaType' - | 'createdBy___parent___internal___owner' - | 'createdBy___parent___internal___type' - | 'createdBy___children' - | 'createdBy___children___id' - | 'createdBy___children___parent___id' - | 'createdBy___children___parent___children' - | 'createdBy___children___children' - | 'createdBy___children___children___id' - | 'createdBy___children___children___children' - | 'createdBy___children___internal___content' - | 'createdBy___children___internal___contentDigest' - | 'createdBy___children___internal___description' - | 'createdBy___children___internal___fieldOwners' - | 'createdBy___children___internal___ignoreType' - | 'createdBy___children___internal___mediaType' - | 'createdBy___children___internal___owner' - | 'createdBy___children___internal___type' - | 'createdBy___internal___content' - | 'createdBy___internal___contentDigest' - | 'createdBy___internal___description' - | 'createdBy___internal___fieldOwners' - | 'createdBy___internal___ignoreType' - | 'createdBy___internal___mediaType' - | 'createdBy___internal___owner' - | 'createdBy___internal___type' - | 'updatedBy___remoteTypeName' - | 'updatedBy___remoteId' - | 'updatedBy___stage' - | 'updatedBy___createdAt' - | 'updatedBy___updatedAt' - | 'updatedBy___publishedAt' - | 'updatedBy___name' - | 'updatedBy___picture' - | 'updatedBy___isActive' - | 'updatedBy___kind' - | 'updatedBy___id' - | 'updatedBy___parent___id' - | 'updatedBy___parent___parent___id' - | 'updatedBy___parent___parent___children' - | 'updatedBy___parent___children' - | 'updatedBy___parent___children___id' - | 'updatedBy___parent___children___children' - | 'updatedBy___parent___internal___content' - | 'updatedBy___parent___internal___contentDigest' - | 'updatedBy___parent___internal___description' - | 'updatedBy___parent___internal___fieldOwners' - | 'updatedBy___parent___internal___ignoreType' - | 'updatedBy___parent___internal___mediaType' - | 'updatedBy___parent___internal___owner' - | 'updatedBy___parent___internal___type' - | 'updatedBy___children' - | 'updatedBy___children___id' - | 'updatedBy___children___parent___id' - | 'updatedBy___children___parent___children' - | 'updatedBy___children___children' - | 'updatedBy___children___children___id' - | 'updatedBy___children___children___children' - | 'updatedBy___children___internal___content' - | 'updatedBy___children___internal___contentDigest' - | 'updatedBy___children___internal___description' - | 'updatedBy___children___internal___fieldOwners' - | 'updatedBy___children___internal___ignoreType' - | 'updatedBy___children___internal___mediaType' - | 'updatedBy___children___internal___owner' - | 'updatedBy___children___internal___type' - | 'updatedBy___internal___content' - | 'updatedBy___internal___contentDigest' - | 'updatedBy___internal___description' - | 'updatedBy___internal___fieldOwners' - | 'updatedBy___internal___ignoreType' - | 'updatedBy___internal___mediaType' - | 'updatedBy___internal___owner' - | 'updatedBy___internal___type' | 'publishedBy___remoteTypeName' | 'publishedBy___remoteId' | 'publishedBy___stage' - | 'publishedBy___createdAt' - | 'publishedBy___updatedAt' - | 'publishedBy___publishedAt' - | 'publishedBy___name' - | 'publishedBy___picture' | 'publishedBy___isActive' + | 'publishedBy___picture' + | 'publishedBy___name' + | 'publishedBy___publishedAt' + | 'publishedBy___updatedAt' + | 'publishedBy___createdAt' | 'publishedBy___kind' | 'publishedBy___id' | 'publishedBy___parent___id' @@ -9370,6 +8513,7 @@ export type GraphCms_TechnologyFieldsEnum = | 'publishedBy___parent___internal___mediaType' | 'publishedBy___parent___internal___owner' | 'publishedBy___parent___internal___type' + | 'publishedBy___parent___internal___contentFilePath' | 'publishedBy___children' | 'publishedBy___children___id' | 'publishedBy___children___parent___id' @@ -9385,6 +8529,7 @@ export type GraphCms_TechnologyFieldsEnum = | 'publishedBy___children___internal___mediaType' | 'publishedBy___children___internal___owner' | 'publishedBy___children___internal___type' + | 'publishedBy___children___internal___contentFilePath' | 'publishedBy___internal___content' | 'publishedBy___internal___contentDigest' | 'publishedBy___internal___description' @@ -9393,76 +8538,131 @@ export type GraphCms_TechnologyFieldsEnum = | 'publishedBy___internal___mediaType' | 'publishedBy___internal___owner' | 'publishedBy___internal___type' - | 'icon___remoteTypeName' - | 'icon___remoteId' - | 'icon___locale' - | 'icon___stage' - | 'icon___createdAt' - | 'icon___updatedAt' - | 'icon___publishedAt' - | 'icon___handle' - | 'icon___fileName' - | 'icon___height' - | 'icon___width' - | 'icon___size' - | 'icon___mimeType' - | 'icon___createdBy___remoteTypeName' - | 'icon___createdBy___remoteId' - | 'icon___createdBy___stage' - | 'icon___createdBy___createdAt' - | 'icon___createdBy___updatedAt' - | 'icon___createdBy___publishedAt' - | 'icon___createdBy___name' - | 'icon___createdBy___picture' - | 'icon___createdBy___isActive' - | 'icon___createdBy___kind' - | 'icon___createdBy___id' - | 'icon___createdBy___parent___id' - | 'icon___createdBy___parent___children' - | 'icon___createdBy___children' - | 'icon___createdBy___children___id' - | 'icon___createdBy___children___children' - | 'icon___createdBy___internal___content' - | 'icon___createdBy___internal___contentDigest' - | 'icon___createdBy___internal___description' - | 'icon___createdBy___internal___fieldOwners' - | 'icon___createdBy___internal___ignoreType' - | 'icon___createdBy___internal___mediaType' - | 'icon___createdBy___internal___owner' - | 'icon___createdBy___internal___type' - | 'icon___updatedBy___remoteTypeName' - | 'icon___updatedBy___remoteId' - | 'icon___updatedBy___stage' - | 'icon___updatedBy___createdAt' - | 'icon___updatedBy___updatedAt' - | 'icon___updatedBy___publishedAt' - | 'icon___updatedBy___name' - | 'icon___updatedBy___picture' - | 'icon___updatedBy___isActive' - | 'icon___updatedBy___kind' - | 'icon___updatedBy___id' - | 'icon___updatedBy___parent___id' - | 'icon___updatedBy___parent___children' - | 'icon___updatedBy___children' - | 'icon___updatedBy___children___id' - | 'icon___updatedBy___children___children' - | 'icon___updatedBy___internal___content' - | 'icon___updatedBy___internal___contentDigest' - | 'icon___updatedBy___internal___description' - | 'icon___updatedBy___internal___fieldOwners' - | 'icon___updatedBy___internal___ignoreType' - | 'icon___updatedBy___internal___mediaType' - | 'icon___updatedBy___internal___owner' - | 'icon___updatedBy___internal___type' + | 'publishedBy___internal___contentFilePath' + | 'updatedBy___remoteTypeName' + | 'updatedBy___remoteId' + | 'updatedBy___stage' + | 'updatedBy___isActive' + | 'updatedBy___picture' + | 'updatedBy___name' + | 'updatedBy___publishedAt' + | 'updatedBy___updatedAt' + | 'updatedBy___createdAt' + | 'updatedBy___kind' + | 'updatedBy___id' + | 'updatedBy___parent___id' + | 'updatedBy___parent___parent___id' + | 'updatedBy___parent___parent___children' + | 'updatedBy___parent___children' + | 'updatedBy___parent___children___id' + | 'updatedBy___parent___children___children' + | 'updatedBy___parent___internal___content' + | 'updatedBy___parent___internal___contentDigest' + | 'updatedBy___parent___internal___description' + | 'updatedBy___parent___internal___fieldOwners' + | 'updatedBy___parent___internal___ignoreType' + | 'updatedBy___parent___internal___mediaType' + | 'updatedBy___parent___internal___owner' + | 'updatedBy___parent___internal___type' + | 'updatedBy___parent___internal___contentFilePath' + | 'updatedBy___children' + | 'updatedBy___children___id' + | 'updatedBy___children___parent___id' + | 'updatedBy___children___parent___children' + | 'updatedBy___children___children' + | 'updatedBy___children___children___id' + | 'updatedBy___children___children___children' + | 'updatedBy___children___internal___content' + | 'updatedBy___children___internal___contentDigest' + | 'updatedBy___children___internal___description' + | 'updatedBy___children___internal___fieldOwners' + | 'updatedBy___children___internal___ignoreType' + | 'updatedBy___children___internal___mediaType' + | 'updatedBy___children___internal___owner' + | 'updatedBy___children___internal___type' + | 'updatedBy___children___internal___contentFilePath' + | 'updatedBy___internal___content' + | 'updatedBy___internal___contentDigest' + | 'updatedBy___internal___description' + | 'updatedBy___internal___fieldOwners' + | 'updatedBy___internal___ignoreType' + | 'updatedBy___internal___mediaType' + | 'updatedBy___internal___owner' + | 'updatedBy___internal___type' + | 'updatedBy___internal___contentFilePath' + | 'createdBy___remoteTypeName' + | 'createdBy___remoteId' + | 'createdBy___stage' + | 'createdBy___isActive' + | 'createdBy___picture' + | 'createdBy___name' + | 'createdBy___publishedAt' + | 'createdBy___updatedAt' + | 'createdBy___createdAt' + | 'createdBy___kind' + | 'createdBy___id' + | 'createdBy___parent___id' + | 'createdBy___parent___parent___id' + | 'createdBy___parent___parent___children' + | 'createdBy___parent___children' + | 'createdBy___parent___children___id' + | 'createdBy___parent___children___children' + | 'createdBy___parent___internal___content' + | 'createdBy___parent___internal___contentDigest' + | 'createdBy___parent___internal___description' + | 'createdBy___parent___internal___fieldOwners' + | 'createdBy___parent___internal___ignoreType' + | 'createdBy___parent___internal___mediaType' + | 'createdBy___parent___internal___owner' + | 'createdBy___parent___internal___type' + | 'createdBy___parent___internal___contentFilePath' + | 'createdBy___children' + | 'createdBy___children___id' + | 'createdBy___children___parent___id' + | 'createdBy___children___parent___children' + | 'createdBy___children___children' + | 'createdBy___children___children___id' + | 'createdBy___children___children___children' + | 'createdBy___children___internal___content' + | 'createdBy___children___internal___contentDigest' + | 'createdBy___children___internal___description' + | 'createdBy___children___internal___fieldOwners' + | 'createdBy___children___internal___ignoreType' + | 'createdBy___children___internal___mediaType' + | 'createdBy___children___internal___owner' + | 'createdBy___children___internal___type' + | 'createdBy___children___internal___contentFilePath' + | 'createdBy___internal___content' + | 'createdBy___internal___contentDigest' + | 'createdBy___internal___description' + | 'createdBy___internal___fieldOwners' + | 'createdBy___internal___ignoreType' + | 'createdBy___internal___mediaType' + | 'createdBy___internal___owner' + | 'createdBy___internal___type' + | 'createdBy___internal___contentFilePath' + | 'icon___remoteTypeName' + | 'icon___remoteId' + | 'icon___locale' + | 'icon___stage' + | 'icon___mimeType' + | 'icon___size' + | 'icon___width' + | 'icon___height' + | 'icon___fileName' + | 'icon___handle' + | 'icon___publishedAt' + | 'icon___updatedAt' + | 'icon___createdAt' | 'icon___publishedBy___remoteTypeName' | 'icon___publishedBy___remoteId' | 'icon___publishedBy___stage' - | 'icon___publishedBy___createdAt' - | 'icon___publishedBy___updatedAt' - | 'icon___publishedBy___publishedAt' - | 'icon___publishedBy___name' - | 'icon___publishedBy___picture' | 'icon___publishedBy___isActive' + | 'icon___publishedBy___picture' + | 'icon___publishedBy___name' + | 'icon___publishedBy___publishedAt' + | 'icon___publishedBy___updatedAt' + | 'icon___publishedBy___createdAt' | 'icon___publishedBy___kind' | 'icon___publishedBy___id' | 'icon___publishedBy___parent___id' @@ -9478,72 +8678,126 @@ export type GraphCms_TechnologyFieldsEnum = | 'icon___publishedBy___internal___mediaType' | 'icon___publishedBy___internal___owner' | 'icon___publishedBy___internal___type' + | 'icon___publishedBy___internal___contentFilePath' + | 'icon___updatedBy___remoteTypeName' + | 'icon___updatedBy___remoteId' + | 'icon___updatedBy___stage' + | 'icon___updatedBy___isActive' + | 'icon___updatedBy___picture' + | 'icon___updatedBy___name' + | 'icon___updatedBy___publishedAt' + | 'icon___updatedBy___updatedAt' + | 'icon___updatedBy___createdAt' + | 'icon___updatedBy___kind' + | 'icon___updatedBy___id' + | 'icon___updatedBy___parent___id' + | 'icon___updatedBy___parent___children' + | 'icon___updatedBy___children' + | 'icon___updatedBy___children___id' + | 'icon___updatedBy___children___children' + | 'icon___updatedBy___internal___content' + | 'icon___updatedBy___internal___contentDigest' + | 'icon___updatedBy___internal___description' + | 'icon___updatedBy___internal___fieldOwners' + | 'icon___updatedBy___internal___ignoreType' + | 'icon___updatedBy___internal___mediaType' + | 'icon___updatedBy___internal___owner' + | 'icon___updatedBy___internal___type' + | 'icon___updatedBy___internal___contentFilePath' + | 'icon___createdBy___remoteTypeName' + | 'icon___createdBy___remoteId' + | 'icon___createdBy___stage' + | 'icon___createdBy___isActive' + | 'icon___createdBy___picture' + | 'icon___createdBy___name' + | 'icon___createdBy___publishedAt' + | 'icon___createdBy___updatedAt' + | 'icon___createdBy___createdAt' + | 'icon___createdBy___kind' + | 'icon___createdBy___id' + | 'icon___createdBy___parent___id' + | 'icon___createdBy___parent___children' + | 'icon___createdBy___children' + | 'icon___createdBy___children___id' + | 'icon___createdBy___children___children' + | 'icon___createdBy___internal___content' + | 'icon___createdBy___internal___contentDigest' + | 'icon___createdBy___internal___description' + | 'icon___createdBy___internal___fieldOwners' + | 'icon___createdBy___internal___ignoreType' + | 'icon___createdBy___internal___mediaType' + | 'icon___createdBy___internal___owner' + | 'icon___createdBy___internal___type' + | 'icon___createdBy___internal___contentFilePath' | 'icon___carouselImagesPortfolioItem' | 'icon___carouselImagesPortfolioItem___remoteTypeName' | 'icon___carouselImagesPortfolioItem___remoteId' | 'icon___carouselImagesPortfolioItem___stage' - | 'icon___carouselImagesPortfolioItem___createdAt' - | 'icon___carouselImagesPortfolioItem___updatedAt' | 'icon___carouselImagesPortfolioItem___publishedAt' + | 'icon___carouselImagesPortfolioItem___updatedAt' + | 'icon___carouselImagesPortfolioItem___createdAt' | 'icon___carouselImagesPortfolioItem___title' | 'icon___carouselImagesPortfolioItem___description' - | 'icon___carouselImagesPortfolioItem___techSheet' | 'icon___carouselImagesPortfolioItem___about___remoteTypeName' | 'icon___carouselImagesPortfolioItem___about___raw' | 'icon___carouselImagesPortfolioItem___about___html' | 'icon___carouselImagesPortfolioItem___about___markdown' | 'icon___carouselImagesPortfolioItem___about___text' - | 'icon___carouselImagesPortfolioItem___createdBy___remoteTypeName' - | 'icon___carouselImagesPortfolioItem___createdBy___remoteId' - | 'icon___carouselImagesPortfolioItem___createdBy___stage' - | 'icon___carouselImagesPortfolioItem___createdBy___createdAt' - | 'icon___carouselImagesPortfolioItem___createdBy___updatedAt' - | 'icon___carouselImagesPortfolioItem___createdBy___publishedAt' - | 'icon___carouselImagesPortfolioItem___createdBy___name' - | 'icon___carouselImagesPortfolioItem___createdBy___picture' - | 'icon___carouselImagesPortfolioItem___createdBy___isActive' - | 'icon___carouselImagesPortfolioItem___createdBy___kind' - | 'icon___carouselImagesPortfolioItem___createdBy___id' - | 'icon___carouselImagesPortfolioItem___createdBy___children' - | 'icon___carouselImagesPortfolioItem___updatedBy___remoteTypeName' - | 'icon___carouselImagesPortfolioItem___updatedBy___remoteId' - | 'icon___carouselImagesPortfolioItem___updatedBy___stage' - | 'icon___carouselImagesPortfolioItem___updatedBy___createdAt' - | 'icon___carouselImagesPortfolioItem___updatedBy___updatedAt' - | 'icon___carouselImagesPortfolioItem___updatedBy___publishedAt' - | 'icon___carouselImagesPortfolioItem___updatedBy___name' - | 'icon___carouselImagesPortfolioItem___updatedBy___picture' - | 'icon___carouselImagesPortfolioItem___updatedBy___isActive' - | 'icon___carouselImagesPortfolioItem___updatedBy___kind' - | 'icon___carouselImagesPortfolioItem___updatedBy___id' - | 'icon___carouselImagesPortfolioItem___updatedBy___children' + | 'icon___carouselImagesPortfolioItem___techSheet' | 'icon___carouselImagesPortfolioItem___publishedBy___remoteTypeName' | 'icon___carouselImagesPortfolioItem___publishedBy___remoteId' | 'icon___carouselImagesPortfolioItem___publishedBy___stage' - | 'icon___carouselImagesPortfolioItem___publishedBy___createdAt' - | 'icon___carouselImagesPortfolioItem___publishedBy___updatedAt' - | 'icon___carouselImagesPortfolioItem___publishedBy___publishedAt' - | 'icon___carouselImagesPortfolioItem___publishedBy___name' - | 'icon___carouselImagesPortfolioItem___publishedBy___picture' | 'icon___carouselImagesPortfolioItem___publishedBy___isActive' + | 'icon___carouselImagesPortfolioItem___publishedBy___picture' + | 'icon___carouselImagesPortfolioItem___publishedBy___name' + | 'icon___carouselImagesPortfolioItem___publishedBy___publishedAt' + | 'icon___carouselImagesPortfolioItem___publishedBy___updatedAt' + | 'icon___carouselImagesPortfolioItem___publishedBy___createdAt' | 'icon___carouselImagesPortfolioItem___publishedBy___kind' | 'icon___carouselImagesPortfolioItem___publishedBy___id' | 'icon___carouselImagesPortfolioItem___publishedBy___children' + | 'icon___carouselImagesPortfolioItem___updatedBy___remoteTypeName' + | 'icon___carouselImagesPortfolioItem___updatedBy___remoteId' + | 'icon___carouselImagesPortfolioItem___updatedBy___stage' + | 'icon___carouselImagesPortfolioItem___updatedBy___isActive' + | 'icon___carouselImagesPortfolioItem___updatedBy___picture' + | 'icon___carouselImagesPortfolioItem___updatedBy___name' + | 'icon___carouselImagesPortfolioItem___updatedBy___publishedAt' + | 'icon___carouselImagesPortfolioItem___updatedBy___updatedAt' + | 'icon___carouselImagesPortfolioItem___updatedBy___createdAt' + | 'icon___carouselImagesPortfolioItem___updatedBy___kind' + | 'icon___carouselImagesPortfolioItem___updatedBy___id' + | 'icon___carouselImagesPortfolioItem___updatedBy___children' + | 'icon___carouselImagesPortfolioItem___createdBy___remoteTypeName' + | 'icon___carouselImagesPortfolioItem___createdBy___remoteId' + | 'icon___carouselImagesPortfolioItem___createdBy___stage' + | 'icon___carouselImagesPortfolioItem___createdBy___isActive' + | 'icon___carouselImagesPortfolioItem___createdBy___picture' + | 'icon___carouselImagesPortfolioItem___createdBy___name' + | 'icon___carouselImagesPortfolioItem___createdBy___publishedAt' + | 'icon___carouselImagesPortfolioItem___createdBy___updatedAt' + | 'icon___carouselImagesPortfolioItem___createdBy___createdAt' + | 'icon___carouselImagesPortfolioItem___createdBy___kind' + | 'icon___carouselImagesPortfolioItem___createdBy___id' + | 'icon___carouselImagesPortfolioItem___createdBy___children' | 'icon___carouselImagesPortfolioItem___carouselImages' | 'icon___carouselImagesPortfolioItem___carouselImages___remoteTypeName' | 'icon___carouselImagesPortfolioItem___carouselImages___remoteId' | 'icon___carouselImagesPortfolioItem___carouselImages___locale' | 'icon___carouselImagesPortfolioItem___carouselImages___stage' - | 'icon___carouselImagesPortfolioItem___carouselImages___createdAt' - | 'icon___carouselImagesPortfolioItem___carouselImages___updatedAt' - | 'icon___carouselImagesPortfolioItem___carouselImages___publishedAt' - | 'icon___carouselImagesPortfolioItem___carouselImages___handle' - | 'icon___carouselImagesPortfolioItem___carouselImages___fileName' - | 'icon___carouselImagesPortfolioItem___carouselImages___height' - | 'icon___carouselImagesPortfolioItem___carouselImages___width' - | 'icon___carouselImagesPortfolioItem___carouselImages___size' | 'icon___carouselImagesPortfolioItem___carouselImages___mimeType' + | 'icon___carouselImagesPortfolioItem___carouselImages___size' + | 'icon___carouselImagesPortfolioItem___carouselImages___width' + | 'icon___carouselImagesPortfolioItem___carouselImages___height' + | 'icon___carouselImagesPortfolioItem___carouselImages___fileName' + | 'icon___carouselImagesPortfolioItem___carouselImages___handle' + | 'icon___carouselImagesPortfolioItem___carouselImages___publishedAt' + | 'icon___carouselImagesPortfolioItem___carouselImages___updatedAt' + | 'icon___carouselImagesPortfolioItem___carouselImages___createdAt' | 'icon___carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem' + | 'icon___carouselImagesPortfolioItem___carouselImages___iconSpeciality' + | 'icon___carouselImagesPortfolioItem___carouselImages___iconTechnology' + | 'icon___carouselImagesPortfolioItem___carouselImages___headerImageBlog' | 'icon___carouselImagesPortfolioItem___carouselImages___scheduledIn' | 'icon___carouselImagesPortfolioItem___carouselImages___url' | 'icon___carouselImagesPortfolioItem___carouselImages___id' @@ -9552,9 +8806,9 @@ export type GraphCms_TechnologyFieldsEnum = | 'icon___carouselImagesPortfolioItem___links___remoteTypeName' | 'icon___carouselImagesPortfolioItem___links___remoteId' | 'icon___carouselImagesPortfolioItem___links___stage' - | 'icon___carouselImagesPortfolioItem___links___createdAt' - | 'icon___carouselImagesPortfolioItem___links___updatedAt' | 'icon___carouselImagesPortfolioItem___links___publishedAt' + | 'icon___carouselImagesPortfolioItem___links___updatedAt' + | 'icon___carouselImagesPortfolioItem___links___createdAt' | 'icon___carouselImagesPortfolioItem___links___title' | 'icon___carouselImagesPortfolioItem___links___url' | 'icon___carouselImagesPortfolioItem___links___type' @@ -9565,92 +8819,394 @@ export type GraphCms_TechnologyFieldsEnum = | 'icon___carouselImagesPortfolioItem___scheduledIn___remoteTypeName' | 'icon___carouselImagesPortfolioItem___scheduledIn___remoteId' | 'icon___carouselImagesPortfolioItem___scheduledIn___stage' - | 'icon___carouselImagesPortfolioItem___scheduledIn___createdAt' - | 'icon___carouselImagesPortfolioItem___scheduledIn___updatedAt' - | 'icon___carouselImagesPortfolioItem___scheduledIn___publishedAt' - | 'icon___carouselImagesPortfolioItem___scheduledIn___description' - | 'icon___carouselImagesPortfolioItem___scheduledIn___errorMessage' | 'icon___carouselImagesPortfolioItem___scheduledIn___rawPayload' + | 'icon___carouselImagesPortfolioItem___scheduledIn___errorMessage' + | 'icon___carouselImagesPortfolioItem___scheduledIn___description' + | 'icon___carouselImagesPortfolioItem___scheduledIn___publishedAt' + | 'icon___carouselImagesPortfolioItem___scheduledIn___updatedAt' + | 'icon___carouselImagesPortfolioItem___scheduledIn___createdAt' | 'icon___carouselImagesPortfolioItem___scheduledIn___status' - | 'icon___carouselImagesPortfolioItem___scheduledIn___id' - | 'icon___carouselImagesPortfolioItem___scheduledIn___children' - | 'icon___carouselImagesPortfolioItem___gatsbyPath' - | 'icon___carouselImagesPortfolioItem___id' - | 'icon___carouselImagesPortfolioItem___parent___id' - | 'icon___carouselImagesPortfolioItem___parent___children' - | 'icon___carouselImagesPortfolioItem___children' - | 'icon___carouselImagesPortfolioItem___children___id' - | 'icon___carouselImagesPortfolioItem___children___children' - | 'icon___carouselImagesPortfolioItem___internal___content' - | 'icon___carouselImagesPortfolioItem___internal___contentDigest' - | 'icon___carouselImagesPortfolioItem___internal___description' - | 'icon___carouselImagesPortfolioItem___internal___fieldOwners' - | 'icon___carouselImagesPortfolioItem___internal___ignoreType' - | 'icon___carouselImagesPortfolioItem___internal___mediaType' - | 'icon___carouselImagesPortfolioItem___internal___owner' - | 'icon___carouselImagesPortfolioItem___internal___type' - | 'icon___scheduledIn' - | 'icon___scheduledIn___remoteTypeName' - | 'icon___scheduledIn___remoteId' - | 'icon___scheduledIn___stage' - | 'icon___scheduledIn___createdAt' - | 'icon___scheduledIn___updatedAt' - | 'icon___scheduledIn___publishedAt' - | 'icon___scheduledIn___description' - | 'icon___scheduledIn___errorMessage' - | 'icon___scheduledIn___rawPayload' - | 'icon___scheduledIn___createdBy___remoteTypeName' - | 'icon___scheduledIn___createdBy___remoteId' - | 'icon___scheduledIn___createdBy___stage' - | 'icon___scheduledIn___createdBy___createdAt' - | 'icon___scheduledIn___createdBy___updatedAt' - | 'icon___scheduledIn___createdBy___publishedAt' - | 'icon___scheduledIn___createdBy___name' - | 'icon___scheduledIn___createdBy___picture' - | 'icon___scheduledIn___createdBy___isActive' - | 'icon___scheduledIn___createdBy___kind' - | 'icon___scheduledIn___createdBy___id' - | 'icon___scheduledIn___createdBy___children' - | 'icon___scheduledIn___updatedBy___remoteTypeName' - | 'icon___scheduledIn___updatedBy___remoteId' - | 'icon___scheduledIn___updatedBy___stage' - | 'icon___scheduledIn___updatedBy___createdAt' - | 'icon___scheduledIn___updatedBy___updatedAt' - | 'icon___scheduledIn___updatedBy___publishedAt' - | 'icon___scheduledIn___updatedBy___name' - | 'icon___scheduledIn___updatedBy___picture' - | 'icon___scheduledIn___updatedBy___isActive' - | 'icon___scheduledIn___updatedBy___kind' - | 'icon___scheduledIn___updatedBy___id' - | 'icon___scheduledIn___updatedBy___children' - | 'icon___scheduledIn___publishedBy___remoteTypeName' - | 'icon___scheduledIn___publishedBy___remoteId' - | 'icon___scheduledIn___publishedBy___stage' - | 'icon___scheduledIn___publishedBy___createdAt' - | 'icon___scheduledIn___publishedBy___updatedAt' - | 'icon___scheduledIn___publishedBy___publishedAt' - | 'icon___scheduledIn___publishedBy___name' - | 'icon___scheduledIn___publishedBy___picture' - | 'icon___scheduledIn___publishedBy___isActive' - | 'icon___scheduledIn___publishedBy___kind' - | 'icon___scheduledIn___publishedBy___id' - | 'icon___scheduledIn___publishedBy___children' + | 'icon___carouselImagesPortfolioItem___scheduledIn___id' + | 'icon___carouselImagesPortfolioItem___scheduledIn___children' + | 'icon___carouselImagesPortfolioItem___gatsbyPath' + | 'icon___carouselImagesPortfolioItem___id' + | 'icon___carouselImagesPortfolioItem___parent___id' + | 'icon___carouselImagesPortfolioItem___parent___children' + | 'icon___carouselImagesPortfolioItem___children' + | 'icon___carouselImagesPortfolioItem___children___id' + | 'icon___carouselImagesPortfolioItem___children___children' + | 'icon___carouselImagesPortfolioItem___internal___content' + | 'icon___carouselImagesPortfolioItem___internal___contentDigest' + | 'icon___carouselImagesPortfolioItem___internal___description' + | 'icon___carouselImagesPortfolioItem___internal___fieldOwners' + | 'icon___carouselImagesPortfolioItem___internal___ignoreType' + | 'icon___carouselImagesPortfolioItem___internal___mediaType' + | 'icon___carouselImagesPortfolioItem___internal___owner' + | 'icon___carouselImagesPortfolioItem___internal___type' + | 'icon___carouselImagesPortfolioItem___internal___contentFilePath' + | 'icon___iconSpeciality' + | 'icon___iconSpeciality___remoteTypeName' + | 'icon___iconSpeciality___remoteId' + | 'icon___iconSpeciality___stage' + | 'icon___iconSpeciality___publishedAt' + | 'icon___iconSpeciality___updatedAt' + | 'icon___iconSpeciality___createdAt' + | 'icon___iconSpeciality___title' + | 'icon___iconSpeciality___description___remoteTypeName' + | 'icon___iconSpeciality___description___raw' + | 'icon___iconSpeciality___description___html' + | 'icon___iconSpeciality___description___markdown' + | 'icon___iconSpeciality___description___text' + | 'icon___iconSpeciality___publishedBy___remoteTypeName' + | 'icon___iconSpeciality___publishedBy___remoteId' + | 'icon___iconSpeciality___publishedBy___stage' + | 'icon___iconSpeciality___publishedBy___isActive' + | 'icon___iconSpeciality___publishedBy___picture' + | 'icon___iconSpeciality___publishedBy___name' + | 'icon___iconSpeciality___publishedBy___publishedAt' + | 'icon___iconSpeciality___publishedBy___updatedAt' + | 'icon___iconSpeciality___publishedBy___createdAt' + | 'icon___iconSpeciality___publishedBy___kind' + | 'icon___iconSpeciality___publishedBy___id' + | 'icon___iconSpeciality___publishedBy___children' + | 'icon___iconSpeciality___updatedBy___remoteTypeName' + | 'icon___iconSpeciality___updatedBy___remoteId' + | 'icon___iconSpeciality___updatedBy___stage' + | 'icon___iconSpeciality___updatedBy___isActive' + | 'icon___iconSpeciality___updatedBy___picture' + | 'icon___iconSpeciality___updatedBy___name' + | 'icon___iconSpeciality___updatedBy___publishedAt' + | 'icon___iconSpeciality___updatedBy___updatedAt' + | 'icon___iconSpeciality___updatedBy___createdAt' + | 'icon___iconSpeciality___updatedBy___kind' + | 'icon___iconSpeciality___updatedBy___id' + | 'icon___iconSpeciality___updatedBy___children' + | 'icon___iconSpeciality___createdBy___remoteTypeName' + | 'icon___iconSpeciality___createdBy___remoteId' + | 'icon___iconSpeciality___createdBy___stage' + | 'icon___iconSpeciality___createdBy___isActive' + | 'icon___iconSpeciality___createdBy___picture' + | 'icon___iconSpeciality___createdBy___name' + | 'icon___iconSpeciality___createdBy___publishedAt' + | 'icon___iconSpeciality___createdBy___updatedAt' + | 'icon___iconSpeciality___createdBy___createdAt' + | 'icon___iconSpeciality___createdBy___kind' + | 'icon___iconSpeciality___createdBy___id' + | 'icon___iconSpeciality___createdBy___children' + | 'icon___iconSpeciality___icon___remoteTypeName' + | 'icon___iconSpeciality___icon___remoteId' + | 'icon___iconSpeciality___icon___locale' + | 'icon___iconSpeciality___icon___stage' + | 'icon___iconSpeciality___icon___mimeType' + | 'icon___iconSpeciality___icon___size' + | 'icon___iconSpeciality___icon___width' + | 'icon___iconSpeciality___icon___height' + | 'icon___iconSpeciality___icon___fileName' + | 'icon___iconSpeciality___icon___handle' + | 'icon___iconSpeciality___icon___publishedAt' + | 'icon___iconSpeciality___icon___updatedAt' + | 'icon___iconSpeciality___icon___createdAt' + | 'icon___iconSpeciality___icon___carouselImagesPortfolioItem' + | 'icon___iconSpeciality___icon___iconSpeciality' + | 'icon___iconSpeciality___icon___iconTechnology' + | 'icon___iconSpeciality___icon___headerImageBlog' + | 'icon___iconSpeciality___icon___scheduledIn' + | 'icon___iconSpeciality___icon___url' + | 'icon___iconSpeciality___icon___id' + | 'icon___iconSpeciality___icon___children' + | 'icon___iconSpeciality___scheduledIn' + | 'icon___iconSpeciality___scheduledIn___remoteTypeName' + | 'icon___iconSpeciality___scheduledIn___remoteId' + | 'icon___iconSpeciality___scheduledIn___stage' + | 'icon___iconSpeciality___scheduledIn___rawPayload' + | 'icon___iconSpeciality___scheduledIn___errorMessage' + | 'icon___iconSpeciality___scheduledIn___description' + | 'icon___iconSpeciality___scheduledIn___publishedAt' + | 'icon___iconSpeciality___scheduledIn___updatedAt' + | 'icon___iconSpeciality___scheduledIn___createdAt' + | 'icon___iconSpeciality___scheduledIn___status' + | 'icon___iconSpeciality___scheduledIn___id' + | 'icon___iconSpeciality___scheduledIn___children' + | 'icon___iconSpeciality___id' + | 'icon___iconSpeciality___parent___id' + | 'icon___iconSpeciality___parent___children' + | 'icon___iconSpeciality___children' + | 'icon___iconSpeciality___children___id' + | 'icon___iconSpeciality___children___children' + | 'icon___iconSpeciality___internal___content' + | 'icon___iconSpeciality___internal___contentDigest' + | 'icon___iconSpeciality___internal___description' + | 'icon___iconSpeciality___internal___fieldOwners' + | 'icon___iconSpeciality___internal___ignoreType' + | 'icon___iconSpeciality___internal___mediaType' + | 'icon___iconSpeciality___internal___owner' + | 'icon___iconSpeciality___internal___type' + | 'icon___iconSpeciality___internal___contentFilePath' + | 'icon___iconTechnology' + | 'icon___iconTechnology___remoteTypeName' + | 'icon___iconTechnology___remoteId' + | 'icon___iconTechnology___stage' + | 'icon___iconTechnology___publishedAt' + | 'icon___iconTechnology___updatedAt' + | 'icon___iconTechnology___createdAt' + | 'icon___iconTechnology___title' + | 'icon___iconTechnology___description___remoteTypeName' + | 'icon___iconTechnology___description___raw' + | 'icon___iconTechnology___description___html' + | 'icon___iconTechnology___description___markdown' + | 'icon___iconTechnology___description___text' + | 'icon___iconTechnology___backgroundColor___remoteTypeName' + | 'icon___iconTechnology___backgroundColor___hex' + | 'icon___iconTechnology___backgroundColor___css' + | 'icon___iconTechnology___publishedBy___remoteTypeName' + | 'icon___iconTechnology___publishedBy___remoteId' + | 'icon___iconTechnology___publishedBy___stage' + | 'icon___iconTechnology___publishedBy___isActive' + | 'icon___iconTechnology___publishedBy___picture' + | 'icon___iconTechnology___publishedBy___name' + | 'icon___iconTechnology___publishedBy___publishedAt' + | 'icon___iconTechnology___publishedBy___updatedAt' + | 'icon___iconTechnology___publishedBy___createdAt' + | 'icon___iconTechnology___publishedBy___kind' + | 'icon___iconTechnology___publishedBy___id' + | 'icon___iconTechnology___publishedBy___children' + | 'icon___iconTechnology___updatedBy___remoteTypeName' + | 'icon___iconTechnology___updatedBy___remoteId' + | 'icon___iconTechnology___updatedBy___stage' + | 'icon___iconTechnology___updatedBy___isActive' + | 'icon___iconTechnology___updatedBy___picture' + | 'icon___iconTechnology___updatedBy___name' + | 'icon___iconTechnology___updatedBy___publishedAt' + | 'icon___iconTechnology___updatedBy___updatedAt' + | 'icon___iconTechnology___updatedBy___createdAt' + | 'icon___iconTechnology___updatedBy___kind' + | 'icon___iconTechnology___updatedBy___id' + | 'icon___iconTechnology___updatedBy___children' + | 'icon___iconTechnology___createdBy___remoteTypeName' + | 'icon___iconTechnology___createdBy___remoteId' + | 'icon___iconTechnology___createdBy___stage' + | 'icon___iconTechnology___createdBy___isActive' + | 'icon___iconTechnology___createdBy___picture' + | 'icon___iconTechnology___createdBy___name' + | 'icon___iconTechnology___createdBy___publishedAt' + | 'icon___iconTechnology___createdBy___updatedAt' + | 'icon___iconTechnology___createdBy___createdAt' + | 'icon___iconTechnology___createdBy___kind' + | 'icon___iconTechnology___createdBy___id' + | 'icon___iconTechnology___createdBy___children' + | 'icon___iconTechnology___icon___remoteTypeName' + | 'icon___iconTechnology___icon___remoteId' + | 'icon___iconTechnology___icon___locale' + | 'icon___iconTechnology___icon___stage' + | 'icon___iconTechnology___icon___mimeType' + | 'icon___iconTechnology___icon___size' + | 'icon___iconTechnology___icon___width' + | 'icon___iconTechnology___icon___height' + | 'icon___iconTechnology___icon___fileName' + | 'icon___iconTechnology___icon___handle' + | 'icon___iconTechnology___icon___publishedAt' + | 'icon___iconTechnology___icon___updatedAt' + | 'icon___iconTechnology___icon___createdAt' + | 'icon___iconTechnology___icon___carouselImagesPortfolioItem' + | 'icon___iconTechnology___icon___iconSpeciality' + | 'icon___iconTechnology___icon___iconTechnology' + | 'icon___iconTechnology___icon___headerImageBlog' + | 'icon___iconTechnology___icon___scheduledIn' + | 'icon___iconTechnology___icon___url' + | 'icon___iconTechnology___icon___id' + | 'icon___iconTechnology___icon___children' + | 'icon___iconTechnology___scheduledIn' + | 'icon___iconTechnology___scheduledIn___remoteTypeName' + | 'icon___iconTechnology___scheduledIn___remoteId' + | 'icon___iconTechnology___scheduledIn___stage' + | 'icon___iconTechnology___scheduledIn___rawPayload' + | 'icon___iconTechnology___scheduledIn___errorMessage' + | 'icon___iconTechnology___scheduledIn___description' + | 'icon___iconTechnology___scheduledIn___publishedAt' + | 'icon___iconTechnology___scheduledIn___updatedAt' + | 'icon___iconTechnology___scheduledIn___createdAt' + | 'icon___iconTechnology___scheduledIn___status' + | 'icon___iconTechnology___scheduledIn___id' + | 'icon___iconTechnology___scheduledIn___children' + | 'icon___iconTechnology___id' + | 'icon___iconTechnology___parent___id' + | 'icon___iconTechnology___parent___children' + | 'icon___iconTechnology___children' + | 'icon___iconTechnology___children___id' + | 'icon___iconTechnology___children___children' + | 'icon___iconTechnology___internal___content' + | 'icon___iconTechnology___internal___contentDigest' + | 'icon___iconTechnology___internal___description' + | 'icon___iconTechnology___internal___fieldOwners' + | 'icon___iconTechnology___internal___ignoreType' + | 'icon___iconTechnology___internal___mediaType' + | 'icon___iconTechnology___internal___owner' + | 'icon___iconTechnology___internal___type' + | 'icon___iconTechnology___internal___contentFilePath' + | 'icon___headerImageBlog' + | 'icon___headerImageBlog___remoteTypeName' + | 'icon___headerImageBlog___remoteId' + | 'icon___headerImageBlog___stage' + | 'icon___headerImageBlog___publishedAt' + | 'icon___headerImageBlog___updatedAt' + | 'icon___headerImageBlog___createdAt' + | 'icon___headerImageBlog___title' + | 'icon___headerImageBlog___description' + | 'icon___headerImageBlog___content___remoteTypeName' + | 'icon___headerImageBlog___content___raw' + | 'icon___headerImageBlog___content___html' + | 'icon___headerImageBlog___content___markdown' + | 'icon___headerImageBlog___content___text' + | 'icon___headerImageBlog___publishedBy___remoteTypeName' + | 'icon___headerImageBlog___publishedBy___remoteId' + | 'icon___headerImageBlog___publishedBy___stage' + | 'icon___headerImageBlog___publishedBy___isActive' + | 'icon___headerImageBlog___publishedBy___picture' + | 'icon___headerImageBlog___publishedBy___name' + | 'icon___headerImageBlog___publishedBy___publishedAt' + | 'icon___headerImageBlog___publishedBy___updatedAt' + | 'icon___headerImageBlog___publishedBy___createdAt' + | 'icon___headerImageBlog___publishedBy___kind' + | 'icon___headerImageBlog___publishedBy___id' + | 'icon___headerImageBlog___publishedBy___children' + | 'icon___headerImageBlog___updatedBy___remoteTypeName' + | 'icon___headerImageBlog___updatedBy___remoteId' + | 'icon___headerImageBlog___updatedBy___stage' + | 'icon___headerImageBlog___updatedBy___isActive' + | 'icon___headerImageBlog___updatedBy___picture' + | 'icon___headerImageBlog___updatedBy___name' + | 'icon___headerImageBlog___updatedBy___publishedAt' + | 'icon___headerImageBlog___updatedBy___updatedAt' + | 'icon___headerImageBlog___updatedBy___createdAt' + | 'icon___headerImageBlog___updatedBy___kind' + | 'icon___headerImageBlog___updatedBy___id' + | 'icon___headerImageBlog___updatedBy___children' + | 'icon___headerImageBlog___createdBy___remoteTypeName' + | 'icon___headerImageBlog___createdBy___remoteId' + | 'icon___headerImageBlog___createdBy___stage' + | 'icon___headerImageBlog___createdBy___isActive' + | 'icon___headerImageBlog___createdBy___picture' + | 'icon___headerImageBlog___createdBy___name' + | 'icon___headerImageBlog___createdBy___publishedAt' + | 'icon___headerImageBlog___createdBy___updatedAt' + | 'icon___headerImageBlog___createdBy___createdAt' + | 'icon___headerImageBlog___createdBy___kind' + | 'icon___headerImageBlog___createdBy___id' + | 'icon___headerImageBlog___createdBy___children' + | 'icon___headerImageBlog___headerImage___remoteTypeName' + | 'icon___headerImageBlog___headerImage___remoteId' + | 'icon___headerImageBlog___headerImage___locale' + | 'icon___headerImageBlog___headerImage___stage' + | 'icon___headerImageBlog___headerImage___mimeType' + | 'icon___headerImageBlog___headerImage___size' + | 'icon___headerImageBlog___headerImage___width' + | 'icon___headerImageBlog___headerImage___height' + | 'icon___headerImageBlog___headerImage___fileName' + | 'icon___headerImageBlog___headerImage___handle' + | 'icon___headerImageBlog___headerImage___publishedAt' + | 'icon___headerImageBlog___headerImage___updatedAt' + | 'icon___headerImageBlog___headerImage___createdAt' + | 'icon___headerImageBlog___headerImage___carouselImagesPortfolioItem' + | 'icon___headerImageBlog___headerImage___iconSpeciality' + | 'icon___headerImageBlog___headerImage___iconTechnology' + | 'icon___headerImageBlog___headerImage___headerImageBlog' + | 'icon___headerImageBlog___headerImage___scheduledIn' + | 'icon___headerImageBlog___headerImage___url' + | 'icon___headerImageBlog___headerImage___id' + | 'icon___headerImageBlog___headerImage___children' + | 'icon___headerImageBlog___type' + | 'icon___headerImageBlog___categories' + | 'icon___headerImageBlog___scheduledIn' + | 'icon___headerImageBlog___scheduledIn___remoteTypeName' + | 'icon___headerImageBlog___scheduledIn___remoteId' + | 'icon___headerImageBlog___scheduledIn___stage' + | 'icon___headerImageBlog___scheduledIn___rawPayload' + | 'icon___headerImageBlog___scheduledIn___errorMessage' + | 'icon___headerImageBlog___scheduledIn___description' + | 'icon___headerImageBlog___scheduledIn___publishedAt' + | 'icon___headerImageBlog___scheduledIn___updatedAt' + | 'icon___headerImageBlog___scheduledIn___createdAt' + | 'icon___headerImageBlog___scheduledIn___status' + | 'icon___headerImageBlog___scheduledIn___id' + | 'icon___headerImageBlog___scheduledIn___children' + | 'icon___headerImageBlog___gatsbyPath' + | 'icon___headerImageBlog___id' + | 'icon___headerImageBlog___parent___id' + | 'icon___headerImageBlog___parent___children' + | 'icon___headerImageBlog___children' + | 'icon___headerImageBlog___children___id' + | 'icon___headerImageBlog___children___children' + | 'icon___headerImageBlog___internal___content' + | 'icon___headerImageBlog___internal___contentDigest' + | 'icon___headerImageBlog___internal___description' + | 'icon___headerImageBlog___internal___fieldOwners' + | 'icon___headerImageBlog___internal___ignoreType' + | 'icon___headerImageBlog___internal___mediaType' + | 'icon___headerImageBlog___internal___owner' + | 'icon___headerImageBlog___internal___type' + | 'icon___headerImageBlog___internal___contentFilePath' + | 'icon___scheduledIn' + | 'icon___scheduledIn___remoteTypeName' + | 'icon___scheduledIn___remoteId' + | 'icon___scheduledIn___stage' + | 'icon___scheduledIn___rawPayload' + | 'icon___scheduledIn___errorMessage' + | 'icon___scheduledIn___description' + | 'icon___scheduledIn___publishedAt' + | 'icon___scheduledIn___updatedAt' + | 'icon___scheduledIn___createdAt' | 'icon___scheduledIn___release___remoteTypeName' | 'icon___scheduledIn___release___remoteId' | 'icon___scheduledIn___release___stage' - | 'icon___scheduledIn___release___createdAt' - | 'icon___scheduledIn___release___updatedAt' - | 'icon___scheduledIn___release___publishedAt' - | 'icon___scheduledIn___release___title' - | 'icon___scheduledIn___release___description' - | 'icon___scheduledIn___release___errorMessage' - | 'icon___scheduledIn___release___isActive' - | 'icon___scheduledIn___release___isImplicit' | 'icon___scheduledIn___release___releaseAt' + | 'icon___scheduledIn___release___isImplicit' + | 'icon___scheduledIn___release___isActive' + | 'icon___scheduledIn___release___errorMessage' + | 'icon___scheduledIn___release___description' + | 'icon___scheduledIn___release___title' + | 'icon___scheduledIn___release___publishedAt' + | 'icon___scheduledIn___release___updatedAt' + | 'icon___scheduledIn___release___createdAt' | 'icon___scheduledIn___release___operations' | 'icon___scheduledIn___release___status' | 'icon___scheduledIn___release___id' | 'icon___scheduledIn___release___children' + | 'icon___scheduledIn___publishedBy___remoteTypeName' + | 'icon___scheduledIn___publishedBy___remoteId' + | 'icon___scheduledIn___publishedBy___stage' + | 'icon___scheduledIn___publishedBy___isActive' + | 'icon___scheduledIn___publishedBy___picture' + | 'icon___scheduledIn___publishedBy___name' + | 'icon___scheduledIn___publishedBy___publishedAt' + | 'icon___scheduledIn___publishedBy___updatedAt' + | 'icon___scheduledIn___publishedBy___createdAt' + | 'icon___scheduledIn___publishedBy___kind' + | 'icon___scheduledIn___publishedBy___id' + | 'icon___scheduledIn___publishedBy___children' + | 'icon___scheduledIn___updatedBy___remoteTypeName' + | 'icon___scheduledIn___updatedBy___remoteId' + | 'icon___scheduledIn___updatedBy___stage' + | 'icon___scheduledIn___updatedBy___isActive' + | 'icon___scheduledIn___updatedBy___picture' + | 'icon___scheduledIn___updatedBy___name' + | 'icon___scheduledIn___updatedBy___publishedAt' + | 'icon___scheduledIn___updatedBy___updatedAt' + | 'icon___scheduledIn___updatedBy___createdAt' + | 'icon___scheduledIn___updatedBy___kind' + | 'icon___scheduledIn___updatedBy___id' + | 'icon___scheduledIn___updatedBy___children' + | 'icon___scheduledIn___createdBy___remoteTypeName' + | 'icon___scheduledIn___createdBy___remoteId' + | 'icon___scheduledIn___createdBy___stage' + | 'icon___scheduledIn___createdBy___isActive' + | 'icon___scheduledIn___createdBy___picture' + | 'icon___scheduledIn___createdBy___name' + | 'icon___scheduledIn___createdBy___publishedAt' + | 'icon___scheduledIn___createdBy___updatedAt' + | 'icon___scheduledIn___createdBy___createdAt' + | 'icon___scheduledIn___createdBy___kind' + | 'icon___scheduledIn___createdBy___id' + | 'icon___scheduledIn___createdBy___children' | 'icon___scheduledIn___status' | 'icon___scheduledIn___id' | 'icon___scheduledIn___parent___id' @@ -9666,6 +9222,7 @@ export type GraphCms_TechnologyFieldsEnum = | 'icon___scheduledIn___internal___mediaType' | 'icon___scheduledIn___internal___owner' | 'icon___scheduledIn___internal___type' + | 'icon___scheduledIn___internal___contentFilePath' | 'icon___url' | 'icon___id' | 'icon___parent___id' @@ -9682,6 +9239,7 @@ export type GraphCms_TechnologyFieldsEnum = | 'icon___parent___internal___mediaType' | 'icon___parent___internal___owner' | 'icon___parent___internal___type' + | 'icon___parent___internal___contentFilePath' | 'icon___children' | 'icon___children___id' | 'icon___children___parent___id' @@ -9697,6 +9255,7 @@ export type GraphCms_TechnologyFieldsEnum = | 'icon___children___internal___mediaType' | 'icon___children___internal___owner' | 'icon___children___internal___type' + | 'icon___children___internal___contentFilePath' | 'icon___internal___content' | 'icon___internal___contentDigest' | 'icon___internal___description' @@ -9705,149 +9264,2339 @@ export type GraphCms_TechnologyFieldsEnum = | 'icon___internal___mediaType' | 'icon___internal___owner' | 'icon___internal___type' + | 'icon___internal___contentFilePath' + | 'scheduledIn' + | 'scheduledIn___remoteTypeName' + | 'scheduledIn___remoteId' + | 'scheduledIn___stage' + | 'scheduledIn___rawPayload' + | 'scheduledIn___errorMessage' + | 'scheduledIn___description' + | 'scheduledIn___publishedAt' + | 'scheduledIn___updatedAt' + | 'scheduledIn___createdAt' + | 'scheduledIn___release___remoteTypeName' + | 'scheduledIn___release___remoteId' + | 'scheduledIn___release___stage' + | 'scheduledIn___release___releaseAt' + | 'scheduledIn___release___isImplicit' + | 'scheduledIn___release___isActive' + | 'scheduledIn___release___errorMessage' + | 'scheduledIn___release___description' + | 'scheduledIn___release___title' + | 'scheduledIn___release___publishedAt' + | 'scheduledIn___release___updatedAt' + | 'scheduledIn___release___createdAt' + | 'scheduledIn___release___operations' + | 'scheduledIn___release___operations___remoteTypeName' + | 'scheduledIn___release___operations___remoteId' + | 'scheduledIn___release___operations___stage' + | 'scheduledIn___release___operations___rawPayload' + | 'scheduledIn___release___operations___errorMessage' + | 'scheduledIn___release___operations___description' + | 'scheduledIn___release___operations___publishedAt' + | 'scheduledIn___release___operations___updatedAt' + | 'scheduledIn___release___operations___createdAt' + | 'scheduledIn___release___operations___status' + | 'scheduledIn___release___operations___id' + | 'scheduledIn___release___operations___children' + | 'scheduledIn___release___publishedBy___remoteTypeName' + | 'scheduledIn___release___publishedBy___remoteId' + | 'scheduledIn___release___publishedBy___stage' + | 'scheduledIn___release___publishedBy___isActive' + | 'scheduledIn___release___publishedBy___picture' + | 'scheduledIn___release___publishedBy___name' + | 'scheduledIn___release___publishedBy___publishedAt' + | 'scheduledIn___release___publishedBy___updatedAt' + | 'scheduledIn___release___publishedBy___createdAt' + | 'scheduledIn___release___publishedBy___kind' + | 'scheduledIn___release___publishedBy___id' + | 'scheduledIn___release___publishedBy___children' + | 'scheduledIn___release___updatedBy___remoteTypeName' + | 'scheduledIn___release___updatedBy___remoteId' + | 'scheduledIn___release___updatedBy___stage' + | 'scheduledIn___release___updatedBy___isActive' + | 'scheduledIn___release___updatedBy___picture' + | 'scheduledIn___release___updatedBy___name' + | 'scheduledIn___release___updatedBy___publishedAt' + | 'scheduledIn___release___updatedBy___updatedAt' + | 'scheduledIn___release___updatedBy___createdAt' + | 'scheduledIn___release___updatedBy___kind' + | 'scheduledIn___release___updatedBy___id' + | 'scheduledIn___release___updatedBy___children' + | 'scheduledIn___release___createdBy___remoteTypeName' + | 'scheduledIn___release___createdBy___remoteId' + | 'scheduledIn___release___createdBy___stage' + | 'scheduledIn___release___createdBy___isActive' + | 'scheduledIn___release___createdBy___picture' + | 'scheduledIn___release___createdBy___name' + | 'scheduledIn___release___createdBy___publishedAt' + | 'scheduledIn___release___createdBy___updatedAt' + | 'scheduledIn___release___createdBy___createdAt' + | 'scheduledIn___release___createdBy___kind' + | 'scheduledIn___release___createdBy___id' + | 'scheduledIn___release___createdBy___children' + | 'scheduledIn___release___status' + | 'scheduledIn___release___id' + | 'scheduledIn___release___parent___id' + | 'scheduledIn___release___parent___children' + | 'scheduledIn___release___children' + | 'scheduledIn___release___children___id' + | 'scheduledIn___release___children___children' + | 'scheduledIn___release___internal___content' + | 'scheduledIn___release___internal___contentDigest' + | 'scheduledIn___release___internal___description' + | 'scheduledIn___release___internal___fieldOwners' + | 'scheduledIn___release___internal___ignoreType' + | 'scheduledIn___release___internal___mediaType' + | 'scheduledIn___release___internal___owner' + | 'scheduledIn___release___internal___type' + | 'scheduledIn___release___internal___contentFilePath' + | 'scheduledIn___publishedBy___remoteTypeName' + | 'scheduledIn___publishedBy___remoteId' + | 'scheduledIn___publishedBy___stage' + | 'scheduledIn___publishedBy___isActive' + | 'scheduledIn___publishedBy___picture' + | 'scheduledIn___publishedBy___name' + | 'scheduledIn___publishedBy___publishedAt' + | 'scheduledIn___publishedBy___updatedAt' + | 'scheduledIn___publishedBy___createdAt' + | 'scheduledIn___publishedBy___kind' + | 'scheduledIn___publishedBy___id' + | 'scheduledIn___publishedBy___parent___id' + | 'scheduledIn___publishedBy___parent___children' + | 'scheduledIn___publishedBy___children' + | 'scheduledIn___publishedBy___children___id' + | 'scheduledIn___publishedBy___children___children' + | 'scheduledIn___publishedBy___internal___content' + | 'scheduledIn___publishedBy___internal___contentDigest' + | 'scheduledIn___publishedBy___internal___description' + | 'scheduledIn___publishedBy___internal___fieldOwners' + | 'scheduledIn___publishedBy___internal___ignoreType' + | 'scheduledIn___publishedBy___internal___mediaType' + | 'scheduledIn___publishedBy___internal___owner' + | 'scheduledIn___publishedBy___internal___type' + | 'scheduledIn___publishedBy___internal___contentFilePath' + | 'scheduledIn___updatedBy___remoteTypeName' + | 'scheduledIn___updatedBy___remoteId' + | 'scheduledIn___updatedBy___stage' + | 'scheduledIn___updatedBy___isActive' + | 'scheduledIn___updatedBy___picture' + | 'scheduledIn___updatedBy___name' + | 'scheduledIn___updatedBy___publishedAt' + | 'scheduledIn___updatedBy___updatedAt' + | 'scheduledIn___updatedBy___createdAt' + | 'scheduledIn___updatedBy___kind' + | 'scheduledIn___updatedBy___id' + | 'scheduledIn___updatedBy___parent___id' + | 'scheduledIn___updatedBy___parent___children' + | 'scheduledIn___updatedBy___children' + | 'scheduledIn___updatedBy___children___id' + | 'scheduledIn___updatedBy___children___children' + | 'scheduledIn___updatedBy___internal___content' + | 'scheduledIn___updatedBy___internal___contentDigest' + | 'scheduledIn___updatedBy___internal___description' + | 'scheduledIn___updatedBy___internal___fieldOwners' + | 'scheduledIn___updatedBy___internal___ignoreType' + | 'scheduledIn___updatedBy___internal___mediaType' + | 'scheduledIn___updatedBy___internal___owner' + | 'scheduledIn___updatedBy___internal___type' + | 'scheduledIn___updatedBy___internal___contentFilePath' + | 'scheduledIn___createdBy___remoteTypeName' + | 'scheduledIn___createdBy___remoteId' + | 'scheduledIn___createdBy___stage' + | 'scheduledIn___createdBy___isActive' + | 'scheduledIn___createdBy___picture' + | 'scheduledIn___createdBy___name' + | 'scheduledIn___createdBy___publishedAt' + | 'scheduledIn___createdBy___updatedAt' + | 'scheduledIn___createdBy___createdAt' + | 'scheduledIn___createdBy___kind' + | 'scheduledIn___createdBy___id' + | 'scheduledIn___createdBy___parent___id' + | 'scheduledIn___createdBy___parent___children' + | 'scheduledIn___createdBy___children' + | 'scheduledIn___createdBy___children___id' + | 'scheduledIn___createdBy___children___children' + | 'scheduledIn___createdBy___internal___content' + | 'scheduledIn___createdBy___internal___contentDigest' + | 'scheduledIn___createdBy___internal___description' + | 'scheduledIn___createdBy___internal___fieldOwners' + | 'scheduledIn___createdBy___internal___ignoreType' + | 'scheduledIn___createdBy___internal___mediaType' + | 'scheduledIn___createdBy___internal___owner' + | 'scheduledIn___createdBy___internal___type' + | 'scheduledIn___createdBy___internal___contentFilePath' + | 'scheduledIn___status' + | 'scheduledIn___id' + | 'scheduledIn___parent___id' + | 'scheduledIn___parent___parent___id' + | 'scheduledIn___parent___parent___children' + | 'scheduledIn___parent___children' + | 'scheduledIn___parent___children___id' + | 'scheduledIn___parent___children___children' + | 'scheduledIn___parent___internal___content' + | 'scheduledIn___parent___internal___contentDigest' + | 'scheduledIn___parent___internal___description' + | 'scheduledIn___parent___internal___fieldOwners' + | 'scheduledIn___parent___internal___ignoreType' + | 'scheduledIn___parent___internal___mediaType' + | 'scheduledIn___parent___internal___owner' + | 'scheduledIn___parent___internal___type' + | 'scheduledIn___parent___internal___contentFilePath' + | 'scheduledIn___children' + | 'scheduledIn___children___id' + | 'scheduledIn___children___parent___id' + | 'scheduledIn___children___parent___children' + | 'scheduledIn___children___children' + | 'scheduledIn___children___children___id' + | 'scheduledIn___children___children___children' + | 'scheduledIn___children___internal___content' + | 'scheduledIn___children___internal___contentDigest' + | 'scheduledIn___children___internal___description' + | 'scheduledIn___children___internal___fieldOwners' + | 'scheduledIn___children___internal___ignoreType' + | 'scheduledIn___children___internal___mediaType' + | 'scheduledIn___children___internal___owner' + | 'scheduledIn___children___internal___type' + | 'scheduledIn___children___internal___contentFilePath' + | 'scheduledIn___internal___content' + | 'scheduledIn___internal___contentDigest' + | 'scheduledIn___internal___description' + | 'scheduledIn___internal___fieldOwners' + | 'scheduledIn___internal___ignoreType' + | 'scheduledIn___internal___mediaType' + | 'scheduledIn___internal___owner' + | 'scheduledIn___internal___type' + | 'scheduledIn___internal___contentFilePath' + | 'id' + | 'parent___id' + | 'parent___parent___id' + | 'parent___parent___parent___id' + | 'parent___parent___parent___children' + | 'parent___parent___children' + | 'parent___parent___children___id' + | 'parent___parent___children___children' + | 'parent___parent___internal___content' + | 'parent___parent___internal___contentDigest' + | 'parent___parent___internal___description' + | 'parent___parent___internal___fieldOwners' + | 'parent___parent___internal___ignoreType' + | 'parent___parent___internal___mediaType' + | 'parent___parent___internal___owner' + | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' + | 'parent___children' + | 'parent___children___id' + | 'parent___children___parent___id' + | 'parent___children___parent___children' + | 'parent___children___children' + | 'parent___children___children___id' + | 'parent___children___children___children' + | 'parent___children___internal___content' + | 'parent___children___internal___contentDigest' + | 'parent___children___internal___description' + | 'parent___children___internal___fieldOwners' + | 'parent___children___internal___ignoreType' + | 'parent___children___internal___mediaType' + | 'parent___children___internal___owner' + | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' + | 'parent___internal___content' + | 'parent___internal___contentDigest' + | 'parent___internal___description' + | 'parent___internal___fieldOwners' + | 'parent___internal___ignoreType' + | 'parent___internal___mediaType' + | 'parent___internal___owner' + | 'parent___internal___type' + | 'parent___internal___contentFilePath' + | 'children' + | 'children___id' + | 'children___parent___id' + | 'children___parent___parent___id' + | 'children___parent___parent___children' + | 'children___parent___children' + | 'children___parent___children___id' + | 'children___parent___children___children' + | 'children___parent___internal___content' + | 'children___parent___internal___contentDigest' + | 'children___parent___internal___description' + | 'children___parent___internal___fieldOwners' + | 'children___parent___internal___ignoreType' + | 'children___parent___internal___mediaType' + | 'children___parent___internal___owner' + | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' + | 'children___children' + | 'children___children___id' + | 'children___children___parent___id' + | 'children___children___parent___children' + | 'children___children___children' + | 'children___children___children___id' + | 'children___children___children___children' + | 'children___children___internal___content' + | 'children___children___internal___contentDigest' + | 'children___children___internal___description' + | 'children___children___internal___fieldOwners' + | 'children___children___internal___ignoreType' + | 'children___children___internal___mediaType' + | 'children___children___internal___owner' + | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' + | 'children___internal___content' + | 'children___internal___contentDigest' + | 'children___internal___description' + | 'children___internal___fieldOwners' + | 'children___internal___ignoreType' + | 'children___internal___mediaType' + | 'children___internal___owner' + | 'children___internal___type' + | 'children___internal___contentFilePath' + | 'internal___content' + | 'internal___contentDigest' + | 'internal___description' + | 'internal___fieldOwners' + | 'internal___ignoreType' + | 'internal___mediaType' + | 'internal___owner' + | 'internal___type' + | 'internal___contentFilePath'; + +export type GraphCms_TechnologyGroupConnection = { + totalCount: Scalars['Int']; + edges: Array; + nodes: Array; + pageInfo: PageInfo; + distinct: Array; + max?: Maybe; + min?: Maybe; + sum?: Maybe; + group: Array; + field: Scalars['String']; + fieldValue?: Maybe; +}; + +export type GraphCms_TechnologyGroupConnectionDistinctArgs = { + field: GraphCms_TechnologyFieldsEnum; +}; + +export type GraphCms_TechnologyGroupConnectionMaxArgs = { + field: GraphCms_TechnologyFieldsEnum; +}; + +export type GraphCms_TechnologyGroupConnectionMinArgs = { + field: GraphCms_TechnologyFieldsEnum; +}; + +export type GraphCms_TechnologyGroupConnectionSumArgs = { + field: GraphCms_TechnologyFieldsEnum; +}; + +export type GraphCms_TechnologyGroupConnectionGroupArgs = { + skip?: InputMaybe; + limit?: InputMaybe; + field: GraphCms_TechnologyFieldsEnum; +}; + +export type GraphCms_TechnologySortInput = { + fields?: InputMaybe>>; + order?: InputMaybe>>; +}; + +export type GraphCms_BlogConnection = { + totalCount: Scalars['Int']; + edges: Array; + nodes: Array; + pageInfo: PageInfo; + distinct: Array; + max?: Maybe; + min?: Maybe; + sum?: Maybe; + group: Array; +}; + +export type GraphCms_BlogConnectionDistinctArgs = { + field: GraphCms_BlogFieldsEnum; +}; + +export type GraphCms_BlogConnectionMaxArgs = { + field: GraphCms_BlogFieldsEnum; +}; + +export type GraphCms_BlogConnectionMinArgs = { + field: GraphCms_BlogFieldsEnum; +}; + +export type GraphCms_BlogConnectionSumArgs = { + field: GraphCms_BlogFieldsEnum; +}; + +export type GraphCms_BlogConnectionGroupArgs = { + skip?: InputMaybe; + limit?: InputMaybe; + field: GraphCms_BlogFieldsEnum; +}; + +export type GraphCms_BlogEdge = { + next?: Maybe; + node: GraphCms_Blog; + previous?: Maybe; +}; + +export type GraphCms_BlogFieldsEnum = + | 'remoteTypeName' + | 'remoteId' + | 'stage' + | 'publishedAt' + | 'updatedAt' + | 'createdAt' + | 'title' + | 'description' + | 'content___remoteTypeName' + | 'content___raw' + | 'content___html' + | 'content___markdown' + | 'content___text' + | 'publishedBy___remoteTypeName' + | 'publishedBy___remoteId' + | 'publishedBy___stage' + | 'publishedBy___isActive' + | 'publishedBy___picture' + | 'publishedBy___name' + | 'publishedBy___publishedAt' + | 'publishedBy___updatedAt' + | 'publishedBy___createdAt' + | 'publishedBy___kind' + | 'publishedBy___id' + | 'publishedBy___parent___id' + | 'publishedBy___parent___parent___id' + | 'publishedBy___parent___parent___children' + | 'publishedBy___parent___children' + | 'publishedBy___parent___children___id' + | 'publishedBy___parent___children___children' + | 'publishedBy___parent___internal___content' + | 'publishedBy___parent___internal___contentDigest' + | 'publishedBy___parent___internal___description' + | 'publishedBy___parent___internal___fieldOwners' + | 'publishedBy___parent___internal___ignoreType' + | 'publishedBy___parent___internal___mediaType' + | 'publishedBy___parent___internal___owner' + | 'publishedBy___parent___internal___type' + | 'publishedBy___parent___internal___contentFilePath' + | 'publishedBy___children' + | 'publishedBy___children___id' + | 'publishedBy___children___parent___id' + | 'publishedBy___children___parent___children' + | 'publishedBy___children___children' + | 'publishedBy___children___children___id' + | 'publishedBy___children___children___children' + | 'publishedBy___children___internal___content' + | 'publishedBy___children___internal___contentDigest' + | 'publishedBy___children___internal___description' + | 'publishedBy___children___internal___fieldOwners' + | 'publishedBy___children___internal___ignoreType' + | 'publishedBy___children___internal___mediaType' + | 'publishedBy___children___internal___owner' + | 'publishedBy___children___internal___type' + | 'publishedBy___children___internal___contentFilePath' + | 'publishedBy___internal___content' + | 'publishedBy___internal___contentDigest' + | 'publishedBy___internal___description' + | 'publishedBy___internal___fieldOwners' + | 'publishedBy___internal___ignoreType' + | 'publishedBy___internal___mediaType' + | 'publishedBy___internal___owner' + | 'publishedBy___internal___type' + | 'publishedBy___internal___contentFilePath' + | 'updatedBy___remoteTypeName' + | 'updatedBy___remoteId' + | 'updatedBy___stage' + | 'updatedBy___isActive' + | 'updatedBy___picture' + | 'updatedBy___name' + | 'updatedBy___publishedAt' + | 'updatedBy___updatedAt' + | 'updatedBy___createdAt' + | 'updatedBy___kind' + | 'updatedBy___id' + | 'updatedBy___parent___id' + | 'updatedBy___parent___parent___id' + | 'updatedBy___parent___parent___children' + | 'updatedBy___parent___children' + | 'updatedBy___parent___children___id' + | 'updatedBy___parent___children___children' + | 'updatedBy___parent___internal___content' + | 'updatedBy___parent___internal___contentDigest' + | 'updatedBy___parent___internal___description' + | 'updatedBy___parent___internal___fieldOwners' + | 'updatedBy___parent___internal___ignoreType' + | 'updatedBy___parent___internal___mediaType' + | 'updatedBy___parent___internal___owner' + | 'updatedBy___parent___internal___type' + | 'updatedBy___parent___internal___contentFilePath' + | 'updatedBy___children' + | 'updatedBy___children___id' + | 'updatedBy___children___parent___id' + | 'updatedBy___children___parent___children' + | 'updatedBy___children___children' + | 'updatedBy___children___children___id' + | 'updatedBy___children___children___children' + | 'updatedBy___children___internal___content' + | 'updatedBy___children___internal___contentDigest' + | 'updatedBy___children___internal___description' + | 'updatedBy___children___internal___fieldOwners' + | 'updatedBy___children___internal___ignoreType' + | 'updatedBy___children___internal___mediaType' + | 'updatedBy___children___internal___owner' + | 'updatedBy___children___internal___type' + | 'updatedBy___children___internal___contentFilePath' + | 'updatedBy___internal___content' + | 'updatedBy___internal___contentDigest' + | 'updatedBy___internal___description' + | 'updatedBy___internal___fieldOwners' + | 'updatedBy___internal___ignoreType' + | 'updatedBy___internal___mediaType' + | 'updatedBy___internal___owner' + | 'updatedBy___internal___type' + | 'updatedBy___internal___contentFilePath' + | 'createdBy___remoteTypeName' + | 'createdBy___remoteId' + | 'createdBy___stage' + | 'createdBy___isActive' + | 'createdBy___picture' + | 'createdBy___name' + | 'createdBy___publishedAt' + | 'createdBy___updatedAt' + | 'createdBy___createdAt' + | 'createdBy___kind' + | 'createdBy___id' + | 'createdBy___parent___id' + | 'createdBy___parent___parent___id' + | 'createdBy___parent___parent___children' + | 'createdBy___parent___children' + | 'createdBy___parent___children___id' + | 'createdBy___parent___children___children' + | 'createdBy___parent___internal___content' + | 'createdBy___parent___internal___contentDigest' + | 'createdBy___parent___internal___description' + | 'createdBy___parent___internal___fieldOwners' + | 'createdBy___parent___internal___ignoreType' + | 'createdBy___parent___internal___mediaType' + | 'createdBy___parent___internal___owner' + | 'createdBy___parent___internal___type' + | 'createdBy___parent___internal___contentFilePath' + | 'createdBy___children' + | 'createdBy___children___id' + | 'createdBy___children___parent___id' + | 'createdBy___children___parent___children' + | 'createdBy___children___children' + | 'createdBy___children___children___id' + | 'createdBy___children___children___children' + | 'createdBy___children___internal___content' + | 'createdBy___children___internal___contentDigest' + | 'createdBy___children___internal___description' + | 'createdBy___children___internal___fieldOwners' + | 'createdBy___children___internal___ignoreType' + | 'createdBy___children___internal___mediaType' + | 'createdBy___children___internal___owner' + | 'createdBy___children___internal___type' + | 'createdBy___children___internal___contentFilePath' + | 'createdBy___internal___content' + | 'createdBy___internal___contentDigest' + | 'createdBy___internal___description' + | 'createdBy___internal___fieldOwners' + | 'createdBy___internal___ignoreType' + | 'createdBy___internal___mediaType' + | 'createdBy___internal___owner' + | 'createdBy___internal___type' + | 'createdBy___internal___contentFilePath' + | 'headerImage___remoteTypeName' + | 'headerImage___remoteId' + | 'headerImage___locale' + | 'headerImage___stage' + | 'headerImage___mimeType' + | 'headerImage___size' + | 'headerImage___width' + | 'headerImage___height' + | 'headerImage___fileName' + | 'headerImage___handle' + | 'headerImage___publishedAt' + | 'headerImage___updatedAt' + | 'headerImage___createdAt' + | 'headerImage___publishedBy___remoteTypeName' + | 'headerImage___publishedBy___remoteId' + | 'headerImage___publishedBy___stage' + | 'headerImage___publishedBy___isActive' + | 'headerImage___publishedBy___picture' + | 'headerImage___publishedBy___name' + | 'headerImage___publishedBy___publishedAt' + | 'headerImage___publishedBy___updatedAt' + | 'headerImage___publishedBy___createdAt' + | 'headerImage___publishedBy___kind' + | 'headerImage___publishedBy___id' + | 'headerImage___publishedBy___parent___id' + | 'headerImage___publishedBy___parent___children' + | 'headerImage___publishedBy___children' + | 'headerImage___publishedBy___children___id' + | 'headerImage___publishedBy___children___children' + | 'headerImage___publishedBy___internal___content' + | 'headerImage___publishedBy___internal___contentDigest' + | 'headerImage___publishedBy___internal___description' + | 'headerImage___publishedBy___internal___fieldOwners' + | 'headerImage___publishedBy___internal___ignoreType' + | 'headerImage___publishedBy___internal___mediaType' + | 'headerImage___publishedBy___internal___owner' + | 'headerImage___publishedBy___internal___type' + | 'headerImage___publishedBy___internal___contentFilePath' + | 'headerImage___updatedBy___remoteTypeName' + | 'headerImage___updatedBy___remoteId' + | 'headerImage___updatedBy___stage' + | 'headerImage___updatedBy___isActive' + | 'headerImage___updatedBy___picture' + | 'headerImage___updatedBy___name' + | 'headerImage___updatedBy___publishedAt' + | 'headerImage___updatedBy___updatedAt' + | 'headerImage___updatedBy___createdAt' + | 'headerImage___updatedBy___kind' + | 'headerImage___updatedBy___id' + | 'headerImage___updatedBy___parent___id' + | 'headerImage___updatedBy___parent___children' + | 'headerImage___updatedBy___children' + | 'headerImage___updatedBy___children___id' + | 'headerImage___updatedBy___children___children' + | 'headerImage___updatedBy___internal___content' + | 'headerImage___updatedBy___internal___contentDigest' + | 'headerImage___updatedBy___internal___description' + | 'headerImage___updatedBy___internal___fieldOwners' + | 'headerImage___updatedBy___internal___ignoreType' + | 'headerImage___updatedBy___internal___mediaType' + | 'headerImage___updatedBy___internal___owner' + | 'headerImage___updatedBy___internal___type' + | 'headerImage___updatedBy___internal___contentFilePath' + | 'headerImage___createdBy___remoteTypeName' + | 'headerImage___createdBy___remoteId' + | 'headerImage___createdBy___stage' + | 'headerImage___createdBy___isActive' + | 'headerImage___createdBy___picture' + | 'headerImage___createdBy___name' + | 'headerImage___createdBy___publishedAt' + | 'headerImage___createdBy___updatedAt' + | 'headerImage___createdBy___createdAt' + | 'headerImage___createdBy___kind' + | 'headerImage___createdBy___id' + | 'headerImage___createdBy___parent___id' + | 'headerImage___createdBy___parent___children' + | 'headerImage___createdBy___children' + | 'headerImage___createdBy___children___id' + | 'headerImage___createdBy___children___children' + | 'headerImage___createdBy___internal___content' + | 'headerImage___createdBy___internal___contentDigest' + | 'headerImage___createdBy___internal___description' + | 'headerImage___createdBy___internal___fieldOwners' + | 'headerImage___createdBy___internal___ignoreType' + | 'headerImage___createdBy___internal___mediaType' + | 'headerImage___createdBy___internal___owner' + | 'headerImage___createdBy___internal___type' + | 'headerImage___createdBy___internal___contentFilePath' + | 'headerImage___carouselImagesPortfolioItem' + | 'headerImage___carouselImagesPortfolioItem___remoteTypeName' + | 'headerImage___carouselImagesPortfolioItem___remoteId' + | 'headerImage___carouselImagesPortfolioItem___stage' + | 'headerImage___carouselImagesPortfolioItem___publishedAt' + | 'headerImage___carouselImagesPortfolioItem___updatedAt' + | 'headerImage___carouselImagesPortfolioItem___createdAt' + | 'headerImage___carouselImagesPortfolioItem___title' + | 'headerImage___carouselImagesPortfolioItem___description' + | 'headerImage___carouselImagesPortfolioItem___about___remoteTypeName' + | 'headerImage___carouselImagesPortfolioItem___about___raw' + | 'headerImage___carouselImagesPortfolioItem___about___html' + | 'headerImage___carouselImagesPortfolioItem___about___markdown' + | 'headerImage___carouselImagesPortfolioItem___about___text' + | 'headerImage___carouselImagesPortfolioItem___techSheet' + | 'headerImage___carouselImagesPortfolioItem___publishedBy___remoteTypeName' + | 'headerImage___carouselImagesPortfolioItem___publishedBy___remoteId' + | 'headerImage___carouselImagesPortfolioItem___publishedBy___stage' + | 'headerImage___carouselImagesPortfolioItem___publishedBy___isActive' + | 'headerImage___carouselImagesPortfolioItem___publishedBy___picture' + | 'headerImage___carouselImagesPortfolioItem___publishedBy___name' + | 'headerImage___carouselImagesPortfolioItem___publishedBy___publishedAt' + | 'headerImage___carouselImagesPortfolioItem___publishedBy___updatedAt' + | 'headerImage___carouselImagesPortfolioItem___publishedBy___createdAt' + | 'headerImage___carouselImagesPortfolioItem___publishedBy___kind' + | 'headerImage___carouselImagesPortfolioItem___publishedBy___id' + | 'headerImage___carouselImagesPortfolioItem___publishedBy___children' + | 'headerImage___carouselImagesPortfolioItem___updatedBy___remoteTypeName' + | 'headerImage___carouselImagesPortfolioItem___updatedBy___remoteId' + | 'headerImage___carouselImagesPortfolioItem___updatedBy___stage' + | 'headerImage___carouselImagesPortfolioItem___updatedBy___isActive' + | 'headerImage___carouselImagesPortfolioItem___updatedBy___picture' + | 'headerImage___carouselImagesPortfolioItem___updatedBy___name' + | 'headerImage___carouselImagesPortfolioItem___updatedBy___publishedAt' + | 'headerImage___carouselImagesPortfolioItem___updatedBy___updatedAt' + | 'headerImage___carouselImagesPortfolioItem___updatedBy___createdAt' + | 'headerImage___carouselImagesPortfolioItem___updatedBy___kind' + | 'headerImage___carouselImagesPortfolioItem___updatedBy___id' + | 'headerImage___carouselImagesPortfolioItem___updatedBy___children' + | 'headerImage___carouselImagesPortfolioItem___createdBy___remoteTypeName' + | 'headerImage___carouselImagesPortfolioItem___createdBy___remoteId' + | 'headerImage___carouselImagesPortfolioItem___createdBy___stage' + | 'headerImage___carouselImagesPortfolioItem___createdBy___isActive' + | 'headerImage___carouselImagesPortfolioItem___createdBy___picture' + | 'headerImage___carouselImagesPortfolioItem___createdBy___name' + | 'headerImage___carouselImagesPortfolioItem___createdBy___publishedAt' + | 'headerImage___carouselImagesPortfolioItem___createdBy___updatedAt' + | 'headerImage___carouselImagesPortfolioItem___createdBy___createdAt' + | 'headerImage___carouselImagesPortfolioItem___createdBy___kind' + | 'headerImage___carouselImagesPortfolioItem___createdBy___id' + | 'headerImage___carouselImagesPortfolioItem___createdBy___children' + | 'headerImage___carouselImagesPortfolioItem___carouselImages' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___remoteTypeName' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___remoteId' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___locale' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___stage' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___mimeType' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___size' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___width' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___height' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___fileName' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___handle' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___publishedAt' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___updatedAt' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___createdAt' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___carouselImagesPortfolioItem' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___iconSpeciality' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___iconTechnology' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___headerImageBlog' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___scheduledIn' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___url' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___id' + | 'headerImage___carouselImagesPortfolioItem___carouselImages___children' + | 'headerImage___carouselImagesPortfolioItem___links' + | 'headerImage___carouselImagesPortfolioItem___links___remoteTypeName' + | 'headerImage___carouselImagesPortfolioItem___links___remoteId' + | 'headerImage___carouselImagesPortfolioItem___links___stage' + | 'headerImage___carouselImagesPortfolioItem___links___publishedAt' + | 'headerImage___carouselImagesPortfolioItem___links___updatedAt' + | 'headerImage___carouselImagesPortfolioItem___links___createdAt' + | 'headerImage___carouselImagesPortfolioItem___links___title' + | 'headerImage___carouselImagesPortfolioItem___links___url' + | 'headerImage___carouselImagesPortfolioItem___links___type' + | 'headerImage___carouselImagesPortfolioItem___links___scheduledIn' + | 'headerImage___carouselImagesPortfolioItem___links___id' + | 'headerImage___carouselImagesPortfolioItem___links___children' + | 'headerImage___carouselImagesPortfolioItem___scheduledIn' + | 'headerImage___carouselImagesPortfolioItem___scheduledIn___remoteTypeName' + | 'headerImage___carouselImagesPortfolioItem___scheduledIn___remoteId' + | 'headerImage___carouselImagesPortfolioItem___scheduledIn___stage' + | 'headerImage___carouselImagesPortfolioItem___scheduledIn___rawPayload' + | 'headerImage___carouselImagesPortfolioItem___scheduledIn___errorMessage' + | 'headerImage___carouselImagesPortfolioItem___scheduledIn___description' + | 'headerImage___carouselImagesPortfolioItem___scheduledIn___publishedAt' + | 'headerImage___carouselImagesPortfolioItem___scheduledIn___updatedAt' + | 'headerImage___carouselImagesPortfolioItem___scheduledIn___createdAt' + | 'headerImage___carouselImagesPortfolioItem___scheduledIn___status' + | 'headerImage___carouselImagesPortfolioItem___scheduledIn___id' + | 'headerImage___carouselImagesPortfolioItem___scheduledIn___children' + | 'headerImage___carouselImagesPortfolioItem___gatsbyPath' + | 'headerImage___carouselImagesPortfolioItem___id' + | 'headerImage___carouselImagesPortfolioItem___parent___id' + | 'headerImage___carouselImagesPortfolioItem___parent___children' + | 'headerImage___carouselImagesPortfolioItem___children' + | 'headerImage___carouselImagesPortfolioItem___children___id' + | 'headerImage___carouselImagesPortfolioItem___children___children' + | 'headerImage___carouselImagesPortfolioItem___internal___content' + | 'headerImage___carouselImagesPortfolioItem___internal___contentDigest' + | 'headerImage___carouselImagesPortfolioItem___internal___description' + | 'headerImage___carouselImagesPortfolioItem___internal___fieldOwners' + | 'headerImage___carouselImagesPortfolioItem___internal___ignoreType' + | 'headerImage___carouselImagesPortfolioItem___internal___mediaType' + | 'headerImage___carouselImagesPortfolioItem___internal___owner' + | 'headerImage___carouselImagesPortfolioItem___internal___type' + | 'headerImage___carouselImagesPortfolioItem___internal___contentFilePath' + | 'headerImage___iconSpeciality' + | 'headerImage___iconSpeciality___remoteTypeName' + | 'headerImage___iconSpeciality___remoteId' + | 'headerImage___iconSpeciality___stage' + | 'headerImage___iconSpeciality___publishedAt' + | 'headerImage___iconSpeciality___updatedAt' + | 'headerImage___iconSpeciality___createdAt' + | 'headerImage___iconSpeciality___title' + | 'headerImage___iconSpeciality___description___remoteTypeName' + | 'headerImage___iconSpeciality___description___raw' + | 'headerImage___iconSpeciality___description___html' + | 'headerImage___iconSpeciality___description___markdown' + | 'headerImage___iconSpeciality___description___text' + | 'headerImage___iconSpeciality___publishedBy___remoteTypeName' + | 'headerImage___iconSpeciality___publishedBy___remoteId' + | 'headerImage___iconSpeciality___publishedBy___stage' + | 'headerImage___iconSpeciality___publishedBy___isActive' + | 'headerImage___iconSpeciality___publishedBy___picture' + | 'headerImage___iconSpeciality___publishedBy___name' + | 'headerImage___iconSpeciality___publishedBy___publishedAt' + | 'headerImage___iconSpeciality___publishedBy___updatedAt' + | 'headerImage___iconSpeciality___publishedBy___createdAt' + | 'headerImage___iconSpeciality___publishedBy___kind' + | 'headerImage___iconSpeciality___publishedBy___id' + | 'headerImage___iconSpeciality___publishedBy___children' + | 'headerImage___iconSpeciality___updatedBy___remoteTypeName' + | 'headerImage___iconSpeciality___updatedBy___remoteId' + | 'headerImage___iconSpeciality___updatedBy___stage' + | 'headerImage___iconSpeciality___updatedBy___isActive' + | 'headerImage___iconSpeciality___updatedBy___picture' + | 'headerImage___iconSpeciality___updatedBy___name' + | 'headerImage___iconSpeciality___updatedBy___publishedAt' + | 'headerImage___iconSpeciality___updatedBy___updatedAt' + | 'headerImage___iconSpeciality___updatedBy___createdAt' + | 'headerImage___iconSpeciality___updatedBy___kind' + | 'headerImage___iconSpeciality___updatedBy___id' + | 'headerImage___iconSpeciality___updatedBy___children' + | 'headerImage___iconSpeciality___createdBy___remoteTypeName' + | 'headerImage___iconSpeciality___createdBy___remoteId' + | 'headerImage___iconSpeciality___createdBy___stage' + | 'headerImage___iconSpeciality___createdBy___isActive' + | 'headerImage___iconSpeciality___createdBy___picture' + | 'headerImage___iconSpeciality___createdBy___name' + | 'headerImage___iconSpeciality___createdBy___publishedAt' + | 'headerImage___iconSpeciality___createdBy___updatedAt' + | 'headerImage___iconSpeciality___createdBy___createdAt' + | 'headerImage___iconSpeciality___createdBy___kind' + | 'headerImage___iconSpeciality___createdBy___id' + | 'headerImage___iconSpeciality___createdBy___children' + | 'headerImage___iconSpeciality___icon___remoteTypeName' + | 'headerImage___iconSpeciality___icon___remoteId' + | 'headerImage___iconSpeciality___icon___locale' + | 'headerImage___iconSpeciality___icon___stage' + | 'headerImage___iconSpeciality___icon___mimeType' + | 'headerImage___iconSpeciality___icon___size' + | 'headerImage___iconSpeciality___icon___width' + | 'headerImage___iconSpeciality___icon___height' + | 'headerImage___iconSpeciality___icon___fileName' + | 'headerImage___iconSpeciality___icon___handle' + | 'headerImage___iconSpeciality___icon___publishedAt' + | 'headerImage___iconSpeciality___icon___updatedAt' + | 'headerImage___iconSpeciality___icon___createdAt' + | 'headerImage___iconSpeciality___icon___carouselImagesPortfolioItem' + | 'headerImage___iconSpeciality___icon___iconSpeciality' + | 'headerImage___iconSpeciality___icon___iconTechnology' + | 'headerImage___iconSpeciality___icon___headerImageBlog' + | 'headerImage___iconSpeciality___icon___scheduledIn' + | 'headerImage___iconSpeciality___icon___url' + | 'headerImage___iconSpeciality___icon___id' + | 'headerImage___iconSpeciality___icon___children' + | 'headerImage___iconSpeciality___scheduledIn' + | 'headerImage___iconSpeciality___scheduledIn___remoteTypeName' + | 'headerImage___iconSpeciality___scheduledIn___remoteId' + | 'headerImage___iconSpeciality___scheduledIn___stage' + | 'headerImage___iconSpeciality___scheduledIn___rawPayload' + | 'headerImage___iconSpeciality___scheduledIn___errorMessage' + | 'headerImage___iconSpeciality___scheduledIn___description' + | 'headerImage___iconSpeciality___scheduledIn___publishedAt' + | 'headerImage___iconSpeciality___scheduledIn___updatedAt' + | 'headerImage___iconSpeciality___scheduledIn___createdAt' + | 'headerImage___iconSpeciality___scheduledIn___status' + | 'headerImage___iconSpeciality___scheduledIn___id' + | 'headerImage___iconSpeciality___scheduledIn___children' + | 'headerImage___iconSpeciality___id' + | 'headerImage___iconSpeciality___parent___id' + | 'headerImage___iconSpeciality___parent___children' + | 'headerImage___iconSpeciality___children' + | 'headerImage___iconSpeciality___children___id' + | 'headerImage___iconSpeciality___children___children' + | 'headerImage___iconSpeciality___internal___content' + | 'headerImage___iconSpeciality___internal___contentDigest' + | 'headerImage___iconSpeciality___internal___description' + | 'headerImage___iconSpeciality___internal___fieldOwners' + | 'headerImage___iconSpeciality___internal___ignoreType' + | 'headerImage___iconSpeciality___internal___mediaType' + | 'headerImage___iconSpeciality___internal___owner' + | 'headerImage___iconSpeciality___internal___type' + | 'headerImage___iconSpeciality___internal___contentFilePath' + | 'headerImage___iconTechnology' + | 'headerImage___iconTechnology___remoteTypeName' + | 'headerImage___iconTechnology___remoteId' + | 'headerImage___iconTechnology___stage' + | 'headerImage___iconTechnology___publishedAt' + | 'headerImage___iconTechnology___updatedAt' + | 'headerImage___iconTechnology___createdAt' + | 'headerImage___iconTechnology___title' + | 'headerImage___iconTechnology___description___remoteTypeName' + | 'headerImage___iconTechnology___description___raw' + | 'headerImage___iconTechnology___description___html' + | 'headerImage___iconTechnology___description___markdown' + | 'headerImage___iconTechnology___description___text' + | 'headerImage___iconTechnology___backgroundColor___remoteTypeName' + | 'headerImage___iconTechnology___backgroundColor___hex' + | 'headerImage___iconTechnology___backgroundColor___css' + | 'headerImage___iconTechnology___publishedBy___remoteTypeName' + | 'headerImage___iconTechnology___publishedBy___remoteId' + | 'headerImage___iconTechnology___publishedBy___stage' + | 'headerImage___iconTechnology___publishedBy___isActive' + | 'headerImage___iconTechnology___publishedBy___picture' + | 'headerImage___iconTechnology___publishedBy___name' + | 'headerImage___iconTechnology___publishedBy___publishedAt' + | 'headerImage___iconTechnology___publishedBy___updatedAt' + | 'headerImage___iconTechnology___publishedBy___createdAt' + | 'headerImage___iconTechnology___publishedBy___kind' + | 'headerImage___iconTechnology___publishedBy___id' + | 'headerImage___iconTechnology___publishedBy___children' + | 'headerImage___iconTechnology___updatedBy___remoteTypeName' + | 'headerImage___iconTechnology___updatedBy___remoteId' + | 'headerImage___iconTechnology___updatedBy___stage' + | 'headerImage___iconTechnology___updatedBy___isActive' + | 'headerImage___iconTechnology___updatedBy___picture' + | 'headerImage___iconTechnology___updatedBy___name' + | 'headerImage___iconTechnology___updatedBy___publishedAt' + | 'headerImage___iconTechnology___updatedBy___updatedAt' + | 'headerImage___iconTechnology___updatedBy___createdAt' + | 'headerImage___iconTechnology___updatedBy___kind' + | 'headerImage___iconTechnology___updatedBy___id' + | 'headerImage___iconTechnology___updatedBy___children' + | 'headerImage___iconTechnology___createdBy___remoteTypeName' + | 'headerImage___iconTechnology___createdBy___remoteId' + | 'headerImage___iconTechnology___createdBy___stage' + | 'headerImage___iconTechnology___createdBy___isActive' + | 'headerImage___iconTechnology___createdBy___picture' + | 'headerImage___iconTechnology___createdBy___name' + | 'headerImage___iconTechnology___createdBy___publishedAt' + | 'headerImage___iconTechnology___createdBy___updatedAt' + | 'headerImage___iconTechnology___createdBy___createdAt' + | 'headerImage___iconTechnology___createdBy___kind' + | 'headerImage___iconTechnology___createdBy___id' + | 'headerImage___iconTechnology___createdBy___children' + | 'headerImage___iconTechnology___icon___remoteTypeName' + | 'headerImage___iconTechnology___icon___remoteId' + | 'headerImage___iconTechnology___icon___locale' + | 'headerImage___iconTechnology___icon___stage' + | 'headerImage___iconTechnology___icon___mimeType' + | 'headerImage___iconTechnology___icon___size' + | 'headerImage___iconTechnology___icon___width' + | 'headerImage___iconTechnology___icon___height' + | 'headerImage___iconTechnology___icon___fileName' + | 'headerImage___iconTechnology___icon___handle' + | 'headerImage___iconTechnology___icon___publishedAt' + | 'headerImage___iconTechnology___icon___updatedAt' + | 'headerImage___iconTechnology___icon___createdAt' + | 'headerImage___iconTechnology___icon___carouselImagesPortfolioItem' + | 'headerImage___iconTechnology___icon___iconSpeciality' + | 'headerImage___iconTechnology___icon___iconTechnology' + | 'headerImage___iconTechnology___icon___headerImageBlog' + | 'headerImage___iconTechnology___icon___scheduledIn' + | 'headerImage___iconTechnology___icon___url' + | 'headerImage___iconTechnology___icon___id' + | 'headerImage___iconTechnology___icon___children' + | 'headerImage___iconTechnology___scheduledIn' + | 'headerImage___iconTechnology___scheduledIn___remoteTypeName' + | 'headerImage___iconTechnology___scheduledIn___remoteId' + | 'headerImage___iconTechnology___scheduledIn___stage' + | 'headerImage___iconTechnology___scheduledIn___rawPayload' + | 'headerImage___iconTechnology___scheduledIn___errorMessage' + | 'headerImage___iconTechnology___scheduledIn___description' + | 'headerImage___iconTechnology___scheduledIn___publishedAt' + | 'headerImage___iconTechnology___scheduledIn___updatedAt' + | 'headerImage___iconTechnology___scheduledIn___createdAt' + | 'headerImage___iconTechnology___scheduledIn___status' + | 'headerImage___iconTechnology___scheduledIn___id' + | 'headerImage___iconTechnology___scheduledIn___children' + | 'headerImage___iconTechnology___id' + | 'headerImage___iconTechnology___parent___id' + | 'headerImage___iconTechnology___parent___children' + | 'headerImage___iconTechnology___children' + | 'headerImage___iconTechnology___children___id' + | 'headerImage___iconTechnology___children___children' + | 'headerImage___iconTechnology___internal___content' + | 'headerImage___iconTechnology___internal___contentDigest' + | 'headerImage___iconTechnology___internal___description' + | 'headerImage___iconTechnology___internal___fieldOwners' + | 'headerImage___iconTechnology___internal___ignoreType' + | 'headerImage___iconTechnology___internal___mediaType' + | 'headerImage___iconTechnology___internal___owner' + | 'headerImage___iconTechnology___internal___type' + | 'headerImage___iconTechnology___internal___contentFilePath' + | 'headerImage___headerImageBlog' + | 'headerImage___headerImageBlog___remoteTypeName' + | 'headerImage___headerImageBlog___remoteId' + | 'headerImage___headerImageBlog___stage' + | 'headerImage___headerImageBlog___publishedAt' + | 'headerImage___headerImageBlog___updatedAt' + | 'headerImage___headerImageBlog___createdAt' + | 'headerImage___headerImageBlog___title' + | 'headerImage___headerImageBlog___description' + | 'headerImage___headerImageBlog___content___remoteTypeName' + | 'headerImage___headerImageBlog___content___raw' + | 'headerImage___headerImageBlog___content___html' + | 'headerImage___headerImageBlog___content___markdown' + | 'headerImage___headerImageBlog___content___text' + | 'headerImage___headerImageBlog___publishedBy___remoteTypeName' + | 'headerImage___headerImageBlog___publishedBy___remoteId' + | 'headerImage___headerImageBlog___publishedBy___stage' + | 'headerImage___headerImageBlog___publishedBy___isActive' + | 'headerImage___headerImageBlog___publishedBy___picture' + | 'headerImage___headerImageBlog___publishedBy___name' + | 'headerImage___headerImageBlog___publishedBy___publishedAt' + | 'headerImage___headerImageBlog___publishedBy___updatedAt' + | 'headerImage___headerImageBlog___publishedBy___createdAt' + | 'headerImage___headerImageBlog___publishedBy___kind' + | 'headerImage___headerImageBlog___publishedBy___id' + | 'headerImage___headerImageBlog___publishedBy___children' + | 'headerImage___headerImageBlog___updatedBy___remoteTypeName' + | 'headerImage___headerImageBlog___updatedBy___remoteId' + | 'headerImage___headerImageBlog___updatedBy___stage' + | 'headerImage___headerImageBlog___updatedBy___isActive' + | 'headerImage___headerImageBlog___updatedBy___picture' + | 'headerImage___headerImageBlog___updatedBy___name' + | 'headerImage___headerImageBlog___updatedBy___publishedAt' + | 'headerImage___headerImageBlog___updatedBy___updatedAt' + | 'headerImage___headerImageBlog___updatedBy___createdAt' + | 'headerImage___headerImageBlog___updatedBy___kind' + | 'headerImage___headerImageBlog___updatedBy___id' + | 'headerImage___headerImageBlog___updatedBy___children' + | 'headerImage___headerImageBlog___createdBy___remoteTypeName' + | 'headerImage___headerImageBlog___createdBy___remoteId' + | 'headerImage___headerImageBlog___createdBy___stage' + | 'headerImage___headerImageBlog___createdBy___isActive' + | 'headerImage___headerImageBlog___createdBy___picture' + | 'headerImage___headerImageBlog___createdBy___name' + | 'headerImage___headerImageBlog___createdBy___publishedAt' + | 'headerImage___headerImageBlog___createdBy___updatedAt' + | 'headerImage___headerImageBlog___createdBy___createdAt' + | 'headerImage___headerImageBlog___createdBy___kind' + | 'headerImage___headerImageBlog___createdBy___id' + | 'headerImage___headerImageBlog___createdBy___children' + | 'headerImage___headerImageBlog___headerImage___remoteTypeName' + | 'headerImage___headerImageBlog___headerImage___remoteId' + | 'headerImage___headerImageBlog___headerImage___locale' + | 'headerImage___headerImageBlog___headerImage___stage' + | 'headerImage___headerImageBlog___headerImage___mimeType' + | 'headerImage___headerImageBlog___headerImage___size' + | 'headerImage___headerImageBlog___headerImage___width' + | 'headerImage___headerImageBlog___headerImage___height' + | 'headerImage___headerImageBlog___headerImage___fileName' + | 'headerImage___headerImageBlog___headerImage___handle' + | 'headerImage___headerImageBlog___headerImage___publishedAt' + | 'headerImage___headerImageBlog___headerImage___updatedAt' + | 'headerImage___headerImageBlog___headerImage___createdAt' + | 'headerImage___headerImageBlog___headerImage___carouselImagesPortfolioItem' + | 'headerImage___headerImageBlog___headerImage___iconSpeciality' + | 'headerImage___headerImageBlog___headerImage___iconTechnology' + | 'headerImage___headerImageBlog___headerImage___headerImageBlog' + | 'headerImage___headerImageBlog___headerImage___scheduledIn' + | 'headerImage___headerImageBlog___headerImage___url' + | 'headerImage___headerImageBlog___headerImage___id' + | 'headerImage___headerImageBlog___headerImage___children' + | 'headerImage___headerImageBlog___type' + | 'headerImage___headerImageBlog___categories' + | 'headerImage___headerImageBlog___scheduledIn' + | 'headerImage___headerImageBlog___scheduledIn___remoteTypeName' + | 'headerImage___headerImageBlog___scheduledIn___remoteId' + | 'headerImage___headerImageBlog___scheduledIn___stage' + | 'headerImage___headerImageBlog___scheduledIn___rawPayload' + | 'headerImage___headerImageBlog___scheduledIn___errorMessage' + | 'headerImage___headerImageBlog___scheduledIn___description' + | 'headerImage___headerImageBlog___scheduledIn___publishedAt' + | 'headerImage___headerImageBlog___scheduledIn___updatedAt' + | 'headerImage___headerImageBlog___scheduledIn___createdAt' + | 'headerImage___headerImageBlog___scheduledIn___status' + | 'headerImage___headerImageBlog___scheduledIn___id' + | 'headerImage___headerImageBlog___scheduledIn___children' + | 'headerImage___headerImageBlog___gatsbyPath' + | 'headerImage___headerImageBlog___id' + | 'headerImage___headerImageBlog___parent___id' + | 'headerImage___headerImageBlog___parent___children' + | 'headerImage___headerImageBlog___children' + | 'headerImage___headerImageBlog___children___id' + | 'headerImage___headerImageBlog___children___children' + | 'headerImage___headerImageBlog___internal___content' + | 'headerImage___headerImageBlog___internal___contentDigest' + | 'headerImage___headerImageBlog___internal___description' + | 'headerImage___headerImageBlog___internal___fieldOwners' + | 'headerImage___headerImageBlog___internal___ignoreType' + | 'headerImage___headerImageBlog___internal___mediaType' + | 'headerImage___headerImageBlog___internal___owner' + | 'headerImage___headerImageBlog___internal___type' + | 'headerImage___headerImageBlog___internal___contentFilePath' + | 'headerImage___scheduledIn' + | 'headerImage___scheduledIn___remoteTypeName' + | 'headerImage___scheduledIn___remoteId' + | 'headerImage___scheduledIn___stage' + | 'headerImage___scheduledIn___rawPayload' + | 'headerImage___scheduledIn___errorMessage' + | 'headerImage___scheduledIn___description' + | 'headerImage___scheduledIn___publishedAt' + | 'headerImage___scheduledIn___updatedAt' + | 'headerImage___scheduledIn___createdAt' + | 'headerImage___scheduledIn___release___remoteTypeName' + | 'headerImage___scheduledIn___release___remoteId' + | 'headerImage___scheduledIn___release___stage' + | 'headerImage___scheduledIn___release___releaseAt' + | 'headerImage___scheduledIn___release___isImplicit' + | 'headerImage___scheduledIn___release___isActive' + | 'headerImage___scheduledIn___release___errorMessage' + | 'headerImage___scheduledIn___release___description' + | 'headerImage___scheduledIn___release___title' + | 'headerImage___scheduledIn___release___publishedAt' + | 'headerImage___scheduledIn___release___updatedAt' + | 'headerImage___scheduledIn___release___createdAt' + | 'headerImage___scheduledIn___release___operations' + | 'headerImage___scheduledIn___release___status' + | 'headerImage___scheduledIn___release___id' + | 'headerImage___scheduledIn___release___children' + | 'headerImage___scheduledIn___publishedBy___remoteTypeName' + | 'headerImage___scheduledIn___publishedBy___remoteId' + | 'headerImage___scheduledIn___publishedBy___stage' + | 'headerImage___scheduledIn___publishedBy___isActive' + | 'headerImage___scheduledIn___publishedBy___picture' + | 'headerImage___scheduledIn___publishedBy___name' + | 'headerImage___scheduledIn___publishedBy___publishedAt' + | 'headerImage___scheduledIn___publishedBy___updatedAt' + | 'headerImage___scheduledIn___publishedBy___createdAt' + | 'headerImage___scheduledIn___publishedBy___kind' + | 'headerImage___scheduledIn___publishedBy___id' + | 'headerImage___scheduledIn___publishedBy___children' + | 'headerImage___scheduledIn___updatedBy___remoteTypeName' + | 'headerImage___scheduledIn___updatedBy___remoteId' + | 'headerImage___scheduledIn___updatedBy___stage' + | 'headerImage___scheduledIn___updatedBy___isActive' + | 'headerImage___scheduledIn___updatedBy___picture' + | 'headerImage___scheduledIn___updatedBy___name' + | 'headerImage___scheduledIn___updatedBy___publishedAt' + | 'headerImage___scheduledIn___updatedBy___updatedAt' + | 'headerImage___scheduledIn___updatedBy___createdAt' + | 'headerImage___scheduledIn___updatedBy___kind' + | 'headerImage___scheduledIn___updatedBy___id' + | 'headerImage___scheduledIn___updatedBy___children' + | 'headerImage___scheduledIn___createdBy___remoteTypeName' + | 'headerImage___scheduledIn___createdBy___remoteId' + | 'headerImage___scheduledIn___createdBy___stage' + | 'headerImage___scheduledIn___createdBy___isActive' + | 'headerImage___scheduledIn___createdBy___picture' + | 'headerImage___scheduledIn___createdBy___name' + | 'headerImage___scheduledIn___createdBy___publishedAt' + | 'headerImage___scheduledIn___createdBy___updatedAt' + | 'headerImage___scheduledIn___createdBy___createdAt' + | 'headerImage___scheduledIn___createdBy___kind' + | 'headerImage___scheduledIn___createdBy___id' + | 'headerImage___scheduledIn___createdBy___children' + | 'headerImage___scheduledIn___status' + | 'headerImage___scheduledIn___id' + | 'headerImage___scheduledIn___parent___id' + | 'headerImage___scheduledIn___parent___children' + | 'headerImage___scheduledIn___children' + | 'headerImage___scheduledIn___children___id' + | 'headerImage___scheduledIn___children___children' + | 'headerImage___scheduledIn___internal___content' + | 'headerImage___scheduledIn___internal___contentDigest' + | 'headerImage___scheduledIn___internal___description' + | 'headerImage___scheduledIn___internal___fieldOwners' + | 'headerImage___scheduledIn___internal___ignoreType' + | 'headerImage___scheduledIn___internal___mediaType' + | 'headerImage___scheduledIn___internal___owner' + | 'headerImage___scheduledIn___internal___type' + | 'headerImage___scheduledIn___internal___contentFilePath' + | 'headerImage___url' + | 'headerImage___id' + | 'headerImage___parent___id' + | 'headerImage___parent___parent___id' + | 'headerImage___parent___parent___children' + | 'headerImage___parent___children' + | 'headerImage___parent___children___id' + | 'headerImage___parent___children___children' + | 'headerImage___parent___internal___content' + | 'headerImage___parent___internal___contentDigest' + | 'headerImage___parent___internal___description' + | 'headerImage___parent___internal___fieldOwners' + | 'headerImage___parent___internal___ignoreType' + | 'headerImage___parent___internal___mediaType' + | 'headerImage___parent___internal___owner' + | 'headerImage___parent___internal___type' + | 'headerImage___parent___internal___contentFilePath' + | 'headerImage___children' + | 'headerImage___children___id' + | 'headerImage___children___parent___id' + | 'headerImage___children___parent___children' + | 'headerImage___children___children' + | 'headerImage___children___children___id' + | 'headerImage___children___children___children' + | 'headerImage___children___internal___content' + | 'headerImage___children___internal___contentDigest' + | 'headerImage___children___internal___description' + | 'headerImage___children___internal___fieldOwners' + | 'headerImage___children___internal___ignoreType' + | 'headerImage___children___internal___mediaType' + | 'headerImage___children___internal___owner' + | 'headerImage___children___internal___type' + | 'headerImage___children___internal___contentFilePath' + | 'headerImage___internal___content' + | 'headerImage___internal___contentDigest' + | 'headerImage___internal___description' + | 'headerImage___internal___fieldOwners' + | 'headerImage___internal___ignoreType' + | 'headerImage___internal___mediaType' + | 'headerImage___internal___owner' + | 'headerImage___internal___type' + | 'headerImage___internal___contentFilePath' + | 'type' + | 'categories' + | 'scheduledIn' + | 'scheduledIn___remoteTypeName' + | 'scheduledIn___remoteId' + | 'scheduledIn___stage' + | 'scheduledIn___rawPayload' + | 'scheduledIn___errorMessage' + | 'scheduledIn___description' + | 'scheduledIn___publishedAt' + | 'scheduledIn___updatedAt' + | 'scheduledIn___createdAt' + | 'scheduledIn___release___remoteTypeName' + | 'scheduledIn___release___remoteId' + | 'scheduledIn___release___stage' + | 'scheduledIn___release___releaseAt' + | 'scheduledIn___release___isImplicit' + | 'scheduledIn___release___isActive' + | 'scheduledIn___release___errorMessage' + | 'scheduledIn___release___description' + | 'scheduledIn___release___title' + | 'scheduledIn___release___publishedAt' + | 'scheduledIn___release___updatedAt' + | 'scheduledIn___release___createdAt' + | 'scheduledIn___release___operations' + | 'scheduledIn___release___operations___remoteTypeName' + | 'scheduledIn___release___operations___remoteId' + | 'scheduledIn___release___operations___stage' + | 'scheduledIn___release___operations___rawPayload' + | 'scheduledIn___release___operations___errorMessage' + | 'scheduledIn___release___operations___description' + | 'scheduledIn___release___operations___publishedAt' + | 'scheduledIn___release___operations___updatedAt' + | 'scheduledIn___release___operations___createdAt' + | 'scheduledIn___release___operations___status' + | 'scheduledIn___release___operations___id' + | 'scheduledIn___release___operations___children' + | 'scheduledIn___release___publishedBy___remoteTypeName' + | 'scheduledIn___release___publishedBy___remoteId' + | 'scheduledIn___release___publishedBy___stage' + | 'scheduledIn___release___publishedBy___isActive' + | 'scheduledIn___release___publishedBy___picture' + | 'scheduledIn___release___publishedBy___name' + | 'scheduledIn___release___publishedBy___publishedAt' + | 'scheduledIn___release___publishedBy___updatedAt' + | 'scheduledIn___release___publishedBy___createdAt' + | 'scheduledIn___release___publishedBy___kind' + | 'scheduledIn___release___publishedBy___id' + | 'scheduledIn___release___publishedBy___children' + | 'scheduledIn___release___updatedBy___remoteTypeName' + | 'scheduledIn___release___updatedBy___remoteId' + | 'scheduledIn___release___updatedBy___stage' + | 'scheduledIn___release___updatedBy___isActive' + | 'scheduledIn___release___updatedBy___picture' + | 'scheduledIn___release___updatedBy___name' + | 'scheduledIn___release___updatedBy___publishedAt' + | 'scheduledIn___release___updatedBy___updatedAt' + | 'scheduledIn___release___updatedBy___createdAt' + | 'scheduledIn___release___updatedBy___kind' + | 'scheduledIn___release___updatedBy___id' + | 'scheduledIn___release___updatedBy___children' + | 'scheduledIn___release___createdBy___remoteTypeName' + | 'scheduledIn___release___createdBy___remoteId' + | 'scheduledIn___release___createdBy___stage' + | 'scheduledIn___release___createdBy___isActive' + | 'scheduledIn___release___createdBy___picture' + | 'scheduledIn___release___createdBy___name' + | 'scheduledIn___release___createdBy___publishedAt' + | 'scheduledIn___release___createdBy___updatedAt' + | 'scheduledIn___release___createdBy___createdAt' + | 'scheduledIn___release___createdBy___kind' + | 'scheduledIn___release___createdBy___id' + | 'scheduledIn___release___createdBy___children' + | 'scheduledIn___release___status' + | 'scheduledIn___release___id' + | 'scheduledIn___release___parent___id' + | 'scheduledIn___release___parent___children' + | 'scheduledIn___release___children' + | 'scheduledIn___release___children___id' + | 'scheduledIn___release___children___children' + | 'scheduledIn___release___internal___content' + | 'scheduledIn___release___internal___contentDigest' + | 'scheduledIn___release___internal___description' + | 'scheduledIn___release___internal___fieldOwners' + | 'scheduledIn___release___internal___ignoreType' + | 'scheduledIn___release___internal___mediaType' + | 'scheduledIn___release___internal___owner' + | 'scheduledIn___release___internal___type' + | 'scheduledIn___release___internal___contentFilePath' + | 'scheduledIn___publishedBy___remoteTypeName' + | 'scheduledIn___publishedBy___remoteId' + | 'scheduledIn___publishedBy___stage' + | 'scheduledIn___publishedBy___isActive' + | 'scheduledIn___publishedBy___picture' + | 'scheduledIn___publishedBy___name' + | 'scheduledIn___publishedBy___publishedAt' + | 'scheduledIn___publishedBy___updatedAt' + | 'scheduledIn___publishedBy___createdAt' + | 'scheduledIn___publishedBy___kind' + | 'scheduledIn___publishedBy___id' + | 'scheduledIn___publishedBy___parent___id' + | 'scheduledIn___publishedBy___parent___children' + | 'scheduledIn___publishedBy___children' + | 'scheduledIn___publishedBy___children___id' + | 'scheduledIn___publishedBy___children___children' + | 'scheduledIn___publishedBy___internal___content' + | 'scheduledIn___publishedBy___internal___contentDigest' + | 'scheduledIn___publishedBy___internal___description' + | 'scheduledIn___publishedBy___internal___fieldOwners' + | 'scheduledIn___publishedBy___internal___ignoreType' + | 'scheduledIn___publishedBy___internal___mediaType' + | 'scheduledIn___publishedBy___internal___owner' + | 'scheduledIn___publishedBy___internal___type' + | 'scheduledIn___publishedBy___internal___contentFilePath' + | 'scheduledIn___updatedBy___remoteTypeName' + | 'scheduledIn___updatedBy___remoteId' + | 'scheduledIn___updatedBy___stage' + | 'scheduledIn___updatedBy___isActive' + | 'scheduledIn___updatedBy___picture' + | 'scheduledIn___updatedBy___name' + | 'scheduledIn___updatedBy___publishedAt' + | 'scheduledIn___updatedBy___updatedAt' + | 'scheduledIn___updatedBy___createdAt' + | 'scheduledIn___updatedBy___kind' + | 'scheduledIn___updatedBy___id' + | 'scheduledIn___updatedBy___parent___id' + | 'scheduledIn___updatedBy___parent___children' + | 'scheduledIn___updatedBy___children' + | 'scheduledIn___updatedBy___children___id' + | 'scheduledIn___updatedBy___children___children' + | 'scheduledIn___updatedBy___internal___content' + | 'scheduledIn___updatedBy___internal___contentDigest' + | 'scheduledIn___updatedBy___internal___description' + | 'scheduledIn___updatedBy___internal___fieldOwners' + | 'scheduledIn___updatedBy___internal___ignoreType' + | 'scheduledIn___updatedBy___internal___mediaType' + | 'scheduledIn___updatedBy___internal___owner' + | 'scheduledIn___updatedBy___internal___type' + | 'scheduledIn___updatedBy___internal___contentFilePath' + | 'scheduledIn___createdBy___remoteTypeName' + | 'scheduledIn___createdBy___remoteId' + | 'scheduledIn___createdBy___stage' + | 'scheduledIn___createdBy___isActive' + | 'scheduledIn___createdBy___picture' + | 'scheduledIn___createdBy___name' + | 'scheduledIn___createdBy___publishedAt' + | 'scheduledIn___createdBy___updatedAt' + | 'scheduledIn___createdBy___createdAt' + | 'scheduledIn___createdBy___kind' + | 'scheduledIn___createdBy___id' + | 'scheduledIn___createdBy___parent___id' + | 'scheduledIn___createdBy___parent___children' + | 'scheduledIn___createdBy___children' + | 'scheduledIn___createdBy___children___id' + | 'scheduledIn___createdBy___children___children' + | 'scheduledIn___createdBy___internal___content' + | 'scheduledIn___createdBy___internal___contentDigest' + | 'scheduledIn___createdBy___internal___description' + | 'scheduledIn___createdBy___internal___fieldOwners' + | 'scheduledIn___createdBy___internal___ignoreType' + | 'scheduledIn___createdBy___internal___mediaType' + | 'scheduledIn___createdBy___internal___owner' + | 'scheduledIn___createdBy___internal___type' + | 'scheduledIn___createdBy___internal___contentFilePath' + | 'scheduledIn___status' + | 'scheduledIn___id' + | 'scheduledIn___parent___id' + | 'scheduledIn___parent___parent___id' + | 'scheduledIn___parent___parent___children' + | 'scheduledIn___parent___children' + | 'scheduledIn___parent___children___id' + | 'scheduledIn___parent___children___children' + | 'scheduledIn___parent___internal___content' + | 'scheduledIn___parent___internal___contentDigest' + | 'scheduledIn___parent___internal___description' + | 'scheduledIn___parent___internal___fieldOwners' + | 'scheduledIn___parent___internal___ignoreType' + | 'scheduledIn___parent___internal___mediaType' + | 'scheduledIn___parent___internal___owner' + | 'scheduledIn___parent___internal___type' + | 'scheduledIn___parent___internal___contentFilePath' + | 'scheduledIn___children' + | 'scheduledIn___children___id' + | 'scheduledIn___children___parent___id' + | 'scheduledIn___children___parent___children' + | 'scheduledIn___children___children' + | 'scheduledIn___children___children___id' + | 'scheduledIn___children___children___children' + | 'scheduledIn___children___internal___content' + | 'scheduledIn___children___internal___contentDigest' + | 'scheduledIn___children___internal___description' + | 'scheduledIn___children___internal___fieldOwners' + | 'scheduledIn___children___internal___ignoreType' + | 'scheduledIn___children___internal___mediaType' + | 'scheduledIn___children___internal___owner' + | 'scheduledIn___children___internal___type' + | 'scheduledIn___children___internal___contentFilePath' + | 'scheduledIn___internal___content' + | 'scheduledIn___internal___contentDigest' + | 'scheduledIn___internal___description' + | 'scheduledIn___internal___fieldOwners' + | 'scheduledIn___internal___ignoreType' + | 'scheduledIn___internal___mediaType' + | 'scheduledIn___internal___owner' + | 'scheduledIn___internal___type' + | 'scheduledIn___internal___contentFilePath' + | 'gatsbyPath' + | 'id' + | 'parent___id' + | 'parent___parent___id' + | 'parent___parent___parent___id' + | 'parent___parent___parent___children' + | 'parent___parent___children' + | 'parent___parent___children___id' + | 'parent___parent___children___children' + | 'parent___parent___internal___content' + | 'parent___parent___internal___contentDigest' + | 'parent___parent___internal___description' + | 'parent___parent___internal___fieldOwners' + | 'parent___parent___internal___ignoreType' + | 'parent___parent___internal___mediaType' + | 'parent___parent___internal___owner' + | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' + | 'parent___children' + | 'parent___children___id' + | 'parent___children___parent___id' + | 'parent___children___parent___children' + | 'parent___children___children' + | 'parent___children___children___id' + | 'parent___children___children___children' + | 'parent___children___internal___content' + | 'parent___children___internal___contentDigest' + | 'parent___children___internal___description' + | 'parent___children___internal___fieldOwners' + | 'parent___children___internal___ignoreType' + | 'parent___children___internal___mediaType' + | 'parent___children___internal___owner' + | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' + | 'parent___internal___content' + | 'parent___internal___contentDigest' + | 'parent___internal___description' + | 'parent___internal___fieldOwners' + | 'parent___internal___ignoreType' + | 'parent___internal___mediaType' + | 'parent___internal___owner' + | 'parent___internal___type' + | 'parent___internal___contentFilePath' + | 'children' + | 'children___id' + | 'children___parent___id' + | 'children___parent___parent___id' + | 'children___parent___parent___children' + | 'children___parent___children' + | 'children___parent___children___id' + | 'children___parent___children___children' + | 'children___parent___internal___content' + | 'children___parent___internal___contentDigest' + | 'children___parent___internal___description' + | 'children___parent___internal___fieldOwners' + | 'children___parent___internal___ignoreType' + | 'children___parent___internal___mediaType' + | 'children___parent___internal___owner' + | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' + | 'children___children' + | 'children___children___id' + | 'children___children___parent___id' + | 'children___children___parent___children' + | 'children___children___children' + | 'children___children___children___id' + | 'children___children___children___children' + | 'children___children___internal___content' + | 'children___children___internal___contentDigest' + | 'children___children___internal___description' + | 'children___children___internal___fieldOwners' + | 'children___children___internal___ignoreType' + | 'children___children___internal___mediaType' + | 'children___children___internal___owner' + | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' + | 'children___internal___content' + | 'children___internal___contentDigest' + | 'children___internal___description' + | 'children___internal___fieldOwners' + | 'children___internal___ignoreType' + | 'children___internal___mediaType' + | 'children___internal___owner' + | 'children___internal___type' + | 'children___internal___contentFilePath' + | 'internal___content' + | 'internal___contentDigest' + | 'internal___description' + | 'internal___fieldOwners' + | 'internal___ignoreType' + | 'internal___mediaType' + | 'internal___owner' + | 'internal___type' + | 'internal___contentFilePath'; + +export type GraphCms_BlogGroupConnection = { + totalCount: Scalars['Int']; + edges: Array; + nodes: Array; + pageInfo: PageInfo; + distinct: Array; + max?: Maybe; + min?: Maybe; + sum?: Maybe; + group: Array; + field: Scalars['String']; + fieldValue?: Maybe; +}; + +export type GraphCms_BlogGroupConnectionDistinctArgs = { + field: GraphCms_BlogFieldsEnum; +}; + +export type GraphCms_BlogGroupConnectionMaxArgs = { + field: GraphCms_BlogFieldsEnum; +}; + +export type GraphCms_BlogGroupConnectionMinArgs = { + field: GraphCms_BlogFieldsEnum; +}; + +export type GraphCms_BlogGroupConnectionSumArgs = { + field: GraphCms_BlogFieldsEnum; +}; + +export type GraphCms_BlogGroupConnectionGroupArgs = { + skip?: InputMaybe; + limit?: InputMaybe; + field: GraphCms_BlogFieldsEnum; +}; + +export type GraphCms_BlogSortInput = { + fields?: InputMaybe>>; + order?: InputMaybe>>; +}; + +export type GraphCms_ScheduledOperationConnection = { + totalCount: Scalars['Int']; + edges: Array; + nodes: Array; + pageInfo: PageInfo; + distinct: Array; + max?: Maybe; + min?: Maybe; + sum?: Maybe; + group: Array; +}; + +export type GraphCms_ScheduledOperationConnectionDistinctArgs = { + field: GraphCms_ScheduledOperationFieldsEnum; +}; + +export type GraphCms_ScheduledOperationConnectionMaxArgs = { + field: GraphCms_ScheduledOperationFieldsEnum; +}; + +export type GraphCms_ScheduledOperationConnectionMinArgs = { + field: GraphCms_ScheduledOperationFieldsEnum; +}; + +export type GraphCms_ScheduledOperationConnectionSumArgs = { + field: GraphCms_ScheduledOperationFieldsEnum; +}; + +export type GraphCms_ScheduledOperationConnectionGroupArgs = { + skip?: InputMaybe; + limit?: InputMaybe; + field: GraphCms_ScheduledOperationFieldsEnum; +}; + +export type GraphCms_ScheduledOperationEdge = { + next?: Maybe; + node: GraphCms_ScheduledOperation; + previous?: Maybe; +}; + +export type GraphCms_ScheduledOperationFieldsEnum = + | 'remoteTypeName' + | 'remoteId' + | 'stage' + | 'rawPayload' + | 'errorMessage' + | 'description' + | 'publishedAt' + | 'updatedAt' + | 'createdAt' + | 'release___remoteTypeName' + | 'release___remoteId' + | 'release___stage' + | 'release___releaseAt' + | 'release___isImplicit' + | 'release___isActive' + | 'release___errorMessage' + | 'release___description' + | 'release___title' + | 'release___publishedAt' + | 'release___updatedAt' + | 'release___createdAt' + | 'release___operations' + | 'release___operations___remoteTypeName' + | 'release___operations___remoteId' + | 'release___operations___stage' + | 'release___operations___rawPayload' + | 'release___operations___errorMessage' + | 'release___operations___description' + | 'release___operations___publishedAt' + | 'release___operations___updatedAt' + | 'release___operations___createdAt' + | 'release___operations___release___remoteTypeName' + | 'release___operations___release___remoteId' + | 'release___operations___release___stage' + | 'release___operations___release___releaseAt' + | 'release___operations___release___isImplicit' + | 'release___operations___release___isActive' + | 'release___operations___release___errorMessage' + | 'release___operations___release___description' + | 'release___operations___release___title' + | 'release___operations___release___publishedAt' + | 'release___operations___release___updatedAt' + | 'release___operations___release___createdAt' + | 'release___operations___release___operations' + | 'release___operations___release___status' + | 'release___operations___release___id' + | 'release___operations___release___children' + | 'release___operations___publishedBy___remoteTypeName' + | 'release___operations___publishedBy___remoteId' + | 'release___operations___publishedBy___stage' + | 'release___operations___publishedBy___isActive' + | 'release___operations___publishedBy___picture' + | 'release___operations___publishedBy___name' + | 'release___operations___publishedBy___publishedAt' + | 'release___operations___publishedBy___updatedAt' + | 'release___operations___publishedBy___createdAt' + | 'release___operations___publishedBy___kind' + | 'release___operations___publishedBy___id' + | 'release___operations___publishedBy___children' + | 'release___operations___updatedBy___remoteTypeName' + | 'release___operations___updatedBy___remoteId' + | 'release___operations___updatedBy___stage' + | 'release___operations___updatedBy___isActive' + | 'release___operations___updatedBy___picture' + | 'release___operations___updatedBy___name' + | 'release___operations___updatedBy___publishedAt' + | 'release___operations___updatedBy___updatedAt' + | 'release___operations___updatedBy___createdAt' + | 'release___operations___updatedBy___kind' + | 'release___operations___updatedBy___id' + | 'release___operations___updatedBy___children' + | 'release___operations___createdBy___remoteTypeName' + | 'release___operations___createdBy___remoteId' + | 'release___operations___createdBy___stage' + | 'release___operations___createdBy___isActive' + | 'release___operations___createdBy___picture' + | 'release___operations___createdBy___name' + | 'release___operations___createdBy___publishedAt' + | 'release___operations___createdBy___updatedAt' + | 'release___operations___createdBy___createdAt' + | 'release___operations___createdBy___kind' + | 'release___operations___createdBy___id' + | 'release___operations___createdBy___children' + | 'release___operations___status' + | 'release___operations___id' + | 'release___operations___parent___id' + | 'release___operations___parent___children' + | 'release___operations___children' + | 'release___operations___children___id' + | 'release___operations___children___children' + | 'release___operations___internal___content' + | 'release___operations___internal___contentDigest' + | 'release___operations___internal___description' + | 'release___operations___internal___fieldOwners' + | 'release___operations___internal___ignoreType' + | 'release___operations___internal___mediaType' + | 'release___operations___internal___owner' + | 'release___operations___internal___type' + | 'release___operations___internal___contentFilePath' + | 'release___publishedBy___remoteTypeName' + | 'release___publishedBy___remoteId' + | 'release___publishedBy___stage' + | 'release___publishedBy___isActive' + | 'release___publishedBy___picture' + | 'release___publishedBy___name' + | 'release___publishedBy___publishedAt' + | 'release___publishedBy___updatedAt' + | 'release___publishedBy___createdAt' + | 'release___publishedBy___kind' + | 'release___publishedBy___id' + | 'release___publishedBy___parent___id' + | 'release___publishedBy___parent___children' + | 'release___publishedBy___children' + | 'release___publishedBy___children___id' + | 'release___publishedBy___children___children' + | 'release___publishedBy___internal___content' + | 'release___publishedBy___internal___contentDigest' + | 'release___publishedBy___internal___description' + | 'release___publishedBy___internal___fieldOwners' + | 'release___publishedBy___internal___ignoreType' + | 'release___publishedBy___internal___mediaType' + | 'release___publishedBy___internal___owner' + | 'release___publishedBy___internal___type' + | 'release___publishedBy___internal___contentFilePath' + | 'release___updatedBy___remoteTypeName' + | 'release___updatedBy___remoteId' + | 'release___updatedBy___stage' + | 'release___updatedBy___isActive' + | 'release___updatedBy___picture' + | 'release___updatedBy___name' + | 'release___updatedBy___publishedAt' + | 'release___updatedBy___updatedAt' + | 'release___updatedBy___createdAt' + | 'release___updatedBy___kind' + | 'release___updatedBy___id' + | 'release___updatedBy___parent___id' + | 'release___updatedBy___parent___children' + | 'release___updatedBy___children' + | 'release___updatedBy___children___id' + | 'release___updatedBy___children___children' + | 'release___updatedBy___internal___content' + | 'release___updatedBy___internal___contentDigest' + | 'release___updatedBy___internal___description' + | 'release___updatedBy___internal___fieldOwners' + | 'release___updatedBy___internal___ignoreType' + | 'release___updatedBy___internal___mediaType' + | 'release___updatedBy___internal___owner' + | 'release___updatedBy___internal___type' + | 'release___updatedBy___internal___contentFilePath' + | 'release___createdBy___remoteTypeName' + | 'release___createdBy___remoteId' + | 'release___createdBy___stage' + | 'release___createdBy___isActive' + | 'release___createdBy___picture' + | 'release___createdBy___name' + | 'release___createdBy___publishedAt' + | 'release___createdBy___updatedAt' + | 'release___createdBy___createdAt' + | 'release___createdBy___kind' + | 'release___createdBy___id' + | 'release___createdBy___parent___id' + | 'release___createdBy___parent___children' + | 'release___createdBy___children' + | 'release___createdBy___children___id' + | 'release___createdBy___children___children' + | 'release___createdBy___internal___content' + | 'release___createdBy___internal___contentDigest' + | 'release___createdBy___internal___description' + | 'release___createdBy___internal___fieldOwners' + | 'release___createdBy___internal___ignoreType' + | 'release___createdBy___internal___mediaType' + | 'release___createdBy___internal___owner' + | 'release___createdBy___internal___type' + | 'release___createdBy___internal___contentFilePath' + | 'release___status' + | 'release___id' + | 'release___parent___id' + | 'release___parent___parent___id' + | 'release___parent___parent___children' + | 'release___parent___children' + | 'release___parent___children___id' + | 'release___parent___children___children' + | 'release___parent___internal___content' + | 'release___parent___internal___contentDigest' + | 'release___parent___internal___description' + | 'release___parent___internal___fieldOwners' + | 'release___parent___internal___ignoreType' + | 'release___parent___internal___mediaType' + | 'release___parent___internal___owner' + | 'release___parent___internal___type' + | 'release___parent___internal___contentFilePath' + | 'release___children' + | 'release___children___id' + | 'release___children___parent___id' + | 'release___children___parent___children' + | 'release___children___children' + | 'release___children___children___id' + | 'release___children___children___children' + | 'release___children___internal___content' + | 'release___children___internal___contentDigest' + | 'release___children___internal___description' + | 'release___children___internal___fieldOwners' + | 'release___children___internal___ignoreType' + | 'release___children___internal___mediaType' + | 'release___children___internal___owner' + | 'release___children___internal___type' + | 'release___children___internal___contentFilePath' + | 'release___internal___content' + | 'release___internal___contentDigest' + | 'release___internal___description' + | 'release___internal___fieldOwners' + | 'release___internal___ignoreType' + | 'release___internal___mediaType' + | 'release___internal___owner' + | 'release___internal___type' + | 'release___internal___contentFilePath' + | 'publishedBy___remoteTypeName' + | 'publishedBy___remoteId' + | 'publishedBy___stage' + | 'publishedBy___isActive' + | 'publishedBy___picture' + | 'publishedBy___name' + | 'publishedBy___publishedAt' + | 'publishedBy___updatedAt' + | 'publishedBy___createdAt' + | 'publishedBy___kind' + | 'publishedBy___id' + | 'publishedBy___parent___id' + | 'publishedBy___parent___parent___id' + | 'publishedBy___parent___parent___children' + | 'publishedBy___parent___children' + | 'publishedBy___parent___children___id' + | 'publishedBy___parent___children___children' + | 'publishedBy___parent___internal___content' + | 'publishedBy___parent___internal___contentDigest' + | 'publishedBy___parent___internal___description' + | 'publishedBy___parent___internal___fieldOwners' + | 'publishedBy___parent___internal___ignoreType' + | 'publishedBy___parent___internal___mediaType' + | 'publishedBy___parent___internal___owner' + | 'publishedBy___parent___internal___type' + | 'publishedBy___parent___internal___contentFilePath' + | 'publishedBy___children' + | 'publishedBy___children___id' + | 'publishedBy___children___parent___id' + | 'publishedBy___children___parent___children' + | 'publishedBy___children___children' + | 'publishedBy___children___children___id' + | 'publishedBy___children___children___children' + | 'publishedBy___children___internal___content' + | 'publishedBy___children___internal___contentDigest' + | 'publishedBy___children___internal___description' + | 'publishedBy___children___internal___fieldOwners' + | 'publishedBy___children___internal___ignoreType' + | 'publishedBy___children___internal___mediaType' + | 'publishedBy___children___internal___owner' + | 'publishedBy___children___internal___type' + | 'publishedBy___children___internal___contentFilePath' + | 'publishedBy___internal___content' + | 'publishedBy___internal___contentDigest' + | 'publishedBy___internal___description' + | 'publishedBy___internal___fieldOwners' + | 'publishedBy___internal___ignoreType' + | 'publishedBy___internal___mediaType' + | 'publishedBy___internal___owner' + | 'publishedBy___internal___type' + | 'publishedBy___internal___contentFilePath' + | 'updatedBy___remoteTypeName' + | 'updatedBy___remoteId' + | 'updatedBy___stage' + | 'updatedBy___isActive' + | 'updatedBy___picture' + | 'updatedBy___name' + | 'updatedBy___publishedAt' + | 'updatedBy___updatedAt' + | 'updatedBy___createdAt' + | 'updatedBy___kind' + | 'updatedBy___id' + | 'updatedBy___parent___id' + | 'updatedBy___parent___parent___id' + | 'updatedBy___parent___parent___children' + | 'updatedBy___parent___children' + | 'updatedBy___parent___children___id' + | 'updatedBy___parent___children___children' + | 'updatedBy___parent___internal___content' + | 'updatedBy___parent___internal___contentDigest' + | 'updatedBy___parent___internal___description' + | 'updatedBy___parent___internal___fieldOwners' + | 'updatedBy___parent___internal___ignoreType' + | 'updatedBy___parent___internal___mediaType' + | 'updatedBy___parent___internal___owner' + | 'updatedBy___parent___internal___type' + | 'updatedBy___parent___internal___contentFilePath' + | 'updatedBy___children' + | 'updatedBy___children___id' + | 'updatedBy___children___parent___id' + | 'updatedBy___children___parent___children' + | 'updatedBy___children___children' + | 'updatedBy___children___children___id' + | 'updatedBy___children___children___children' + | 'updatedBy___children___internal___content' + | 'updatedBy___children___internal___contentDigest' + | 'updatedBy___children___internal___description' + | 'updatedBy___children___internal___fieldOwners' + | 'updatedBy___children___internal___ignoreType' + | 'updatedBy___children___internal___mediaType' + | 'updatedBy___children___internal___owner' + | 'updatedBy___children___internal___type' + | 'updatedBy___children___internal___contentFilePath' + | 'updatedBy___internal___content' + | 'updatedBy___internal___contentDigest' + | 'updatedBy___internal___description' + | 'updatedBy___internal___fieldOwners' + | 'updatedBy___internal___ignoreType' + | 'updatedBy___internal___mediaType' + | 'updatedBy___internal___owner' + | 'updatedBy___internal___type' + | 'updatedBy___internal___contentFilePath' + | 'createdBy___remoteTypeName' + | 'createdBy___remoteId' + | 'createdBy___stage' + | 'createdBy___isActive' + | 'createdBy___picture' + | 'createdBy___name' + | 'createdBy___publishedAt' + | 'createdBy___updatedAt' + | 'createdBy___createdAt' + | 'createdBy___kind' + | 'createdBy___id' + | 'createdBy___parent___id' + | 'createdBy___parent___parent___id' + | 'createdBy___parent___parent___children' + | 'createdBy___parent___children' + | 'createdBy___parent___children___id' + | 'createdBy___parent___children___children' + | 'createdBy___parent___internal___content' + | 'createdBy___parent___internal___contentDigest' + | 'createdBy___parent___internal___description' + | 'createdBy___parent___internal___fieldOwners' + | 'createdBy___parent___internal___ignoreType' + | 'createdBy___parent___internal___mediaType' + | 'createdBy___parent___internal___owner' + | 'createdBy___parent___internal___type' + | 'createdBy___parent___internal___contentFilePath' + | 'createdBy___children' + | 'createdBy___children___id' + | 'createdBy___children___parent___id' + | 'createdBy___children___parent___children' + | 'createdBy___children___children' + | 'createdBy___children___children___id' + | 'createdBy___children___children___children' + | 'createdBy___children___internal___content' + | 'createdBy___children___internal___contentDigest' + | 'createdBy___children___internal___description' + | 'createdBy___children___internal___fieldOwners' + | 'createdBy___children___internal___ignoreType' + | 'createdBy___children___internal___mediaType' + | 'createdBy___children___internal___owner' + | 'createdBy___children___internal___type' + | 'createdBy___children___internal___contentFilePath' + | 'createdBy___internal___content' + | 'createdBy___internal___contentDigest' + | 'createdBy___internal___description' + | 'createdBy___internal___fieldOwners' + | 'createdBy___internal___ignoreType' + | 'createdBy___internal___mediaType' + | 'createdBy___internal___owner' + | 'createdBy___internal___type' + | 'createdBy___internal___contentFilePath' + | 'status' + | 'id' + | 'parent___id' + | 'parent___parent___id' + | 'parent___parent___parent___id' + | 'parent___parent___parent___children' + | 'parent___parent___children' + | 'parent___parent___children___id' + | 'parent___parent___children___children' + | 'parent___parent___internal___content' + | 'parent___parent___internal___contentDigest' + | 'parent___parent___internal___description' + | 'parent___parent___internal___fieldOwners' + | 'parent___parent___internal___ignoreType' + | 'parent___parent___internal___mediaType' + | 'parent___parent___internal___owner' + | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' + | 'parent___children' + | 'parent___children___id' + | 'parent___children___parent___id' + | 'parent___children___parent___children' + | 'parent___children___children' + | 'parent___children___children___id' + | 'parent___children___children___children' + | 'parent___children___internal___content' + | 'parent___children___internal___contentDigest' + | 'parent___children___internal___description' + | 'parent___children___internal___fieldOwners' + | 'parent___children___internal___ignoreType' + | 'parent___children___internal___mediaType' + | 'parent___children___internal___owner' + | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' + | 'parent___internal___content' + | 'parent___internal___contentDigest' + | 'parent___internal___description' + | 'parent___internal___fieldOwners' + | 'parent___internal___ignoreType' + | 'parent___internal___mediaType' + | 'parent___internal___owner' + | 'parent___internal___type' + | 'parent___internal___contentFilePath' + | 'children' + | 'children___id' + | 'children___parent___id' + | 'children___parent___parent___id' + | 'children___parent___parent___children' + | 'children___parent___children' + | 'children___parent___children___id' + | 'children___parent___children___children' + | 'children___parent___internal___content' + | 'children___parent___internal___contentDigest' + | 'children___parent___internal___description' + | 'children___parent___internal___fieldOwners' + | 'children___parent___internal___ignoreType' + | 'children___parent___internal___mediaType' + | 'children___parent___internal___owner' + | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' + | 'children___children' + | 'children___children___id' + | 'children___children___parent___id' + | 'children___children___parent___children' + | 'children___children___children' + | 'children___children___children___id' + | 'children___children___children___children' + | 'children___children___internal___content' + | 'children___children___internal___contentDigest' + | 'children___children___internal___description' + | 'children___children___internal___fieldOwners' + | 'children___children___internal___ignoreType' + | 'children___children___internal___mediaType' + | 'children___children___internal___owner' + | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' + | 'children___internal___content' + | 'children___internal___contentDigest' + | 'children___internal___description' + | 'children___internal___fieldOwners' + | 'children___internal___ignoreType' + | 'children___internal___mediaType' + | 'children___internal___owner' + | 'children___internal___type' + | 'children___internal___contentFilePath' + | 'internal___content' + | 'internal___contentDigest' + | 'internal___description' + | 'internal___fieldOwners' + | 'internal___ignoreType' + | 'internal___mediaType' + | 'internal___owner' + | 'internal___type' + | 'internal___contentFilePath'; + +export type GraphCms_ScheduledOperationGroupConnection = { + totalCount: Scalars['Int']; + edges: Array; + nodes: Array; + pageInfo: PageInfo; + distinct: Array; + max?: Maybe; + min?: Maybe; + sum?: Maybe; + group: Array; + field: Scalars['String']; + fieldValue?: Maybe; +}; + +export type GraphCms_ScheduledOperationGroupConnectionDistinctArgs = { + field: GraphCms_ScheduledOperationFieldsEnum; +}; + +export type GraphCms_ScheduledOperationGroupConnectionMaxArgs = { + field: GraphCms_ScheduledOperationFieldsEnum; +}; + +export type GraphCms_ScheduledOperationGroupConnectionMinArgs = { + field: GraphCms_ScheduledOperationFieldsEnum; +}; + +export type GraphCms_ScheduledOperationGroupConnectionSumArgs = { + field: GraphCms_ScheduledOperationFieldsEnum; +}; + +export type GraphCms_ScheduledOperationGroupConnectionGroupArgs = { + skip?: InputMaybe; + limit?: InputMaybe; + field: GraphCms_ScheduledOperationFieldsEnum; +}; + +export type GraphCms_ScheduledOperationSortInput = { + fields?: InputMaybe>>; + order?: InputMaybe>>; +}; + +export type GraphCms_LinkConnection = { + totalCount: Scalars['Int']; + edges: Array; + nodes: Array; + pageInfo: PageInfo; + distinct: Array; + max?: Maybe; + min?: Maybe; + sum?: Maybe; + group: Array; +}; + +export type GraphCms_LinkConnectionDistinctArgs = { + field: GraphCms_LinkFieldsEnum; +}; + +export type GraphCms_LinkConnectionMaxArgs = { + field: GraphCms_LinkFieldsEnum; +}; + +export type GraphCms_LinkConnectionMinArgs = { + field: GraphCms_LinkFieldsEnum; +}; + +export type GraphCms_LinkConnectionSumArgs = { + field: GraphCms_LinkFieldsEnum; +}; + +export type GraphCms_LinkConnectionGroupArgs = { + skip?: InputMaybe; + limit?: InputMaybe; + field: GraphCms_LinkFieldsEnum; +}; + +export type GraphCms_LinkEdge = { + next?: Maybe; + node: GraphCms_Link; + previous?: Maybe; +}; + +export type GraphCms_LinkFieldsEnum = + | 'remoteTypeName' + | 'remoteId' + | 'stage' + | 'publishedAt' + | 'updatedAt' + | 'createdAt' + | 'title' + | 'url' + | 'publishedBy___remoteTypeName' + | 'publishedBy___remoteId' + | 'publishedBy___stage' + | 'publishedBy___isActive' + | 'publishedBy___picture' + | 'publishedBy___name' + | 'publishedBy___publishedAt' + | 'publishedBy___updatedAt' + | 'publishedBy___createdAt' + | 'publishedBy___kind' + | 'publishedBy___id' + | 'publishedBy___parent___id' + | 'publishedBy___parent___parent___id' + | 'publishedBy___parent___parent___children' + | 'publishedBy___parent___children' + | 'publishedBy___parent___children___id' + | 'publishedBy___parent___children___children' + | 'publishedBy___parent___internal___content' + | 'publishedBy___parent___internal___contentDigest' + | 'publishedBy___parent___internal___description' + | 'publishedBy___parent___internal___fieldOwners' + | 'publishedBy___parent___internal___ignoreType' + | 'publishedBy___parent___internal___mediaType' + | 'publishedBy___parent___internal___owner' + | 'publishedBy___parent___internal___type' + | 'publishedBy___parent___internal___contentFilePath' + | 'publishedBy___children' + | 'publishedBy___children___id' + | 'publishedBy___children___parent___id' + | 'publishedBy___children___parent___children' + | 'publishedBy___children___children' + | 'publishedBy___children___children___id' + | 'publishedBy___children___children___children' + | 'publishedBy___children___internal___content' + | 'publishedBy___children___internal___contentDigest' + | 'publishedBy___children___internal___description' + | 'publishedBy___children___internal___fieldOwners' + | 'publishedBy___children___internal___ignoreType' + | 'publishedBy___children___internal___mediaType' + | 'publishedBy___children___internal___owner' + | 'publishedBy___children___internal___type' + | 'publishedBy___children___internal___contentFilePath' + | 'publishedBy___internal___content' + | 'publishedBy___internal___contentDigest' + | 'publishedBy___internal___description' + | 'publishedBy___internal___fieldOwners' + | 'publishedBy___internal___ignoreType' + | 'publishedBy___internal___mediaType' + | 'publishedBy___internal___owner' + | 'publishedBy___internal___type' + | 'publishedBy___internal___contentFilePath' + | 'updatedBy___remoteTypeName' + | 'updatedBy___remoteId' + | 'updatedBy___stage' + | 'updatedBy___isActive' + | 'updatedBy___picture' + | 'updatedBy___name' + | 'updatedBy___publishedAt' + | 'updatedBy___updatedAt' + | 'updatedBy___createdAt' + | 'updatedBy___kind' + | 'updatedBy___id' + | 'updatedBy___parent___id' + | 'updatedBy___parent___parent___id' + | 'updatedBy___parent___parent___children' + | 'updatedBy___parent___children' + | 'updatedBy___parent___children___id' + | 'updatedBy___parent___children___children' + | 'updatedBy___parent___internal___content' + | 'updatedBy___parent___internal___contentDigest' + | 'updatedBy___parent___internal___description' + | 'updatedBy___parent___internal___fieldOwners' + | 'updatedBy___parent___internal___ignoreType' + | 'updatedBy___parent___internal___mediaType' + | 'updatedBy___parent___internal___owner' + | 'updatedBy___parent___internal___type' + | 'updatedBy___parent___internal___contentFilePath' + | 'updatedBy___children' + | 'updatedBy___children___id' + | 'updatedBy___children___parent___id' + | 'updatedBy___children___parent___children' + | 'updatedBy___children___children' + | 'updatedBy___children___children___id' + | 'updatedBy___children___children___children' + | 'updatedBy___children___internal___content' + | 'updatedBy___children___internal___contentDigest' + | 'updatedBy___children___internal___description' + | 'updatedBy___children___internal___fieldOwners' + | 'updatedBy___children___internal___ignoreType' + | 'updatedBy___children___internal___mediaType' + | 'updatedBy___children___internal___owner' + | 'updatedBy___children___internal___type' + | 'updatedBy___children___internal___contentFilePath' + | 'updatedBy___internal___content' + | 'updatedBy___internal___contentDigest' + | 'updatedBy___internal___description' + | 'updatedBy___internal___fieldOwners' + | 'updatedBy___internal___ignoreType' + | 'updatedBy___internal___mediaType' + | 'updatedBy___internal___owner' + | 'updatedBy___internal___type' + | 'updatedBy___internal___contentFilePath' + | 'createdBy___remoteTypeName' + | 'createdBy___remoteId' + | 'createdBy___stage' + | 'createdBy___isActive' + | 'createdBy___picture' + | 'createdBy___name' + | 'createdBy___publishedAt' + | 'createdBy___updatedAt' + | 'createdBy___createdAt' + | 'createdBy___kind' + | 'createdBy___id' + | 'createdBy___parent___id' + | 'createdBy___parent___parent___id' + | 'createdBy___parent___parent___children' + | 'createdBy___parent___children' + | 'createdBy___parent___children___id' + | 'createdBy___parent___children___children' + | 'createdBy___parent___internal___content' + | 'createdBy___parent___internal___contentDigest' + | 'createdBy___parent___internal___description' + | 'createdBy___parent___internal___fieldOwners' + | 'createdBy___parent___internal___ignoreType' + | 'createdBy___parent___internal___mediaType' + | 'createdBy___parent___internal___owner' + | 'createdBy___parent___internal___type' + | 'createdBy___parent___internal___contentFilePath' + | 'createdBy___children' + | 'createdBy___children___id' + | 'createdBy___children___parent___id' + | 'createdBy___children___parent___children' + | 'createdBy___children___children' + | 'createdBy___children___children___id' + | 'createdBy___children___children___children' + | 'createdBy___children___internal___content' + | 'createdBy___children___internal___contentDigest' + | 'createdBy___children___internal___description' + | 'createdBy___children___internal___fieldOwners' + | 'createdBy___children___internal___ignoreType' + | 'createdBy___children___internal___mediaType' + | 'createdBy___children___internal___owner' + | 'createdBy___children___internal___type' + | 'createdBy___children___internal___contentFilePath' + | 'createdBy___internal___content' + | 'createdBy___internal___contentDigest' + | 'createdBy___internal___description' + | 'createdBy___internal___fieldOwners' + | 'createdBy___internal___ignoreType' + | 'createdBy___internal___mediaType' + | 'createdBy___internal___owner' + | 'createdBy___internal___type' + | 'createdBy___internal___contentFilePath' + | 'type' | 'scheduledIn' | 'scheduledIn___remoteTypeName' | 'scheduledIn___remoteId' | 'scheduledIn___stage' - | 'scheduledIn___createdAt' - | 'scheduledIn___updatedAt' - | 'scheduledIn___publishedAt' - | 'scheduledIn___description' - | 'scheduledIn___errorMessage' | 'scheduledIn___rawPayload' - | 'scheduledIn___createdBy___remoteTypeName' - | 'scheduledIn___createdBy___remoteId' - | 'scheduledIn___createdBy___stage' - | 'scheduledIn___createdBy___createdAt' - | 'scheduledIn___createdBy___updatedAt' - | 'scheduledIn___createdBy___publishedAt' - | 'scheduledIn___createdBy___name' - | 'scheduledIn___createdBy___picture' - | 'scheduledIn___createdBy___isActive' - | 'scheduledIn___createdBy___kind' - | 'scheduledIn___createdBy___id' - | 'scheduledIn___createdBy___parent___id' - | 'scheduledIn___createdBy___parent___children' - | 'scheduledIn___createdBy___children' - | 'scheduledIn___createdBy___children___id' - | 'scheduledIn___createdBy___children___children' - | 'scheduledIn___createdBy___internal___content' - | 'scheduledIn___createdBy___internal___contentDigest' - | 'scheduledIn___createdBy___internal___description' - | 'scheduledIn___createdBy___internal___fieldOwners' - | 'scheduledIn___createdBy___internal___ignoreType' - | 'scheduledIn___createdBy___internal___mediaType' - | 'scheduledIn___createdBy___internal___owner' - | 'scheduledIn___createdBy___internal___type' - | 'scheduledIn___updatedBy___remoteTypeName' - | 'scheduledIn___updatedBy___remoteId' - | 'scheduledIn___updatedBy___stage' - | 'scheduledIn___updatedBy___createdAt' - | 'scheduledIn___updatedBy___updatedAt' - | 'scheduledIn___updatedBy___publishedAt' - | 'scheduledIn___updatedBy___name' - | 'scheduledIn___updatedBy___picture' - | 'scheduledIn___updatedBy___isActive' - | 'scheduledIn___updatedBy___kind' - | 'scheduledIn___updatedBy___id' - | 'scheduledIn___updatedBy___parent___id' - | 'scheduledIn___updatedBy___parent___children' - | 'scheduledIn___updatedBy___children' - | 'scheduledIn___updatedBy___children___id' - | 'scheduledIn___updatedBy___children___children' - | 'scheduledIn___updatedBy___internal___content' - | 'scheduledIn___updatedBy___internal___contentDigest' - | 'scheduledIn___updatedBy___internal___description' - | 'scheduledIn___updatedBy___internal___fieldOwners' - | 'scheduledIn___updatedBy___internal___ignoreType' - | 'scheduledIn___updatedBy___internal___mediaType' - | 'scheduledIn___updatedBy___internal___owner' - | 'scheduledIn___updatedBy___internal___type' - | 'scheduledIn___publishedBy___remoteTypeName' - | 'scheduledIn___publishedBy___remoteId' - | 'scheduledIn___publishedBy___stage' - | 'scheduledIn___publishedBy___createdAt' - | 'scheduledIn___publishedBy___updatedAt' - | 'scheduledIn___publishedBy___publishedAt' - | 'scheduledIn___publishedBy___name' - | 'scheduledIn___publishedBy___picture' - | 'scheduledIn___publishedBy___isActive' - | 'scheduledIn___publishedBy___kind' - | 'scheduledIn___publishedBy___id' - | 'scheduledIn___publishedBy___parent___id' - | 'scheduledIn___publishedBy___parent___children' - | 'scheduledIn___publishedBy___children' - | 'scheduledIn___publishedBy___children___id' - | 'scheduledIn___publishedBy___children___children' - | 'scheduledIn___publishedBy___internal___content' - | 'scheduledIn___publishedBy___internal___contentDigest' - | 'scheduledIn___publishedBy___internal___description' - | 'scheduledIn___publishedBy___internal___fieldOwners' - | 'scheduledIn___publishedBy___internal___ignoreType' - | 'scheduledIn___publishedBy___internal___mediaType' - | 'scheduledIn___publishedBy___internal___owner' - | 'scheduledIn___publishedBy___internal___type' + | 'scheduledIn___errorMessage' + | 'scheduledIn___description' + | 'scheduledIn___publishedAt' + | 'scheduledIn___updatedAt' + | 'scheduledIn___createdAt' | 'scheduledIn___release___remoteTypeName' - | 'scheduledIn___release___remoteId' - | 'scheduledIn___release___stage' - | 'scheduledIn___release___createdAt' - | 'scheduledIn___release___updatedAt' - | 'scheduledIn___release___publishedAt' - | 'scheduledIn___release___title' - | 'scheduledIn___release___description' - | 'scheduledIn___release___errorMessage' - | 'scheduledIn___release___isActive' - | 'scheduledIn___release___isImplicit' + | 'scheduledIn___release___remoteId' + | 'scheduledIn___release___stage' | 'scheduledIn___release___releaseAt' - | 'scheduledIn___release___createdBy___remoteTypeName' - | 'scheduledIn___release___createdBy___remoteId' - | 'scheduledIn___release___createdBy___stage' - | 'scheduledIn___release___createdBy___createdAt' - | 'scheduledIn___release___createdBy___updatedAt' - | 'scheduledIn___release___createdBy___publishedAt' - | 'scheduledIn___release___createdBy___name' - | 'scheduledIn___release___createdBy___picture' - | 'scheduledIn___release___createdBy___isActive' - | 'scheduledIn___release___createdBy___kind' - | 'scheduledIn___release___createdBy___id' - | 'scheduledIn___release___createdBy___children' - | 'scheduledIn___release___updatedBy___remoteTypeName' - | 'scheduledIn___release___updatedBy___remoteId' - | 'scheduledIn___release___updatedBy___stage' - | 'scheduledIn___release___updatedBy___createdAt' - | 'scheduledIn___release___updatedBy___updatedAt' - | 'scheduledIn___release___updatedBy___publishedAt' - | 'scheduledIn___release___updatedBy___name' - | 'scheduledIn___release___updatedBy___picture' - | 'scheduledIn___release___updatedBy___isActive' - | 'scheduledIn___release___updatedBy___kind' - | 'scheduledIn___release___updatedBy___id' - | 'scheduledIn___release___updatedBy___children' - | 'scheduledIn___release___publishedBy___remoteTypeName' - | 'scheduledIn___release___publishedBy___remoteId' - | 'scheduledIn___release___publishedBy___stage' - | 'scheduledIn___release___publishedBy___createdAt' - | 'scheduledIn___release___publishedBy___updatedAt' - | 'scheduledIn___release___publishedBy___publishedAt' - | 'scheduledIn___release___publishedBy___name' - | 'scheduledIn___release___publishedBy___picture' - | 'scheduledIn___release___publishedBy___isActive' - | 'scheduledIn___release___publishedBy___kind' - | 'scheduledIn___release___publishedBy___id' - | 'scheduledIn___release___publishedBy___children' + | 'scheduledIn___release___isImplicit' + | 'scheduledIn___release___isActive' + | 'scheduledIn___release___errorMessage' + | 'scheduledIn___release___description' + | 'scheduledIn___release___title' + | 'scheduledIn___release___publishedAt' + | 'scheduledIn___release___updatedAt' + | 'scheduledIn___release___createdAt' | 'scheduledIn___release___operations' | 'scheduledIn___release___operations___remoteTypeName' | 'scheduledIn___release___operations___remoteId' | 'scheduledIn___release___operations___stage' - | 'scheduledIn___release___operations___createdAt' - | 'scheduledIn___release___operations___updatedAt' - | 'scheduledIn___release___operations___publishedAt' - | 'scheduledIn___release___operations___description' - | 'scheduledIn___release___operations___errorMessage' | 'scheduledIn___release___operations___rawPayload' + | 'scheduledIn___release___operations___errorMessage' + | 'scheduledIn___release___operations___description' + | 'scheduledIn___release___operations___publishedAt' + | 'scheduledIn___release___operations___updatedAt' + | 'scheduledIn___release___operations___createdAt' | 'scheduledIn___release___operations___status' | 'scheduledIn___release___operations___id' | 'scheduledIn___release___operations___children' + | 'scheduledIn___release___publishedBy___remoteTypeName' + | 'scheduledIn___release___publishedBy___remoteId' + | 'scheduledIn___release___publishedBy___stage' + | 'scheduledIn___release___publishedBy___isActive' + | 'scheduledIn___release___publishedBy___picture' + | 'scheduledIn___release___publishedBy___name' + | 'scheduledIn___release___publishedBy___publishedAt' + | 'scheduledIn___release___publishedBy___updatedAt' + | 'scheduledIn___release___publishedBy___createdAt' + | 'scheduledIn___release___publishedBy___kind' + | 'scheduledIn___release___publishedBy___id' + | 'scheduledIn___release___publishedBy___children' + | 'scheduledIn___release___updatedBy___remoteTypeName' + | 'scheduledIn___release___updatedBy___remoteId' + | 'scheduledIn___release___updatedBy___stage' + | 'scheduledIn___release___updatedBy___isActive' + | 'scheduledIn___release___updatedBy___picture' + | 'scheduledIn___release___updatedBy___name' + | 'scheduledIn___release___updatedBy___publishedAt' + | 'scheduledIn___release___updatedBy___updatedAt' + | 'scheduledIn___release___updatedBy___createdAt' + | 'scheduledIn___release___updatedBy___kind' + | 'scheduledIn___release___updatedBy___id' + | 'scheduledIn___release___updatedBy___children' + | 'scheduledIn___release___createdBy___remoteTypeName' + | 'scheduledIn___release___createdBy___remoteId' + | 'scheduledIn___release___createdBy___stage' + | 'scheduledIn___release___createdBy___isActive' + | 'scheduledIn___release___createdBy___picture' + | 'scheduledIn___release___createdBy___name' + | 'scheduledIn___release___createdBy___publishedAt' + | 'scheduledIn___release___createdBy___updatedAt' + | 'scheduledIn___release___createdBy___createdAt' + | 'scheduledIn___release___createdBy___kind' + | 'scheduledIn___release___createdBy___id' + | 'scheduledIn___release___createdBy___children' | 'scheduledIn___release___status' | 'scheduledIn___release___id' | 'scheduledIn___release___parent___id' @@ -9863,6 +11612,82 @@ export type GraphCms_TechnologyFieldsEnum = | 'scheduledIn___release___internal___mediaType' | 'scheduledIn___release___internal___owner' | 'scheduledIn___release___internal___type' + | 'scheduledIn___release___internal___contentFilePath' + | 'scheduledIn___publishedBy___remoteTypeName' + | 'scheduledIn___publishedBy___remoteId' + | 'scheduledIn___publishedBy___stage' + | 'scheduledIn___publishedBy___isActive' + | 'scheduledIn___publishedBy___picture' + | 'scheduledIn___publishedBy___name' + | 'scheduledIn___publishedBy___publishedAt' + | 'scheduledIn___publishedBy___updatedAt' + | 'scheduledIn___publishedBy___createdAt' + | 'scheduledIn___publishedBy___kind' + | 'scheduledIn___publishedBy___id' + | 'scheduledIn___publishedBy___parent___id' + | 'scheduledIn___publishedBy___parent___children' + | 'scheduledIn___publishedBy___children' + | 'scheduledIn___publishedBy___children___id' + | 'scheduledIn___publishedBy___children___children' + | 'scheduledIn___publishedBy___internal___content' + | 'scheduledIn___publishedBy___internal___contentDigest' + | 'scheduledIn___publishedBy___internal___description' + | 'scheduledIn___publishedBy___internal___fieldOwners' + | 'scheduledIn___publishedBy___internal___ignoreType' + | 'scheduledIn___publishedBy___internal___mediaType' + | 'scheduledIn___publishedBy___internal___owner' + | 'scheduledIn___publishedBy___internal___type' + | 'scheduledIn___publishedBy___internal___contentFilePath' + | 'scheduledIn___updatedBy___remoteTypeName' + | 'scheduledIn___updatedBy___remoteId' + | 'scheduledIn___updatedBy___stage' + | 'scheduledIn___updatedBy___isActive' + | 'scheduledIn___updatedBy___picture' + | 'scheduledIn___updatedBy___name' + | 'scheduledIn___updatedBy___publishedAt' + | 'scheduledIn___updatedBy___updatedAt' + | 'scheduledIn___updatedBy___createdAt' + | 'scheduledIn___updatedBy___kind' + | 'scheduledIn___updatedBy___id' + | 'scheduledIn___updatedBy___parent___id' + | 'scheduledIn___updatedBy___parent___children' + | 'scheduledIn___updatedBy___children' + | 'scheduledIn___updatedBy___children___id' + | 'scheduledIn___updatedBy___children___children' + | 'scheduledIn___updatedBy___internal___content' + | 'scheduledIn___updatedBy___internal___contentDigest' + | 'scheduledIn___updatedBy___internal___description' + | 'scheduledIn___updatedBy___internal___fieldOwners' + | 'scheduledIn___updatedBy___internal___ignoreType' + | 'scheduledIn___updatedBy___internal___mediaType' + | 'scheduledIn___updatedBy___internal___owner' + | 'scheduledIn___updatedBy___internal___type' + | 'scheduledIn___updatedBy___internal___contentFilePath' + | 'scheduledIn___createdBy___remoteTypeName' + | 'scheduledIn___createdBy___remoteId' + | 'scheduledIn___createdBy___stage' + | 'scheduledIn___createdBy___isActive' + | 'scheduledIn___createdBy___picture' + | 'scheduledIn___createdBy___name' + | 'scheduledIn___createdBy___publishedAt' + | 'scheduledIn___createdBy___updatedAt' + | 'scheduledIn___createdBy___createdAt' + | 'scheduledIn___createdBy___kind' + | 'scheduledIn___createdBy___id' + | 'scheduledIn___createdBy___parent___id' + | 'scheduledIn___createdBy___parent___children' + | 'scheduledIn___createdBy___children' + | 'scheduledIn___createdBy___children___id' + | 'scheduledIn___createdBy___children___children' + | 'scheduledIn___createdBy___internal___content' + | 'scheduledIn___createdBy___internal___contentDigest' + | 'scheduledIn___createdBy___internal___description' + | 'scheduledIn___createdBy___internal___fieldOwners' + | 'scheduledIn___createdBy___internal___ignoreType' + | 'scheduledIn___createdBy___internal___mediaType' + | 'scheduledIn___createdBy___internal___owner' + | 'scheduledIn___createdBy___internal___type' + | 'scheduledIn___createdBy___internal___contentFilePath' | 'scheduledIn___status' | 'scheduledIn___id' | 'scheduledIn___parent___id' @@ -9879,6 +11704,7 @@ export type GraphCms_TechnologyFieldsEnum = | 'scheduledIn___parent___internal___mediaType' | 'scheduledIn___parent___internal___owner' | 'scheduledIn___parent___internal___type' + | 'scheduledIn___parent___internal___contentFilePath' | 'scheduledIn___children' | 'scheduledIn___children___id' | 'scheduledIn___children___parent___id' @@ -9894,6 +11720,7 @@ export type GraphCms_TechnologyFieldsEnum = | 'scheduledIn___children___internal___mediaType' | 'scheduledIn___children___internal___owner' | 'scheduledIn___children___internal___type' + | 'scheduledIn___children___internal___contentFilePath' | 'scheduledIn___internal___content' | 'scheduledIn___internal___contentDigest' | 'scheduledIn___internal___description' @@ -9902,6 +11729,553 @@ export type GraphCms_TechnologyFieldsEnum = | 'scheduledIn___internal___mediaType' | 'scheduledIn___internal___owner' | 'scheduledIn___internal___type' + | 'scheduledIn___internal___contentFilePath' + | 'id' + | 'parent___id' + | 'parent___parent___id' + | 'parent___parent___parent___id' + | 'parent___parent___parent___children' + | 'parent___parent___children' + | 'parent___parent___children___id' + | 'parent___parent___children___children' + | 'parent___parent___internal___content' + | 'parent___parent___internal___contentDigest' + | 'parent___parent___internal___description' + | 'parent___parent___internal___fieldOwners' + | 'parent___parent___internal___ignoreType' + | 'parent___parent___internal___mediaType' + | 'parent___parent___internal___owner' + | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' + | 'parent___children' + | 'parent___children___id' + | 'parent___children___parent___id' + | 'parent___children___parent___children' + | 'parent___children___children' + | 'parent___children___children___id' + | 'parent___children___children___children' + | 'parent___children___internal___content' + | 'parent___children___internal___contentDigest' + | 'parent___children___internal___description' + | 'parent___children___internal___fieldOwners' + | 'parent___children___internal___ignoreType' + | 'parent___children___internal___mediaType' + | 'parent___children___internal___owner' + | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' + | 'parent___internal___content' + | 'parent___internal___contentDigest' + | 'parent___internal___description' + | 'parent___internal___fieldOwners' + | 'parent___internal___ignoreType' + | 'parent___internal___mediaType' + | 'parent___internal___owner' + | 'parent___internal___type' + | 'parent___internal___contentFilePath' + | 'children' + | 'children___id' + | 'children___parent___id' + | 'children___parent___parent___id' + | 'children___parent___parent___children' + | 'children___parent___children' + | 'children___parent___children___id' + | 'children___parent___children___children' + | 'children___parent___internal___content' + | 'children___parent___internal___contentDigest' + | 'children___parent___internal___description' + | 'children___parent___internal___fieldOwners' + | 'children___parent___internal___ignoreType' + | 'children___parent___internal___mediaType' + | 'children___parent___internal___owner' + | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' + | 'children___children' + | 'children___children___id' + | 'children___children___parent___id' + | 'children___children___parent___children' + | 'children___children___children' + | 'children___children___children___id' + | 'children___children___children___children' + | 'children___children___internal___content' + | 'children___children___internal___contentDigest' + | 'children___children___internal___description' + | 'children___children___internal___fieldOwners' + | 'children___children___internal___ignoreType' + | 'children___children___internal___mediaType' + | 'children___children___internal___owner' + | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' + | 'children___internal___content' + | 'children___internal___contentDigest' + | 'children___internal___description' + | 'children___internal___fieldOwners' + | 'children___internal___ignoreType' + | 'children___internal___mediaType' + | 'children___internal___owner' + | 'children___internal___type' + | 'children___internal___contentFilePath' + | 'internal___content' + | 'internal___contentDigest' + | 'internal___description' + | 'internal___fieldOwners' + | 'internal___ignoreType' + | 'internal___mediaType' + | 'internal___owner' + | 'internal___type' + | 'internal___contentFilePath'; + +export type GraphCms_LinkGroupConnection = { + totalCount: Scalars['Int']; + edges: Array; + nodes: Array; + pageInfo: PageInfo; + distinct: Array; + max?: Maybe; + min?: Maybe; + sum?: Maybe; + group: Array; + field: Scalars['String']; + fieldValue?: Maybe; +}; + +export type GraphCms_LinkGroupConnectionDistinctArgs = { + field: GraphCms_LinkFieldsEnum; +}; + +export type GraphCms_LinkGroupConnectionMaxArgs = { + field: GraphCms_LinkFieldsEnum; +}; + +export type GraphCms_LinkGroupConnectionMinArgs = { + field: GraphCms_LinkFieldsEnum; +}; + +export type GraphCms_LinkGroupConnectionSumArgs = { + field: GraphCms_LinkFieldsEnum; +}; + +export type GraphCms_LinkGroupConnectionGroupArgs = { + skip?: InputMaybe; + limit?: InputMaybe; + field: GraphCms_LinkFieldsEnum; +}; + +export type GraphCms_LinkSortInput = { + fields?: InputMaybe>>; + order?: InputMaybe>>; +}; + +export type GraphCms_ScheduledReleaseConnection = { + totalCount: Scalars['Int']; + edges: Array; + nodes: Array; + pageInfo: PageInfo; + distinct: Array; + max?: Maybe; + min?: Maybe; + sum?: Maybe; + group: Array; +}; + +export type GraphCms_ScheduledReleaseConnectionDistinctArgs = { + field: GraphCms_ScheduledReleaseFieldsEnum; +}; + +export type GraphCms_ScheduledReleaseConnectionMaxArgs = { + field: GraphCms_ScheduledReleaseFieldsEnum; +}; + +export type GraphCms_ScheduledReleaseConnectionMinArgs = { + field: GraphCms_ScheduledReleaseFieldsEnum; +}; + +export type GraphCms_ScheduledReleaseConnectionSumArgs = { + field: GraphCms_ScheduledReleaseFieldsEnum; +}; + +export type GraphCms_ScheduledReleaseConnectionGroupArgs = { + skip?: InputMaybe; + limit?: InputMaybe; + field: GraphCms_ScheduledReleaseFieldsEnum; +}; + +export type GraphCms_ScheduledReleaseEdge = { + next?: Maybe; + node: GraphCms_ScheduledRelease; + previous?: Maybe; +}; + +export type GraphCms_ScheduledReleaseFieldsEnum = + | 'remoteTypeName' + | 'remoteId' + | 'stage' + | 'releaseAt' + | 'isImplicit' + | 'isActive' + | 'errorMessage' + | 'description' + | 'title' + | 'publishedAt' + | 'updatedAt' + | 'createdAt' + | 'operations' + | 'operations___remoteTypeName' + | 'operations___remoteId' + | 'operations___stage' + | 'operations___rawPayload' + | 'operations___errorMessage' + | 'operations___description' + | 'operations___publishedAt' + | 'operations___updatedAt' + | 'operations___createdAt' + | 'operations___release___remoteTypeName' + | 'operations___release___remoteId' + | 'operations___release___stage' + | 'operations___release___releaseAt' + | 'operations___release___isImplicit' + | 'operations___release___isActive' + | 'operations___release___errorMessage' + | 'operations___release___description' + | 'operations___release___title' + | 'operations___release___publishedAt' + | 'operations___release___updatedAt' + | 'operations___release___createdAt' + | 'operations___release___operations' + | 'operations___release___operations___remoteTypeName' + | 'operations___release___operations___remoteId' + | 'operations___release___operations___stage' + | 'operations___release___operations___rawPayload' + | 'operations___release___operations___errorMessage' + | 'operations___release___operations___description' + | 'operations___release___operations___publishedAt' + | 'operations___release___operations___updatedAt' + | 'operations___release___operations___createdAt' + | 'operations___release___operations___status' + | 'operations___release___operations___id' + | 'operations___release___operations___children' + | 'operations___release___publishedBy___remoteTypeName' + | 'operations___release___publishedBy___remoteId' + | 'operations___release___publishedBy___stage' + | 'operations___release___publishedBy___isActive' + | 'operations___release___publishedBy___picture' + | 'operations___release___publishedBy___name' + | 'operations___release___publishedBy___publishedAt' + | 'operations___release___publishedBy___updatedAt' + | 'operations___release___publishedBy___createdAt' + | 'operations___release___publishedBy___kind' + | 'operations___release___publishedBy___id' + | 'operations___release___publishedBy___children' + | 'operations___release___updatedBy___remoteTypeName' + | 'operations___release___updatedBy___remoteId' + | 'operations___release___updatedBy___stage' + | 'operations___release___updatedBy___isActive' + | 'operations___release___updatedBy___picture' + | 'operations___release___updatedBy___name' + | 'operations___release___updatedBy___publishedAt' + | 'operations___release___updatedBy___updatedAt' + | 'operations___release___updatedBy___createdAt' + | 'operations___release___updatedBy___kind' + | 'operations___release___updatedBy___id' + | 'operations___release___updatedBy___children' + | 'operations___release___createdBy___remoteTypeName' + | 'operations___release___createdBy___remoteId' + | 'operations___release___createdBy___stage' + | 'operations___release___createdBy___isActive' + | 'operations___release___createdBy___picture' + | 'operations___release___createdBy___name' + | 'operations___release___createdBy___publishedAt' + | 'operations___release___createdBy___updatedAt' + | 'operations___release___createdBy___createdAt' + | 'operations___release___createdBy___kind' + | 'operations___release___createdBy___id' + | 'operations___release___createdBy___children' + | 'operations___release___status' + | 'operations___release___id' + | 'operations___release___parent___id' + | 'operations___release___parent___children' + | 'operations___release___children' + | 'operations___release___children___id' + | 'operations___release___children___children' + | 'operations___release___internal___content' + | 'operations___release___internal___contentDigest' + | 'operations___release___internal___description' + | 'operations___release___internal___fieldOwners' + | 'operations___release___internal___ignoreType' + | 'operations___release___internal___mediaType' + | 'operations___release___internal___owner' + | 'operations___release___internal___type' + | 'operations___release___internal___contentFilePath' + | 'operations___publishedBy___remoteTypeName' + | 'operations___publishedBy___remoteId' + | 'operations___publishedBy___stage' + | 'operations___publishedBy___isActive' + | 'operations___publishedBy___picture' + | 'operations___publishedBy___name' + | 'operations___publishedBy___publishedAt' + | 'operations___publishedBy___updatedAt' + | 'operations___publishedBy___createdAt' + | 'operations___publishedBy___kind' + | 'operations___publishedBy___id' + | 'operations___publishedBy___parent___id' + | 'operations___publishedBy___parent___children' + | 'operations___publishedBy___children' + | 'operations___publishedBy___children___id' + | 'operations___publishedBy___children___children' + | 'operations___publishedBy___internal___content' + | 'operations___publishedBy___internal___contentDigest' + | 'operations___publishedBy___internal___description' + | 'operations___publishedBy___internal___fieldOwners' + | 'operations___publishedBy___internal___ignoreType' + | 'operations___publishedBy___internal___mediaType' + | 'operations___publishedBy___internal___owner' + | 'operations___publishedBy___internal___type' + | 'operations___publishedBy___internal___contentFilePath' + | 'operations___updatedBy___remoteTypeName' + | 'operations___updatedBy___remoteId' + | 'operations___updatedBy___stage' + | 'operations___updatedBy___isActive' + | 'operations___updatedBy___picture' + | 'operations___updatedBy___name' + | 'operations___updatedBy___publishedAt' + | 'operations___updatedBy___updatedAt' + | 'operations___updatedBy___createdAt' + | 'operations___updatedBy___kind' + | 'operations___updatedBy___id' + | 'operations___updatedBy___parent___id' + | 'operations___updatedBy___parent___children' + | 'operations___updatedBy___children' + | 'operations___updatedBy___children___id' + | 'operations___updatedBy___children___children' + | 'operations___updatedBy___internal___content' + | 'operations___updatedBy___internal___contentDigest' + | 'operations___updatedBy___internal___description' + | 'operations___updatedBy___internal___fieldOwners' + | 'operations___updatedBy___internal___ignoreType' + | 'operations___updatedBy___internal___mediaType' + | 'operations___updatedBy___internal___owner' + | 'operations___updatedBy___internal___type' + | 'operations___updatedBy___internal___contentFilePath' + | 'operations___createdBy___remoteTypeName' + | 'operations___createdBy___remoteId' + | 'operations___createdBy___stage' + | 'operations___createdBy___isActive' + | 'operations___createdBy___picture' + | 'operations___createdBy___name' + | 'operations___createdBy___publishedAt' + | 'operations___createdBy___updatedAt' + | 'operations___createdBy___createdAt' + | 'operations___createdBy___kind' + | 'operations___createdBy___id' + | 'operations___createdBy___parent___id' + | 'operations___createdBy___parent___children' + | 'operations___createdBy___children' + | 'operations___createdBy___children___id' + | 'operations___createdBy___children___children' + | 'operations___createdBy___internal___content' + | 'operations___createdBy___internal___contentDigest' + | 'operations___createdBy___internal___description' + | 'operations___createdBy___internal___fieldOwners' + | 'operations___createdBy___internal___ignoreType' + | 'operations___createdBy___internal___mediaType' + | 'operations___createdBy___internal___owner' + | 'operations___createdBy___internal___type' + | 'operations___createdBy___internal___contentFilePath' + | 'operations___status' + | 'operations___id' + | 'operations___parent___id' + | 'operations___parent___parent___id' + | 'operations___parent___parent___children' + | 'operations___parent___children' + | 'operations___parent___children___id' + | 'operations___parent___children___children' + | 'operations___parent___internal___content' + | 'operations___parent___internal___contentDigest' + | 'operations___parent___internal___description' + | 'operations___parent___internal___fieldOwners' + | 'operations___parent___internal___ignoreType' + | 'operations___parent___internal___mediaType' + | 'operations___parent___internal___owner' + | 'operations___parent___internal___type' + | 'operations___parent___internal___contentFilePath' + | 'operations___children' + | 'operations___children___id' + | 'operations___children___parent___id' + | 'operations___children___parent___children' + | 'operations___children___children' + | 'operations___children___children___id' + | 'operations___children___children___children' + | 'operations___children___internal___content' + | 'operations___children___internal___contentDigest' + | 'operations___children___internal___description' + | 'operations___children___internal___fieldOwners' + | 'operations___children___internal___ignoreType' + | 'operations___children___internal___mediaType' + | 'operations___children___internal___owner' + | 'operations___children___internal___type' + | 'operations___children___internal___contentFilePath' + | 'operations___internal___content' + | 'operations___internal___contentDigest' + | 'operations___internal___description' + | 'operations___internal___fieldOwners' + | 'operations___internal___ignoreType' + | 'operations___internal___mediaType' + | 'operations___internal___owner' + | 'operations___internal___type' + | 'operations___internal___contentFilePath' + | 'publishedBy___remoteTypeName' + | 'publishedBy___remoteId' + | 'publishedBy___stage' + | 'publishedBy___isActive' + | 'publishedBy___picture' + | 'publishedBy___name' + | 'publishedBy___publishedAt' + | 'publishedBy___updatedAt' + | 'publishedBy___createdAt' + | 'publishedBy___kind' + | 'publishedBy___id' + | 'publishedBy___parent___id' + | 'publishedBy___parent___parent___id' + | 'publishedBy___parent___parent___children' + | 'publishedBy___parent___children' + | 'publishedBy___parent___children___id' + | 'publishedBy___parent___children___children' + | 'publishedBy___parent___internal___content' + | 'publishedBy___parent___internal___contentDigest' + | 'publishedBy___parent___internal___description' + | 'publishedBy___parent___internal___fieldOwners' + | 'publishedBy___parent___internal___ignoreType' + | 'publishedBy___parent___internal___mediaType' + | 'publishedBy___parent___internal___owner' + | 'publishedBy___parent___internal___type' + | 'publishedBy___parent___internal___contentFilePath' + | 'publishedBy___children' + | 'publishedBy___children___id' + | 'publishedBy___children___parent___id' + | 'publishedBy___children___parent___children' + | 'publishedBy___children___children' + | 'publishedBy___children___children___id' + | 'publishedBy___children___children___children' + | 'publishedBy___children___internal___content' + | 'publishedBy___children___internal___contentDigest' + | 'publishedBy___children___internal___description' + | 'publishedBy___children___internal___fieldOwners' + | 'publishedBy___children___internal___ignoreType' + | 'publishedBy___children___internal___mediaType' + | 'publishedBy___children___internal___owner' + | 'publishedBy___children___internal___type' + | 'publishedBy___children___internal___contentFilePath' + | 'publishedBy___internal___content' + | 'publishedBy___internal___contentDigest' + | 'publishedBy___internal___description' + | 'publishedBy___internal___fieldOwners' + | 'publishedBy___internal___ignoreType' + | 'publishedBy___internal___mediaType' + | 'publishedBy___internal___owner' + | 'publishedBy___internal___type' + | 'publishedBy___internal___contentFilePath' + | 'updatedBy___remoteTypeName' + | 'updatedBy___remoteId' + | 'updatedBy___stage' + | 'updatedBy___isActive' + | 'updatedBy___picture' + | 'updatedBy___name' + | 'updatedBy___publishedAt' + | 'updatedBy___updatedAt' + | 'updatedBy___createdAt' + | 'updatedBy___kind' + | 'updatedBy___id' + | 'updatedBy___parent___id' + | 'updatedBy___parent___parent___id' + | 'updatedBy___parent___parent___children' + | 'updatedBy___parent___children' + | 'updatedBy___parent___children___id' + | 'updatedBy___parent___children___children' + | 'updatedBy___parent___internal___content' + | 'updatedBy___parent___internal___contentDigest' + | 'updatedBy___parent___internal___description' + | 'updatedBy___parent___internal___fieldOwners' + | 'updatedBy___parent___internal___ignoreType' + | 'updatedBy___parent___internal___mediaType' + | 'updatedBy___parent___internal___owner' + | 'updatedBy___parent___internal___type' + | 'updatedBy___parent___internal___contentFilePath' + | 'updatedBy___children' + | 'updatedBy___children___id' + | 'updatedBy___children___parent___id' + | 'updatedBy___children___parent___children' + | 'updatedBy___children___children' + | 'updatedBy___children___children___id' + | 'updatedBy___children___children___children' + | 'updatedBy___children___internal___content' + | 'updatedBy___children___internal___contentDigest' + | 'updatedBy___children___internal___description' + | 'updatedBy___children___internal___fieldOwners' + | 'updatedBy___children___internal___ignoreType' + | 'updatedBy___children___internal___mediaType' + | 'updatedBy___children___internal___owner' + | 'updatedBy___children___internal___type' + | 'updatedBy___children___internal___contentFilePath' + | 'updatedBy___internal___content' + | 'updatedBy___internal___contentDigest' + | 'updatedBy___internal___description' + | 'updatedBy___internal___fieldOwners' + | 'updatedBy___internal___ignoreType' + | 'updatedBy___internal___mediaType' + | 'updatedBy___internal___owner' + | 'updatedBy___internal___type' + | 'updatedBy___internal___contentFilePath' + | 'createdBy___remoteTypeName' + | 'createdBy___remoteId' + | 'createdBy___stage' + | 'createdBy___isActive' + | 'createdBy___picture' + | 'createdBy___name' + | 'createdBy___publishedAt' + | 'createdBy___updatedAt' + | 'createdBy___createdAt' + | 'createdBy___kind' + | 'createdBy___id' + | 'createdBy___parent___id' + | 'createdBy___parent___parent___id' + | 'createdBy___parent___parent___children' + | 'createdBy___parent___children' + | 'createdBy___parent___children___id' + | 'createdBy___parent___children___children' + | 'createdBy___parent___internal___content' + | 'createdBy___parent___internal___contentDigest' + | 'createdBy___parent___internal___description' + | 'createdBy___parent___internal___fieldOwners' + | 'createdBy___parent___internal___ignoreType' + | 'createdBy___parent___internal___mediaType' + | 'createdBy___parent___internal___owner' + | 'createdBy___parent___internal___type' + | 'createdBy___parent___internal___contentFilePath' + | 'createdBy___children' + | 'createdBy___children___id' + | 'createdBy___children___parent___id' + | 'createdBy___children___parent___children' + | 'createdBy___children___children' + | 'createdBy___children___children___id' + | 'createdBy___children___children___children' + | 'createdBy___children___internal___content' + | 'createdBy___children___internal___contentDigest' + | 'createdBy___children___internal___description' + | 'createdBy___children___internal___fieldOwners' + | 'createdBy___children___internal___ignoreType' + | 'createdBy___children___internal___mediaType' + | 'createdBy___children___internal___owner' + | 'createdBy___children___internal___type' + | 'createdBy___children___internal___contentFilePath' + | 'createdBy___internal___content' + | 'createdBy___internal___contentDigest' + | 'createdBy___internal___description' + | 'createdBy___internal___fieldOwners' + | 'createdBy___internal___ignoreType' + | 'createdBy___internal___mediaType' + | 'createdBy___internal___owner' + | 'createdBy___internal___type' + | 'createdBy___internal___contentFilePath' + | 'status' | 'id' | 'parent___id' | 'parent___parent___id' @@ -9918,6 +12292,7 @@ export type GraphCms_TechnologyFieldsEnum = | 'parent___parent___internal___mediaType' | 'parent___parent___internal___owner' | 'parent___parent___internal___type' + | 'parent___parent___internal___contentFilePath' | 'parent___children' | 'parent___children___id' | 'parent___children___parent___id' @@ -9933,6 +12308,7 @@ export type GraphCms_TechnologyFieldsEnum = | 'parent___children___internal___mediaType' | 'parent___children___internal___owner' | 'parent___children___internal___type' + | 'parent___children___internal___contentFilePath' | 'parent___internal___content' | 'parent___internal___contentDigest' | 'parent___internal___description' @@ -9941,6 +12317,7 @@ export type GraphCms_TechnologyFieldsEnum = | 'parent___internal___mediaType' | 'parent___internal___owner' | 'parent___internal___type' + | 'parent___internal___contentFilePath' | 'children' | 'children___id' | 'children___parent___id' @@ -9957,6 +12334,7 @@ export type GraphCms_TechnologyFieldsEnum = | 'children___parent___internal___mediaType' | 'children___parent___internal___owner' | 'children___parent___internal___type' + | 'children___parent___internal___contentFilePath' | 'children___children' | 'children___children___id' | 'children___children___parent___id' @@ -9972,6 +12350,7 @@ export type GraphCms_TechnologyFieldsEnum = | 'children___children___internal___mediaType' | 'children___children___internal___owner' | 'children___children___internal___type' + | 'children___children___internal___contentFilePath' | 'children___internal___content' | 'children___internal___contentDigest' | 'children___internal___description' @@ -9980,6 +12359,7 @@ export type GraphCms_TechnologyFieldsEnum = | 'children___internal___mediaType' | 'children___internal___owner' | 'children___internal___type' + | 'children___internal___contentFilePath' | 'internal___content' | 'internal___contentDigest' | 'internal___description' @@ -9987,131 +12367,244 @@ export type GraphCms_TechnologyFieldsEnum = | 'internal___ignoreType' | 'internal___mediaType' | 'internal___owner' - | 'internal___type'; + | 'internal___type' + | 'internal___contentFilePath'; -export type GraphCms_TechnologyGroupConnection = { +export type GraphCms_ScheduledReleaseGroupConnection = { totalCount: Scalars['Int']; - edges: Array; - nodes: Array; + edges: Array; + nodes: Array; pageInfo: PageInfo; distinct: Array; max?: Maybe; min?: Maybe; sum?: Maybe; - group: Array; + group: Array; field: Scalars['String']; fieldValue?: Maybe; }; - -export type GraphCms_TechnologyGroupConnectionDistinctArgs = { - field: GraphCms_TechnologyFieldsEnum; +export type GraphCms_ScheduledReleaseGroupConnectionDistinctArgs = { + field: GraphCms_ScheduledReleaseFieldsEnum; }; - -export type GraphCms_TechnologyGroupConnectionMaxArgs = { - field: GraphCms_TechnologyFieldsEnum; +export type GraphCms_ScheduledReleaseGroupConnectionMaxArgs = { + field: GraphCms_ScheduledReleaseFieldsEnum; }; - -export type GraphCms_TechnologyGroupConnectionMinArgs = { - field: GraphCms_TechnologyFieldsEnum; +export type GraphCms_ScheduledReleaseGroupConnectionMinArgs = { + field: GraphCms_ScheduledReleaseFieldsEnum; }; - -export type GraphCms_TechnologyGroupConnectionSumArgs = { - field: GraphCms_TechnologyFieldsEnum; +export type GraphCms_ScheduledReleaseGroupConnectionSumArgs = { + field: GraphCms_ScheduledReleaseFieldsEnum; }; - -export type GraphCms_TechnologyGroupConnectionGroupArgs = { +export type GraphCms_ScheduledReleaseGroupConnectionGroupArgs = { skip?: InputMaybe; limit?: InputMaybe; - field: GraphCms_TechnologyFieldsEnum; -}; - -export type GraphCms_TechnologyFilterInput = { - remoteTypeName?: InputMaybe; - remoteId?: InputMaybe; - stage?: InputMaybe; - createdAt?: InputMaybe; - updatedAt?: InputMaybe; - publishedAt?: InputMaybe; - title?: InputMaybe; - description?: InputMaybe; - backgroundColor?: InputMaybe; - createdBy?: InputMaybe; - updatedBy?: InputMaybe; - publishedBy?: InputMaybe; - icon?: InputMaybe; - scheduledIn?: InputMaybe; - id?: InputMaybe; - parent?: InputMaybe; - children?: InputMaybe; - internal?: InputMaybe; + field: GraphCms_ScheduledReleaseFieldsEnum; }; -export type GraphCms_TechnologySortInput = { - fields?: InputMaybe>>; +export type GraphCms_ScheduledReleaseSortInput = { + fields?: InputMaybe>>; order?: InputMaybe>>; }; -export type CvAssetsQueryVariables = Exact<{ [key: string]: never; }>; +export type GetSiteMetadataQueryVariables = Exact<{ [key: string]: never }>; +export type GetSiteMetadataQuery = { + site?: { + siteMetadata?: { + title?: string | null; + description?: string | null; + image?: string | null; + siteUrl?: string | null; + } | null; + } | null; +}; -export type CvAssetsQuery = { allGraphCmsAsset: { nodes: Array<{ url: string, id: string, fileName: string }> } }; - -export type AllAboutDetailsQueryVariables = Exact<{ [key: string]: never; }>; +export type CvAssetsQueryVariables = Exact<{ [key: string]: never }>; +export type CvAssetsQuery = { allGraphCmsAsset: { nodes: Array<{ url: string; id: string; fileName: string }> } }; -export type AllAboutDetailsQuery = { allGraphCmsSpeciality: { nodes: Array<{ id: string, title: string, description: { html: string }, icon: { id: string, url: string } }> }, allGraphCmsTechnology: { nodes: Array<{ id: string, title: string, description: { html: string }, icon: { id: string, url: string }, backgroundColor: { hex: any } }> } }; +export type AllAboutDetailsQueryVariables = Exact<{ [key: string]: never }>; -export type AllBlogItemsQueryVariables = Exact<{ [key: string]: never; }>; +export type AllAboutDetailsQuery = { + allGraphCmsSpeciality: { + nodes: Array<{ id: string; title: string; description: { html: string }; icon: { id: string; url: string } }>; + }; + allGraphCmsTechnology: { + nodes: Array<{ + id: string; + title: string; + description: { html: string }; + icon: { id: string; url: string }; + backgroundColor: { hex: any }; + }>; + }; +}; +export type AllBlogItemsQueryVariables = Exact<{ [key: string]: never }>; -export type AllBlogItemsQuery = { allGraphCmsBlog: { nodes: Array<{ id: string, title: string, description: string, type: GraphCms_BlogType, categories: Array, blogPath?: string | null, headerImage: { id: string, url: string } }> } }; +export type AllBlogItemsQuery = { + allGraphCmsBlog: { + nodes: Array<{ + id: string; + title: string; + description: string; + type: GraphCms_BlogType; + categories: Array; + blogPath?: string | null; + headerImage: { id: string; url: string }; + }>; + }; +}; export type BlogPostQueryVariables = Exact<{ id: Scalars['String']; }>; - -export type BlogPostQuery = { graphCmsBlog?: { id: string, title: string, description: string, type: GraphCms_BlogType, categories: Array, publishedAt?: any | null, headerImage: { id: string, url: string }, content: { html: string } } | null }; - -export type AllPortfolioItemsQueryVariables = Exact<{ [key: string]: never; }>; - - -export type AllPortfolioItemsQuery = { allGraphCmsPortfolioItem: { nodes: Array<{ id: string, title: string, description: string, portfolioPath?: string | null, carouselImages: Array<{ id: string, url: string }> }> } }; +export type BlogPostQuery = { + graphCmsBlog?: { + id: string; + title: string; + description: string; + type: GraphCms_BlogType; + categories: Array; + publishedAt?: any | null; + headerImage: { id: string; url: string }; + content: { html: string }; + } | null; +}; + +export type AllPortfolioItemsQueryVariables = Exact<{ [key: string]: never }>; + +export type AllPortfolioItemsQuery = { + allGraphCmsPortfolioItem: { + nodes: Array<{ + id: string; + title: string; + description: string; + portfolioPath?: string | null; + carouselImages: Array<{ id: string; url: string }>; + }>; + }; +}; export type PortfolioItemQueryVariables = Exact<{ id: Scalars['String']; }>; - -export type PortfolioItemQuery = { graphCmsPortfolioItem?: { id: string, title: string, description: string, techSheet: Array, about?: { html: string } | null, carouselImages: Array<{ id: string, url: string }>, links: Array<{ id: string, title: string, url: string, type?: string | null }> } | null }; - -export type GatsbyImageSharpFixedFragment = { base64?: string | null, width: number, height: number, src: string, srcSet: string }; - -export type GatsbyImageSharpFixed_TracedSvgFragment = { tracedSVG?: string | null, width: number, height: number, src: string, srcSet: string }; - -export type GatsbyImageSharpFixed_WithWebpFragment = { base64?: string | null, width: number, height: number, src: string, srcSet: string, srcWebp?: string | null, srcSetWebp?: string | null }; - -export type GatsbyImageSharpFixed_WithWebp_TracedSvgFragment = { tracedSVG?: string | null, width: number, height: number, src: string, srcSet: string, srcWebp?: string | null, srcSetWebp?: string | null }; - -export type GatsbyImageSharpFixed_NoBase64Fragment = { width: number, height: number, src: string, srcSet: string }; - -export type GatsbyImageSharpFixed_WithWebp_NoBase64Fragment = { width: number, height: number, src: string, srcSet: string, srcWebp?: string | null, srcSetWebp?: string | null }; - -export type GatsbyImageSharpFluidFragment = { base64?: string | null, aspectRatio: number, src: string, srcSet: string, sizes: string }; - -export type GatsbyImageSharpFluidLimitPresentationSizeFragment = { maxHeight: number, maxWidth: number }; - -export type GatsbyImageSharpFluid_TracedSvgFragment = { tracedSVG?: string | null, aspectRatio: number, src: string, srcSet: string, sizes: string }; - -export type GatsbyImageSharpFluid_WithWebpFragment = { base64?: string | null, aspectRatio: number, src: string, srcSet: string, srcWebp?: string | null, srcSetWebp?: string | null, sizes: string }; - -export type GatsbyImageSharpFluid_WithWebp_TracedSvgFragment = { tracedSVG?: string | null, aspectRatio: number, src: string, srcSet: string, srcWebp?: string | null, srcSetWebp?: string | null, sizes: string }; - -export type GatsbyImageSharpFluid_NoBase64Fragment = { aspectRatio: number, src: string, srcSet: string, sizes: string }; - -export type GatsbyImageSharpFluid_WithWebp_NoBase64Fragment = { aspectRatio: number, src: string, srcSet: string, srcWebp?: string | null, srcSetWebp?: string | null, sizes: string }; +export type PortfolioItemQuery = { + graphCmsPortfolioItem?: { + id: string; + title: string; + description: string; + techSheet: Array; + about: { html: string }; + carouselImages: Array<{ id: string; url: string }>; + links: Array<{ id: string; title: string; url: string; type?: GraphCms_LinkType | null }>; + } | null; +}; + +export type GatsbyImageSharpFixedFragment = { + base64?: string | null; + width: number; + height: number; + src: string; + srcSet: string; +}; + +export type GatsbyImageSharpFixed_TracedSvgFragment = { + tracedSVG?: string | null; + width: number; + height: number; + src: string; + srcSet: string; +}; + +export type GatsbyImageSharpFixed_WithWebpFragment = { + base64?: string | null; + width: number; + height: number; + src: string; + srcSet: string; + srcWebp?: string | null; + srcSetWebp?: string | null; +}; + +export type GatsbyImageSharpFixed_WithWebp_TracedSvgFragment = { + tracedSVG?: string | null; + width: number; + height: number; + src: string; + srcSet: string; + srcWebp?: string | null; + srcSetWebp?: string | null; +}; + +export type GatsbyImageSharpFixed_NoBase64Fragment = { width: number; height: number; src: string; srcSet: string }; + +export type GatsbyImageSharpFixed_WithWebp_NoBase64Fragment = { + width: number; + height: number; + src: string; + srcSet: string; + srcWebp?: string | null; + srcSetWebp?: string | null; +}; + +export type GatsbyImageSharpFluidFragment = { + base64?: string | null; + aspectRatio: number; + src: string; + srcSet: string; + sizes: string; +}; + +export type GatsbyImageSharpFluidLimitPresentationSizeFragment = { maxHeight: number; maxWidth: number }; + +export type GatsbyImageSharpFluid_TracedSvgFragment = { + tracedSVG?: string | null; + aspectRatio: number; + src: string; + srcSet: string; + sizes: string; +}; + +export type GatsbyImageSharpFluid_WithWebpFragment = { + base64?: string | null; + aspectRatio: number; + src: string; + srcSet: string; + srcWebp?: string | null; + srcSetWebp?: string | null; + sizes: string; +}; + +export type GatsbyImageSharpFluid_WithWebp_TracedSvgFragment = { + tracedSVG?: string | null; + aspectRatio: number; + src: string; + srcSet: string; + srcWebp?: string | null; + srcSetWebp?: string | null; + sizes: string; +}; + +export type GatsbyImageSharpFluid_NoBase64Fragment = { + aspectRatio: number; + src: string; + srcSet: string; + sizes: string; +}; + +export type GatsbyImageSharpFluid_WithWebp_NoBase64Fragment = { + aspectRatio: number; + src: string; + srcSet: string; + srcWebp?: string | null; + srcSetWebp?: string | null; + sizes: string; +}; diff --git a/gatsby-frontend/package.json b/gatsby-frontend/package.json index 376700f..9555bf3 100644 --- a/gatsby-frontend/package.json +++ b/gatsby-frontend/package.json @@ -9,7 +9,7 @@ ], "scripts": { "develop": "gatsby develop", - "start": "./initialisePageData.sh && gatsby develop", + "start": "./initialisePageData.sh && gatsby develop --verbose", "build": "gatsby build", "serve": "gatsby serve", "clean": "gatsby clean", @@ -44,7 +44,7 @@ "gatsby-plugin-static-page-modal": "^1.0.4", "gatsby-plugin-styled-components": "^5.4.0", "gatsby-source-filesystem": "^4.4.0", - "gatsby-source-graphcms": "^2.7.0-next.1", + "gatsby-source-graphcms": "^2.8.0", "gatsby-transformer-sharp": "^4.17.0", "overlayscrollbars": "^1.13.1", "overlayscrollbars-react": "^0.2.3", @@ -68,7 +68,6 @@ "@typescript-eslint/eslint-plugin": "^5.8.0", "@typescript-eslint/parser": "^5.8.0", "eslint": "^8.5.0", - "eslint-loader": "^4.0.2", "eslint-webpack-plugin": "^3.1.1", "gatsby-plugin-eslint": "^4.0.2", "prettier": "^2.7.1" diff --git a/gatsby-frontend/src/library/utils/useSiteMetadata.ts b/gatsby-frontend/src/library/utils/useSiteMetadata.ts index 53235f6..37f7ab5 100644 --- a/gatsby-frontend/src/library/utils/useSiteMetadata.ts +++ b/gatsby-frontend/src/library/utils/useSiteMetadata.ts @@ -2,7 +2,7 @@ import { graphql, useStaticQuery } from 'gatsby'; const useSiteMetadata = () => { const data = useStaticQuery(graphql` - query { + query getSiteMetadata { site { siteMetadata { title diff --git a/gatsby-frontend/yarn.lock b/gatsby-frontend/yarn.lock index 6fe5b20..3c62b47 100644 --- a/gatsby-frontend/yarn.lock +++ b/gatsby-frontend/yarn.lock @@ -2,6 +2,19 @@ # yarn lockfile v1 +"@aashutoshrathi/word-wrap@^1.2.3": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" + integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== + +"@ampproject/remapping@^2.2.0": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" + integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" + "@ardatan/relay-compiler@12.0.0": version "12.0.0" resolved "https://registry.yarnpkg.com/@ardatan/relay-compiler/-/relay-compiler-12.0.0.tgz#2e4cca43088e807adc63450e8cab037020e91106" @@ -32,757 +45,326 @@ dependencies: "@babel/highlight" "^7.10.4" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.14.0", "@babel/code-frame@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.0.tgz#0dfc80309beec8411e65e706461c408b0bb9b431" - integrity sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA== - dependencies: - "@babel/highlight" "^7.16.0" - -"@babel/code-frame@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" - integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== - dependencies: - "@babel/highlight" "^7.16.7" - -"@babel/code-frame@^7.18.6", "@babel/code-frame@^7.8.3": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" - integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== - dependencies: - "@babel/highlight" "^7.18.6" - -"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.16.0", "@babel/compat-data@^7.16.4": - version "7.16.4" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.16.4.tgz#081d6bbc336ec5c2435c6346b2ae1fb98b5ac68e" - integrity sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q== - -"@babel/core@^7.14.0": - version "7.16.12" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.16.12.tgz#5edc53c1b71e54881315923ae2aedea2522bb784" - integrity sha512-dK5PtG1uiN2ikk++5OzSYsitZKny4wOCD0nrO4TqnW4BVBTQ2NGS3NgilvT/TEyxTST7LNyWV/T4tXDoD3fOgg== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.14.0", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.22.10", "@babel/code-frame@^7.22.5", "@babel/code-frame@^7.8.3": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.10.tgz#1c20e612b768fefa75f6e90d6ecb86329247f0a3" + integrity sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA== dependencies: - "@babel/code-frame" "^7.16.7" - "@babel/generator" "^7.16.8" - "@babel/helper-compilation-targets" "^7.16.7" - "@babel/helper-module-transforms" "^7.16.7" - "@babel/helpers" "^7.16.7" - "@babel/parser" "^7.16.12" - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.16.10" - "@babel/types" "^7.16.8" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.1.2" - semver "^6.3.0" - source-map "^0.5.0" + "@babel/highlight" "^7.22.10" + chalk "^2.4.2" -"@babel/core@^7.15.5", "@babel/core@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.16.5.tgz#924aa9e1ae56e1e55f7184c8bf073a50d8677f5c" - integrity sha512-wUcenlLzuWMZ9Zt8S0KmFwGlH6QKRh3vsm/dhDA3CHkiTA45YuG1XkHRcNRl73EFPXDp/d5kVOU0/y7x2w6OaQ== - dependencies: - "@babel/code-frame" "^7.16.0" - "@babel/generator" "^7.16.5" - "@babel/helper-compilation-targets" "^7.16.3" - "@babel/helper-module-transforms" "^7.16.5" - "@babel/helpers" "^7.16.5" - "@babel/parser" "^7.16.5" - "@babel/template" "^7.16.0" - "@babel/traverse" "^7.16.5" - "@babel/types" "^7.16.0" +"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.9.tgz#71cdb00a1ce3a329ce4cbec3a44f9fef35669730" + integrity sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ== + +"@babel/core@^7.14.0", "@babel/core@^7.15.5", "@babel/core@^7.16.5": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.10.tgz#aad442c7bcd1582252cb4576747ace35bc122f35" + integrity sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.22.10" + "@babel/generator" "^7.22.10" + "@babel/helper-compilation-targets" "^7.22.10" + "@babel/helper-module-transforms" "^7.22.9" + "@babel/helpers" "^7.22.10" + "@babel/parser" "^7.22.10" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.10" + "@babel/types" "^7.22.10" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" - json5 "^2.1.2" - semver "^6.3.0" - source-map "^0.5.0" + json5 "^2.2.2" + semver "^6.3.1" "@babel/eslint-parser@^7.15.4", "@babel/eslint-parser@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.16.5.tgz#48d3485091d6e36915358e4c0d0b2ebe6da90462" - integrity sha512-mUqYa46lgWqHKQ33Q6LNCGp/wPR3eqOYTUixHFsfrSQqRxH0+WOzca75iEjFr5RDGH1dDz622LaHhLOzOuQRUA== + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.22.10.tgz#bfdf3d1b32ad573fe7c1c3447e0b485e3a41fd09" + integrity sha512-0J8DNPRXQRLeR9rPaUMM3fA+RbixjnVLe/MRMYCkp3hzgsSuxCHQ8NN8xQG1wIHKJ4a1DTROTvFJdW+B5/eOsg== dependencies: - eslint-scope "^5.1.1" + "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1" eslint-visitor-keys "^2.1.0" - semver "^6.3.0" + semver "^6.3.1" -"@babel/generator@^7.14.0", "@babel/generator@^7.16.8": - version "7.16.8" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.16.8.tgz#359d44d966b8cd059d543250ce79596f792f2ebe" - integrity sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw== +"@babel/generator@^7.14.0", "@babel/generator@^7.16.8", "@babel/generator@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.10.tgz#c92254361f398e160645ac58831069707382b722" + integrity sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A== dependencies: - "@babel/types" "^7.16.8" - jsesc "^2.5.1" - source-map "^0.5.0" - -"@babel/generator@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.16.5.tgz#26e1192eb8f78e0a3acaf3eede3c6fc96d22bedf" - integrity sha512-kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA== - dependencies: - "@babel/types" "^7.16.0" - jsesc "^2.5.1" - source-map "^0.5.0" - -"@babel/generator@^7.18.10": - version "7.18.12" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.12.tgz#fa58daa303757bd6f5e4bbca91b342040463d9f4" - integrity sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg== - dependencies: - "@babel/types" "^7.18.10" + "@babel/types" "^7.22.10" "@jridgewell/gen-mapping" "^0.3.2" + "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" -"@babel/helper-annotate-as-pure@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz#9a1f0ebcda53d9a2d00108c4ceace6a5d5f1f08d" - integrity sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg== - dependencies: - "@babel/types" "^7.16.0" - -"@babel/helper-annotate-as-pure@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz#bb2339a7534a9c128e3102024c60760a3a7f3862" - integrity sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-annotate-as-pure@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" - integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-builder-binary-assignment-operator-visitor@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.5.tgz#a8429d064dce8207194b8bf05a70a9ea828746af" - integrity sha512-3JEA9G5dmmnIWdzaT9d0NmFRgYnWUThLsDaL7982H0XqqWr56lRrsmwheXFMjR+TMl7QMBb6mzy9kvgr1lRLUA== - dependencies: - "@babel/helper-explode-assignable-expression" "^7.16.0" - "@babel/types" "^7.16.0" - -"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.3": - version "7.16.3" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz#5b480cd13f68363df6ec4dc8ac8e2da11363cbf0" - integrity sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA== - dependencies: - "@babel/compat-data" "^7.16.0" - "@babel/helper-validator-option" "^7.14.5" - browserslist "^4.17.5" - semver "^6.3.0" - -"@babel/helper-compilation-targets@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz#06e66c5f299601e6c7da350049315e83209d551b" - integrity sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA== - dependencies: - "@babel/compat-data" "^7.16.4" - "@babel/helper-validator-option" "^7.16.7" - browserslist "^4.17.5" - semver "^6.3.0" - -"@babel/helper-create-class-features-plugin@^7.16.0", "@babel/helper-create-class-features-plugin@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.5.tgz#5d1bcd096792c1ebec6249eebc6358eec55d0cad" - integrity sha512-NEohnYA7mkB8L5JhU7BLwcBdU3j83IziR9aseMueWGeAjblbul3zzb8UvJ3a1zuBiqCMObzCJHFqKIQE6hTVmg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.16.0" - "@babel/helper-environment-visitor" "^7.16.5" - "@babel/helper-function-name" "^7.16.0" - "@babel/helper-member-expression-to-functions" "^7.16.5" - "@babel/helper-optimise-call-expression" "^7.16.0" - "@babel/helper-replace-supers" "^7.16.5" - "@babel/helper-split-export-declaration" "^7.16.0" - -"@babel/helper-create-class-features-plugin@^7.16.7": - version "7.16.10" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.10.tgz#8a6959b9cc818a88815ba3c5474619e9c0f2c21c" - integrity sha512-wDeej0pu3WN/ffTxMNCPW5UCiOav8IcLRxSIyp/9+IF2xJUM9h/OYjg0IJLHaL6F8oU8kqMz9nc1vryXhMsgXg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - "@babel/helper-environment-visitor" "^7.16.7" - "@babel/helper-function-name" "^7.16.7" - "@babel/helper-member-expression-to-functions" "^7.16.7" - "@babel/helper-optimise-call-expression" "^7.16.7" - "@babel/helper-replace-supers" "^7.16.7" - "@babel/helper-split-export-declaration" "^7.16.7" - -"@babel/helper-create-class-features-plugin@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz#d802ee16a64a9e824fcbf0a2ffc92f19d58550ce" - integrity sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.18.9" - "@babel/helper-member-expression-to-functions" "^7.18.9" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-replace-supers" "^7.18.9" - "@babel/helper-split-export-declaration" "^7.18.6" - -"@babel/helper-create-regexp-features-plugin@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz#06b2348ce37fccc4f5e18dcd8d75053f2a7c44ff" - integrity sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.16.0" - regexpu-core "^4.7.1" - -"@babel/helper-define-polyfill-provider@^0.3.0": - version "0.3.0" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.0.tgz#c5b10cf4b324ff840140bb07e05b8564af2ae971" - integrity sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg== +"@babel/helper-annotate-as-pure@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" + integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.10.tgz#573e735937e99ea75ea30788b57eb52fab7468c9" + integrity sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ== + dependencies: + "@babel/types" "^7.22.10" + +"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.10", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz#01d648bbc25dd88f513d862ee0df27b7d4e67024" + integrity sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q== + dependencies: + "@babel/compat-data" "^7.22.9" + "@babel/helper-validator-option" "^7.22.5" + browserslist "^4.21.9" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.10", "@babel/helper-create-class-features-plugin@^7.22.5": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz#dd2612d59eac45588021ac3d6fa976d08f4e95a3" + integrity sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-member-expression-to-functions" "^7.22.5" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + semver "^6.3.1" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz#9d8e61a8d9366fe66198f57c40565663de0825f6" + integrity sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + regexpu-core "^5.3.1" + semver "^6.3.1" + +"@babel/helper-define-polyfill-provider@^0.4.2": + version "0.4.2" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz#82c825cadeeeee7aad237618ebbe8fa1710015d7" + integrity sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw== dependencies: - "@babel/helper-compilation-targets" "^7.13.0" - "@babel/helper-module-imports" "^7.12.13" - "@babel/helper-plugin-utils" "^7.13.0" - "@babel/traverse" "^7.13.0" + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-plugin-utils" "^7.22.5" debug "^4.1.1" lodash.debounce "^4.0.8" resolve "^1.14.2" - semver "^6.1.2" - -"@babel/helper-environment-visitor@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.5.tgz#f6a7f38b3c6d8b07c88faea083c46c09ef5451b8" - integrity sha512-ODQyc5AnxmZWm/R2W7fzhamOk1ey8gSguo5SGvF0zcB3uUzRpTRmM/jmLSm9bDMyPlvbyJ+PwPEK0BWIoZ9wjg== - dependencies: - "@babel/types" "^7.16.0" - -"@babel/helper-environment-visitor@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz#ff484094a839bde9d89cd63cba017d7aae80ecd7" - integrity sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-environment-visitor@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" - integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== -"@babel/helper-explode-assignable-expression@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.0.tgz#753017337a15f46f9c09f674cff10cee9b9d7778" - integrity sha512-Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ== - dependencies: - "@babel/types" "^7.16.0" +"@babel/helper-environment-visitor@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98" + integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== -"@babel/helper-function-name@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz#b7dd0797d00bbfee4f07e9c4ea5b0e30c8bb1481" - integrity sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog== +"@babel/helper-function-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" + integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== dependencies: - "@babel/helper-get-function-arity" "^7.16.0" - "@babel/template" "^7.16.0" - "@babel/types" "^7.16.0" + "@babel/template" "^7.22.5" + "@babel/types" "^7.22.5" -"@babel/helper-function-name@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz#f1ec51551fb1c8956bc8dd95f38523b6cf375f8f" - integrity sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA== +"@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== dependencies: - "@babel/helper-get-function-arity" "^7.16.7" - "@babel/template" "^7.16.7" - "@babel/types" "^7.16.7" + "@babel/types" "^7.22.5" -"@babel/helper-function-name@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz#940e6084a55dee867d33b4e487da2676365e86b0" - integrity sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A== +"@babel/helper-member-expression-to-functions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz#0a7c56117cad3372fbf8d2fb4bf8f8d64a1e76b2" + integrity sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ== dependencies: - "@babel/template" "^7.18.6" - "@babel/types" "^7.18.9" + "@babel/types" "^7.22.5" + +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.49", "@babel/helper-module-imports@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c" + integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== + dependencies: + "@babel/types" "^7.22.5" -"@babel/helper-get-function-arity@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz#0088c7486b29a9cb5d948b1a1de46db66e089cfa" - integrity sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ== +"@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz#92dfcb1fbbb2bc62529024f72d942a8c97142129" + integrity sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ== + dependencies: + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/helper-validator-identifier" "^7.22.5" + +"@babel/helper-optimise-call-expression@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" + integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" + integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== + +"@babel/helper-remap-async-to-generator@^7.22.5", "@babel/helper-remap-async-to-generator@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz#53a25b7484e722d7efb9c350c75c032d4628de82" + integrity sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-wrap-function" "^7.22.9" + +"@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz#cbdc27d6d8d18cd22c81ae4293765a5d9afd0779" + integrity sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg== + dependencies: + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-member-expression-to-functions" "^7.22.5" + "@babel/helper-optimise-call-expression" "^7.22.5" + +"@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" + integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-split-export-declaration@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" + integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-string-parser@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" + integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== + +"@babel/helper-validator-identifier@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" + integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== + +"@babel/helper-validator-option@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac" + integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw== + +"@babel/helper-wrap-function@^7.22.9": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.10.tgz#d845e043880ed0b8c18bd194a12005cb16d2f614" + integrity sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ== + dependencies: + "@babel/helper-function-name" "^7.22.5" + "@babel/template" "^7.22.5" + "@babel/types" "^7.22.10" + +"@babel/helpers@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.10.tgz#ae6005c539dfbcb5cd71fb51bfc8a52ba63bc37a" + integrity sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw== dependencies: - "@babel/types" "^7.16.0" - -"@babel/helper-get-function-arity@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz#ea08ac753117a669f1508ba06ebcc49156387419" - integrity sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-hoist-variables@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz#4c9023c2f1def7e28ff46fc1dbcd36a39beaa81a" - integrity sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg== - dependencies: - "@babel/types" "^7.16.0" - -"@babel/helper-hoist-variables@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246" - integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-hoist-variables@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" - integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-member-expression-to-functions@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.5.tgz#1bc9f7e87354e86f8879c67b316cb03d3dc2caab" - integrity sha512-7fecSXq7ZrLE+TWshbGT+HyCLkxloWNhTbU2QM1NTI/tDqyf0oZiMcEfYtDuUDCo528EOlt39G1rftea4bRZIw== - dependencies: - "@babel/types" "^7.16.0" - -"@babel/helper-member-expression-to-functions@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz#42b9ca4b2b200123c3b7e726b0ae5153924905b0" - integrity sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-member-expression-to-functions@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz#1531661e8375af843ad37ac692c132841e2fd815" - integrity sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg== - dependencies: - "@babel/types" "^7.18.9" - -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.49", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz#90538e60b672ecf1b448f5f4f5433d37e79a3ec3" - integrity sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg== - dependencies: - "@babel/types" "^7.16.0" - -"@babel/helper-module-imports@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437" - integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-module-transforms@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.16.5.tgz#530ebf6ea87b500f60840578515adda2af470a29" - integrity sha512-CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ== - dependencies: - "@babel/helper-environment-visitor" "^7.16.5" - "@babel/helper-module-imports" "^7.16.0" - "@babel/helper-simple-access" "^7.16.0" - "@babel/helper-split-export-declaration" "^7.16.0" - "@babel/helper-validator-identifier" "^7.15.7" - "@babel/template" "^7.16.0" - "@babel/traverse" "^7.16.5" - "@babel/types" "^7.16.0" - -"@babel/helper-module-transforms@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz#7665faeb721a01ca5327ddc6bba15a5cb34b6a41" - integrity sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng== - dependencies: - "@babel/helper-environment-visitor" "^7.16.7" - "@babel/helper-module-imports" "^7.16.7" - "@babel/helper-simple-access" "^7.16.7" - "@babel/helper-split-export-declaration" "^7.16.7" - "@babel/helper-validator-identifier" "^7.16.7" - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.16.7" - "@babel/types" "^7.16.7" - -"@babel/helper-optimise-call-expression@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz#cecdb145d70c54096b1564f8e9f10cd7d193b338" - integrity sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw== - dependencies: - "@babel/types" "^7.16.0" - -"@babel/helper-optimise-call-expression@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz#a34e3560605abbd31a18546bd2aad3e6d9a174f2" - integrity sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-optimise-call-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe" - integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.5.tgz#afe37a45f39fce44a3d50a7958129ea5b1a5c074" - integrity sha512-59KHWHXxVA9K4HNF4sbHCf+eJeFe0Te/ZFGqBT4OjXhrwvA04sGfaEGsVTdsjoszq0YTP49RC9UKe5g8uN2RwQ== - -"@babel/helper-plugin-utils@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5" - integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA== - -"@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz#4b8aea3b069d8cb8a72cdfe28ddf5ceca695ef2f" - integrity sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w== - -"@babel/helper-remap-async-to-generator@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.5.tgz#e706646dc4018942acb4b29f7e185bc246d65ac3" - integrity sha512-X+aAJldyxrOmN9v3FKp+Hu1NO69VWgYgDGq6YDykwRPzxs5f2N+X988CBXS7EQahDU+Vpet5QYMqLk+nsp+Qxw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.16.0" - "@babel/helper-wrap-function" "^7.16.5" - "@babel/types" "^7.16.0" - -"@babel/helper-replace-supers@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.5.tgz#96d3988bd0ab0a2d22c88c6198c3d3234ca25326" - integrity sha512-ao3seGVa/FZCMCCNDuBcqnBFSbdr8N2EW35mzojx3TwfIbdPmNK+JV6+2d5bR0Z71W5ocLnQp9en/cTF7pBJiQ== - dependencies: - "@babel/helper-environment-visitor" "^7.16.5" - "@babel/helper-member-expression-to-functions" "^7.16.5" - "@babel/helper-optimise-call-expression" "^7.16.0" - "@babel/traverse" "^7.16.5" - "@babel/types" "^7.16.0" - -"@babel/helper-replace-supers@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz#e9f5f5f32ac90429c1a4bdec0f231ef0c2838ab1" - integrity sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw== - dependencies: - "@babel/helper-environment-visitor" "^7.16.7" - "@babel/helper-member-expression-to-functions" "^7.16.7" - "@babel/helper-optimise-call-expression" "^7.16.7" - "@babel/traverse" "^7.16.7" - "@babel/types" "^7.16.7" - -"@babel/helper-replace-supers@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz#1092e002feca980fbbb0bd4d51b74a65c6a500e6" - integrity sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ== - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-member-expression-to-functions" "^7.18.9" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/traverse" "^7.18.9" - "@babel/types" "^7.18.9" - -"@babel/helper-simple-access@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz#21d6a27620e383e37534cf6c10bba019a6f90517" - integrity sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw== - dependencies: - "@babel/types" "^7.16.0" - -"@babel/helper-simple-access@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz#d656654b9ea08dbb9659b69d61063ccd343ff0f7" - integrity sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g== - dependencies: - "@babel/types" "^7.16.7" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.10" + "@babel/types" "^7.22.10" + +"@babel/highlight@^7.10.4", "@babel/highlight@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.10.tgz#02a3f6d8c1cb4521b2fd0ab0da8f4739936137d7" + integrity sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ== + dependencies: + "@babel/helper-validator-identifier" "^7.22.5" + chalk "^2.4.2" + js-tokens "^4.0.0" -"@babel/helper-skip-transparent-expression-wrappers@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz#0ee3388070147c3ae051e487eca3ebb0e2e8bb09" - integrity sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw== - dependencies: - "@babel/types" "^7.16.0" +"@babel/parser@^7.14.0", "@babel/parser@^7.15.5", "@babel/parser@^7.16.8", "@babel/parser@^7.22.10", "@babel/parser@^7.22.5": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.10.tgz#e37634f9a12a1716136c44624ef54283cabd3f55" + integrity sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ== -"@babel/helper-split-export-declaration@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz#29672f43663e936df370aaeb22beddb3baec7438" - integrity sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw== +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz#87245a21cd69a73b0b81bcda98d443d6df08f05e" + integrity sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ== dependencies: - "@babel/types" "^7.16.0" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/helper-split-export-declaration@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b" - integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz#fef09f9499b1f1c930da8a0c419db42167d792ca" + integrity sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g== dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-split-export-declaration@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" - integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-string-parser@^7.18.10": - version "7.18.10" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz#181f22d28ebe1b3857fa575f5c290b1aaf659b56" - integrity sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw== - -"@babel/helper-validator-identifier@^7.15.7": - version "7.15.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389" - integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w== - -"@babel/helper-validator-identifier@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" - integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== - -"@babel/helper-validator-identifier@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076" - integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g== - -"@babel/helper-validator-option@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3" - integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow== - -"@babel/helper-validator-option@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23" - integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ== + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.22.5" -"@babel/helper-validator-option@^7.18.6": +"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.14.0": version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" - integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== - -"@babel/helper-wrap-function@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.16.5.tgz#0158fca6f6d0889c3fee8a6ed6e5e07b9b54e41f" - integrity sha512-2J2pmLBqUqVdJw78U0KPNdeE2qeuIyKoG4mKV7wAq3mc4jJG282UgjZw4ZYDnqiWQuS3Y3IYdF/AQ6CpyBV3VA== - dependencies: - "@babel/helper-function-name" "^7.16.0" - "@babel/template" "^7.16.0" - "@babel/traverse" "^7.16.5" - "@babel/types" "^7.16.0" - -"@babel/helpers@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.16.5.tgz#29a052d4b827846dd76ece16f565b9634c554ebd" - integrity sha512-TLgi6Lh71vvMZGEkFuIxzaPsyeYCHQ5jJOOX1f0xXn0uciFuE8cEk0wyBquMcCxBXZ5BJhE2aUB7pnWTD150Tw== - dependencies: - "@babel/template" "^7.16.0" - "@babel/traverse" "^7.16.5" - "@babel/types" "^7.16.0" - -"@babel/helpers@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.16.7.tgz#7e3504d708d50344112767c3542fc5e357fffefc" - integrity sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw== + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" + integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== dependencies: - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.16.7" - "@babel/types" "^7.16.7" - -"@babel/highlight@^7.10.4", "@babel/highlight@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.0.tgz#6ceb32b2ca4b8f5f361fb7fd821e3fddf4a1725a" - integrity sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g== - dependencies: - "@babel/helper-validator-identifier" "^7.15.7" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/highlight@^7.16.7": - version "7.16.10" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.10.tgz#744f2eb81579d6eea753c227b0f570ad785aba88" - integrity sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw== - dependencies: - "@babel/helper-validator-identifier" "^7.16.7" - chalk "^2.0.0" - js-tokens "^4.0.0" + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/highlight@^7.18.6": +"@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5": version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== - dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@^7.14.0", "@babel/parser@^7.16.10", "@babel/parser@^7.16.12", "@babel/parser@^7.16.7", "@babel/parser@^7.16.8": - version "7.16.12" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.12.tgz#9474794f9a650cf5e2f892444227f98e28cdf8b6" - integrity sha512-VfaV15po8RiZssrkPweyvbGVSe4x2y+aciFCgn0n0/SJMR22cwofRV1mtnJQYcSB1wUTaA/X1LnA3es66MCO5A== - -"@babel/parser@^7.15.5", "@babel/parser@^7.16.0", "@babel/parser@^7.16.5": - version "7.16.6" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.6.tgz#8f194828193e8fa79166f34a4b4e52f3e769a314" - integrity sha512-Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ== - -"@babel/parser@^7.18.10", "@babel/parser@^7.18.11": - version "7.18.11" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.11.tgz#68bb07ab3d380affa9a3f96728df07969645d2d9" - integrity sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ== - -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.16.2": - version "7.16.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz#2977fca9b212db153c195674e57cfab807733183" - integrity sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0.tgz#358972eaab006f5eb0826183b0c93cbcaf13e1e2" - integrity sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" - "@babel/plugin-proposal-optional-chaining" "^7.16.0" - -"@babel/plugin-proposal-async-generator-functions@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.5.tgz#fd3bd7e0d98404a3d4cbca15a72d533f8c9a2f67" - integrity sha512-C/FX+3HNLV6sz7AqbTQqEo1L9/kfrKjxcVtgyBCmvIgOjvuBVUWooDoi7trsLxOzCEo5FccjRvKHkfDsJFZlfA== - dependencies: - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/helper-remap-async-to-generator" "^7.16.5" - "@babel/plugin-syntax-async-generators" "^7.8.4" - -"@babel/plugin-proposal-class-properties@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz#925cad7b3b1a2fcea7e59ecc8eb5954f961f91b0" - integrity sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-proposal-class-properties@^7.14.0", "@babel/plugin-proposal-class-properties@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.5.tgz#3269f44b89122110f6339806e05d43d84106468a" - integrity sha512-pJD3HjgRv83s5dv1sTnDbZOaTjghKEz8KUn1Kbh2eAIRhGuyQ1XSeI4xVXU3UlIEVA3DAyIdxqT1eRn7Wcn55A== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.16.5" - "@babel/helper-plugin-utils" "^7.16.5" - -"@babel/plugin-proposal-class-static-block@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.5.tgz#df58ab015a7d3b0963aafc8f20792dcd834952a9" - integrity sha512-EEFzuLZcm/rNJ8Q5krK+FRKdVkd6FjfzT9tuSZql9sQn64K0hHA2KLJ0DqVot9/iV6+SsuadC5yI39zWnm+nmQ== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.16.5" - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - -"@babel/plugin-proposal-dynamic-import@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.5.tgz#2e0d19d5702db4dcb9bc846200ca02f2e9d60e9e" - integrity sha512-P05/SJZTTvHz79LNYTF8ff5xXge0kk5sIIWAypcWgX4BTRUgyHc8wRxJ/Hk+mU0KXldgOOslKaeqnhthcDJCJQ== - dependencies: - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - -"@babel/plugin-proposal-export-namespace-from@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.5.tgz#3b4dd28378d1da2fea33e97b9f25d1c2f5bf1ac9" - integrity sha512-i+sltzEShH1vsVydvNaTRsgvq2vZsfyrd7K7vPLUU/KgS0D5yZMe6uipM0+izminnkKrEfdUnz7CxMRb6oHZWw== - dependencies: - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - -"@babel/plugin-proposal-json-strings@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.5.tgz#1e726930fca139caab6b084d232a9270d9d16f9c" - integrity sha512-QQJueTFa0y9E4qHANqIvMsuxM/qcLQmKttBACtPCQzGUEizsXDACGonlPiSwynHfOa3vNw0FPMVvQzbuXwh4SQ== + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" + integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/plugin-syntax-json-strings" "^7.8.3" - -"@babel/plugin-proposal-logical-assignment-operators@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.5.tgz#df1f2e4b5a0ec07abf061d2c18e53abc237d3ef5" - integrity sha512-xqibl7ISO2vjuQM+MzR3rkd0zfNWltk7n9QhaD8ghMmMceVguYrNDt7MikRyj4J4v3QehpnrU8RYLnC7z/gZLA== - dependencies: - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - -"@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5", "@babel/plugin-proposal-nullish-coalescing-operator@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.5.tgz#652555bfeeeee2d2104058c6225dc6f75e2d0f07" - integrity sha512-YwMsTp/oOviSBhrjwi0vzCUycseCYwoXnLiXIL3YNjHSMBHicGTz7GjVU/IGgz4DtOEXBdCNG72pvCX22ehfqg== - dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-proposal-numeric-separator@^7.14.5", "@babel/plugin-proposal-numeric-separator@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.5.tgz#edcb6379b6cf4570be64c45965d8da7a2debf039" - integrity sha512-DvB9l/TcsCRvsIV9v4jxR/jVP45cslTVC0PMVHvaJhhNuhn2Y1SOhCSFlPK777qLB5wb8rVDaNoqMTyOqtY5Iw== +"@babel/plugin-proposal-numeric-separator@^7.14.5": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75" + integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-numeric-separator" "^7.10.4" "@babel/plugin-proposal-object-rest-spread@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.7.tgz#94593ef1ddf37021a25bdcb5754c4a8d534b01d8" - integrity sha512-3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA== + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" + integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== dependencies: - "@babel/compat-data" "^7.16.4" - "@babel/helper-compilation-targets" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/compat-data" "^7.20.5" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.16.7" + "@babel/plugin-transform-parameters" "^7.20.7" -"@babel/plugin-proposal-object-rest-spread@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.5.tgz#f30f80dacf7bc1404bf67f99c8d9c01665e830ad" - integrity sha512-UEd6KpChoyPhCoE840KRHOlGhEZFutdPDMGj+0I56yuTTOaT51GzmnEl/0uT41fB/vD2nT+Pci2KjezyE3HmUw== +"@babel/plugin-proposal-optional-chaining@^7.14.5": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea" + integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA== dependencies: - "@babel/compat-data" "^7.16.4" - "@babel/helper-compilation-targets" "^7.16.3" - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.16.5" - -"@babel/plugin-proposal-optional-catch-binding@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.5.tgz#1a5405765cf589a11a33a1fd75b2baef7d48b74e" - integrity sha512-ihCMxY1Iljmx4bWy/PIMJGXN4NS4oUj1MKynwO07kiKms23pNvIn1DMB92DNB2R0EA882sw0VXIelYGdtF7xEQ== - dependencies: - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - -"@babel/plugin-proposal-optional-chaining@^7.14.5", "@babel/plugin-proposal-optional-chaining@^7.16.0", "@babel/plugin-proposal-optional-chaining@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.5.tgz#a5fa61056194d5059366c0009cb9a9e66ed75c1f" - integrity sha512-kzdHgnaXRonttiTfKYnSVafbWngPPr2qKw9BWYBESl91W54e+9R5pP70LtWxV56g0f05f/SQrwHYkfvbwcdQ/A== - dependencies: - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" "@babel/plugin-syntax-optional-chaining" "^7.8.3" -"@babel/plugin-proposal-private-methods@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.5.tgz#2086f7d78c1b0c712d49b5c3fbc2d1ca21a7ee12" - integrity sha512-+yFMO4BGT3sgzXo+lrq7orX5mAZt57DwUK6seqII6AcJnJOIhBJ8pzKH47/ql/d426uQ7YhN8DpUFirQzqYSUA== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.16.5" - "@babel/helper-plugin-utils" "^7.16.5" - -"@babel/plugin-proposal-private-property-in-object@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.5.tgz#a42d4b56005db3d405b12841309dbca647e7a21b" - integrity sha512-+YGh5Wbw0NH3y/E5YMu6ci5qTDmAEVNoZ3I54aB6nVEOZ5BQ7QJlwKq5pYVucQilMByGn/bvX0af+uNaPRCabA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.16.0" - "@babel/helper-create-class-features-plugin" "^7.16.5" - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - -"@babel/plugin-proposal-unicode-property-regex@^7.16.5", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.5.tgz#35fe753afa7c572f322bd068ff3377bde0f37080" - integrity sha512-s5sKtlKQyFSatt781HQwv1hoM5BQ9qRH30r+dK56OLDsHmV74mzwJNX7R1yMuE7VZKG5O6q/gmOGSAO6ikTudg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.16.0" - "@babel/helper-plugin-utils" "^7.16.5" +"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": + version "7.21.0-placeholder-for-preset-env.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" @@ -819,12 +401,33 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.16.7.tgz#202b147e5892b8452bbb0bb269c7ed2539ab8832" - integrity sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ== +"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.22.5.tgz#163b820b9e7696ce134df3ee716d9c0c98035859" + integrity sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-assertions@^7.20.0", "@babel/plugin-syntax-import-assertions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98" + integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-attributes@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb" + integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-meta@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-json-strings@^7.8.3": version "7.8.3" @@ -833,19 +436,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz#50b6571d13f764266a113d77c82b4a6508bbe665" - integrity sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-syntax-jsx@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.5.tgz#bf255d252f78bc8b77a17cadc37d1aa5b8ed4394" - integrity sha512-42OGssv9NPk4QHKVgIHlzeLgPOW5rGgfV5jzG90AhcXXIv6hu/eqj63w4VgvRxdvZY3AlYeDgPiSJ3BqAd1Y6Q== +"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" + integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": version "7.10.4" @@ -903,522 +499,492 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-typescript@^7.16.0": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.5.tgz#f47a33e4eee38554f00fb6b2f894fa1f5649b0b3" - integrity sha512-/d4//lZ1Vqb4mZ5xTep3dDK888j7BGM/iKqBmndBaoYAFPlPKrGU608VVBz5JeyAb6YQDjRu1UKqj86UhwWVgw== +"@babel/plugin-syntax-typescript@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272" + integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-syntax-typescript@^7.18.6": +"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz#1c09cd25795c7c2b8a4ba9ae49394576d4133285" - integrity sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA== + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-arrow-functions@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz#44125e653d94b98db76369de9c396dc14bef4154" - integrity sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-arrow-functions@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.5.tgz#04c18944dd55397b521d9d7511e791acea7acf2d" - integrity sha512-8bTHiiZyMOyfZFULjsCnYOWG059FVMes0iljEHSfARhNgFfpsqE92OrCffv3veSw9rwMkYcFe9bj0ZoXU2IGtQ== +"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958" + integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-async-to-generator@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.5.tgz#89c9b501e65bb14c4579a6ce9563f859de9b34e4" - integrity sha512-TMXgfioJnkXU+XRoj7P2ED7rUm5jbnDWwlCuFVTpQboMfbSya5WrmubNBAMlk7KXvywpo8rd8WuYZkis1o2H8w== +"@babel/plugin-transform-async-generator-functions@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.10.tgz#45946cd17f915b10e65c29b8ed18a0a50fc648c8" + integrity sha512-eueE8lvKVzq5wIObKK/7dvoeKJ+xc6TvRn6aysIjS6pSCeLy7S/eVi7pEQknZqyqvzaNKdDtem8nUNTBgDVR2g== dependencies: - "@babel/helper-module-imports" "^7.16.0" - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/helper-remap-async-to-generator" "^7.16.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.9" + "@babel/plugin-syntax-async-generators" "^7.8.4" -"@babel/plugin-transform-block-scoped-functions@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz#4d0d57d9632ef6062cdf354bb717102ee042a620" - integrity sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg== +"@babel/plugin-transform-async-to-generator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775" + integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.5" -"@babel/plugin-transform-block-scoped-functions@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.5.tgz#af087494e1c387574260b7ee9b58cdb5a4e9b0b0" - integrity sha512-BxmIyKLjUGksJ99+hJyL/HIxLIGnLKtw772zYDER7UuycDZ+Xvzs98ZQw6NGgM2ss4/hlFAaGiZmMNKvValEjw== +"@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024" + integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-block-scoping@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz#f50664ab99ddeaee5bc681b8f3a6ea9d72ab4f87" - integrity sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ== +"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.10.tgz#88a1dccc3383899eb5e660534a76a22ecee64faa" + integrity sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-block-scoping@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.5.tgz#b91f254fe53e210eabe4dd0c40f71c0ed253c5e7" - integrity sha512-JxjSPNZSiOtmxjX7PBRBeRJTUKTyJ607YUYeT0QJCNdsedOe+/rXITjP08eG8xUpsLfPirgzdCFN+h0w6RI+pQ== +"@babel/plugin-transform-class-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77" + integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-classes@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz#8f4b9562850cd973de3b498f1218796eb181ce00" - integrity sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ== +"@babel/plugin-transform-class-static-block@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz#3e40c46f048403472d6f4183116d5e46b1bff5ba" + integrity sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA== dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - "@babel/helper-environment-visitor" "^7.16.7" - "@babel/helper-function-name" "^7.16.7" - "@babel/helper-optimise-call-expression" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/helper-replace-supers" "^7.16.7" - "@babel/helper-split-export-declaration" "^7.16.7" - globals "^11.1.0" + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-class-static-block" "^7.14.5" -"@babel/plugin-transform-classes@^7.15.4", "@babel/plugin-transform-classes@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.5.tgz#6acf2ec7adb50fb2f3194dcd2909dbd056dcf216" - integrity sha512-DzJ1vYf/7TaCYy57J3SJ9rV+JEuvmlnvvyvYKFbk5u46oQbBvuB9/0w+YsVsxkOv8zVWKpDmUoj4T5ILHoXevA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.16.0" - "@babel/helper-environment-visitor" "^7.16.5" - "@babel/helper-function-name" "^7.16.0" - "@babel/helper-optimise-call-expression" "^7.16.0" - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/helper-replace-supers" "^7.16.5" - "@babel/helper-split-export-declaration" "^7.16.0" +"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.15.4", "@babel/plugin-transform-classes@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz#e04d7d804ed5b8501311293d1a0e6d43e94c3363" + integrity sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz#66dee12e46f61d2aae7a73710f591eb3df616470" - integrity sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw== +"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869" + integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/template" "^7.22.5" -"@babel/plugin-transform-computed-properties@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.5.tgz#2af91ebf0cceccfcc701281ada7cfba40a9b322a" - integrity sha512-n1+O7xtU5lSLraRzX88CNcpl7vtGdPakKzww74bVwpAIRgz9JVLJJpOLb0uYqcOaXVM0TL6X0RVeIJGD2CnCkg== +"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.10.tgz#38e2273814a58c810b6c34ea293be4973c4eb5e2" + integrity sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-destructuring@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.7.tgz#ca9588ae2d63978a4c29d3f33282d8603f618e23" - integrity sha512-VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A== +"@babel/plugin-transform-dotall-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165" + integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-destructuring@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.5.tgz#89ebc87499ac4a81b897af53bb5d3eed261bd568" - integrity sha512-GuRVAsjq+c9YPK6NeTkRLWyQskDC099XkBSVO+6QzbnOnH2d/4mBVXYStaPrZD3dFRfg00I6BFJ9Atsjfs8mlg== +"@babel/plugin-transform-duplicate-keys@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285" + integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-dotall-regex@^7.16.5", "@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.5.tgz#b40739c00b6686820653536d6d143e311de67936" - integrity sha512-iQiEMt8Q4/5aRGHpGVK2Zc7a6mx7qEAO7qehgSug3SDImnuMzgmm/wtJALXaz25zUj1PmnNHtShjFgk4PDx4nw== +"@babel/plugin-transform-dynamic-import@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz#d6908a8916a810468c4edff73b5b75bda6ad393e" + integrity sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.16.0" - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" -"@babel/plugin-transform-duplicate-keys@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.5.tgz#2450f2742325412b746d7d005227f5e8973b512a" - integrity sha512-81tijpDg2a6I1Yhj4aWY1l3O1J4Cg/Pd7LfvuaH2VVInAkXtzibz9+zSPdUM1WvuUi128ksstAP0hM5w48vQgg== +"@babel/plugin-transform-exponentiation-operator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a" + integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-exponentiation-operator@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.5.tgz#36e261fa1ab643cfaf30eeab38e00ed1a76081e2" - integrity sha512-12rba2HwemQPa7BLIKCzm1pT2/RuQHtSFHdNl41cFiC6oi4tcrp7gjB07pxQvFpcADojQywSjblQth6gJyE6CA== +"@babel/plugin-transform-export-namespace-from@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz#57c41cb1d0613d22f548fddd8b288eedb9973a5b" + integrity sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg== dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.16.5" - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" "@babel/plugin-transform-flow-strip-types@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.16.7.tgz#291fb140c78dabbf87f2427e7c7c332b126964b8" - integrity sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg== + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.22.5.tgz#0bb17110c7bf5b35a60754b2f00c58302381dee2" + integrity sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/plugin-syntax-flow" "^7.16.7" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-flow" "^7.22.5" -"@babel/plugin-transform-for-of@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz#649d639d4617dff502a9a158c479b3b556728d8c" - integrity sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg== +"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz#ab1b8a200a8f990137aff9a084f8de4099ab173f" + integrity sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-for-of@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.5.tgz#9b544059c6ca11d565457c0ff1f08e13ce225261" - integrity sha512-+DpCAJFPAvViR17PIMi9x2AE34dll5wNlXO43wagAX2YcRGgEVHCNFC4azG85b4YyyFarvkc/iD5NPrz4Oneqw== +"@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143" + integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-function-name@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz#5ab34375c64d61d083d7d2f05c38d90b97ec65cf" - integrity sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA== +"@babel/plugin-transform-json-strings@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz#14b64352fdf7e1f737eed68de1a1468bd2a77ec0" + integrity sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A== dependencies: - "@babel/helper-compilation-targets" "^7.16.7" - "@babel/helper-function-name" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-json-strings" "^7.8.3" -"@babel/plugin-transform-function-name@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.5.tgz#6896ebb6a5538a75d6a4086a277752f655a7bd15" - integrity sha512-Fuec/KPSpVLbGo6z1RPw4EE1X+z9gZk1uQmnYy7v4xr4TO9p41v1AoUuXEtyqAI7H+xNJYSICzRqZBhDEkd3kQ== +"@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920" + integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== dependencies: - "@babel/helper-function-name" "^7.16.0" - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-literals@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz#254c9618c5ff749e87cb0c0cef1a0a050c0bdab1" - integrity sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ== +"@babel/plugin-transform-logical-assignment-operators@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz#66ae5f068fd5a9a5dc570df16f56c2a8462a9d6c" + integrity sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" -"@babel/plugin-transform-literals@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.5.tgz#af392b90e3edb2bd6dc316844cbfd6b9e009d320" - integrity sha512-B1j9C/IfvshnPcklsc93AVLTrNVa69iSqztylZH6qnmiAsDDOmmjEYqOm3Ts2lGSgTSywnBNiqC949VdD0/gfw== +"@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def" + integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-member-expression-literals@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz#6e5dcf906ef8a098e630149d14c867dd28f92384" - integrity sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw== +"@babel/plugin-transform-modules-amd@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526" + integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-member-expression-literals@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.5.tgz#4bd6ecdc11932361631097b779ca5c7570146dd5" - integrity sha512-d57i3vPHWgIde/9Y8W/xSFUndhvhZN5Wu2TjRrN1MVz5KzdUihKnfDVlfP1U7mS5DNj/WHHhaE4/tTi4hIyHwQ== +"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz#7d9875908d19b8c0536085af7b053fd5bd651bfa" + integrity sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-simple-access" "^7.22.5" -"@babel/plugin-transform-modules-amd@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.5.tgz#92c0a3e83f642cb7e75fada9ab497c12c2616527" - integrity sha512-oHI15S/hdJuSCfnwIz+4lm6wu/wBn7oJ8+QrkzPPwSFGXk8kgdI/AIKcbR/XnD1nQVMg/i6eNaXpszbGuwYDRQ== +"@babel/plugin-transform-modules-systemjs@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz#18c31410b5e579a0092638f95c896c2a98a5d496" + integrity sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ== dependencies: - "@babel/helper-module-transforms" "^7.16.5" - "@babel/helper-plugin-utils" "^7.16.5" - babel-plugin-dynamic-import-node "^2.3.3" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" -"@babel/plugin-transform-modules-commonjs@^7.0.0": - version "7.16.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.8.tgz#cdee19aae887b16b9d331009aa9a219af7c86afe" - integrity sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA== +"@babel/plugin-transform-modules-umd@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98" + integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== dependencies: - "@babel/helper-module-transforms" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/helper-simple-access" "^7.16.7" - babel-plugin-dynamic-import-node "^2.3.3" + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-commonjs@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.5.tgz#4ee03b089536f076b2773196529d27c32b9d7bde" - integrity sha512-ABhUkxvoQyqhCWyb8xXtfwqNMJD7tx+irIRnUh6lmyFud7Jln1WzONXKlax1fg/ey178EXbs4bSGNd6PngO+SQ== +"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f" + integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== dependencies: - "@babel/helper-module-transforms" "^7.16.5" - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/helper-simple-access" "^7.16.0" - babel-plugin-dynamic-import-node "^2.3.3" + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-systemjs@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.5.tgz#07078ba2e3cc94fbdd06836e355c246e98ad006b" - integrity sha512-53gmLdScNN28XpjEVIm7LbWnD/b/TpbwKbLk6KV4KqC9WyU6rq1jnNmVG6UgAdQZVVGZVoik3DqHNxk4/EvrjA== +"@babel/plugin-transform-new-target@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d" + integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== dependencies: - "@babel/helper-hoist-variables" "^7.16.0" - "@babel/helper-module-transforms" "^7.16.5" - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/helper-validator-identifier" "^7.15.7" - babel-plugin-dynamic-import-node "^2.3.3" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-umd@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.5.tgz#caa9c53d636fb4e3c99fd35a4c9ba5e5cd7e002e" - integrity sha512-qTFnpxHMoenNHkS3VoWRdwrcJ3FhX567GvDA3hRZKF0Dj8Fmg0UzySZp3AP2mShl/bzcywb/UWAMQIjA1bhXvw== +"@babel/plugin-transform-nullish-coalescing-operator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz#f8872c65776e0b552e0849d7596cddd416c3e381" + integrity sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA== dependencies: - "@babel/helper-module-transforms" "^7.16.5" - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-transform-named-capturing-groups-regex@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.5.tgz#4afd8cdee377ce3568f4e8a9ee67539b69886a3c" - integrity sha512-/wqGDgvFUeKELW6ex6QB7dLVRkd5ehjw34tpXu1nhKC0sFfmaLabIswnpf8JgDyV2NeDmZiwoOb0rAmxciNfjA== +"@babel/plugin-transform-numeric-separator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz#57226a2ed9e512b9b446517ab6fa2d17abb83f58" + integrity sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.16.0" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-transform-new-target@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.5.tgz#759ea9d6fbbc20796056a5d89d13977626384416" - integrity sha512-ZaIrnXF08ZC8jnKR4/5g7YakGVL6go6V9ql6Jl3ecO8PQaQqFE74CuM384kezju7Z9nGCCA20BqZaR1tJ/WvHg== +"@babel/plugin-transform-object-rest-spread@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz#9686dc3447df4753b0b2a2fae7e8bc33cdc1f2e1" + integrity sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/compat-data" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.22.5" -"@babel/plugin-transform-object-super@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz#ac359cf8d32cf4354d27a46867999490b6c32a94" - integrity sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw== +"@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c" + integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/helper-replace-supers" "^7.16.7" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.5" -"@babel/plugin-transform-object-super@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.5.tgz#8ccd9a1bcd3e7732ff8aa1702d067d8cd70ce380" - integrity sha512-tded+yZEXuxt9Jdtkc1RraW1zMF/GalVxaVVxh41IYwirdRgyAxxxCKZ9XB7LxZqmsjfjALxupNE1MIz9KH+Zg== +"@babel/plugin-transform-optional-catch-binding@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz#842080be3076703be0eaf32ead6ac8174edee333" + integrity sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/helper-replace-supers" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz#a1721f55b99b736511cb7e0152f61f17688f331f" - integrity sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw== +"@babel/plugin-transform-optional-chaining@^7.22.10", "@babel/plugin-transform-optional-chaining@^7.22.5": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.10.tgz#076d28a7e074392e840d4ae587d83445bac0372a" + integrity sha512-MMkQqZAZ+MGj+jGTG3OTuhKeBpNcO+0oCEbrGNEaOmiEn+1MzRyQlYsruGiU8RTK3zV6XwrVJTmwiDOyYK6J9g== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" -"@babel/plugin-transform-parameters@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.5.tgz#4fc74b18a89638bd90aeec44a11793ecbe031dde" - integrity sha512-B3O6AL5oPop1jAVg8CV+haeUte9oFuY85zu0jwnRNZZi3tVAbJriu5tag/oaO2kGaQM/7q7aGPBlTI5/sr9enA== +"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz#c3542dd3c39b42c8069936e48717a8d179d63a18" + integrity sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-property-literals@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz#2dadac85155436f22c696c4827730e0fe1057a55" - integrity sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw== +"@babel/plugin-transform-private-methods@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722" + integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-property-literals@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.5.tgz#58f1465a7202a2bb2e6b003905212dd7a79abe3f" - integrity sha512-+IRcVW71VdF9pEH/2R/Apab4a19LVvdVsr/gEeotH00vSDVlKD+XgfSIw+cgGWsjDB/ziqGv/pGoQZBIiQVXHg== +"@babel/plugin-transform-private-property-in-object@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz#07a77f28cbb251546a43d175a1dda4cf3ef83e32" + integrity sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" -"@babel/plugin-transform-react-display-name@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz#7b6d40d232f4c0f550ea348593db3b21e2404340" - integrity sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg== +"@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766" + integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-react-display-name@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.5.tgz#d5e910327d7931fb9f8f9b6c6999473ceae5a286" - integrity sha512-dHYCOnzSsXFz8UcdNQIHGvg94qPL/teF7CCiCEMRxmA1G2p5Mq4JnKVowCDxYfiQ9D7RstaAp9kwaSI+sXbnhw== +"@babel/plugin-transform-react-display-name@^7.0.0", "@babel/plugin-transform-react-display-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.22.5.tgz#3c4326f9fce31c7968d6cb9debcaf32d9e279a2b" + integrity sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-react-jsx-development@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.5.tgz#87da9204c275ffb57f45d192a1120cf104bc1e86" - integrity sha512-uQSLacMZSGLCxOw20dzo1dmLlKkd+DsayoV54q3MHXhbqgPzoiGerZQgNPl/Ro8/OcXV2ugfnkx+rxdS0sN5Uw== +"@babel/plugin-transform-react-jsx-development@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz#e716b6edbef972a92165cd69d92f1255f7e73e87" + integrity sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A== dependencies: - "@babel/plugin-transform-react-jsx" "^7.16.5" + "@babel/plugin-transform-react-jsx" "^7.22.5" -"@babel/plugin-transform-react-jsx@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.7.tgz#86a6a220552afd0e4e1f0388a68a372be7add0d4" - integrity sha512-8D16ye66fxiE8m890w0BpPpngG9o9OVBBy0gH2E+2AR7qMR2ZpTYJEqLxAsoroenMId0p/wMW+Blc0meDgu0Ag== +"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.5.tgz#932c291eb6dd1153359e2a90cb5e557dcf068416" + integrity sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA== dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - "@babel/helper-module-imports" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/plugin-syntax-jsx" "^7.16.7" - "@babel/types" "^7.16.7" + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-jsx" "^7.22.5" + "@babel/types" "^7.22.5" -"@babel/plugin-transform-react-jsx@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.5.tgz#5298aedc5f81e02b1cb702e597e8d6a346675765" - integrity sha512-+arLIz1d7kmwX0fKxTxbnoeG85ONSnLpvdODa4P3pc1sS7CV1hfmtYWufkW/oYsPnkDrEeQFxhUWcFnrXW7jQQ== +"@babel/plugin-transform-react-pure-annotations@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.22.5.tgz#1f58363eef6626d6fa517b95ac66fe94685e32c0" + integrity sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA== dependencies: - "@babel/helper-annotate-as-pure" "^7.16.0" - "@babel/helper-module-imports" "^7.16.0" - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/plugin-syntax-jsx" "^7.16.5" - "@babel/types" "^7.16.0" + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-react-pure-annotations@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.5.tgz#6535d0fe67c7a3a26c5105f92c8cbcbe844cd94b" - integrity sha512-0nYU30hCxnCVCbRjSy9ahlhWZ2Sn6khbY4FqR91W+2RbSqkWEbVu2gXh45EqNy4Bq7sRU+H4i0/6YKwOSzh16A== +"@babel/plugin-transform-regenerator@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz#8ceef3bd7375c4db7652878b0241b2be5d0c3cca" + integrity sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw== dependencies: - "@babel/helper-annotate-as-pure" "^7.16.0" - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" + regenerator-transform "^0.15.2" -"@babel/plugin-transform-regenerator@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.5.tgz#704cc6d8dd3dd4758267621ab7b36375238cef13" - integrity sha512-2z+it2eVWU8TtQQRauvGUqZwLy4+7rTfo6wO4npr+fvvN1SW30ZF3O/ZRCNmTuu4F5MIP8OJhXAhRV5QMJOuYg== +"@babel/plugin-transform-reserved-words@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb" + integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== dependencies: - regenerator-transform "^0.14.2" - -"@babel/plugin-transform-reserved-words@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.5.tgz#db95e98799675e193dc2b47d3e72a7c0651d0c30" - integrity sha512-aIB16u8lNcf7drkhXJRoggOxSTUAuihTSTfAcpynowGJOZiGf+Yvi7RuTwFzVYSYPmWyARsPqUGoZWWWxLiknw== - dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-transform-runtime@^7.15.0": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.5.tgz#0cc3f01d69f299d5a42cd9ec43b92ea7a777b8db" - integrity sha512-gxpfS8XQWDbQ8oP5NcmpXxtEgCJkbO+W9VhZlOhr0xPyVaRjAQPOv7ZDj9fg0d5s9+NiVvMCE6gbkEkcsxwGRw== - dependencies: - "@babel/helper-module-imports" "^7.16.0" - "@babel/helper-plugin-utils" "^7.16.5" - babel-plugin-polyfill-corejs2 "^0.3.0" - babel-plugin-polyfill-corejs3 "^0.4.0" - babel-plugin-polyfill-regenerator "^0.3.0" - semver "^6.3.0" - -"@babel/plugin-transform-shorthand-properties@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz#e8549ae4afcf8382f711794c0c7b6b934c5fbd2a" - integrity sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg== + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.10.tgz#89eda6daf1d3af6f36fb368766553054c8d7cd46" + integrity sha512-RchI7HePu1eu0CYNKHHHQdfenZcM4nz8rew5B1VWqeRKdcwW5aQ5HeG9eTUbWiAS1UrmHVLmoxTWHt3iLD/NhA== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + babel-plugin-polyfill-corejs2 "^0.4.5" + babel-plugin-polyfill-corejs3 "^0.8.3" + babel-plugin-polyfill-regenerator "^0.5.2" + semver "^6.3.1" -"@babel/plugin-transform-shorthand-properties@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.5.tgz#ccb60b1a23b799f5b9a14d97c5bc81025ffd96d7" - integrity sha512-ZbuWVcY+MAXJuuW7qDoCwoxDUNClfZxoo7/4swVbOW1s/qYLOMHlm9YRWMsxMFuLs44eXsv4op1vAaBaBaDMVg== +"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624" + integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-spread@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz#a303e2122f9f12e0105daeedd0f30fb197d8ff44" - integrity sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg== +"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.14.6", "@babel/plugin-transform-spread@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b" + integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" -"@babel/plugin-transform-spread@^7.14.6", "@babel/plugin-transform-spread@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.5.tgz#912b06cff482c233025d3e69cf56d3e8fa166c29" - integrity sha512-5d6l/cnG7Lw4tGHEoga4xSkYp1euP7LAtrah1h1PgJ3JY7yNsjybsxQAnVK4JbtReZ/8z6ASVmd3QhYYKLaKZw== +"@babel/plugin-transform-sticky-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa" + integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-sticky-regex@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.5.tgz#593579bb2b5a8adfbe02cb43823275d9098f75f9" - integrity sha512-usYsuO1ID2LXxzuUxifgWtJemP7wL2uZtyrTVM4PKqsmJycdS4U4mGovL5xXkfUheds10Dd2PjoQLXw6zCsCbg== +"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff" + integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-template-literals@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz#f3d1c45d28967c8e80f53666fc9c3e50618217ab" - integrity sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-template-literals@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.5.tgz#343651385fd9923f5aa2275ca352c5d9183e1773" - integrity sha512-gnyKy9RyFhkovex4BjKWL3BVYzUDG6zC0gba7VMLbQoDuqMfJ1SDXs8k/XK41Mmt1Hyp4qNAvGFb9hKzdCqBRQ== +"@babel/plugin-transform-typeof-symbol@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34" + integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-typeof-symbol@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.5.tgz#a1d1bf2c71573fe30965d0e4cd6a3291202e20ed" - integrity sha512-ldxCkW180qbrvyCVDzAUZqB0TAeF8W/vGJoRcaf75awm6By+PxfJKvuqVAnq8N9wz5Xa6mSpM19OfVKKVmGHSQ== +"@babel/plugin-transform-typescript@^7.22.5": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.10.tgz#aadd98fab871f0bb5717bcc24c31aaaa455af923" + integrity sha512-7++c8I/ymsDo4QQBAgbraXLzIM6jmfao11KgIBEYZRReWzNWH9NtNgJcyrZiXsOPh523FQm6LfpLyy/U5fn46A== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.10" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-typescript" "^7.22.5" -"@babel/plugin-transform-typescript@^7.16.1": - version "7.16.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.1.tgz#cc0670b2822b0338355bc1b3d2246a42b8166409" - integrity sha512-NO4XoryBng06jjw/qWEU2LhcLJr1tWkhpMam/H4eas/CDKMX/b2/Ylb6EI256Y7+FVPCawwSM1rrJNOpDiz+Lg== +"@babel/plugin-transform-unicode-escapes@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz#c723f380f40a2b2f57a62df24c9005834c8616d9" + integrity sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg== dependencies: - "@babel/helper-create-class-features-plugin" "^7.16.0" - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/plugin-syntax-typescript" "^7.16.0" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-typescript@^7.18.6": - version "7.18.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.12.tgz#712e9a71b9e00fde9f8c0238e0cceee86ab2f8fd" - integrity sha512-2vjjam0cum0miPkenUbQswKowuxs/NjMwIKEq0zwegRxXk12C9YOF9STXnaUptITOtOJHKHpzvvWYOjbm6tc0w== +"@babel/plugin-transform-unicode-property-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81" + integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.9" - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/plugin-syntax-typescript" "^7.18.6" + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-escapes@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.5.tgz#80507c225af49b4f4ee647e2a0ce53d2eeff9e85" - integrity sha512-shiCBHTIIChGLdyojsKQjoAyB8MBwat25lKM7MJjbe1hE0bgIppD+LX9afr41lLHOhqceqeWl4FkLp+Bgn9o1Q== +"@babel/plugin-transform-unicode-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183" + integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== dependencies: - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-regex@^7.16.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.5.tgz#ac84d6a1def947d71ffb832426aa53b83d7ed49e" - integrity sha512-GTJ4IW012tiPEMMubd7sD07iU9O/LOo8Q/oU4xNhcaq0Xn8+6TcUQaHtC8YxySo1T+ErQ8RaWogIEeFhKGNPzw== +"@babel/plugin-transform-unicode-sets-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91" + integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.16.0" - "@babel/helper-plugin-utils" "^7.16.5" + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" "@babel/preset-env@^7.15.4": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.16.5.tgz#2e94d922f4a890979af04ffeb6a6b4e44ba90847" - integrity sha512-MiJJW5pwsktG61NDxpZ4oJ1CKxM1ncam9bzRtx9g40/WkLRkxFP6mhpkYV0/DxcciqoiHicx291+eUQrXb/SfQ== - dependencies: - "@babel/compat-data" "^7.16.4" - "@babel/helper-compilation-targets" "^7.16.3" - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/helper-validator-option" "^7.14.5" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.16.2" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.16.0" - "@babel/plugin-proposal-async-generator-functions" "^7.16.5" - "@babel/plugin-proposal-class-properties" "^7.16.5" - "@babel/plugin-proposal-class-static-block" "^7.16.5" - "@babel/plugin-proposal-dynamic-import" "^7.16.5" - "@babel/plugin-proposal-export-namespace-from" "^7.16.5" - "@babel/plugin-proposal-json-strings" "^7.16.5" - "@babel/plugin-proposal-logical-assignment-operators" "^7.16.5" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.16.5" - "@babel/plugin-proposal-numeric-separator" "^7.16.5" - "@babel/plugin-proposal-object-rest-spread" "^7.16.5" - "@babel/plugin-proposal-optional-catch-binding" "^7.16.5" - "@babel/plugin-proposal-optional-chaining" "^7.16.5" - "@babel/plugin-proposal-private-methods" "^7.16.5" - "@babel/plugin-proposal-private-property-in-object" "^7.16.5" - "@babel/plugin-proposal-unicode-property-regex" "^7.16.5" + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.10.tgz#3263b9fe2c8823d191d28e61eac60a79f9ce8a0f" + integrity sha512-riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A== + dependencies: + "@babel/compat-data" "^7.22.9" + "@babel/helper-compilation-targets" "^7.22.10" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.5" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.5" + "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-syntax-class-properties" "^7.12.13" "@babel/plugin-syntax-class-static-block" "^7.14.5" "@babel/plugin-syntax-dynamic-import" "^7.8.3" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.22.5" + "@babel/plugin-syntax-import-attributes" "^7.22.5" + "@babel/plugin-syntax-import-meta" "^7.10.4" "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" @@ -1428,221 +994,146 @@ "@babel/plugin-syntax-optional-chaining" "^7.8.3" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" "@babel/plugin-syntax-top-level-await" "^7.14.5" - "@babel/plugin-transform-arrow-functions" "^7.16.5" - "@babel/plugin-transform-async-to-generator" "^7.16.5" - "@babel/plugin-transform-block-scoped-functions" "^7.16.5" - "@babel/plugin-transform-block-scoping" "^7.16.5" - "@babel/plugin-transform-classes" "^7.16.5" - "@babel/plugin-transform-computed-properties" "^7.16.5" - "@babel/plugin-transform-destructuring" "^7.16.5" - "@babel/plugin-transform-dotall-regex" "^7.16.5" - "@babel/plugin-transform-duplicate-keys" "^7.16.5" - "@babel/plugin-transform-exponentiation-operator" "^7.16.5" - "@babel/plugin-transform-for-of" "^7.16.5" - "@babel/plugin-transform-function-name" "^7.16.5" - "@babel/plugin-transform-literals" "^7.16.5" - "@babel/plugin-transform-member-expression-literals" "^7.16.5" - "@babel/plugin-transform-modules-amd" "^7.16.5" - "@babel/plugin-transform-modules-commonjs" "^7.16.5" - "@babel/plugin-transform-modules-systemjs" "^7.16.5" - "@babel/plugin-transform-modules-umd" "^7.16.5" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.16.5" - "@babel/plugin-transform-new-target" "^7.16.5" - "@babel/plugin-transform-object-super" "^7.16.5" - "@babel/plugin-transform-parameters" "^7.16.5" - "@babel/plugin-transform-property-literals" "^7.16.5" - "@babel/plugin-transform-regenerator" "^7.16.5" - "@babel/plugin-transform-reserved-words" "^7.16.5" - "@babel/plugin-transform-shorthand-properties" "^7.16.5" - "@babel/plugin-transform-spread" "^7.16.5" - "@babel/plugin-transform-sticky-regex" "^7.16.5" - "@babel/plugin-transform-template-literals" "^7.16.5" - "@babel/plugin-transform-typeof-symbol" "^7.16.5" - "@babel/plugin-transform-unicode-escapes" "^7.16.5" - "@babel/plugin-transform-unicode-regex" "^7.16.5" - "@babel/preset-modules" "^0.1.5" - "@babel/types" "^7.16.0" - babel-plugin-polyfill-corejs2 "^0.3.0" - babel-plugin-polyfill-corejs3 "^0.4.0" - babel-plugin-polyfill-regenerator "^0.3.0" - core-js-compat "^3.19.1" - semver "^6.3.0" - -"@babel/preset-modules@^0.1.5": - version "0.1.5" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" - integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== + "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" + "@babel/plugin-transform-arrow-functions" "^7.22.5" + "@babel/plugin-transform-async-generator-functions" "^7.22.10" + "@babel/plugin-transform-async-to-generator" "^7.22.5" + "@babel/plugin-transform-block-scoped-functions" "^7.22.5" + "@babel/plugin-transform-block-scoping" "^7.22.10" + "@babel/plugin-transform-class-properties" "^7.22.5" + "@babel/plugin-transform-class-static-block" "^7.22.5" + "@babel/plugin-transform-classes" "^7.22.6" + "@babel/plugin-transform-computed-properties" "^7.22.5" + "@babel/plugin-transform-destructuring" "^7.22.10" + "@babel/plugin-transform-dotall-regex" "^7.22.5" + "@babel/plugin-transform-duplicate-keys" "^7.22.5" + "@babel/plugin-transform-dynamic-import" "^7.22.5" + "@babel/plugin-transform-exponentiation-operator" "^7.22.5" + "@babel/plugin-transform-export-namespace-from" "^7.22.5" + "@babel/plugin-transform-for-of" "^7.22.5" + "@babel/plugin-transform-function-name" "^7.22.5" + "@babel/plugin-transform-json-strings" "^7.22.5" + "@babel/plugin-transform-literals" "^7.22.5" + "@babel/plugin-transform-logical-assignment-operators" "^7.22.5" + "@babel/plugin-transform-member-expression-literals" "^7.22.5" + "@babel/plugin-transform-modules-amd" "^7.22.5" + "@babel/plugin-transform-modules-commonjs" "^7.22.5" + "@babel/plugin-transform-modules-systemjs" "^7.22.5" + "@babel/plugin-transform-modules-umd" "^7.22.5" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" + "@babel/plugin-transform-new-target" "^7.22.5" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.5" + "@babel/plugin-transform-numeric-separator" "^7.22.5" + "@babel/plugin-transform-object-rest-spread" "^7.22.5" + "@babel/plugin-transform-object-super" "^7.22.5" + "@babel/plugin-transform-optional-catch-binding" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.22.10" + "@babel/plugin-transform-parameters" "^7.22.5" + "@babel/plugin-transform-private-methods" "^7.22.5" + "@babel/plugin-transform-private-property-in-object" "^7.22.5" + "@babel/plugin-transform-property-literals" "^7.22.5" + "@babel/plugin-transform-regenerator" "^7.22.10" + "@babel/plugin-transform-reserved-words" "^7.22.5" + "@babel/plugin-transform-shorthand-properties" "^7.22.5" + "@babel/plugin-transform-spread" "^7.22.5" + "@babel/plugin-transform-sticky-regex" "^7.22.5" + "@babel/plugin-transform-template-literals" "^7.22.5" + "@babel/plugin-transform-typeof-symbol" "^7.22.5" + "@babel/plugin-transform-unicode-escapes" "^7.22.10" + "@babel/plugin-transform-unicode-property-regex" "^7.22.5" + "@babel/plugin-transform-unicode-regex" "^7.22.5" + "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" + "@babel/preset-modules" "0.1.6-no-external-plugins" + "@babel/types" "^7.22.10" + babel-plugin-polyfill-corejs2 "^0.4.5" + babel-plugin-polyfill-corejs3 "^0.8.3" + babel-plugin-polyfill-regenerator "^0.5.2" + core-js-compat "^3.31.0" + semver "^6.3.1" + +"@babel/preset-modules@0.1.6-no-external-plugins": + version "0.1.6-no-external-plugins" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" + integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" - "@babel/plugin-transform-dotall-regex" "^7.4.4" "@babel/types" "^7.4.4" esutils "^2.0.2" "@babel/preset-react@^7.14.0": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.16.5.tgz#09df3b7a6522cb3e6682dc89b4dfebb97d22031b" - integrity sha512-3kzUOQeaxY/2vhPDS7CX/KGEGu/1bOYGvdRDJ2U5yjEz5o5jmIeTPLoiQBPGjfhPascLuW5OlMiPzwOOuB6txg== - dependencies: - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/helper-validator-option" "^7.14.5" - "@babel/plugin-transform-react-display-name" "^7.16.5" - "@babel/plugin-transform-react-jsx" "^7.16.5" - "@babel/plugin-transform-react-jsx-development" "^7.16.5" - "@babel/plugin-transform-react-pure-annotations" "^7.16.5" - -"@babel/preset-typescript@^7.15.0": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.16.5.tgz#b86a5b0ae739ba741347d2f58c52f52e63cf1ba1" - integrity sha512-lmAWRoJ9iOSvs3DqOndQpj8XqXkzaiQs50VG/zESiI9D3eoZhGriU675xNCr0UwvsuXrhMAGvyk1w+EVWF3u8Q== - dependencies: - "@babel/helper-plugin-utils" "^7.16.5" - "@babel/helper-validator-option" "^7.14.5" - "@babel/plugin-transform-typescript" "^7.16.1" - -"@babel/preset-typescript@^7.16.7": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz#ce64be3e63eddc44240c6358daefac17b3186399" - integrity sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-validator-option" "^7.18.6" - "@babel/plugin-transform-typescript" "^7.18.6" - -"@babel/runtime-corejs3@^7.10.2": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.16.5.tgz#9057d879720c136193f0440bc400088212a74894" - integrity sha512-F1pMwvTiUNSAM8mc45kccMQxj31x3y3P+tA/X8hKNWp3/hUsxdGxZ3D3H8JIkxtfA8qGkaBTKvcmvStaYseAFw== - dependencies: - core-js-pure "^3.19.0" - regenerator-runtime "^0.13.4" - -"@babel/runtime@7.12.5": - version "7.12.5" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e" - integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg== - dependencies: - regenerator-runtime "^0.13.4" - -"@babel/runtime@^7.0.0": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.22.5.tgz#c4d6058fbf80bccad02dd8c313a9aaa67e3c3dd6" + integrity sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.5" + "@babel/plugin-transform-react-display-name" "^7.22.5" + "@babel/plugin-transform-react-jsx" "^7.22.5" + "@babel/plugin-transform-react-jsx-development" "^7.22.5" + "@babel/plugin-transform-react-pure-annotations" "^7.22.5" + +"@babel/preset-typescript@^7.15.0", "@babel/preset-typescript@^7.16.7": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz#16367d8b01d640e9a507577ed4ee54e0101e51c8" + integrity sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.5" + "@babel/plugin-syntax-jsx" "^7.22.5" + "@babel/plugin-transform-modules-commonjs" "^7.22.5" + "@babel/plugin-transform-typescript" "^7.22.5" + +"@babel/regjsgen@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" + integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== + +"@babel/runtime@7.16.7": version "7.16.7" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.16.7.tgz#03ff99f64106588c9c403c6ecb8c3bafbbdff1fa" integrity sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ== dependencies: regenerator-runtime "^0.13.4" -"@babel/runtime@^7.10.2", "@babel/runtime@^7.14.0", "@babel/runtime@^7.15.4", "@babel/runtime@^7.16.3", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.16.5.tgz#7f3e34bf8bdbbadf03fbb7b1ea0d929569c9487a" - integrity sha512-TXWihFIS3Pyv5hzR7j6ihmeLkZfrXGxAr5UfSl8CHf+6q/wpiYDkUau0czckpYG8QmnCIuPpdLtuA9VmuGGyMA== - dependencies: - regenerator-runtime "^0.13.4" - -"@babel/runtime@^7.12.5", "@babel/runtime@^7.18.0": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.9.tgz#b4fcfce55db3d2e5e080d2490f608a3b9f407f4a" - integrity sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw== - dependencies: - regenerator-runtime "^0.13.4" - -"@babel/template@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.0.tgz#d16a35ebf4cd74e202083356fab21dd89363ddd6" - integrity sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A== - dependencies: - "@babel/code-frame" "^7.16.0" - "@babel/parser" "^7.16.0" - "@babel/types" "^7.16.0" - -"@babel/template@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155" - integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== - dependencies: - "@babel/code-frame" "^7.16.7" - "@babel/parser" "^7.16.7" - "@babel/types" "^7.16.7" - -"@babel/template@^7.18.6": - version "7.18.10" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71" - integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/parser" "^7.18.10" - "@babel/types" "^7.18.10" - -"@babel/traverse@^7.13.0", "@babel/traverse@^7.15.4", "@babel/traverse@^7.16.5", "@babel/traverse@^7.4.5": - version "7.16.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.16.5.tgz#d7d400a8229c714a59b87624fc67b0f1fbd4b2b3" - integrity sha512-FOCODAzqUMROikDYLYxl4nmwiLlu85rNqBML/A5hKRVXG2LV8d0iMqgPzdYTcIpjZEBB7D6UDU9vxRZiriASdQ== - dependencies: - "@babel/code-frame" "^7.16.0" - "@babel/generator" "^7.16.5" - "@babel/helper-environment-visitor" "^7.16.5" - "@babel/helper-function-name" "^7.16.0" - "@babel/helper-hoist-variables" "^7.16.0" - "@babel/helper-split-export-declaration" "^7.16.0" - "@babel/parser" "^7.16.5" - "@babel/types" "^7.16.0" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/traverse@^7.14.0", "@babel/traverse@^7.16.10", "@babel/traverse@^7.16.7", "@babel/traverse@^7.16.8": - version "7.16.10" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.16.10.tgz#448f940defbe95b5a8029975b051f75993e8239f" - integrity sha512-yzuaYXoRJBGMlBhsMJoUW7G1UmSb/eXr/JHYM/MsOJgavJibLwASijW7oXBdw3NQ6T0bW7Ty5P/VarOs9cHmqw== - dependencies: - "@babel/code-frame" "^7.16.7" - "@babel/generator" "^7.16.8" - "@babel/helper-environment-visitor" "^7.16.7" - "@babel/helper-function-name" "^7.16.7" - "@babel/helper-hoist-variables" "^7.16.7" - "@babel/helper-split-export-declaration" "^7.16.7" - "@babel/parser" "^7.16.10" - "@babel/types" "^7.16.8" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/traverse@^7.18.9": - version "7.18.11" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.11.tgz#3d51f2afbd83ecf9912bcbb5c4d94e3d2ddaa16f" - integrity sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.18.10" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.18.9" - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.18.11" - "@babel/types" "^7.18.10" +"@babel/runtime@^7.0.0", "@babel/runtime@^7.12.5", "@babel/runtime@^7.15.4", "@babel/runtime@^7.17.8", "@babel/runtime@^7.18.0", "@babel/runtime@^7.20.7", "@babel/runtime@^7.21.0", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.10.tgz#ae3e9631fd947cb7e3610d3e9d8fef5f76696682" + integrity sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ== + dependencies: + regenerator-runtime "^0.14.0" + +"@babel/template@^7.16.7", "@babel/template@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec" + integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== + dependencies: + "@babel/code-frame" "^7.22.5" + "@babel/parser" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/traverse@^7.14.0", "@babel/traverse@^7.15.4", "@babel/traverse@^7.16.8", "@babel/traverse@^7.22.10", "@babel/traverse@^7.4.5": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.10.tgz#20252acb240e746d27c2e82b4484f199cf8141aa" + integrity sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig== + dependencies: + "@babel/code-frame" "^7.22.10" + "@babel/generator" "^7.22.10" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/parser" "^7.22.10" + "@babel/types" "^7.22.10" debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8": - version "7.16.8" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.16.8.tgz#0ba5da91dd71e0a4e7781a30f22770831062e3c1" - integrity sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg== +"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.15.4", "@babel/types@^7.16.8", "@babel/types@^7.22.10", "@babel/types@^7.22.5", "@babel/types@^7.4.4": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.10.tgz#4a9e76446048f2c66982d1a989dd12b8a2d2dc03" + integrity sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg== dependencies: - "@babel/helper-validator-identifier" "^7.16.7" - to-fast-properties "^2.0.0" - -"@babel/types@^7.0.0-beta.49", "@babel/types@^7.15.4", "@babel/types@^7.16.0", "@babel/types@^7.4.4": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.16.0.tgz#db3b313804f96aadd0b776c4823e127ad67289ba" - integrity sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg== - dependencies: - "@babel/helper-validator-identifier" "^7.15.7" - to-fast-properties "^2.0.0" - -"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9": - version "7.18.10" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.10.tgz#4908e81b6b339ca7c6b7a555a5fc29446f26dde6" - integrity sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ== - dependencies: - "@babel/helper-string-parser" "^7.18.10" - "@babel/helper-validator-identifier" "^7.18.6" + "@babel/helper-string-parser" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" to-fast-properties "^2.0.0" "@builder.io/partytown@^0.5.2": @@ -1650,18 +1141,30 @@ resolved "https://registry.yarnpkg.com/@builder.io/partytown/-/partytown-0.5.4.tgz#1a89069978734e132fa4a59414ddb64e4b94fde7" integrity sha512-qnikpQgi30AS01aFlNQV6l8/qdZIcP76mp90ti+u4rucXHsn4afSKivQXApqxvrQG9+Ibv45STyvHizvxef/7A== -"@emotion/is-prop-valid@^0.8.2", "@emotion/is-prop-valid@^0.8.8": +"@emotion/is-prop-valid@^0.8.2": version "0.8.8" resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a" integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== dependencies: "@emotion/memoize" "0.7.4" +"@emotion/is-prop-valid@^1.1.0": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz#23116cf1ed18bfeac910ec6436561ecb1a3885cc" + integrity sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw== + dependencies: + "@emotion/memoize" "^0.8.1" + "@emotion/memoize@0.7.4": version "0.7.4" resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb" integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== +"@emotion/memoize@^0.8.1": + version "0.8.1" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.1.tgz#c1ddb040429c6d21d38cc945fe75c818cfb68e17" + integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== + "@emotion/stylis@^0.8.4": version "0.8.5" resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04" @@ -1672,6 +1175,18 @@ resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== +"@eslint-community/eslint-utils@^4.2.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" + integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + dependencies: + eslint-visitor-keys "^3.3.0" + +"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.1": + version "4.7.0" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.7.0.tgz#96e7c05e738327602ae5942437f9c6b177ec279a" + integrity sha512-+HencqxU7CFJnQb7IKtuNBqS6Yx3Tz4kOL8BJXo+JyeiBm5MEX6pO8onXDkjrkCRlfYXS1Axro15ZjVFe9YgsA== + "@eslint/eslintrc@^0.4.3": version "0.4.3" resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" @@ -1687,42 +1202,52 @@ minimatch "^3.0.4" strip-json-comments "^3.1.1" -"@eslint/eslintrc@^1.0.5": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.0.5.tgz#33f1b838dbf1f923bfa517e008362b78ddbbf318" - integrity sha512-BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ== +"@eslint/eslintrc@^2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.2.tgz#c6936b4b328c64496692f76944e755738be62396" + integrity sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g== dependencies: ajv "^6.12.4" debug "^4.3.2" - espree "^9.2.0" - globals "^13.9.0" - ignore "^4.0.6" + espree "^9.6.0" + globals "^13.19.0" + ignore "^5.2.0" import-fresh "^3.2.1" js-yaml "^4.1.0" - minimatch "^3.0.4" + minimatch "^3.1.2" strip-json-comments "^3.1.1" +"@eslint/js@^8.47.0": + version "8.47.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.47.0.tgz#5478fdf443ff8158f9de171c704ae45308696c7d" + integrity sha512-P6omY1zv5MItm93kLM8s2vr1HICJH8v0dvddDhysbIuZ+vcjOHg5Zbkf1mTkcmi2JA9oBG2anOkRnW8WJTS8Og== + "@fontsource/fjalla-one@^4.5.0": - version "4.5.0" - resolved "https://registry.yarnpkg.com/@fontsource/fjalla-one/-/fjalla-one-4.5.0.tgz#281cb1988d42ed1c03a64c5deaa1c6b1d15504e0" - integrity sha512-gMPwXqlU152USLB/P8CqYAXtIQ/gMH4egA3DG4J/2PGRnUQcwMsZ7mFjb3YvCgnsc+5PxO0nLdpxqVun+qB4Jg== + version "4.5.9" + resolved "https://registry.yarnpkg.com/@fontsource/fjalla-one/-/fjalla-one-4.5.9.tgz#56157dda80850af97692e3130cbf4099a9fc9f91" + integrity sha512-orxS3z82DRF23U6lKqRVroSnIqC4x9ag2hUDmHzG33MH8X48YjnKsGVAMdjt3i0KQjdHNysCp3eMDSrGQ0LfgQ== "@fontsource/roboto@^4.5.1": - version "4.5.1" - resolved "https://registry.yarnpkg.com/@fontsource/roboto/-/roboto-4.5.1.tgz#63f7b783f755d8f6727eb60198627e7e1be3ac20" - integrity sha512-3mhfL+eNPG/woMNqwD/OHaW5qMpeGEBsDwzmhFmjB1yUV+M+M9P0NhP/AyHvnGz3DrqkvZ7CPzNMa+UkVLeELg== + version "4.5.8" + resolved "https://registry.yarnpkg.com/@fontsource/roboto/-/roboto-4.5.8.tgz#56347764786079838faf43f0eeda22dd7328437f" + integrity sha512-CnD7zLItIzt86q4Sj3kZUiLcBk1dSk81qcqgMGaZe7SQ1P8hFNxhMl5AZthK1zrDM5m74VVhaOpuMGIL4gagaA== "@fortawesome/fontawesome-common-types@^0.2.36": version "0.2.36" resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.36.tgz#b44e52db3b6b20523e0c57ef8c42d315532cb903" integrity sha512-a/7BiSgobHAgBWeN7N0w+lAhInrGxksn13uK7231n2m8EDPE3BMCl9NZLTGrj9ZXfCmC6LM0QLqXidIizVQ6yg== +"@fortawesome/fontawesome-common-types@^0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.3.0.tgz#949995a05c0d8801be7e0a594f775f1dbaa0d893" + integrity sha512-CA3MAZBTxVsF6SkfkHXDerkhcQs0QPofy43eFdbWJJkZiq3SfiaH1msOkac59rQaqto5EqWnASboY1dBuKen5w== + "@fortawesome/fontawesome-svg-core@^1.2.36": - version "1.2.36" - resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.36.tgz#4f2ea6f778298e0c47c6524ce2e7fd58eb6930e3" - integrity sha512-YUcsLQKYb6DmaJjIHdDWpBIGCcyE/W+p/LMGvjQem55Mm2XWVAP5kWTMKWLv9lwpCVjpLxPyOMOyUocP1GxrtA== + version "1.3.0" + resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.3.0.tgz#343fac91fa87daa630d26420bfedfba560f85885" + integrity sha512-UIL6crBWhjTNQcONt96ExjUnKt1D68foe3xjEensLDclqQ6YagwCRYVQdrp/hW0ALRp/5Fv/VKw+MqTUWYYvPg== dependencies: - "@fortawesome/fontawesome-common-types" "^0.2.36" + "@fortawesome/fontawesome-common-types" "^0.3.0" "@fortawesome/free-brands-svg-icons@^5.15.4": version "5.15.4" @@ -1739,35 +1264,21 @@ "@fortawesome/fontawesome-common-types" "^0.2.36" "@fortawesome/react-fontawesome@^0.1.16": - version "0.1.16" - resolved "https://registry.yarnpkg.com/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.16.tgz#ce7665490214e20f929368d6b65f68884a99276a" - integrity sha512-aLmzDwC9rEOAJv2UJdMns89VZR5Ry4IHu5dQQh24Z/lWKEm44lfQr1UNalZlkUaQN8d155tNh+CS7ntntj1VMA== + version "0.1.19" + resolved "https://registry.yarnpkg.com/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.19.tgz#2b36917578596f31934e71f92b7cf9c425fd06e4" + integrity sha512-Hyb+lB8T18cvLNX0S3llz7PcSOAJMLwiVKBuuzwM/nI5uoBw+gQjnf9il0fR1C3DKOI5Kc79pkJ4/xB0Uw9aFQ== dependencies: - prop-types "^15.7.2" + prop-types "^15.8.1" -"@gatsbyjs/parcel-namer-relative-to-cwd@1.7.0": - version "1.7.0" - resolved "https://registry.yarnpkg.com/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.7.0.tgz#ddc6cbe8f703a2ca5bf42ca19b603044e094d266" - integrity sha512-KifWxXYcLrXFHvM9Ug77BlyoQ3TLOB3lh4izNHFVuST/NEr5fKpn/IZRqEXhNEYaESjE6C1gDA42Vvhi58pnRQ== +"@gatsbyjs/parcel-namer-relative-to-cwd@^1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-1.10.0.tgz#4768957e2bd343ade1c8dfeb27bff2849ab46564" + integrity sha512-JSiOxG2SD64joKfcCOdujIpqmhs+k5Ic1sO/hQ83EVF6G9DJJTf8n12rGb2rzPb00TFT4ldb/nWxQRV+kQTlPA== dependencies: "@babel/runtime" "^7.18.0" "@parcel/namer-default" "2.6.2" "@parcel/plugin" "2.6.2" - gatsby-core-utils "^3.22.0" - -"@gatsbyjs/potrace@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@gatsbyjs/potrace/-/potrace-2.2.0.tgz#56e88e420c65bb3065caa27772c6acd1c16c4ec4" - integrity sha512-/RiLVFJA+CIYhceb6XL1kD1GZ5E2JBX38pld0fiGNiNwLl+Bb7TYZR72aQvcs3v+NOrSjbagUiCnIHYmEW4F7w== - dependencies: - jimp "^0.16.1" - -"@gatsbyjs/potrace@^2.3.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@gatsbyjs/potrace/-/potrace-2.3.0.tgz#0ac22fb56a02ebc64ce55e4666c4b741cbf27377" - integrity sha512-72szhSY/4tPiPPOzq15CG6LW0s9FuWQ86gkLSUvBNoF0s+jsEdRaZmATYNjiY2Skg//EuyPLEqUQnXKXME0szg== - dependencies: - jimp-compact "^0.16.1-2" + gatsby-core-utils "^3.25.0" "@gatsbyjs/reach-router@^1.3.9": version "1.3.9" @@ -1779,274 +1290,185 @@ react-lifecycles-compat "^3.0.4" "@gatsbyjs/webpack-hot-middleware@^2.25.2": - version "2.25.2" - resolved "https://registry.yarnpkg.com/@gatsbyjs/webpack-hot-middleware/-/webpack-hot-middleware-2.25.2.tgz#bad1a8bfacc2a0ff4f2c991f8aee488e2f38294a" - integrity sha512-IFxleSfFQlvEXho2sDRa0PM+diTI+6tlb38jeUo/Lsi+mDzyjPte5Cj4aWL6PR8FpKGMl+DYfq1jxNvjH2gqkA== + version "2.25.3" + resolved "https://registry.yarnpkg.com/@gatsbyjs/webpack-hot-middleware/-/webpack-hot-middleware-2.25.3.tgz#a00c5f526cbe178330b967f7ed6a487751ffd795" + integrity sha512-ul17OZ8Dlw+ATRbnuU+kwxuAlq9lKbYz/2uBS1FLCdgoPTF1H2heP7HbUbgfMZbfRQNcCG2rMscMnr32ritCDw== dependencies: - ansi-html "0.0.7" - html-entities "^2.1.0" - querystring "^0.2.0" + ansi-html-community "0.0.8" + html-entities "^2.3.3" strip-ansi "^6.0.0" "@graphql-codegen/add@^3.1.1": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@graphql-codegen/add/-/add-3.2.0.tgz#10ce9b13290ff34d29826731e735779618cd0fde" - integrity sha512-8hyr5XvTDGnpiT4nH2yH8PP4SWtUEIUdkFaZbkpkFkU0Ud9dplvSviOCdxdArffZ1FHy0XYLTMa2it+UJOtszg== + version "3.2.3" + resolved "https://registry.yarnpkg.com/@graphql-codegen/add/-/add-3.2.3.tgz#f1ecee085987e7c21841edc4b1fd48877c663e1a" + integrity sha512-sQOnWpMko4JLeykwyjFTxnhqjd/3NOG2OyMuvK76Wnnwh8DRrNf2VEs2kmSvLl7MndMlOj7Kh5U154dVcvhmKQ== dependencies: - "@graphql-codegen/plugin-helpers" "^2.5.0" + "@graphql-codegen/plugin-helpers" "^3.1.1" tslib "~2.4.0" -"@graphql-codegen/core@^2.2.0": - version "2.4.0" - resolved "https://registry.yarnpkg.com/@graphql-codegen/core/-/core-2.4.0.tgz#d94dcc088b5e117c847ce5b10c4fe1eb7325e180" - integrity sha512-5RiYE1+07jayp/3w/bkyaCXtfKNeKmRabpPP4aRi369WeH2cH37l2K8NbhkIU+zhpnhoqMID61TO56x2fKldZQ== - dependencies: - "@graphql-codegen/plugin-helpers" "^2.3.2" - "@graphql-tools/schema" "^8.1.2" - "@graphql-tools/utils" "^8.1.1" - tslib "~2.3.0" - -"@graphql-codegen/core@^2.5.1": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@graphql-codegen/core/-/core-2.6.0.tgz#06a237892285aa6364a8ff40bb234e5b553b4489" - integrity sha512-7uZGnLCMR/pnh/5CsyI4y5bBvRndNHFs+AWpMUUjDBcjMRrMaavu37VyyYDz4/ob0BnQJt8RTBN9eArS9PLYAQ== +"@graphql-codegen/core@^2.2.0", "@graphql-codegen/core@^2.5.1": + version "2.6.8" + resolved "https://registry.yarnpkg.com/@graphql-codegen/core/-/core-2.6.8.tgz#00c4011e3619ddbc6af5e41b2f254d6f6759556e" + integrity sha512-JKllNIipPrheRgl+/Hm/xuWMw9++xNQ12XJR/OHHgFopOg4zmN3TdlRSyYcv/K90hCFkkIwhlHFUQTfKrm8rxQ== dependencies: - "@graphql-codegen/plugin-helpers" "^2.5.0" - "@graphql-tools/schema" "^8.5.0" - "@graphql-tools/utils" "^8.8.0" + "@graphql-codegen/plugin-helpers" "^3.1.1" + "@graphql-tools/schema" "^9.0.0" + "@graphql-tools/utils" "^9.1.1" tslib "~2.4.0" -"@graphql-codegen/plugin-helpers@^2.0.0", "@graphql-codegen/plugin-helpers@^2.3.2": - version "2.3.2" - resolved "https://registry.yarnpkg.com/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.3.2.tgz#3f9ba625791901d19be733db1dfc9a3dbd0dac44" - integrity sha512-19qFA5XMAWaAY64sBljjDPYfHjE+QMk/+oalCyY13WjSlcLDvYPfmFlCNgFSsydArDELlHR8T1GMbA7C42M8TA== +"@graphql-codegen/plugin-helpers@^2.0.0", "@graphql-codegen/plugin-helpers@^2.4.2": + version "2.7.2" + resolved "https://registry.yarnpkg.com/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.7.2.tgz#6544f739d725441c826a8af6a49519f588ff9bed" + integrity sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg== dependencies: - "@graphql-tools/utils" "^8.5.2" + "@graphql-tools/utils" "^8.8.0" change-case-all "1.0.14" common-tags "1.8.2" import-from "4.0.0" lodash "~4.17.0" - tslib "~2.3.0" + tslib "~2.4.0" -"@graphql-codegen/plugin-helpers@^2.4.2", "@graphql-codegen/plugin-helpers@^2.5.0", "@graphql-codegen/plugin-helpers@^2.6.0": - version "2.6.1" - resolved "https://registry.yarnpkg.com/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.6.1.tgz#0e3abf1a13843abecd1d795fe85a61b7459a7e3a" - integrity sha512-RbkCPu8rZo+d3tWPUzqnZhgGutp15GVcs9UhaOcenKpCDDQxNxqGGTn76LuAAymT9y7BSnXdY20k1CW59z4nTw== +"@graphql-codegen/plugin-helpers@^3.1.1", "@graphql-codegen/plugin-helpers@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz#69a2e91178f478ea6849846ade0a59a844d34389" + integrity sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg== dependencies: - "@graphql-tools/utils" "^8.8.0" - change-case-all "1.0.14" + "@graphql-tools/utils" "^9.0.0" + change-case-all "1.0.15" common-tags "1.8.2" import-from "4.0.0" lodash "~4.17.0" tslib "~2.4.0" -"@graphql-codegen/schema-ast@^2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@graphql-codegen/schema-ast/-/schema-ast-2.4.1.tgz#ad742b53e32f7a2fbff8ea8a91ba7e617e6ef236" - integrity sha512-bIWlKk/ShoVJfghA4Rt1OWnd34/dQmZM/vAe6fu6QKyOh44aAdqPtYQ2dbTyFXoknmu504etKJGEDllYNUJRfg== - dependencies: - "@graphql-codegen/plugin-helpers" "^2.3.2" - "@graphql-tools/utils" "^8.1.1" - tslib "~2.3.0" - -"@graphql-codegen/schema-ast@^2.5.0": - version "2.5.0" - resolved "https://registry.yarnpkg.com/@graphql-codegen/schema-ast/-/schema-ast-2.5.0.tgz#1b33a17924f0dd4c78d4f2c9dfce215d0bdd29ae" - integrity sha512-nlF4Yc7h90nmogG2E11TeFJ3/hCkb4SDMSdbJX68b1mhvVEji/kq3zWYKAQ+lAzjZ7HF94Eylm3MrZAjjpCKIA== +"@graphql-codegen/schema-ast@^2.6.1": + version "2.6.1" + resolved "https://registry.yarnpkg.com/@graphql-codegen/schema-ast/-/schema-ast-2.6.1.tgz#8ba1b38827c034b51ecd3ce88622c2ae6cd3fe1a" + integrity sha512-5TNW3b1IHJjCh07D2yQNGDQzUpUl2AD+GVe1Dzjqyx/d2Fn0TPMxLsHsKPS4Plg4saO8FK/QO70wLsP7fdbQ1w== dependencies: - "@graphql-codegen/plugin-helpers" "^2.5.0" - "@graphql-tools/utils" "^8.8.0" + "@graphql-codegen/plugin-helpers" "^3.1.2" + "@graphql-tools/utils" "^9.0.0" tslib "~2.4.0" -"@graphql-codegen/typescript-operations@^2.0.0": - version "2.2.3" - resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript-operations/-/typescript-operations-2.2.3.tgz#c454235963a6e448da1314e7a8abc95281ad0c7d" - integrity sha512-72fzmnxAkjtbfCvLI7MC2WFVygXGAtkmg1SJO39Bby69VIeIA2E/N+EpA6xHDL0TpG+Q3If9aiCFYxa6827SDg== - dependencies: - "@graphql-codegen/plugin-helpers" "^2.3.2" - "@graphql-codegen/typescript" "^2.4.2" - "@graphql-codegen/visitor-plugin-common" "2.5.2" - auto-bind "~4.0.0" - tslib "~2.3.0" - -"@graphql-codegen/typescript-operations@^2.3.5": - version "2.5.2" - resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.2.tgz#17dd6837eadb5bcd42b0c822b78f75c44a9a3c0b" - integrity sha512-iFZsdsF4380WrN2UQHfgLjrjyo9VFIsZuCaHe1OoC4fQQ+P3t/GfJ0aj0hc5hNwTNJZ3BzBLHSRgE6wqO4591A== +"@graphql-codegen/typescript-operations@^2.0.0", "@graphql-codegen/typescript-operations@^2.3.5": + version "2.5.13" + resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz#f286c37f9c023356aacaa983ebd32e9e021a05ca" + integrity sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw== dependencies: - "@graphql-codegen/plugin-helpers" "^2.6.0" - "@graphql-codegen/typescript" "^2.7.2" - "@graphql-codegen/visitor-plugin-common" "2.12.0" + "@graphql-codegen/plugin-helpers" "^3.1.2" + "@graphql-codegen/typescript" "^2.8.8" + "@graphql-codegen/visitor-plugin-common" "2.13.8" auto-bind "~4.0.0" tslib "~2.4.0" -"@graphql-codegen/typescript@^2.0.0", "@graphql-codegen/typescript@^2.4.2": - version "2.4.2" - resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript/-/typescript-2.4.2.tgz#a239d5fd8f11140d5d4c81cfae7ff02054b724dc" - integrity sha512-8ajWidiFqF1KNAywtb/692SjwTyjzrDHo1sf2Q7Z+rh9qDEIrh83VHB8naT/1CefOvxj3MS6GbcsvJMizaE/AQ== +"@graphql-codegen/typescript@^2.0.0", "@graphql-codegen/typescript@^2.4.8", "@graphql-codegen/typescript@^2.8.8": + version "2.8.8" + resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript/-/typescript-2.8.8.tgz#8c3b9153e334db43c65f8f31ced69b4c60d14861" + integrity sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw== dependencies: - "@graphql-codegen/plugin-helpers" "^2.3.2" - "@graphql-codegen/schema-ast" "^2.4.1" - "@graphql-codegen/visitor-plugin-common" "2.5.2" - auto-bind "~4.0.0" - tslib "~2.3.0" - -"@graphql-codegen/typescript@^2.4.8", "@graphql-codegen/typescript@^2.7.2": - version "2.7.2" - resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript/-/typescript-2.7.2.tgz#ad47ad1abf8e49f455a47cb71d2d9fd149d7846d" - integrity sha512-lFqvLgw4oAChA9+ifC2K7Ie+mE+XvHcZqwXsm45bpF7jbmqfgjS0gvQNfu2egi6u4hdg+xL+olNxwnyhayrikw== - dependencies: - "@graphql-codegen/plugin-helpers" "^2.6.0" - "@graphql-codegen/schema-ast" "^2.5.0" - "@graphql-codegen/visitor-plugin-common" "2.12.0" + "@graphql-codegen/plugin-helpers" "^3.1.2" + "@graphql-codegen/schema-ast" "^2.6.1" + "@graphql-codegen/visitor-plugin-common" "2.13.8" auto-bind "~4.0.0" tslib "~2.4.0" -"@graphql-codegen/visitor-plugin-common@2.12.0": - version "2.12.0" - resolved "https://registry.yarnpkg.com/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.12.0.tgz#49b055c5c2c5c0890f2226ce9e84bb73dfd83801" - integrity sha512-ULhFgOY05U+dlPsXkPT2wSBaAZMtEuHPL5Q1u8xwBdHWHi/uT4L5zEcBx+If/f6UWrOw7ufjEM0L7XSupe1iCA== +"@graphql-codegen/visitor-plugin-common@2.13.8": + version "2.13.8" + resolved "https://registry.yarnpkg.com/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz#09bc6317b227e5a278f394f4cef0d6c2d1910597" + integrity sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ== dependencies: - "@graphql-codegen/plugin-helpers" "^2.6.0" + "@graphql-codegen/plugin-helpers" "^3.1.2" "@graphql-tools/optimize" "^1.3.0" "@graphql-tools/relay-operation-optimizer" "^6.5.0" - "@graphql-tools/utils" "^8.8.0" + "@graphql-tools/utils" "^9.0.0" auto-bind "~4.0.0" - change-case-all "1.0.14" + change-case-all "1.0.15" dependency-graph "^0.11.0" graphql-tag "^2.11.0" parse-filepath "^1.0.2" tslib "~2.4.0" -"@graphql-codegen/visitor-plugin-common@2.5.2": - version "2.5.2" - resolved "https://registry.yarnpkg.com/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.5.2.tgz#90aa4add41e17bca83f1c7c8ad674f2a06065efd" - integrity sha512-qDMraPmumG+vEGAz42/asRkdgIRmQWH5HTc320UX+I6CY6eE/Ey85cgzoqeQGLV8gu4sj3UkNx/3/r79eX4u+Q== - dependencies: - "@graphql-codegen/plugin-helpers" "^2.3.2" - "@graphql-tools/optimize" "^1.0.1" - "@graphql-tools/relay-operation-optimizer" "^6.3.7" - "@graphql-tools/utils" "^8.3.0" - auto-bind "~4.0.0" - change-case-all "1.0.14" - dependency-graph "^0.11.0" - graphql-tag "^2.11.0" - parse-filepath "^1.0.2" - tslib "~2.3.0" - -"@graphql-tools/batch-execute@^8.3.1": - version "8.3.1" - resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-8.3.1.tgz#0b74c54db5ac1c5b9a273baefc034c2343ebbb74" - integrity sha512-63kHY8ZdoO5FoeDXYHnAak1R3ysMViMPwWC2XUblFckuVLMUPmB2ONje8rjr2CvzWBHAW8c1Zsex+U3xhKtGIA== +"@graphql-tools/batch-execute@8.5.1": + version "8.5.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-8.5.1.tgz#fa3321d58c64041650be44250b1ebc3aab0ba7a9" + integrity sha512-hRVDduX0UDEneVyEWtc2nu5H2PxpfSfM/riUlgZvo/a/nG475uyehxR5cFGvTEPEQUKY3vGIlqvtRigzqTfCew== dependencies: - "@graphql-tools/utils" "^8.5.1" - dataloader "2.0.0" - tslib "~2.3.0" + "@graphql-tools/utils" "8.9.0" + dataloader "2.1.0" + tslib "^2.4.0" value-or-promise "1.0.11" -"@graphql-tools/code-file-loader@^7.0.0": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@graphql-tools/code-file-loader/-/code-file-loader-7.2.3.tgz#b53e8809528da07911423c3a511e5fccf9121a12" - integrity sha512-aNVG3/VG5cUpS389rpCum+z7RY98qvPwOzd+J4LVr+f5hWQbDREnSFM+5RVTDfULujrsi7edKaGxGKp68pGmAA== - dependencies: - "@graphql-tools/graphql-tag-pluck" "^7.1.3" - "@graphql-tools/utils" "^8.5.1" - globby "^11.0.3" - tslib "~2.3.0" - unixify "^1.0.0" - -"@graphql-tools/code-file-loader@^7.2.14": - version "7.3.1" - resolved "https://registry.yarnpkg.com/@graphql-tools/code-file-loader/-/code-file-loader-7.3.1.tgz#82cf1e7c5366fd6e084f607e6c14a4447110f035" - integrity sha512-nyr0zln7fi4E8lK98THdb8k3gPsSCiyXRFTTNhPRUCPeOD2RCpUZCClM5AB0xv8HjILAipdaxjhb2elPvnY5dw== +"@graphql-tools/code-file-loader@^7.0.0", "@graphql-tools/code-file-loader@^7.2.14": + version "7.3.23" + resolved "https://registry.yarnpkg.com/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz#33793f9a1f8e74981f8ae6ec4ab7061f9713db15" + integrity sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q== dependencies: - "@graphql-tools/graphql-tag-pluck" "7.3.1" - "@graphql-tools/utils" "8.9.0" + "@graphql-tools/graphql-tag-pluck" "7.5.2" + "@graphql-tools/utils" "^9.2.1" globby "^11.0.3" tslib "^2.4.0" unixify "^1.0.0" -"@graphql-tools/delegate@^8.4.1", "@graphql-tools/delegate@^8.4.2": - version "8.4.3" - resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-8.4.3.tgz#ad73ed7cc3b4cad9242c6d4835a5ae0b640f7164" - integrity sha512-hKTJdJXJnKL0+2vpU+Kt7OHQTIXZ9mBmNBwHsYiG5WNArz/vNI7910r6TC2XMf/e7zhyyK+mXxMDBmDQkkJagA== +"@graphql-tools/delegate@8.8.1", "@graphql-tools/delegate@^8.4.1": + version "8.8.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-8.8.1.tgz#0653a72f38947f38ab7917dfac50ebf6a6b883e9" + integrity sha512-NDcg3GEQmdEHlnF7QS8b4lM1PSF+DKeFcIlLEfZFBvVq84791UtJcDj8734sIHLukmyuAxXMfA1qLd2l4lZqzA== dependencies: - "@graphql-tools/batch-execute" "^8.3.1" - "@graphql-tools/schema" "^8.3.1" - "@graphql-tools/utils" "^8.5.4" - dataloader "2.0.0" - tslib "~2.3.0" + "@graphql-tools/batch-execute" "8.5.1" + "@graphql-tools/schema" "8.5.1" + "@graphql-tools/utils" "8.9.0" + dataloader "2.1.0" + tslib "~2.4.0" value-or-promise "1.0.11" "@graphql-tools/graphql-file-loader@^7.0.0": - version "7.3.3" - resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.3.3.tgz#7cee2f84f08dc13fa756820b510248b857583d36" - integrity sha512-6kUJZiNpYKVhum9E5wfl5PyLLupEDYdH7c8l6oMrk6c7EPEVs6iSUyB7yQoWrtJccJLULBW2CRQ5IHp5JYK0mA== + version "7.5.17" + resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.17.tgz#7c281617ea3ab4db4d42a2bdb49850f2b937f0f9" + integrity sha512-hVwwxPf41zOYgm4gdaZILCYnKB9Zap7Ys9OhY1hbwuAuC4MMNY9GpUjoTU3CQc3zUiPoYStyRtUGkHSJZ3HxBw== dependencies: - "@graphql-tools/import" "^6.5.7" - "@graphql-tools/utils" "^8.5.1" + "@graphql-tools/import" "6.7.18" + "@graphql-tools/utils" "^9.2.1" globby "^11.0.3" - tslib "~2.3.0" + tslib "^2.4.0" unixify "^1.0.0" -"@graphql-tools/graphql-tag-pluck@7.3.1": - version "7.3.1" - resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.3.1.tgz#067880a923bacbb522eab68d994975346d68ab64" - integrity sha512-+Aayl4y42ASrxDvu613lp3NiK1JRggy/m9wlo93dJp/9L5vKPYlrtFvuQ1tpPEEuSBboYNa/erOsELrRwzzakA== +"@graphql-tools/graphql-tag-pluck@7.5.2", "@graphql-tools/graphql-tag-pluck@^7.0.0": + version "7.5.2" + resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz#502f1e066e19d832ebdeba5f571d7636dc27572d" + integrity sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA== dependencies: "@babel/parser" "^7.16.8" + "@babel/plugin-syntax-import-assertions" "^7.20.0" "@babel/traverse" "^7.16.8" "@babel/types" "^7.16.8" - "@graphql-tools/utils" "8.9.0" + "@graphql-tools/utils" "^9.2.1" tslib "^2.4.0" -"@graphql-tools/graphql-tag-pluck@^7.0.0", "@graphql-tools/graphql-tag-pluck@^7.1.3": - version "7.1.5" - resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.1.5.tgz#229ed40f38430cdea750f112cbfad89fbc29129c" - integrity sha512-NKbFcjlg7cbK+scLXc6eVxXIhX4k8QL6lZ/y5Ju7yrpIN18k2vA78dI6W3Qb5qdftxbDNuC+kDmScZfzzxVPjQ== - dependencies: - "@babel/parser" "^7.16.8" - "@babel/traverse" "^7.16.8" - "@babel/types" "^7.16.8" - "@graphql-tools/utils" "^8.5.1" - tslib "~2.3.0" - -"@graphql-tools/import@^6.5.7": - version "6.6.5" - resolved "https://registry.yarnpkg.com/@graphql-tools/import/-/import-6.6.5.tgz#e1ec593960288ceda7d5c56c0073c702b1bdcfa0" - integrity sha512-w0/cYuhrr2apn+iGoTToCqt65x2NN2iHQyqRNk/Zw1NJ+e8/C3eKVw0jmW4pYQvSocuPxL4UCSI56SdKO7m3+Q== +"@graphql-tools/import@6.7.18": + version "6.7.18" + resolved "https://registry.yarnpkg.com/@graphql-tools/import/-/import-6.7.18.tgz#ad092d8a4546bb6ffc3e871e499eec7ac368680b" + integrity sha512-XQDdyZTp+FYmT7as3xRWH/x8dx0QZA2WZqfMF5EWb36a0PiH7WwlRQYIdyYXj8YCLpiWkeBXgBRHmMnwEYR8iQ== dependencies: - "@graphql-tools/utils" "8.6.1" + "@graphql-tools/utils" "^9.2.1" resolve-from "5.0.0" - tslib "~2.3.0" + tslib "^2.4.0" "@graphql-tools/json-file-loader@^7.0.0": - version "7.3.3" - resolved "https://registry.yarnpkg.com/@graphql-tools/json-file-loader/-/json-file-loader-7.3.3.tgz#45cfde77b9dc4ab6c21575305ae537d2814d237f" - integrity sha512-CN2Qk9rt+Gepa3rb3X/mpxYA5MIYLwZBPj2Njw6lbZ6AaxG+O1ArDCL5ACoiWiBimn1FCOM778uhRM9znd0b3Q== + version "7.4.18" + resolved "https://registry.yarnpkg.com/@graphql-tools/json-file-loader/-/json-file-loader-7.4.18.tgz#d78ae40979bde51cfc59717757354afc9e35fba2" + integrity sha512-AJ1b6Y1wiVgkwsxT5dELXhIVUPs/u3VZ8/0/oOtpcoyO/vAeM5rOvvWegzicOOnQw8G45fgBRMkkRfeuwVt6+w== dependencies: - "@graphql-tools/utils" "^8.5.1" + "@graphql-tools/utils" "^9.2.1" globby "^11.0.3" - tslib "~2.3.0" + tslib "^2.4.0" unixify "^1.0.0" -"@graphql-tools/load@^7.0.0": - version "7.5.1" - resolved "https://registry.yarnpkg.com/@graphql-tools/load/-/load-7.5.1.tgz#8c7f846d2185ddc1d44fdfbf1ed9cb678f69e40b" - integrity sha512-j9XcLYZPZdl/TzzqA83qveJmwcCxgGizt5L1+C1/Z68brTEmQHLdQCOR3Ma3ewESJt6DU05kSTu2raKaunkjRg== - dependencies: - "@graphql-tools/schema" "8.3.1" - "@graphql-tools/utils" "^8.6.0" - p-limit "3.1.0" - tslib "~2.3.0" - -"@graphql-tools/load@^7.5.10": - version "7.7.1" - resolved "https://registry.yarnpkg.com/@graphql-tools/load/-/load-7.7.1.tgz#937354e5123a8b0e0d59585ebca7c55165265a98" - integrity sha512-rJ2WUV41wwAkMnBgtcBym3TKVbPgz7z9tBCjOmbNVLy5bB9StVPdo2Uci0D5xYSgLV9XIt+zdyAnYGptioJeWg== +"@graphql-tools/load@^7.0.0", "@graphql-tools/load@^7.5.10": + version "7.8.14" + resolved "https://registry.yarnpkg.com/@graphql-tools/load/-/load-7.8.14.tgz#f2356f9a5f658a42e33934ae036e4b2cadf2d1e9" + integrity sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg== dependencies: - "@graphql-tools/schema" "8.5.1" - "@graphql-tools/utils" "8.9.0" + "@graphql-tools/schema" "^9.0.18" + "@graphql-tools/utils" "^9.2.1" p-limit "3.1.0" tslib "^2.4.0" @@ -2058,57 +1480,31 @@ "@graphql-tools/utils" "8.9.0" tslib "^2.4.0" -"@graphql-tools/merge@^8.2.1": - version "8.2.1" - resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-8.2.1.tgz#bf83aa06a0cfc6a839e52a58057a84498d0d51ff" - integrity sha512-Q240kcUszhXiAYudjuJgNuLgy9CryDP3wp83NOZQezfA6h3ByYKU7xI6DiKrdjyVaGpYN3ppUmdj0uf5GaXzMA== - dependencies: - "@graphql-tools/utils" "^8.5.1" - tslib "~2.3.0" - -"@graphql-tools/optimize@^1.0.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@graphql-tools/optimize/-/optimize-1.1.1.tgz#dcd59ba1ee34431e5e9b086b57fe0bdb1a176669" - integrity sha512-y0TEfPyGmJaQjnsTRs/UP7/ZHaB3i68VAsXW4H2doUFKY6rIOUz+ruME/uWsfy/VeTWBNqGX8/m/X7YFEi5OJQ== +"@graphql-tools/merge@^8.4.1": + version "8.4.2" + resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-8.4.2.tgz#95778bbe26b635e8d2f60ce9856b388f11fe8288" + integrity sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw== dependencies: - tslib "~2.3.0" + "@graphql-tools/utils" "^9.2.1" + tslib "^2.4.0" "@graphql-tools/optimize@^1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@graphql-tools/optimize/-/optimize-1.3.0.tgz#11ea27ac73e857d882ccfd7a3a981d8d6fb521e2" - integrity sha512-30QOWJoMJEt1De7tAFtWJ6VPrP6SLq+tSQrA3x+WMvCW3q2exq5wPDpvAXOakVKu0y8L2E+YkipC0hcQPBQdLg== + version "1.4.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/optimize/-/optimize-1.4.0.tgz#20d6a9efa185ef8fc4af4fd409963e0907c6e112" + integrity sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw== dependencies: tslib "^2.4.0" -"@graphql-tools/relay-operation-optimizer@^6.3.7": - version "6.4.1" - resolved "https://registry.yarnpkg.com/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.4.1.tgz#28572444e2c00850c889a84472f3cc7405dc1ad8" - integrity sha512-2b9D5L+31sIBnvmcmIW5tfvNUV+nJFtbHpUyarTRDmFT6EZ2cXo4WZMm9XJcHQD/Z5qvMXfPHxzQ3/JUs4xI+w== - dependencies: - "@graphql-tools/utils" "^8.5.1" - relay-compiler "12.0.0" - tslib "~2.3.0" - "@graphql-tools/relay-operation-optimizer@^6.5.0": - version "6.5.1" - resolved "https://registry.yarnpkg.com/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.1.tgz#0537fce9f3038886801f5b069c48a1e96ee96e17" - integrity sha512-YhJWspP1TazW6iCJtdoN20Z/Og0kw4Gnx5uFeIviNP17G4tf2LJPttd1ePkCcNZ3pgAIVjbInh9i/0NRJLAJAQ== + version "6.5.18" + resolved "https://registry.yarnpkg.com/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz#a1b74a8e0a5d0c795b8a4d19629b654cf66aa5ab" + integrity sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg== dependencies: "@ardatan/relay-compiler" "12.0.0" - "@graphql-tools/utils" "8.9.0" + "@graphql-tools/utils" "^9.2.1" tslib "^2.4.0" -"@graphql-tools/schema@8.3.1", "@graphql-tools/schema@^8.1.2", "@graphql-tools/schema@^8.3.1": - version "8.3.1" - resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-8.3.1.tgz#1ee9da494d2da457643b3c93502b94c3c4b68c74" - integrity sha512-3R0AJFe715p4GwF067G5i0KCr/XIdvSfDLvTLEiTDQ8V/hwbOHEKHKWlEBHGRQwkG5lwFQlW1aOn7VnlPERnWQ== - dependencies: - "@graphql-tools/merge" "^8.2.1" - "@graphql-tools/utils" "^8.5.1" - tslib "~2.3.0" - value-or-promise "1.0.11" - -"@graphql-tools/schema@8.5.1", "@graphql-tools/schema@^8.5.0": +"@graphql-tools/schema@8.5.1": version "8.5.1" resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-8.5.1.tgz#c2f2ff1448380919a330312399c9471db2580b58" integrity sha512-0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg== @@ -2118,67 +1514,85 @@ tslib "^2.4.0" value-or-promise "1.0.11" -"@graphql-tools/url-loader@^7.0.0": - version "7.7.1" - resolved "https://registry.yarnpkg.com/@graphql-tools/url-loader/-/url-loader-7.7.1.tgz#2faabdc1d2c47edc8edc9cc938eee2767189869f" - integrity sha512-K/5amdeHtKYI976HVd/AXdSNvLL7vx5QVjMlwN0OHeYyxSgC+UOH+KkS7cshYgL13SekGu0Mxbg9ABfgQ34ECA== +"@graphql-tools/schema@^9.0.0", "@graphql-tools/schema@^9.0.18": + version "9.0.19" + resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-9.0.19.tgz#c4ad373b5e1b8a0cf365163435b7d236ebdd06e7" + integrity sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w== + dependencies: + "@graphql-tools/merge" "^8.4.1" + "@graphql-tools/utils" "^9.2.1" + tslib "^2.4.0" + value-or-promise "^1.0.12" + +"@graphql-tools/url-loader@7.0.0 - 7.4.2": + version "7.4.2" + resolved "https://registry.yarnpkg.com/@graphql-tools/url-loader/-/url-loader-7.4.2.tgz#f2b8b5b34102bfb85e42bb4ebc40c1eca75df880" + integrity sha512-dS/cTux3Xw5flM9KHCwPzq7S0Yy7ff8mOmvq2quDfYmn0OawhccyEcjGnrgQ896ujwg+qYQqEyB62hv4A5962w== dependencies: "@graphql-tools/delegate" "^8.4.1" "@graphql-tools/utils" "^8.5.1" "@graphql-tools/wrap" "^8.3.1" - "@n1ru4l/graphql-live-query" "^0.9.0" - "@types/websocket" "^1.0.4" + "@n1ru4l/graphql-live-query" "0.8.1" + "@types/websocket" "1.0.4" "@types/ws" "^8.0.0" - cross-undici-fetch "^0.1.19" + abort-controller "3.0.0" + cross-fetch "3.1.4" dset "^3.1.0" - extract-files "^11.0.0" + extract-files "11.0.0" + form-data "4.0.0" graphql-sse "^1.0.1" graphql-ws "^5.4.1" - isomorphic-ws "^4.0.1" - meros "^1.1.4" - subscriptions-transport-ws "^0.11.0" - sync-fetch "^0.3.1" - tslib "^2.3.0" - valid-url "^1.0.9" - value-or-promise "^1.0.11" - ws "^8.3.0" - -"@graphql-tools/utils@8.6.1", "@graphql-tools/utils@^8.0.0", "@graphql-tools/utils@^8.1.1", "@graphql-tools/utils@^8.3.0", "@graphql-tools/utils@^8.5.2", "@graphql-tools/utils@^8.5.3", "@graphql-tools/utils@^8.5.4", "@graphql-tools/utils@^8.6.0": - version "8.6.1" - resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.6.1.tgz#52c7eb108f2ca2fd01bdba8eef85077ead1bf882" - integrity sha512-uxcfHCocp4ENoIiovPxUWZEHOnbXqj3ekWc0rm7fUhW93a1xheARNHcNKhwMTR+UKXVJbTFQdGI1Rl5XdyvDBg== - dependencies: + isomorphic-ws "4.0.1" + meros "1.1.4" + subscriptions-transport-ws "^0.10.0" + sync-fetch "0.3.1" tslib "~2.3.0" + valid-url "1.0.9" + value-or-promise "1.0.11" + ws "8.2.3" -"@graphql-tools/utils@8.9.0", "@graphql-tools/utils@^8.8.0": +"@graphql-tools/utils@8.9.0": version "8.9.0" resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.9.0.tgz#c6aa5f651c9c99e1aca55510af21b56ec296cdb7" integrity sha512-pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg== dependencies: tslib "^2.4.0" -"@graphql-tools/utils@^8.5.1": - version "8.5.5" - resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.5.5.tgz#019ddb99719feb19602afdb537c06e463df674a9" - integrity sha512-y7zRXWIUI73X+9/rf/0KzrNFMlpRKFfzLiwdbIeWwgLs+NV9vfUOoVkX8luXX6LwQxhSypHATMiwZGM2ro/wJA== +"@graphql-tools/utils@^8.0.0", "@graphql-tools/utils@^8.5.1", "@graphql-tools/utils@^8.8.0": + version "8.13.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.13.1.tgz#b247607e400365c2cd87ff54654d4ad25a7ac491" + integrity sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw== dependencies: - tslib "~2.3.0" + tslib "^2.4.0" + +"@graphql-tools/utils@^9.0.0", "@graphql-tools/utils@^9.1.1", "@graphql-tools/utils@^9.2.1": + version "9.2.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-9.2.1.tgz#1b3df0ef166cfa3eae706e3518b17d5922721c57" + integrity sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A== + dependencies: + "@graphql-typed-document-node/core" "^3.1.1" + tslib "^2.4.0" "@graphql-tools/wrap@^8.3.1": - version "8.3.3" - resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-8.3.3.tgz#014aa04a6cf671ffe477516255d1134777da056a" - integrity sha512-TpXN1S4Cv+oMA1Zsg9Nu4N9yrFxLuJkX+CTtSRrrdfETGHIxqfyDkm5slPDCckxP+RILA00g8ny2jzsYyNvX1w== + version "8.5.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-8.5.1.tgz#d4bd1f89850bb1ce0209f35f66d002080b439495" + integrity sha512-KpVVfha2wLSpE08YLX0jeo5nXPfDLASlxOqMlvfa/B4X8SOVmuLyN1L5YZ132tPLDF93uflwlHFnUO5ahpRNlA== dependencies: - "@graphql-tools/delegate" "^8.4.2" - "@graphql-tools/schema" "^8.3.1" - "@graphql-tools/utils" "^8.5.3" - tslib "~2.3.0" + "@graphql-tools/delegate" "8.8.1" + "@graphql-tools/schema" "8.5.1" + "@graphql-tools/utils" "8.9.0" + tslib "^2.4.0" value-or-promise "1.0.11" +"@graphql-typed-document-node/core@^3.1.1": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.2.0.tgz#5f3d96ec6b2354ad6d8a28bf216a1d97b5426861" + integrity sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ== + "@hapi/hoek@^9.0.0": - version "9.2.1" - resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.2.1.tgz#9551142a1980503752536b5050fd99f4a7f13b17" - integrity sha512-gfta+H8aziZsm8pZa0vj04KO6biEiisppNgA1kbJvFrrWu9Vm7eaUEy76DIxsuTaWvti5fkJVhllWc6ZTE+Mdw== + version "9.3.0" + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== "@hapi/topo@^5.0.0": version "5.1.0" @@ -2187,6 +1601,15 @@ dependencies: "@hapi/hoek" "^9.0.0" +"@humanwhocodes/config-array@^0.11.10": + version "0.11.10" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2" + integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ== + dependencies: + "@humanwhocodes/object-schema" "^1.2.1" + debug "^4.1.1" + minimatch "^3.0.5" + "@humanwhocodes/config-array@^0.5.0": version "0.5.0" resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" @@ -2196,349 +1619,55 @@ debug "^4.1.1" minimatch "^3.0.4" -"@humanwhocodes/config-array@^0.9.2": - version "0.9.2" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.2.tgz#68be55c737023009dfc5fe245d51181bb6476914" - integrity sha512-UXOuFCGcwciWckOpmfKDq/GyhlTf9pN/BzG//x8p8zTOFEcGuA68ANXheFS0AGvy3qgZqLBUkMs7hqzqCKOVwA== - dependencies: - "@humanwhocodes/object-schema" "^1.2.1" - debug "^4.1.1" - minimatch "^3.0.4" +"@humanwhocodes/module-importer@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== "@humanwhocodes/object-schema@^1.2.0", "@humanwhocodes/object-schema@^1.2.1": version "1.2.1" resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== -"@jimp/bmp@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/bmp/-/bmp-0.16.1.tgz#6e2da655b2ba22e721df0795423f34e92ef13768" - integrity sha512-iwyNYQeBawrdg/f24x3pQ5rEx+/GwjZcCXd3Kgc+ZUd+Ivia7sIqBsOnDaMZdKCBPlfW364ekexnlOqyVa0NWg== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - bmp-js "^0.1.0" - -"@jimp/core@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/core/-/core-0.16.1.tgz#68c4288f6ef7f31a0f6b859ba3fb28dae930d39d" - integrity sha512-la7kQia31V6kQ4q1kI/uLimu8FXx7imWVajDGtwUG8fzePLWDFJyZl0fdIXVCL1JW2nBcRHidUot6jvlRDi2+g== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - any-base "^1.1.0" - buffer "^5.2.0" - exif-parser "^0.1.12" - file-type "^9.0.0" - load-bmfont "^1.3.1" - mkdirp "^0.5.1" - phin "^2.9.1" - pixelmatch "^4.0.2" - tinycolor2 "^1.4.1" - -"@jimp/custom@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/custom/-/custom-0.16.1.tgz#28b659c59e20a1d75a0c46067bd3f4bd302cf9c5" - integrity sha512-DNUAHNSiUI/j9hmbatD6WN/EBIyeq4AO0frl5ETtt51VN1SvE4t4v83ZA/V6ikxEf3hxLju4tQ5Pc3zmZkN/3A== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/core" "^0.16.1" - -"@jimp/gif@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/gif/-/gif-0.16.1.tgz#d1f7c3a58f4666482750933af8b8f4666414f3ca" - integrity sha512-r/1+GzIW1D5zrP4tNrfW+3y4vqD935WBXSc8X/wm23QTY9aJO9Lw6PEdzpYCEY+SOklIFKaJYUAq/Nvgm/9ryw== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - gifwrap "^0.9.2" - omggif "^1.0.9" - -"@jimp/jpeg@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/jpeg/-/jpeg-0.16.1.tgz#3b7bb08a4173f2f6d81f3049b251df3ee2ac8175" - integrity sha512-8352zrdlCCLFdZ/J+JjBslDvml+fS3Z8gttdml0We759PnnZGqrnPRhkOEOJbNUlE+dD4ckLeIe6NPxlS/7U+w== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - jpeg-js "0.4.2" - -"@jimp/plugin-blit@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-blit/-/plugin-blit-0.16.1.tgz#09ea919f9d326de3b9c2826fe4155da37dde8edb" - integrity sha512-fKFNARm32RoLSokJ8WZXHHH2CGzz6ire2n1Jh6u+XQLhk9TweT1DcLHIXwQMh8oR12KgjbgsMGvrMVlVknmOAg== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-blur@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-blur/-/plugin-blur-0.16.1.tgz#e614fa002797dcd662e705d4cea376e7db968bf5" - integrity sha512-1WhuLGGj9MypFKRcPvmW45ht7nXkOKu+lg3n2VBzIB7r4kKNVchuI59bXaCYQumOLEqVK7JdB4glaDAbCQCLyw== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-circle@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-circle/-/plugin-circle-0.16.1.tgz#20e3194a67ca29740aba2630fd4d0a89afa27491" - integrity sha512-JK7yi1CIU7/XL8hdahjcbGA3V7c+F+Iw+mhMQhLEi7Q0tCnZ69YJBTamMiNg3fWPVfMuvWJJKOBRVpwNTuaZRg== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-color@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-color/-/plugin-color-0.16.1.tgz#0f298ba74dee818b663834cd80d53e56f3755233" - integrity sha512-9yQttBAO5SEFj7S6nJK54f+1BnuBG4c28q+iyzm1JjtnehjqMg6Ljw4gCSDCvoCQ3jBSYHN66pmwTV74SU1B7A== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - tinycolor2 "^1.4.1" - -"@jimp/plugin-contain@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-contain/-/plugin-contain-0.16.1.tgz#3c5f5c495fd9bb08a970739d83694934f58123f2" - integrity sha512-44F3dUIjBDHN+Ym/vEfg+jtjMjAqd2uw9nssN67/n4FdpuZUVs7E7wadKY1RRNuJO+WgcD5aDQcsvurXMETQTg== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-cover@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-cover/-/plugin-cover-0.16.1.tgz#0e8caec16a40abe15b1b32e5383a603a3306dc41" - integrity sha512-YztWCIldBAVo0zxcQXR+a/uk3/TtYnpKU2CanOPJ7baIuDlWPsG+YE4xTsswZZc12H9Kl7CiziEbDtvF9kwA/Q== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-crop@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-crop/-/plugin-crop-0.16.1.tgz#b362497c873043fe47ba881ab08604bf7226f50f" - integrity sha512-UQdva9oQzCVadkyo3T5Tv2CUZbf0klm2cD4cWMlASuTOYgaGaFHhT9st+kmfvXjKL8q3STkBu/zUPV6PbuV3ew== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-displace@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-displace/-/plugin-displace-0.16.1.tgz#4dd9db518c3e78de9d723f86a234bf98922afe8d" - integrity sha512-iVAWuz2+G6Heu8gVZksUz+4hQYpR4R0R/RtBzpWEl8ItBe7O6QjORAkhxzg+WdYLL2A/Yd4ekTpvK0/qW8hTVw== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-dither@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-dither/-/plugin-dither-0.16.1.tgz#b47de2c0bb09608bed228b41c3cd01a85ec2d45b" - integrity sha512-tADKVd+HDC9EhJRUDwMvzBXPz4GLoU6s5P7xkVq46tskExYSptgj5713J5Thj3NMgH9Rsqu22jNg1H/7tr3V9Q== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-fisheye@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-fisheye/-/plugin-fisheye-0.16.1.tgz#f625047b6cdbe1b83b89e9030fd025ab19cdb1a4" - integrity sha512-BWHnc5hVobviTyIRHhIy9VxI1ACf4CeSuCfURB6JZm87YuyvgQh5aX5UDKtOz/3haMHXBLP61ZBxlNpMD8CG4A== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-flip@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-flip/-/plugin-flip-0.16.1.tgz#7a99ea22bde802641017ed0f2615870c144329bb" - integrity sha512-KdxTf0zErfZ8DyHkImDTnQBuHby+a5YFdoKI/G3GpBl3qxLBvC+PWkS2F/iN3H7wszP7/TKxTEvWL927pypT0w== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-gaussian@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-gaussian/-/plugin-gaussian-0.16.1.tgz#0845e314085ccd52e34fad9a83949bc0d81a68e8" - integrity sha512-u9n4wjskh3N1mSqketbL6tVcLU2S5TEaFPR40K6TDv4phPLZALi1Of7reUmYpVm8mBDHt1I6kGhuCJiWvzfGyg== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-invert@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-invert/-/plugin-invert-0.16.1.tgz#7e6f5a15707256f3778d06921675bbcf18545c97" - integrity sha512-2DKuyVXANH8WDpW9NG+PYFbehzJfweZszFYyxcaewaPLN0GxvxVLOGOPP1NuUTcHkOdMFbE0nHDuB7f+sYF/2w== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-mask@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-mask/-/plugin-mask-0.16.1.tgz#e7f2460e05c3cda7af5e76f33ccb0579f66f90df" - integrity sha512-snfiqHlVuj4bSFS0v96vo2PpqCDMe4JB+O++sMo5jF5mvGcGL6AIeLo8cYqPNpdO6BZpBJ8MY5El0Veckhr39Q== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-normalize@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-normalize/-/plugin-normalize-0.16.1.tgz#032dfd88eefbc4dedc8b1b2d243832e4f3af30c8" - integrity sha512-dOQfIOvGLKDKXPU8xXWzaUeB0nvkosHw6Xg1WhS1Z5Q0PazByhaxOQkSKgUryNN/H+X7UdbDvlyh/yHf3ITRaw== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-print@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-print/-/plugin-print-0.16.1.tgz#66b803563f9d109825970714466e6ab9ae639ff6" - integrity sha512-ceWgYN40jbN4cWRxixym+csyVymvrryuKBQ+zoIvN5iE6OyS+2d7Mn4zlNgumSczb9GGyZZESIgVcBDA1ezq0Q== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - load-bmfont "^1.4.0" - -"@jimp/plugin-resize@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-resize/-/plugin-resize-0.16.1.tgz#65e39d848ed13ba2d6c6faf81d5d590396571d10" - integrity sha512-u4JBLdRI7dargC04p2Ha24kofQBk3vhaf0q8FwSYgnCRwxfvh2RxvhJZk9H7Q91JZp6wgjz/SjvEAYjGCEgAwQ== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-rotate@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-rotate/-/plugin-rotate-0.16.1.tgz#53fb5d51a4b3d05af9c91c2a8fffe5d7a1a47c8c" - integrity sha512-ZUU415gDQ0VjYutmVgAYYxC9Og9ixu2jAGMCU54mSMfuIlmohYfwARQmI7h4QB84M76c9hVLdONWjuo+rip/zg== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-scale@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-scale/-/plugin-scale-0.16.1.tgz#89f6ba59feed3429847ed226aebda33a240cc647" - integrity sha512-jM2QlgThIDIc4rcyughD5O7sOYezxdafg/2Xtd1csfK3z6fba3asxDwthqPZAgitrLgiKBDp6XfzC07Y/CefUw== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-shadow@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-shadow/-/plugin-shadow-0.16.1.tgz#a7af892a740febf41211e10a5467c3c5c521a04c" - integrity sha512-MeD2Is17oKzXLnsphAa1sDstTu6nxscugxAEk3ji0GV1FohCvpHBcec0nAq6/czg4WzqfDts+fcPfC79qWmqrA== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugin-threshold@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugin-threshold/-/plugin-threshold-0.16.1.tgz#34f3078f9965145b7ae26c53a32ad74b1195bbf5" - integrity sha512-iGW8U/wiCSR0+6syrPioVGoSzQFt4Z91SsCRbgNKTAk7D+XQv6OI78jvvYg4o0c2FOlwGhqz147HZV5utoSLxA== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - -"@jimp/plugins@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/plugins/-/plugins-0.16.1.tgz#9f08544c97226d6460a16ced79f57e85bec3257b" - integrity sha512-c+lCqa25b+4q6mJZSetlxhMoYuiltyS+ValLzdwK/47+aYsq+kcJNl+TuxIEKf59yr9+5rkbpsPkZHLF/V7FFA== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/plugin-blit" "^0.16.1" - "@jimp/plugin-blur" "^0.16.1" - "@jimp/plugin-circle" "^0.16.1" - "@jimp/plugin-color" "^0.16.1" - "@jimp/plugin-contain" "^0.16.1" - "@jimp/plugin-cover" "^0.16.1" - "@jimp/plugin-crop" "^0.16.1" - "@jimp/plugin-displace" "^0.16.1" - "@jimp/plugin-dither" "^0.16.1" - "@jimp/plugin-fisheye" "^0.16.1" - "@jimp/plugin-flip" "^0.16.1" - "@jimp/plugin-gaussian" "^0.16.1" - "@jimp/plugin-invert" "^0.16.1" - "@jimp/plugin-mask" "^0.16.1" - "@jimp/plugin-normalize" "^0.16.1" - "@jimp/plugin-print" "^0.16.1" - "@jimp/plugin-resize" "^0.16.1" - "@jimp/plugin-rotate" "^0.16.1" - "@jimp/plugin-scale" "^0.16.1" - "@jimp/plugin-shadow" "^0.16.1" - "@jimp/plugin-threshold" "^0.16.1" - timm "^1.6.1" - -"@jimp/png@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/png/-/png-0.16.1.tgz#f24cfc31529900b13a2dd9d4fdb4460c1e4d814e" - integrity sha512-iyWoCxEBTW0OUWWn6SveD4LePW89kO7ZOy5sCfYeDM/oTPLpR8iMIGvZpZUz1b8kvzFr27vPst4E5rJhGjwsdw== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/utils" "^0.16.1" - pngjs "^3.3.3" - -"@jimp/tiff@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/tiff/-/tiff-0.16.1.tgz#0e8756695687d7574b6bc73efab0acd4260b7a12" - integrity sha512-3K3+xpJS79RmSkAvFMgqY5dhSB+/sxhwTFA9f4AVHUK0oKW+u6r52Z1L0tMXHnpbAdR9EJ+xaAl2D4x19XShkQ== - dependencies: - "@babel/runtime" "^7.7.2" - utif "^2.0.1" - -"@jimp/types@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/types/-/types-0.16.1.tgz#0dbab37b3202315c91010f16c31766d35a2322cc" - integrity sha512-g1w/+NfWqiVW4CaXSJyD28JQqZtm2eyKMWPhBBDCJN9nLCN12/Az0WFF3JUAktzdsEC2KRN2AqB1a2oMZBNgSQ== - dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/bmp" "^0.16.1" - "@jimp/gif" "^0.16.1" - "@jimp/jpeg" "^0.16.1" - "@jimp/png" "^0.16.1" - "@jimp/tiff" "^0.16.1" - timm "^1.6.1" - -"@jimp/utils@^0.16.1": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@jimp/utils/-/utils-0.16.1.tgz#2f51e6f14ff8307c4aa83d5e1a277da14a9fe3f7" - integrity sha512-8fULQjB0x4LzUSiSYG6ZtQl355sZjxbv8r9PPAuYHzS9sGiSHJQavNqK/nKnpDsVkU88/vRGcE7t3nMU0dEnVw== - dependencies: - "@babel/runtime" "^7.7.2" - regenerator-runtime "^0.13.3" - "@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" - integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== + version "0.3.3" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" + integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== dependencies: "@jridgewell/set-array" "^1.0.1" "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.9" -"@jridgewell/resolve-uri@^3.0.3": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" - integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" + integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== "@jridgewell/set-array@^1.0.1": version "1.1.2" resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== -"@jridgewell/source-map@^0.3.2": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz#f45351aaed4527a298512ec72f81040c998580fb" - integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw== +"@jridgewell/source-map@^0.3.3": + version "0.3.5" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91" + integrity sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ== dependencies: "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" -"@jridgewell/sourcemap-codec@^1.4.10": - version "1.4.14" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" - integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== -"@jridgewell/trace-mapping@^0.3.13", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.14" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz#b231a081d8f66796e475ad588a1ef473112701ed" - integrity sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ== +"@jridgewell/trace-mapping@^0.3.13", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.19" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811" + integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" "@lezer/common@^0.15.0", "@lezer/common@^0.15.7": version "0.15.12" @@ -2621,46 +1750,106 @@ "@lezer/lr" "^0.15.4" json5 "^2.2.1" -"@msgpackr-extract/msgpackr-extract-darwin-arm64@2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-2.0.2.tgz#01e3669b8b2dc01f6353f2c87e1ec94faf52c587" - integrity sha512-FMX5i7a+ojIguHpWbzh5MCsCouJkwf4z4ejdUY/fsgB9Vkdak4ZnoIEskOyOUMMB4lctiZFGszFQJXUeFL8tRg== +"@motionone/animation@^10.12.0": + version "10.15.1" + resolved "https://registry.yarnpkg.com/@motionone/animation/-/animation-10.15.1.tgz#4a85596c31cbc5100ae8eb8b34c459fb0ccf6807" + integrity sha512-mZcJxLjHor+bhcPuIFErMDNyrdb2vJur8lSfMCsuCB4UyV8ILZLvK+t+pg56erv8ud9xQGK/1OGPt10agPrCyQ== + dependencies: + "@motionone/easing" "^10.15.1" + "@motionone/types" "^10.15.1" + "@motionone/utils" "^10.15.1" + tslib "^2.3.1" + +"@motionone/dom@10.12.0": + version "10.12.0" + resolved "https://registry.yarnpkg.com/@motionone/dom/-/dom-10.12.0.tgz#ae30827fd53219efca4e1150a5ff2165c28351ed" + integrity sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw== + dependencies: + "@motionone/animation" "^10.12.0" + "@motionone/generators" "^10.12.0" + "@motionone/types" "^10.12.0" + "@motionone/utils" "^10.12.0" + hey-listen "^1.0.8" + tslib "^2.3.1" -"@msgpackr-extract/msgpackr-extract-darwin-x64@2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-2.0.2.tgz#5ca32f16e6f1b7854001a1a2345b61d4e26a0931" - integrity sha512-DznYtF3lHuZDSRaIOYeif4JgO0NtO2Xf8DsngAugMx/bUdTFbg86jDTmkVJBNmV+cxszz6OjGvinnS8AbJ342g== +"@motionone/easing@^10.15.1": + version "10.15.1" + resolved "https://registry.yarnpkg.com/@motionone/easing/-/easing-10.15.1.tgz#95cf3adaef34da6deebb83940d8143ede3deb693" + integrity sha512-6hIHBSV+ZVehf9dcKZLT7p5PEKHGhDwky2k8RKkmOvUoYP3S+dXsKupyZpqx5apjd9f+php4vXk4LuS+ADsrWw== + dependencies: + "@motionone/utils" "^10.15.1" + tslib "^2.3.1" -"@msgpackr-extract/msgpackr-extract-linux-arm64@2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-2.0.2.tgz#ff629f94379981bf476dffb1439a7c1d3dba2d72" - integrity sha512-b0jMEo566YdM2K+BurSed7bswjo3a6bcdw5ETqoIfSuxKuRLPfAiOjVbZyZBgx3J/TAM/QrvEQ/VN89A0ZAxSg== +"@motionone/generators@^10.12.0": + version "10.15.1" + resolved "https://registry.yarnpkg.com/@motionone/generators/-/generators-10.15.1.tgz#dc6abb11139d1bafe758a41c134d4c753a9b871c" + integrity sha512-67HLsvHJbw6cIbLA/o+gsm7h+6D4Sn7AUrB/GPxvujse1cGZ38F5H7DzoH7PhX+sjvtDnt2IhFYF2Zp1QTMKWQ== + dependencies: + "@motionone/types" "^10.15.1" + "@motionone/utils" "^10.15.1" + tslib "^2.3.1" -"@msgpackr-extract/msgpackr-extract-linux-arm@2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-2.0.2.tgz#5f6fd30d266c4a90cf989049c7f2e50e5d4fcd4c" - integrity sha512-Gy9+c3Wj+rUlD3YvCZTi92gs+cRX7ZQogtwq0IhRenloTTlsbpezNgk6OCkt59V4ATEWSic9rbU92H/l7XsRvA== +"@motionone/types@^10.12.0", "@motionone/types@^10.15.1": + version "10.15.1" + resolved "https://registry.yarnpkg.com/@motionone/types/-/types-10.15.1.tgz#89441b54285012795cbba8612cbaa0fa420db3eb" + integrity sha512-iIUd/EgUsRZGrvW0jqdst8st7zKTzS9EsKkP+6c6n4MPZoQHwiHuVtTQLD6Kp0bsBLhNzKIBlHXponn/SDT4hA== -"@msgpackr-extract/msgpackr-extract-linux-x64@2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-2.0.2.tgz#167faa553b9dbffac8b03bf27de9b6f846f0e1bc" - integrity sha512-zrBHaePwcv4cQXxzYgNj0+A8I1uVN97E7/3LmkRocYZ+rMwUsnPpp4RuTAHSRoKlTQV3nSdCQW4Qdt4MXw/iHw== +"@motionone/utils@^10.12.0", "@motionone/utils@^10.15.1": + version "10.15.1" + resolved "https://registry.yarnpkg.com/@motionone/utils/-/utils-10.15.1.tgz#6b5f51bde75be88b5411e084310299050368a438" + integrity sha512-p0YncgU+iklvYr/Dq4NobTRdAPv9PveRDUXabPEeOjBLSO/1FNB2phNTZxOxpi1/GZwYpAoECEa0Wam+nsmhSw== + dependencies: + "@motionone/types" "^10.15.1" + hey-listen "^1.0.8" + tslib "^2.3.1" -"@msgpackr-extract/msgpackr-extract-win32-x64@2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-2.0.2.tgz#baea7764b1adf201ce4a792fe971fd7211dad2e4" - integrity sha512-fpnI00dt+yO1cKx9qBXelKhPBdEgvc8ZPav1+0r09j0woYQU2N79w/jcGawSY5UGlgQ3vjaJsFHnGbGvvqdLzg== +"@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.2.tgz#44d752c1a2dc113f15f781b7cc4f53a307e3fa38" + integrity sha512-9bfjwDxIDWmmOKusUcqdS4Rw+SETlp9Dy39Xui9BEGEk19dDwH0jhipwFzEff/pFg95NKymc6TOTbRKcWeRqyQ== + +"@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.2.tgz#f954f34355712212a8e06c465bc06c40852c6bb3" + integrity sha512-lwriRAHm1Yg4iDf23Oxm9n/t5Zpw1lVnxYU3HnJPTi2lJRkKTrps1KVgvL6m7WvmhYVt/FIsssWay+k45QHeuw== + +"@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.2.tgz#45c63037f045c2b15c44f80f0393fa24f9655367" + integrity sha512-FU20Bo66/f7He9Fp9sP2zaJ1Q8L9uLPZQDub/WlUip78JlPeMbVL8546HbZfcW9LNciEXc8d+tThSJjSC+tmsg== + +"@msgpackr-extract/msgpackr-extract-linux-arm@3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.2.tgz#35707efeafe6d22b3f373caf9e8775e8920d1399" + integrity sha512-MOI9Dlfrpi2Cuc7i5dXdxPbFIgbDBGgKR5F2yWEa6FVEtSWncfVNKW5AKjImAQ6CZlBK9tympdsZJ2xThBiWWA== + +"@msgpackr-extract/msgpackr-extract-linux-x64@3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.2.tgz#091b1218b66c341f532611477ef89e83f25fae4f" + integrity sha512-gsWNDCklNy7Ajk0vBBf9jEx04RUxuDQfBse918Ww+Qb9HCPoGzS+XJTLe96iN3BVK7grnLiYghP/M4L8VsaHeA== -"@n1ru4l/graphql-live-query@^0.9.0": - version "0.9.0" - resolved "https://registry.yarnpkg.com/@n1ru4l/graphql-live-query/-/graphql-live-query-0.9.0.tgz#defaebdd31f625bee49e6745934f36312532b2bc" - integrity sha512-BTpWy1e+FxN82RnLz4x1+JcEewVdfmUhV1C6/XYD5AjS7PQp9QFF7K8bCD6gzPTr2l+prvqOyVueQhFJxB1vfg== +"@msgpackr-extract/msgpackr-extract-win32-x64@3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.2.tgz#0f164b726869f71da3c594171df5ebc1c4b0a407" + integrity sha512-O+6Gs8UeDbyFpbSh2CPEz/UOrrdWPTBYNblZK5CxxLisYt4kGX3Sc+czffFonyjiGSq3jWLwJS/CCJc7tBr4sQ== + +"@n1ru4l/graphql-live-query@0.8.1": + version "0.8.1" + resolved "https://registry.yarnpkg.com/@n1ru4l/graphql-live-query/-/graphql-live-query-0.8.1.tgz#2d6ca6157dafdc5d122a1aeb623b43e939c4b238" + integrity sha512-x5SLY+L9/5s07OJprISXx4csNBPF74UZeTI01ZPSaxOtRz2Gljk652kSPf6OjMLtx5uATr35O0M3G0LYhHBLtg== "@n8tb1t/use-scroll-position@^2.0.3": version "2.0.3" resolved "https://registry.yarnpkg.com/@n8tb1t/use-scroll-position/-/use-scroll-position-2.0.3.tgz#207c54d584285cac0954d556964f83cf5774940b" integrity sha512-6GO4FHVJTMI4jbRHborzemuL6B319qh2cVLOLj8DApJhjyT71eLgANbQ4bNKSZ51zBm3uJ3WmqnyNF17eSsDyw== +"@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": + version "5.1.1-v1" + resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz#dbf733a965ca47b1973177dc0bb6c889edcfb129" + integrity sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg== + dependencies: + eslint-scope "5.1.1" + "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" @@ -2896,14 +2085,6 @@ "@parcel/node-resolver-core" "2.6.2" "@parcel/plugin" "2.6.2" -"@parcel/runtime-browser-hmr@2.6.2": - version "2.6.2" - resolved "https://registry.yarnpkg.com/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.6.2.tgz#121fe22b5df6b7a8591a23632146c008448240a5" - integrity sha512-M4X0+7dyfdI6smwGUGjGXb8Ns3HX7ZrTemyq4Gc7zp7P/5gWjR8i9eISz46sXmF9bf01a/4dKZpoCC9un1pH1g== - dependencies: - "@parcel/plugin" "2.6.2" - "@parcel/utils" "2.6.2" - "@parcel/runtime-js@2.6.2": version "2.6.2" resolved "https://registry.yarnpkg.com/@parcel/runtime-js/-/runtime-js-2.6.2.tgz#cc46ec03d4fe2a4832cd7709431afba857bd37e0" @@ -2913,29 +2094,10 @@ "@parcel/utils" "2.6.2" nullthrows "^1.1.1" -"@parcel/runtime-react-refresh@2.6.2": - version "2.6.2" - resolved "https://registry.yarnpkg.com/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.6.2.tgz#4504cea4468fbeabf4a94c99a991251c7cd04c59" - integrity sha512-DJTm5D/tUAGZm0o3ndDOPbKwdYrobuvm4jvkPq31LdEUqVvyuzBAMlqQFHc1yJEJDRRWOIQwQP9Y0NQbJmXFfg== - dependencies: - "@parcel/plugin" "2.6.2" - "@parcel/utils" "2.6.2" - react-error-overlay "6.0.9" - react-refresh "^0.9.0" - -"@parcel/runtime-service-worker@2.6.2": - version "2.6.2" - resolved "https://registry.yarnpkg.com/@parcel/runtime-service-worker/-/runtime-service-worker-2.6.2.tgz#f1ea3e768f8ae9d2f5ec119db020595933185393" - integrity sha512-9jV+RwVEeDUI5+eLy8j1tapTNoHHGOY2+JUprcObQkQ8fux7KltQBJWFhpkUdGtz5LTCNXtj9tdycFtS5lmSzg== - dependencies: - "@parcel/plugin" "2.6.2" - "@parcel/utils" "2.6.2" - nullthrows "^1.1.1" - "@parcel/source-map@^2.0.0": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@parcel/source-map/-/source-map-2.1.0.tgz#bd47aa0a93ae261436f7c5da40b09856e1a331d5" - integrity sha512-E7UOEIof2o89LrKk1agSLmwakjigmEdDp1ZaEdsLVEvq63R/bul4Ij5CT+0ZDcijGpl5tnTbQADY9EyYGtjYgQ== + version "2.1.1" + resolved "https://registry.yarnpkg.com/@parcel/source-map/-/source-map-2.1.1.tgz#fb193b82dba6dd62cc7a76b326f57bb35000a782" + integrity sha512-Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew== dependencies: detect-libc "^1.0.3" @@ -2964,22 +2126,6 @@ "@parcel/plugin" "2.6.2" json5 "^2.2.0" -"@parcel/transformer-raw@2.6.2": - version "2.6.2" - resolved "https://registry.yarnpkg.com/@parcel/transformer-raw/-/transformer-raw-2.6.2.tgz#a77ffaa26d59fcf79b5094c1319b6f0922fffe7e" - integrity sha512-CsofYq5g9Zj/FNmhya2R7Xp3WHlzz34mEdN69bds3azRYHCrl/TS33xXcp/9J+74SEIY1Ufh552o1cM3fnSrDQ== - dependencies: - "@parcel/plugin" "2.6.2" - -"@parcel/transformer-react-refresh-wrap@2.6.2": - version "2.6.2" - resolved "https://registry.yarnpkg.com/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.6.2.tgz#680a3c724d8ada39a637a10f8cb7fdc33aa138eb" - integrity sha512-7EE68ebISz+oAHm64ZJbz6uJQT4aOoB8QiK3PvuY6+RsP7aK4/FEHGM1afW49KrZbP4lWjloEkcJm/88DfBiGw== - dependencies: - "@parcel/plugin" "2.6.2" - "@parcel/utils" "2.6.2" - react-refresh "^0.9.0" - "@parcel/types@2.6.2": version "2.6.2" resolved "https://registry.yarnpkg.com/@parcel/types/-/types-2.6.2.tgz#216313bcaf625e59a2bd525a00c3b1f6701b0d92" @@ -3006,13 +2152,76 @@ "@parcel/source-map" "^2.0.0" chalk "^4.1.0" +"@parcel/watcher-android-arm64@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.2.0.tgz#3d1a71f251ba829ab884dfe119cc4f4c49c7222b" + integrity sha512-nU2wh00CTQT9rr1TIKTjdQ9lAGYpmz6XuKw0nAwAN+S2A5YiD55BK1u+E5WMCT8YOIDe/n6gaj4o/Bi9294SSQ== + +"@parcel/watcher-darwin-arm64@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.2.0.tgz#9ed47d9e4146d53a39f62577a993426d6ddec2d2" + integrity sha512-cJl0UZDcodciy3TDMomoK/Huxpjlkkim3SyMgWzjovHGOZKNce9guLz2dzuFwfObBFCjfznbFMIvAZ5syXotYw== + +"@parcel/watcher-darwin-x64@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.2.0.tgz#9b553e61f4a01a0947b1c005619db7b7c9a286d1" + integrity sha512-QI77zxaGrCV1StKcoRYfsUfmUmvPMPfQrubkBBy5XujV2fwaLgZivQOTQMBgp5K2+E19u1ufpspKXAPqSzpbyg== + +"@parcel/watcher-linux-arm-glibc@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.2.0.tgz#2644f6292b862c52d636978da8711bf2f7b14b24" + integrity sha512-I2GPBcAXazPzabCmfsa3HRRW+MGlqxYd8g8RIueJU+a4o5nyNZDz0CR1cu0INT0QSQXEZV7w6UE8Hz9CF8u3Pg== + +"@parcel/watcher-linux-arm64-glibc@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.2.0.tgz#b82c1715a20e6725c89b2697a208d2ae488d22da" + integrity sha512-St5mlfp+2lS9AmgixUqfwJa/DwVmTCJxC1HcOubUTz6YFOKIlkHCeUa1Bxi4E/tR/HSez8+heXHL8HQkJ4Bd8g== + +"@parcel/watcher-linux-arm64-musl@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.2.0.tgz#45511adc69c4c89b10965f0dd1519e56a00f512f" + integrity sha512-jS+qfhhoOBVWwMLP65MaG8xdInMK30pPW8wqTCg2AAuVJh5xepMbzkhHJ4zURqHiyY3EiIRuYu4ONJKCxt8iqA== + +"@parcel/watcher-linux-x64-glibc@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.2.0.tgz#f6e878bf40874b1ce9530ec87e5c2e644e9ad5ac" + integrity sha512-xJvJ7R2wJdi47WZBFS691RDOWvP1j/IAs3EXaWVhDI8FFITbWrWaln7KoNcR0Y3T+ZwimFY/cfb0PNht1q895g== + +"@parcel/watcher-linux-x64-musl@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.2.0.tgz#4a1b7a8f65b42f50b1819185ef56ed3c9e251425" + integrity sha512-D+NMpgr23a+RI5mu8ZPKWy7AqjBOkURFDgP5iIXXEf/K3hm0jJ3ogzi0Ed2237B/CdYREimCgXyeiAlE/FtwyA== + +"@parcel/watcher-win32-arm64@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.2.0.tgz#4cdbaf8c1097038e838d12f897ac8595b18dfb1f" + integrity sha512-z225cPn3aygJsyVUOWwfyW+fY0Tvk7N3XCOl66qUPFxpbuXeZuiuuJemmtm8vxyqa3Ur7peU/qJxrpC64aeI7Q== + +"@parcel/watcher-win32-x64@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.2.0.tgz#f2fcc255b7cadfd0afa7c51cde36413632075bcc" + integrity sha512-JqGW0RJ61BkKx+yYzIURt9s53P7xMVbv0uxYPzAXLBINGaFmkIKSuUPyBVfy8TMbvp93lvF4SPBNDzVRJfvgOw== + "@parcel/watcher@^2.0.0": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.0.5.tgz#f913a54e1601b0aac972803829b0eece48de215b" - integrity sha512-x0hUbjv891omnkcHD7ZOhiyyUqUUR6MNjq89JhEI3BxppeKWAm6NPQsqqRrAkCJBogdT/o/My21sXtTI9rJIsw== + version "2.2.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.2.0.tgz#92067954e591d239c3ecfa08add205f88f476068" + integrity sha512-71S4TF+IMyAn24PK4KSkdKtqJDR3zRzb0HE3yXpacItqTM7XfF2f5q9NEGLEVl0dAaBAGfNwDCjH120y25F6Tg== dependencies: - node-addon-api "^3.2.1" - node-gyp-build "^4.3.0" + detect-libc "^1.0.3" + is-glob "^4.0.3" + micromatch "^4.0.5" + node-addon-api "^7.0.0" + optionalDependencies: + "@parcel/watcher-android-arm64" "2.2.0" + "@parcel/watcher-darwin-arm64" "2.2.0" + "@parcel/watcher-darwin-x64" "2.2.0" + "@parcel/watcher-linux-arm-glibc" "2.2.0" + "@parcel/watcher-linux-arm64-glibc" "2.2.0" + "@parcel/watcher-linux-arm64-musl" "2.2.0" + "@parcel/watcher-linux-x64-glibc" "2.2.0" + "@parcel/watcher-linux-x64-musl" "2.2.0" + "@parcel/watcher-win32-arm64" "2.2.0" + "@parcel/watcher-win32-x64" "2.2.0" "@parcel/workers@2.6.2": version "2.6.2" @@ -3027,31 +2236,31 @@ nullthrows "^1.1.1" "@pmmmwh/react-refresh-webpack-plugin@^0.5.7": - version "0.5.7" - resolved "https://registry.yarnpkg.com/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.7.tgz#58f8217ba70069cc6a73f5d7e05e85b458c150e2" - integrity sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q== + version "0.5.11" + resolved "https://registry.yarnpkg.com/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.11.tgz#7c2268cedaa0644d677e8c4f377bc8fb304f714a" + integrity sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ== dependencies: ansi-html-community "^0.0.8" common-path-prefix "^3.0.0" - core-js-pure "^3.8.1" + core-js-pure "^3.23.3" error-stack-parser "^2.0.6" find-up "^5.0.0" html-entities "^2.1.0" - loader-utils "^2.0.0" + loader-utils "^2.0.4" schema-utils "^3.0.0" source-map "^0.7.3" "@sideway/address@^4.1.3": - version "4.1.3" - resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.3.tgz#d93cce5d45c5daec92ad76db492cc2ee3c64ab27" - integrity sha512-8ncEUtmnTsMmL7z1YPB47kPUq7LpKWJNFPsRzHiIajGC5uXlWGn+AmkYPcHNl8S4tcEGx+cnORnNYaw2wvL+LQ== + version "4.1.4" + resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" + integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== dependencies: "@hapi/hoek" "^9.0.0" -"@sideway/formula@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c" - integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== +"@sideway/formula@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.1.tgz#80fcbcbaf7ce031e0ef2dd29b1bfc7c3f583611f" + integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg== "@sideway/pinpoint@^2.0.0": version "2.0.0" @@ -3064,9 +2273,9 @@ integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== "@sindresorhus/is@^4.0.0": - version "4.2.0" - resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.2.0.tgz#667bfc6186ae7c9e0b45a08960c551437176e1ca" - integrity sha512-VkE3KLBmJwcCaVARtQpfuKcKv8gcBmUubrfHGF84dXuuW6jgsRYxPtzcIhPyK9WAPpRt2/xY6zkD9MnRaJzSyw== + version "4.6.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" + integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== "@sindresorhus/slugify@^1.1.2": version "1.1.2" @@ -3084,11 +2293,17 @@ escape-string-regexp "^2.0.0" lodash.deburr "^4.1.0" +"@socket.io/component-emitter@~3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz#96116f2a912e0c02817345b3c10751069920d553" + integrity sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg== + "@swc/helpers@^0.4.2": - version "0.4.3" - resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.3.tgz#16593dfc248c53b699d4b5026040f88ddb497012" - integrity sha512-6JrF+fdUK2zbGpJIlN7G3v966PQjyx/dPt1T9km2wj+EUBqgrxCk3uX4Kct16MIm9gGxfKRcfax2hVf5jvlTzA== + version "0.4.36" + resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.36.tgz#fcfff76ed52c214f357e8e9d3f37b568908072d9" + integrity sha512-5lxnyLEYFskErRPenYItLRSge5DjrJngYKdVjRSrWfza9G6KkgHEXi0vUZiyUeMU5JfXH1YnvXZzSp8ul88o2Q== dependencies: + legacy-swc-helpers "npm:@swc/helpers@=0.4.14" tslib "^2.4.0" "@szmarczak/http-timer@^1.1.2": @@ -3115,13 +2330,6 @@ resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== -"@turist/fetch@^7.1.7": - version "7.1.7" - resolved "https://registry.yarnpkg.com/@turist/fetch/-/fetch-7.1.7.tgz#a2b1f7ec0265e6fe0946c51eef34bad9b9efc865" - integrity sha512-XP20kvfyMNlWdPVQXyuzA40LoCHbbJptikt7W+TlZ5sS+NNjk70xjXCtHBLEudp7li3JldXEFSIUzpW1a0WEhA== - dependencies: - "@types/node-fetch" "2" - "@turist/fetch@^7.2.0": version "7.2.0" resolved "https://registry.yarnpkg.com/@turist/fetch/-/fetch-7.2.0.tgz#57df869df1cd9b299588554eec4b8543effcc714" @@ -3135,62 +2343,59 @@ integrity sha512-qLOvfmlG2vCVw5fo/oz8WAZYlpe5a5OurgTj3diIxJCdjRHpapC+vQCz3er9LV79Vcat+DifBjeAhOAdmndtDQ== "@types/cacheable-request@^6.0.1": - version "6.0.2" - resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.2.tgz#c324da0197de0a98a2312156536ae262429ff6b9" - integrity sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA== + version "6.0.3" + resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183" + integrity sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw== dependencies: "@types/http-cache-semantics" "*" - "@types/keyv" "*" + "@types/keyv" "^3.1.4" "@types/node" "*" - "@types/responselike" "*" + "@types/responselike" "^1.0.0" "@types/common-tags@^1.8.1": version "1.8.1" resolved "https://registry.yarnpkg.com/@types/common-tags/-/common-tags-1.8.1.tgz#a5a49ca5ebbb58e0f8947f3ec98950c8970a68a9" integrity sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg== -"@types/component-emitter@^1.2.10": - version "1.2.11" - resolved "https://registry.yarnpkg.com/@types/component-emitter/-/component-emitter-1.2.11.tgz#50d47d42b347253817a39709fef03ce66a108506" - integrity sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ== - "@types/configstore@^2.1.1": version "2.1.1" resolved "https://registry.yarnpkg.com/@types/configstore/-/configstore-2.1.1.tgz#cd1e8553633ad3185c3f2f239ecff5d2643e92b6" - integrity sha1-zR6FU2M60xhcPy8jns/10mQ+krY= + integrity sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ== -"@types/cookie@^0.4.0": +"@types/cookie@^0.4.1": version "0.4.1" resolved "https://registry.yarnpkg.com/@types/cookie/-/cookie-0.4.1.tgz#bfd02c1f2224567676c1545199f87c3a861d878d" integrity sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q== -"@types/cors@^2.8.8": - version "2.8.12" - resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.12.tgz#6b2c510a7ad7039e98e7b8d3d6598f4359e5c080" - integrity sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw== +"@types/cors@^2.8.12": + version "2.8.13" + resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.13.tgz#b8ade22ba455a1b8cb3b5d3f35910fd204f84f94" + integrity sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA== + dependencies: + "@types/node" "*" "@types/debug@^0.0.30": version "0.0.30" resolved "https://registry.yarnpkg.com/@types/debug/-/debug-0.0.30.tgz#dc1e40f7af3b9c815013a7860e6252f6352a84df" integrity sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ== -"@types/eslint-scope@^3.7.0": - version "3.7.2" - resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.2.tgz#11e96a868c67acf65bf6f11d10bb89ea71d5e473" - integrity sha512-TzgYCWoPiTeRg6RQYgtuW7iODtVoKu3RVL72k3WohqhjfaOLK5Mg2T4Tg1o2bSfu0vPkoI48wdQFv5b/Xe04wQ== +"@types/eslint-scope@^3.7.3": + version "3.7.4" + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz#37fc1223f0786c39627068a12e94d6e6fc61de16" + integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA== dependencies: "@types/eslint" "*" "@types/estree" "*" -"@types/eslint@*": - version "8.2.1" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.2.1.tgz#13f3d69bac93c2ae008019c28783868d0a1d6605" - integrity sha512-UP9rzNn/XyGwb5RQ2fok+DzcIRIYwc16qTXse5+Smsy8MOIccCChT15KAwnsgQx4PzJkaMq4myFyZ4CL5TjhIQ== +"@types/eslint@*", "@types/eslint@^7.29.0 || ^8.4.1": + version "8.44.2" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.44.2.tgz#0d21c505f98a89b8dd4d37fa162b09da6089199a" + integrity sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg== dependencies: "@types/estree" "*" "@types/json-schema" "*" -"@types/eslint@^7.28.2", "@types/eslint@^7.29.0": +"@types/eslint@^7.29.0": version "7.29.0" resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.29.0.tgz#e56ddc8e542815272720bb0b4ccc2aff9c3e1c78" integrity sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng== @@ -3198,10 +2403,10 @@ "@types/estree" "*" "@types/json-schema" "*" -"@types/estree@*", "@types/estree@^0.0.50": - version "0.0.50" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.50.tgz#1e0caa9364d3fccd2931c3ed96fdbeaa5d4cca83" - integrity sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw== +"@types/estree@*", "@types/estree@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194" + integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA== "@types/get-port@^3.2.0": version "3.2.0" @@ -3209,17 +2414,17 @@ integrity sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q== "@types/glob@*": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb" - integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== + version "8.1.0" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-8.1.0.tgz#b63e70155391b0584dce44e7ea25190bbc38f2fc" + integrity sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w== dependencies: - "@types/minimatch" "*" + "@types/minimatch" "^5.1.2" "@types/node" "*" "@types/glob@^5.0.34": - version "5.0.37" - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-5.0.37.tgz#d0982abc88f9aebbd62099d3d70440cbcea692de" - integrity sha512-ATA/xrS7CZ3A2WCPVY4eKdNpybq56zqlTirnHhhyOztZM/lPxJzusOBI3BsaXbu6FrUluqzvMlI4sZ6BDYMlMg== + version "5.0.38" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-5.0.38.tgz#20e29f3c6332f6b3329f34711ebb31a03dd74a51" + integrity sha512-rTtf75rwyP9G2qO5yRpYtdJ6aU1QqEhWbtW55qEgquEDa6bXW0s2TWZfDm02GuppjEozOWG/F2UnPq5hAQb+gw== dependencies: "@types/minimatch" "*" "@types/node" "*" @@ -3238,43 +2443,38 @@ integrity sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ== "@types/http-proxy@^1.17.7": - version "1.17.8" - resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.8.tgz#968c66903e7e42b483608030ee85800f22d03f55" - integrity sha512-5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA== + version "1.17.11" + resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.11.tgz#0ca21949a5588d55ac2b659b69035c84bd5da293" + integrity sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA== dependencies: "@types/node" "*" -"@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.7", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": - version "7.0.9" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d" - integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ== - -"@types/json-schema@^7.0.4": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" - integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== +"@types/json-schema@*", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.7", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": + version "7.0.12" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb" + integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== "@types/json5@^0.0.29": version "0.0.29" resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" - integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== -"@types/keyv@*": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.3.tgz#1c9aae32872ec1f20dcdaee89a9f3ba88f465e41" - integrity sha512-FXCJgyyN3ivVgRoml4h94G/p3kY+u/B86La+QptcqJaWtBWtmc6TtkNfS40n9bIvyLteHh7zXOtgbobORKPbDg== +"@types/keyv@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz#3ccdb1c6751b0c7e52300bcdacd5bcbf8faa75b6" + integrity sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg== dependencies: "@types/node" "*" "@types/lodash@^4.14.92": - version "4.14.178" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.178.tgz#341f6d2247db528d4a13ddbb374bcdc80406f4f8" - integrity sha512-0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw== + version "4.14.197" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.197.tgz#e95c5ddcc814ec3e84c891910a01e0c8a378c54b" + integrity sha512-BMVOiWs0uNxHVlHBgzTIqJYmj+PgCo4euloGF+5m4okL3rEYzM2EEv78mw8zWSMM57dM7kVIgJ2QDvwHSoCI5g== -"@types/minimatch@*": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" - integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== +"@types/minimatch@*", "@types/minimatch@^5.1.2": + version "5.1.2" + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" + integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== "@types/mkdirp@^0.5.2": version "0.5.2" @@ -3284,17 +2484,17 @@ "@types/node" "*" "@types/node-fetch@2", "@types/node-fetch@^2.5.7": - version "2.5.12" - resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.5.12.tgz#8a6f779b1d4e60b7a57fb6fd48d84fb545b9cc66" - integrity sha512-MKgC4dlq4kKNa/mYrwpKfzQMB5X3ee5U6fSprkKpToBqBmX4nFZL9cW5jl6sWn+xpRJ7ypWh2yyqqr8UUCstSw== + version "2.6.4" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.4.tgz#1bc3a26de814f6bf466b25aeb1473fa1afe6a660" + integrity sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg== dependencies: "@types/node" "*" form-data "^3.0.0" "@types/node@*", "@types/node@>=10.0.0": - version "17.0.2" - resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.2.tgz#a4c07d47ff737e8ee7e586fe636ff0e1ddff070a" - integrity sha512-JepeIUPFDARgIs0zD/SKPgFsJEAF0X5/qO80llx59gOxFTboS9Amv3S+QfB7lqBId5sFXJ99BN0J6zFRvL9dDA== + version "20.5.2" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.5.2.tgz#02850ed821c8113fd6ed9ae5c744b7f7cd6d6f51" + integrity sha512-5j/lXt7unfPOUlrKC34HIaedONleyLtwkKggiD/0uuMfT8gg2EOpg0dz4lCD15Ga7muC+1WzJZAjIB9simWd6Q== "@types/node@^8.5.7": version "8.10.66" @@ -3307,32 +2507,27 @@ integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== "@types/prop-types@*": - version "15.7.4" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11" - integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ== - -"@types/q@^1.5.1": - version "1.5.5" - resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.5.tgz#75a2a8e7d8ab4b230414505d92335d1dcb53a6df" - integrity sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ== + version "15.7.5" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" + integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== "@types/reach__router@^1.3.10": - version "1.3.10" - resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.3.10.tgz#141d500213a452d9d9d71d5ad96c4104094f55a3" - integrity sha512-iHAFGaVOrWi00/q7oBybggGsz5TOmwOW4M1H9sT7i9lly4qFC8XOgsdf6jUsoaOz2sknFHALEtZqCoDbokdJ2Q== + version "1.3.11" + resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.3.11.tgz#528af5d73f76b42cf7de5664cdd1b728dee78e31" + integrity sha512-j23ChnIEiW8aAP4KT8OVyTXOFr+Ri65BDnwzmfHFO9WHypXYevHFjeil1Cj7YH3emfCE924BwAmgW4hOv7Wg3g== dependencies: "@types/react" "*" "@types/react@*": - version "17.0.37" - resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.37.tgz#6884d0aa402605935c397ae689deed115caad959" - integrity sha512-2FS1oTqBGcH/s0E+CjrCCR9+JMpsu9b69RTFO+40ua43ZqP5MmQ4iUde/dMjWR909KxZwmOQIFq6AV6NjEG5xg== + version "18.2.20" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.20.tgz#1605557a83df5c8a2cc4eeb743b3dfc0eb6aaeb2" + integrity sha512-WKNtmsLWJM/3D5mG4U84cysVY31ivmyw85dE84fOCk5Hx78wezB/XEjVPWl2JTZ5FkEeaTJf+VgUAUn3PE7Isw== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" csstype "^3.0.2" -"@types/responselike@*", "@types/responselike@^1.0.0": +"@types/responselike@^1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.0.tgz#251f4fe7d154d2bad125abe1b429b23afd262e29" integrity sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA== @@ -3348,16 +2543,14 @@ "@types/node" "*" "@types/scheduler@*": - version "0.16.2" - resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" - integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== + version "0.16.3" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5" + integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ== -"@types/sharp@^0.30.0": - version "0.30.4" - resolved "https://registry.yarnpkg.com/@types/sharp/-/sharp-0.30.4.tgz#7430b5fcf37f35dd860112c4cf6dcd6a1ba0011b" - integrity sha512-6oJEzKt7wZeS7e+6x9QFEOWGs0T/6of00+0onZGN1zSmcSjcTDZKgIGZ6YWJnHowpaKUCFBPH52mYljWqU32Eg== - dependencies: - "@types/node" "*" +"@types/semver@^7.3.12": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a" + integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== "@types/sharp@^0.30.5": version "0.30.5" @@ -3367,9 +2560,9 @@ "@types/node" "*" "@types/styled-components@^5.1.19": - version "5.1.19" - resolved "https://registry.yarnpkg.com/@types/styled-components/-/styled-components-5.1.19.tgz#d76f431ee49d0a222ab4e758dcd540b01987652d" - integrity sha512-hNj14Oamk7Jhb/fMMQG7TUkd3e8uMMgxsCTH+ueJNGdFo/PuhlGDQTPChqyilpZP0WttgBHkc2YyT5UG+yc6Yw== + version "5.1.26" + resolved "https://registry.yarnpkg.com/@types/styled-components/-/styled-components-5.1.26.tgz#5627e6812ee96d755028a98dae61d28e57c233af" + integrity sha512-KuKJ9Z6xb93uJiIyxo/+ksS7yLjS1KzG6iv5i78dhVg/X3u5t1H7juRWqVmodIdz6wGVaIApo1u01kmFRdJHVw== dependencies: "@types/hoist-non-react-statics" "*" "@types/react" "*" @@ -3378,9 +2571,9 @@ "@types/tmp@^0.0.33": version "0.0.33" resolved "https://registry.yarnpkg.com/@types/tmp/-/tmp-0.0.33.tgz#1073c4bc824754ae3d10cfab88ab0237ba964e4d" - integrity sha1-EHPEvIJHVK49EM+riKsCN7qWTk0= + integrity sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ== -"@types/websocket@^1.0.4": +"@types/websocket@1.0.4": version "1.0.4" resolved "https://registry.yarnpkg.com/@types/websocket/-/websocket-1.0.4.tgz#1dc497280d8049a5450854dd698ee7e6ea9e60b8" integrity sha512-qn1LkcFEKK8RPp459jkjzsfpbsx36BBt3oC3pITYtkoBw/aVX+EZFa5j3ThCRTNpLFvIMr5dSTD4RaMdilIOpA== @@ -3388,9 +2581,9 @@ "@types/node" "*" "@types/ws@^8.0.0": - version "8.2.2" - resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.2.2.tgz#7c5be4decb19500ae6b3d563043cd407bf366c21" - integrity sha512-NOn5eIcgWLOo6qW8AcuLZ7G8PycXu0xTxxkS6Q18VWFxgPUSOwV0pBj2a/4viNZVu25i7RIB7GttdkAIUUXOOg== + version "8.5.5" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.5.tgz#af587964aa06682702ee6dcbc7be41a80e4b28eb" + integrity sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg== dependencies: "@types/node" "*" @@ -3414,17 +2607,19 @@ tsutils "^3.21.0" "@typescript-eslint/eslint-plugin@^5.8.0": - version "5.8.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.8.0.tgz#52cd9305ceef98a5333f9492d519e6c6c7fe7d43" - integrity sha512-spu1UW7QuBn0nJ6+psnfCc3iVoQAifjKORgBngKOmC8U/1tbe2YJMzYQqDGYB4JCss7L8+RM2kKLb1B1Aw9BNA== - dependencies: - "@typescript-eslint/experimental-utils" "5.8.0" - "@typescript-eslint/scope-manager" "5.8.0" - debug "^4.3.2" - functional-red-black-tree "^1.0.1" - ignore "^5.1.8" - regexpp "^3.2.0" - semver "^7.3.5" + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz#aeef0328d172b9e37d9bab6dbc13b87ed88977db" + integrity sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag== + dependencies: + "@eslint-community/regexpp" "^4.4.0" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/type-utils" "5.62.0" + "@typescript-eslint/utils" "5.62.0" + debug "^4.3.4" + graphemer "^1.4.0" + ignore "^5.2.0" + natural-compare-lite "^1.4.0" + semver "^7.3.7" tsutils "^3.21.0" "@typescript-eslint/experimental-utils@4.33.0": @@ -3439,18 +2634,6 @@ eslint-scope "^5.1.1" eslint-utils "^3.0.0" -"@typescript-eslint/experimental-utils@5.8.0": - version "5.8.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.8.0.tgz#0916ffe98d34b3c95e3652efa0cace61a7b25728" - integrity sha512-KN5FvNH71bhZ8fKtL+lhW7bjm7cxs1nt+hrDZWIqb6ViCffQcWyLunGrgvISgkRojIDcXIsH+xlFfI4RCDA0xA== - dependencies: - "@types/json-schema" "^7.0.9" - "@typescript-eslint/scope-manager" "5.8.0" - "@typescript-eslint/types" "5.8.0" - "@typescript-eslint/typescript-estree" "5.8.0" - eslint-scope "^5.1.1" - eslint-utils "^3.0.0" - "@typescript-eslint/parser@^4.33.0": version "4.33.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.33.0.tgz#dfe797570d9694e560528d18eecad86c8c744899" @@ -3462,14 +2645,14 @@ debug "^4.3.1" "@typescript-eslint/parser@^5.8.0": - version "5.8.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.8.0.tgz#b39970b21c1d7bc4a6018507fb29b380328d2587" - integrity sha512-Gleacp/ZhRtJRYs5/T8KQR3pAQjQI89Dn/k+OzyCKOsLiZH2/Vh60cFBTnFsHNI6WAD+lNUo/xGZ4NeA5u0Ipw== + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7" + integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== dependencies: - "@typescript-eslint/scope-manager" "5.8.0" - "@typescript-eslint/types" "5.8.0" - "@typescript-eslint/typescript-estree" "5.8.0" - debug "^4.3.2" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" + debug "^4.3.4" "@typescript-eslint/scope-manager@4.33.0": version "4.33.0" @@ -3479,23 +2662,33 @@ "@typescript-eslint/types" "4.33.0" "@typescript-eslint/visitor-keys" "4.33.0" -"@typescript-eslint/scope-manager@5.8.0": - version "5.8.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.8.0.tgz#2371095b4fa4c7be6a80b380f4e1b49c715e16f4" - integrity sha512-x82CYJsLOjPCDuFFEbS6e7K1QEWj7u5Wk1alw8A+gnJiYwNnDJk0ib6PCegbaPMjrfBvFKa7SxE3EOnnIQz2Gg== +"@typescript-eslint/scope-manager@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c" + integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w== + dependencies: + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + +"@typescript-eslint/type-utils@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz#286f0389c41681376cdad96b309cedd17d70346a" + integrity sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew== dependencies: - "@typescript-eslint/types" "5.8.0" - "@typescript-eslint/visitor-keys" "5.8.0" + "@typescript-eslint/typescript-estree" "5.62.0" + "@typescript-eslint/utils" "5.62.0" + debug "^4.3.4" + tsutils "^3.21.0" "@typescript-eslint/types@4.33.0": version "4.33.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.33.0.tgz#a1e59036a3b53ae8430ceebf2a919dc7f9af6d72" integrity sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ== -"@typescript-eslint/types@5.8.0": - version "5.8.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.8.0.tgz#e7fa74ec35d9dbe3560d039d3d8734986c3971e0" - integrity sha512-LdCYOqeqZWqCMOmwFnum6YfW9F3nKuxJiR84CdIRN5nfHJ7gyvGpXWqL/AaW0k3Po0+wm93ARAsOdzlZDPCcXg== +"@typescript-eslint/types@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" + integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== "@typescript-eslint/typescript-estree@4.33.0": version "4.33.0" @@ -3510,19 +2703,33 @@ semver "^7.3.5" tsutils "^3.21.0" -"@typescript-eslint/typescript-estree@5.8.0": - version "5.8.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.8.0.tgz#900469ba9d5a37f4482b014ecce4a5dbb86cb4dd" - integrity sha512-srfeZ3URdEcUsSLbkOFqS7WoxOqn8JNil2NSLO9O+I2/Uyc85+UlfpEvQHIpj5dVts7KKOZnftoJD/Fdv0L7nQ== +"@typescript-eslint/typescript-estree@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" + integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== dependencies: - "@typescript-eslint/types" "5.8.0" - "@typescript-eslint/visitor-keys" "5.8.0" - debug "^4.3.2" - globby "^11.0.4" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + debug "^4.3.4" + globby "^11.1.0" is-glob "^4.0.3" - semver "^7.3.5" + semver "^7.3.7" tsutils "^3.21.0" +"@typescript-eslint/utils@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.62.0.tgz#141e809c71636e4a75daa39faed2fb5f4b10df86" + integrity sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@types/json-schema" "^7.0.9" + "@types/semver" "^7.3.12" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" + eslint-scope "^5.1.1" + semver "^7.3.7" + "@typescript-eslint/visitor-keys@4.33.0": version "4.33.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz#2a22f77a41604289b7a186586e9ec48ca92ef1dd" @@ -3531,138 +2738,140 @@ "@typescript-eslint/types" "4.33.0" eslint-visitor-keys "^2.0.0" -"@typescript-eslint/visitor-keys@5.8.0": - version "5.8.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.8.0.tgz#22d4ed96fe2451135299239feedb9fe1dcec780c" - integrity sha512-+HDIGOEMnqbxdAHegxvnOqESUH6RWFRR2b8qxP1W9CZnnYh4Usz6MBL+2KMAgPk/P0o9c1HqnYtwzVH6GTIqug== +"@typescript-eslint/visitor-keys@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e" + integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== dependencies: - "@typescript-eslint/types" "5.8.0" - eslint-visitor-keys "^3.0.0" + "@typescript-eslint/types" "5.62.0" + eslint-visitor-keys "^3.3.0" "@vercel/webpack-asset-relocator-loader@^1.7.0": - version "1.7.0" - resolved "https://registry.yarnpkg.com/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.0.tgz#d3b707e0aba3111719f941dacb2408eff3c27319" - integrity sha512-1Dy3BdOliDwxA7VZSIg55E1d/us2KvsCQOZV25fgufG//CsnZBGiSAL7qewTQf7YVHH0A9PHgzwMmKIZ8aFYVw== - -"@webassemblyjs/ast@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.1.tgz#2bfd767eae1a6996f432ff7e8d7fc75679c0b6a7" - integrity sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw== - dependencies: - "@webassemblyjs/helper-numbers" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - -"@webassemblyjs/floating-point-hex-parser@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz#f6c61a705f0fd7a6aecaa4e8198f23d9dc179e4f" - integrity sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ== - -"@webassemblyjs/helper-api-error@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz#1a63192d8788e5c012800ba6a7a46c705288fd16" - integrity sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg== - -"@webassemblyjs/helper-buffer@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz#832a900eb444884cde9a7cad467f81500f5e5ab5" - integrity sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA== - -"@webassemblyjs/helper-numbers@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz#64d81da219fbbba1e3bd1bfc74f6e8c4e10a62ae" - integrity sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ== - dependencies: - "@webassemblyjs/floating-point-hex-parser" "1.11.1" - "@webassemblyjs/helper-api-error" "1.11.1" + version "1.7.3" + resolved "https://registry.yarnpkg.com/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.3.tgz#e65ca1fd9feb045039788f9b4710e5acc84b01b0" + integrity sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g== + dependencies: + resolve "^1.10.0" + +"@webassemblyjs/ast@1.11.6", "@webassemblyjs/ast@^1.11.5": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.6.tgz#db046555d3c413f8966ca50a95176a0e2c642e24" + integrity sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q== + dependencies: + "@webassemblyjs/helper-numbers" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + +"@webassemblyjs/floating-point-hex-parser@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz#dacbcb95aff135c8260f77fa3b4c5fea600a6431" + integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw== + +"@webassemblyjs/helper-api-error@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768" + integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== + +"@webassemblyjs/helper-buffer@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz#b66d73c43e296fd5e88006f18524feb0f2c7c093" + integrity sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA== + +"@webassemblyjs/helper-numbers@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz#cbce5e7e0c1bd32cf4905ae444ef64cea919f1b5" + integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g== + dependencies: + "@webassemblyjs/floating-point-hex-parser" "1.11.6" + "@webassemblyjs/helper-api-error" "1.11.6" "@xtuc/long" "4.2.2" -"@webassemblyjs/helper-wasm-bytecode@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz#f328241e41e7b199d0b20c18e88429c4433295e1" - integrity sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q== +"@webassemblyjs/helper-wasm-bytecode@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9" + integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== -"@webassemblyjs/helper-wasm-section@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz#21ee065a7b635f319e738f0dd73bfbda281c097a" - integrity sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg== +"@webassemblyjs/helper-wasm-section@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz#ff97f3863c55ee7f580fd5c41a381e9def4aa577" + integrity sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g== dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-buffer" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/wasm-gen" "1.11.1" + "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/helper-buffer" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/wasm-gen" "1.11.6" -"@webassemblyjs/ieee754@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz#963929e9bbd05709e7e12243a099180812992614" - integrity sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ== +"@webassemblyjs/ieee754@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz#bb665c91d0b14fffceb0e38298c329af043c6e3a" + integrity sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg== dependencies: "@xtuc/ieee754" "^1.2.0" -"@webassemblyjs/leb128@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.1.tgz#ce814b45574e93d76bae1fb2644ab9cdd9527aa5" - integrity sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw== +"@webassemblyjs/leb128@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz#70e60e5e82f9ac81118bc25381a0b283893240d7" + integrity sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ== dependencies: "@xtuc/long" "4.2.2" -"@webassemblyjs/utf8@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.1.tgz#d1f8b764369e7c6e6bae350e854dec9a59f0a3ff" - integrity sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ== - -"@webassemblyjs/wasm-edit@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz#ad206ebf4bf95a058ce9880a8c092c5dec8193d6" - integrity sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-buffer" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/helper-wasm-section" "1.11.1" - "@webassemblyjs/wasm-gen" "1.11.1" - "@webassemblyjs/wasm-opt" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" - "@webassemblyjs/wast-printer" "1.11.1" - -"@webassemblyjs/wasm-gen@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz#86c5ea304849759b7d88c47a32f4f039ae3c8f76" - integrity sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/ieee754" "1.11.1" - "@webassemblyjs/leb128" "1.11.1" - "@webassemblyjs/utf8" "1.11.1" - -"@webassemblyjs/wasm-opt@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz#657b4c2202f4cf3b345f8a4c6461c8c2418985f2" - integrity sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-buffer" "1.11.1" - "@webassemblyjs/wasm-gen" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" - -"@webassemblyjs/wasm-parser@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz#86ca734534f417e9bd3c67c7a1c75d8be41fb199" - integrity sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-api-error" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/ieee754" "1.11.1" - "@webassemblyjs/leb128" "1.11.1" - "@webassemblyjs/utf8" "1.11.1" - -"@webassemblyjs/wast-printer@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz#d0c73beda8eec5426f10ae8ef55cee5e7084c2f0" - integrity sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg== - dependencies: - "@webassemblyjs/ast" "1.11.1" +"@webassemblyjs/utf8@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz#90f8bc34c561595fe156603be7253cdbcd0fab5a" + integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== + +"@webassemblyjs/wasm-edit@^1.11.5": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz#c72fa8220524c9b416249f3d94c2958dfe70ceab" + integrity sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/helper-buffer" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/helper-wasm-section" "1.11.6" + "@webassemblyjs/wasm-gen" "1.11.6" + "@webassemblyjs/wasm-opt" "1.11.6" + "@webassemblyjs/wasm-parser" "1.11.6" + "@webassemblyjs/wast-printer" "1.11.6" + +"@webassemblyjs/wasm-gen@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz#fb5283e0e8b4551cc4e9c3c0d7184a65faf7c268" + integrity sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/ieee754" "1.11.6" + "@webassemblyjs/leb128" "1.11.6" + "@webassemblyjs/utf8" "1.11.6" + +"@webassemblyjs/wasm-opt@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz#d9a22d651248422ca498b09aa3232a81041487c2" + integrity sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/helper-buffer" "1.11.6" + "@webassemblyjs/wasm-gen" "1.11.6" + "@webassemblyjs/wasm-parser" "1.11.6" + +"@webassemblyjs/wasm-parser@1.11.6", "@webassemblyjs/wasm-parser@^1.11.5": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz#bb85378c527df824004812bbdb784eea539174a1" + integrity sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/helper-api-error" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/ieee754" "1.11.6" + "@webassemblyjs/leb128" "1.11.6" + "@webassemblyjs/utf8" "1.11.6" + +"@webassemblyjs/wast-printer@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz#a7bf8dd7e362aeb1668ff43f35cb849f188eff20" + integrity sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A== + dependencies: + "@webassemblyjs/ast" "1.11.6" "@xtuc/long" "4.2.2" "@xtuc/ieee754@^1.2.0": @@ -3675,7 +2884,7 @@ resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== -abort-controller@^3.0.0: +abort-controller@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== @@ -3683,58 +2892,84 @@ abort-controller@^3.0.0: event-target-shim "^5.0.0" abortcontroller-polyfill@^1.1.9: - version "1.7.3" - resolved "https://registry.yarnpkg.com/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.3.tgz#1b5b487bd6436b5b764fd52a612509702c3144b5" - integrity sha512-zetDJxd89y3X99Kvo4qFx8GKlt6GsvN3UcRZHwU6iFA/0KiOmhkTVhe8oRoTBiTVPZu09x3vCra47+w8Yz1+2Q== + version "1.7.5" + resolved "https://registry.yarnpkg.com/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.5.tgz#6738495f4e901fbb57b6c0611d0c75f76c485bed" + integrity sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ== -accepts@^1.3.7, accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: - version "1.3.7" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" - integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== +accepts@^1.3.7, accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: + version "1.3.8" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== dependencies: - mime-types "~2.1.24" - negotiator "0.6.2" + mime-types "~2.1.34" + negotiator "0.6.3" -acorn-import-assertions@^1.7.6: - version "1.8.0" - resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz#ba2b5939ce62c238db6d93d81c9b111b29b855e9" - integrity sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw== +acorn-import-assertions@^1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac" + integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== -acorn-jsx@^5.3.1: +acorn-jsx@^5.3.1, acorn-jsx@^5.3.2: version "5.3.2" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== +acorn-loose@^8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/acorn-loose/-/acorn-loose-8.3.0.tgz#0cd62461d21dce4f069785f8d3de136d5525029a" + integrity sha512-75lAs9H19ldmW+fAbyqHdjgdCrz0pWGXKmnqFoh8PyVd1L2RIb4RzYrSjmopeqv3E1G3/Pimu6GgLlrGbrkF7w== + dependencies: + acorn "^8.5.0" + +acorn-walk@^8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + +acorn@^6.2.1: + version "6.4.2" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6" + integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== + acorn@^7.4.0: version "7.4.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== -acorn@^8.4.1, acorn@^8.6.0: - version "8.6.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.6.0.tgz#e3692ba0eb1a0c83eaa4f37f5fa7368dd7142895" - integrity sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw== - -acorn@^8.5.0: - version "8.8.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" - integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== +acorn@^8.5.0, acorn@^8.7.1, acorn@^8.8.2, acorn@^8.9.0: + version "8.10.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" + integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== -address@1.1.2, address@^1.0.1: +address@1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6" integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA== -address@^1.1.2: - version "1.2.0" - resolved "https://registry.yarnpkg.com/address/-/address-1.2.0.tgz#d352a62c92fee90f89a693eccd2a8b2139ab02d9" - integrity sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig== +address@^1.0.1, address@^1.1.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/address/-/address-1.2.2.tgz#2b5248dac5485a6390532c6a517fda2e3faac89e" + integrity sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA== + +ajv-formats@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" + integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== + dependencies: + ajv "^8.0.0" ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: version "3.5.2" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== +ajv-keywords@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" + integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== + dependencies: + fast-deep-equal "^3.1.3" + ajv@^6.10.0, ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" @@ -3745,25 +2980,20 @@ ajv@^6.10.0, ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ajv@^8.0.1: - version "8.8.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.8.2.tgz#01b4fef2007a28bf75f0b7fc009f62679de4abbb" - integrity sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw== +ajv@^8.0.0, ajv@^8.0.1, ajv@^8.9.0: + version "8.12.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1" + integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== dependencies: fast-deep-equal "^3.1.1" json-schema-traverse "^1.0.0" require-from-string "^2.0.2" uri-js "^4.2.2" -alphanum-sort@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" - integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= - anser@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/anser/-/anser-2.1.0.tgz#a7309c9f29886f19af56cb30c79fc60ea483944e" - integrity sha512-zqC6MjuKg2ASofHsYE4orC7uGZQVbfJT1NiDDAzPtwc8XkWsAOSPAfqGFB/SG/PLybgeZ+LjVXvwfAWAEPXzuQ== + version "2.1.1" + resolved "https://registry.yarnpkg.com/anser/-/anser-2.1.1.tgz#8afae28d345424c82de89cc0e4d1348eb0c5af7c" + integrity sha512-nqLm4HxOTpeLOxcmB3QWmV5TcDFhW9y/fyQ+hivtDFcK4OQ+pQ5fzPnXHM1Mfcm0VkLtvVi1TCPr++Qy0Q/3EQ== ansi-align@^3.0.0: version "3.0.1" @@ -3773,41 +3003,31 @@ ansi-align@^3.0.0: string-width "^4.1.0" ansi-colors@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" - integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== - -ansi-escapes@^3.1.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" - integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== + version "4.1.3" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== -ansi-escapes@^4.2.1: +ansi-escapes@^4.2.1, ansi-escapes@^4.3.2: version "4.3.2" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== dependencies: type-fest "^0.21.3" -ansi-html-community@^0.0.8: +ansi-html-community@0.0.8, ansi-html-community@^0.0.8: version "0.0.8" resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== -ansi-html@0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" - integrity sha1-gTWEAhliqenm/QOflA0S9WynhZ4= - ansi-regex@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= + integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== ansi-regex@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" - integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== + version "4.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" + integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== ansi-regex@^5.0.1: version "5.0.1" @@ -3828,15 +3048,10 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -any-base@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/any-base/-/any-base-1.1.0.tgz#ae101a62bc08a597b4c9ab5b7089d456630549fe" - integrity sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg== - anymatch@~3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" - integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== dependencies: normalize-path "^3.0.0" picomatch "^2.0.4" @@ -3844,12 +3059,12 @@ anymatch@~3.1.2: append-field@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/append-field/-/append-field-1.0.0.tgz#1e3440e915f0b1203d23748e78edd7b9b5b43e56" - integrity sha1-HjRA6RXwsSA9I3SOeO3XubW0PlY= + integrity sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw== application-config-path@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/application-config-path/-/application-config-path-0.1.0.tgz#193c5f0a86541a4c66fba1e2dc38583362ea5e8f" - integrity sha1-GTxfCoZUGkxm+6Hi3DhYM2LqXo8= + version "0.1.1" + resolved "https://registry.yarnpkg.com/application-config-path/-/application-config-path-0.1.1.tgz#8b5ac64ff6afdd9bd70ce69f6f64b6998f5f756e" + integrity sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw== arch@^2.1.1: version "2.2.0" @@ -3868,39 +3083,35 @@ argparse@^2.0.1: resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -aria-query@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" - integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== +aria-query@^5.1.3: + version "5.3.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e" + integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== dependencies: - "@babel/runtime" "^7.10.2" - "@babel/runtime-corejs3" "^7.10.2" + dequal "^2.0.3" + +array-buffer-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" + integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== + dependencies: + call-bind "^1.0.2" + is-array-buffer "^3.0.1" array-flatten@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= - -array-includes@^3.1.3, array-includes@^3.1.4: - version "3.1.4" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.4.tgz#f5b493162c760f3539631f005ba2bb46acb45ba9" - integrity sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" - get-intrinsic "^1.1.1" - is-string "^1.0.7" + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== -array-includes@^3.1.5: - version "3.1.5" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb" - integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ== +array-includes@^3.1.6: + version "3.1.6" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" + integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== dependencies: call-bind "^1.0.2" define-properties "^1.1.4" - es-abstract "^1.19.5" - get-intrinsic "^1.1.1" + es-abstract "^1.20.4" + get-intrinsic "^1.1.3" is-string "^1.0.7" array-union@^2.1.0: @@ -3908,33 +3119,59 @@ array-union@^2.1.0: resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== -array.prototype.flat@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz#07e0975d84bbc7c48cd1879d609e682598d33e13" - integrity sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg== +array.prototype.findlastindex@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.2.tgz#bc229aef98f6bd0533a2bc61ff95209875526c9b" + integrity sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.0" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + get-intrinsic "^1.1.3" -array.prototype.flatmap@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz#908dc82d8a406930fdf38598d51e7411d18d4446" - integrity sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA== +array.prototype.flat@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" + integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== dependencies: - call-bind "^1.0.0" - define-properties "^1.1.3" - es-abstract "^1.19.0" + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" -array.prototype.flatmap@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz#a7e8ed4225f4788a70cd910abcf0791e76a5534f" - integrity sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg== +array.prototype.flatmap@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" + integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + +array.prototype.tosorted@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532" + integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" es-shim-unscopables "^1.0.0" + get-intrinsic "^1.1.3" + +arraybuffer.prototype.slice@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz#9b5ea3868a6eebc30273da577eb888381c0044bb" + integrity sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw== + dependencies: + array-buffer-byte-length "^1.0.0" + call-bind "^1.0.2" + define-properties "^1.2.0" + get-intrinsic "^1.2.1" + is-array-buffer "^3.0.2" + is-shared-array-buffer "^1.0.2" arrify@^2.0.1: version "2.0.1" @@ -3944,12 +3181,12 @@ arrify@^2.0.1: asap@~2.0.3: version "2.0.6" resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" - integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= + integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== ast-types-flow@^0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" - integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0= + integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== astral-regex@^2.0.0: version "2.0.0" @@ -3959,29 +3196,31 @@ astral-regex@^2.0.0: async-cache@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/async-cache/-/async-cache-1.1.0.tgz#4a9a5a89d065ec5d8e5254bd9ee96ba76c532b5a" - integrity sha1-SppaidBl7F2OUlS9nulrp2xTK1o= + integrity sha512-YDQc4vBn5NFhY6g6HhVshyi3Fy9+SQ5ePnE7JLDJn1DoL+i7ER+vMwtTNOYk9leZkYMnOwpBCWqyLDPw8Aig8g== dependencies: lru-cache "^4.0.0" -async-retry-ng@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/async-retry-ng/-/async-retry-ng-2.0.1.tgz#f5285ec1c52654a2ba6a505d0c18b1eadfaebd41" - integrity sha512-iitlc2murdQ3/A5Re3CcplQBEf7vOmFrFQ6RFn3+/+zZUyIHYkZnnEziMSa6YIb2Bs2EJEPZWReTxjHqvQbDbw== - async@1.5.2: version "1.5.2" resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" - integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= + integrity sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w== -async@^3.2.3: +async@^3.2.4: version "3.2.4" resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== +asynciterator.prototype@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz#8c5df0514936cdd133604dfcc9d3fb93f09b2b62" + integrity sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg== + dependencies: + has-symbols "^1.0.3" + asynckit@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== at-least-node@^1.0.0: version "1.0.0" @@ -3999,21 +3238,26 @@ auto-bind@~4.0.0: integrity sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ== autoprefixer@^10.4.0: - version "10.4.0" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.0.tgz#c3577eb32a1079a440ec253e404eaf1eb21388c8" - integrity sha512-7FdJ1ONtwzV1G43GDD0kpVMn/qbiNqyOPMFTX5nRffI+7vgWoFEc6DcXOxHJxrWNDXrZh18eDsZjvZGUljSRGA== + version "10.4.15" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.15.tgz#a1230f4aeb3636b89120b34a1f513e2f6834d530" + integrity sha512-KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew== dependencies: - browserslist "^4.17.5" - caniuse-lite "^1.0.30001272" - fraction.js "^4.1.1" + browserslist "^4.21.10" + caniuse-lite "^1.0.30001520" + fraction.js "^4.2.0" normalize-range "^0.1.2" picocolors "^1.0.0" - postcss-value-parser "^4.1.0" + postcss-value-parser "^4.2.0" + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== -axe-core@^4.3.5: - version "4.3.5" - resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.3.5.tgz#78d6911ba317a8262bfee292aeafcc1e04b49cc5" - integrity sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA== +axe-core@^4.6.2: + version "4.7.2" + resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.7.2.tgz#040a7342b20765cb18bb50b628394c21bccc17a0" + integrity sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g== axios@^0.21.1: version "0.21.4" @@ -4022,10 +3266,12 @@ axios@^0.21.1: dependencies: follow-redirects "^1.14.0" -axobject-query@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" - integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== +axobject-query@^3.1.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.2.1.tgz#39c378a6e3b06ca679f29138151e45b2b32da62a" + integrity sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg== + dependencies: + dequal "^2.0.3" babel-jsx-utils@^1.1.0: version "1.1.0" @@ -4033,12 +3279,12 @@ babel-jsx-utils@^1.1.0: integrity sha512-Mh1j/rw4xM9T3YICkw22aBQ78FhsHdsmlb9NEk4uVAFBOg+Ez9ZgXXHugoBPCZui3XLomk/7/JBBH4daJqTkQQ== babel-loader@^8.2.3: - version "8.2.3" - resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.3.tgz#8986b40f1a64cacfcb4b8429320085ef68b1342d" - integrity sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw== + version "8.3.0" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.3.0.tgz#124936e841ba4fe8176786d6ff28add1f134d6a8" + integrity sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q== dependencies: find-cache-dir "^3.3.1" - loader-utils "^1.4.0" + loader-utils "^2.0.0" make-dir "^3.1.0" schema-utils "^2.6.5" @@ -4074,61 +3320,49 @@ babel-plugin-macros@^3.1.0: cosmiconfig "^7.0.0" resolve "^1.19.0" -babel-plugin-polyfill-corejs2@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.0.tgz#407082d0d355ba565af24126fb6cb8e9115251fd" - integrity sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA== +babel-plugin-polyfill-corejs2@^0.4.5: + version "0.4.5" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz#8097b4cb4af5b64a1d11332b6fb72ef5e64a054c" + integrity sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg== dependencies: - "@babel/compat-data" "^7.13.11" - "@babel/helper-define-polyfill-provider" "^0.3.0" - semver "^6.1.1" + "@babel/compat-data" "^7.22.6" + "@babel/helper-define-polyfill-provider" "^0.4.2" + semver "^6.3.1" -babel-plugin-polyfill-corejs3@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.4.0.tgz#0b571f4cf3d67f911512f5c04842a7b8e8263087" - integrity sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw== +babel-plugin-polyfill-corejs3@^0.8.3: + version "0.8.3" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz#b4f719d0ad9bb8e0c23e3e630c0c8ec6dd7a1c52" + integrity sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA== dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.0" - core-js-compat "^3.18.0" + "@babel/helper-define-polyfill-provider" "^0.4.2" + core-js-compat "^3.31.0" -babel-plugin-polyfill-regenerator@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.0.tgz#9ebbcd7186e1a33e21c5e20cae4e7983949533be" - integrity sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg== +babel-plugin-polyfill-regenerator@^0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz#80d0f3e1098c080c8b5a65f41e9427af692dc326" + integrity sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA== dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.0" + "@babel/helper-define-polyfill-provider" "^0.4.2" -babel-plugin-remove-graphql-queries@^4.22.0: - version "4.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.22.0.tgz#fb849b9a38f48474182060363c50e04f1ff17723" - integrity sha512-x452XRHXrcWu+Fdk4cwyPvtrWox76r21PygvmQwRBaixKrDhu3T5ausZ+u4UMUKmDB4Z3Zy5NHizNovrEj0OGQ== +babel-plugin-remove-graphql-queries@^4.25.0: + version "4.25.0" + resolved "https://registry.yarnpkg.com/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.25.0.tgz#ebfc91d8dbe567035b8ce4c3df0a068b745571df" + integrity sha512-enyqRNRrn7vTG3nwg1V+XhoAJIyUv3ZukQCs5KbHOK+WNDDiGZQzIG+FCiZFACScdZBJWyx7TYRYbOFJZ/KEGg== dependencies: "@babel/runtime" "^7.15.4" "@babel/types" "^7.15.4" - gatsby-core-utils "^3.22.0" - -babel-plugin-remove-graphql-queries@^4.5.0-next.2: - version "4.5.0-next.2" - resolved "https://registry.yarnpkg.com/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.5.0-next.2.tgz#6f2dcf46e632820fe58fa25176cadaf6b10c000a" - integrity sha512-u259uRUW3eOcoc6RoTCGbnNGc+fl241TFcYuuHHbDDmhqrieKlJTkmpXKOwVioITPEPRVLL3kFgYcojPnmb+hg== - dependencies: - "@babel/runtime" "^7.15.4" - gatsby-core-utils "^3.5.0-next.2" + gatsby-core-utils "^3.25.0" "babel-plugin-styled-components@>= 1.12.0", babel-plugin-styled-components@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.2.tgz#0fac11402dc9db73698b55847ab1dc73f5197c54" - integrity sha512-7eG5NE8rChnNTDxa6LQfynwgHTVOYYaHJbUYSlOhk8QBXIQiMBKq4gyfHBBKPrxUcVBXVJL61ihduCpCQbuNbw== + version "2.1.4" + resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-2.1.4.tgz#9a1f37c7f32ef927b4b008b529feb4a2c82b1092" + integrity sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g== dependencies: - "@babel/helper-annotate-as-pure" "^7.16.0" - "@babel/helper-module-imports" "^7.16.0" - babel-plugin-syntax-jsx "^6.18.0" - lodash "^4.17.11" - -babel-plugin-syntax-jsx@^6.18.0: - version "6.18.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" - integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY= + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-module-imports" "^7.22.5" + "@babel/plugin-syntax-jsx" "^7.22.5" + lodash "^4.17.21" + picomatch "^2.3.1" babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0: version "7.0.0-beta.0" @@ -4173,10 +3407,10 @@ babel-preset-fbjs@^3.4.0: "@babel/plugin-transform-template-literals" "^7.0.0" babel-plugin-syntax-trailing-function-commas "^7.0.0-beta.0" -babel-preset-gatsby@^2.22.0: - version "2.22.0" - resolved "https://registry.yarnpkg.com/babel-preset-gatsby/-/babel-preset-gatsby-2.22.0.tgz#eddb240cb5f2d2b80a3184bda2c6999aad90aaa1" - integrity sha512-GXSNQ69ML93DAlGM+YCfxwY0oIm34fh0A25BUpTt0epuMMq3Xxlbyu42381gLkyHV0vlGxBcabBAE7RMxxAkKA== +babel-preset-gatsby@^2.25.0: + version "2.25.0" + resolved "https://registry.yarnpkg.com/babel-preset-gatsby/-/babel-preset-gatsby-2.25.0.tgz#13c7bccbbf91792d6bd7a95a6531560df8c306f8" + integrity sha512-KFfSTDAkY87/Myq1KIUk9cVphWZem/08U7ps9Hiotbo6Mge/lL6ggh3xKP9SdR5Le4DLLyIUI7a4ILrAVacYDg== dependencies: "@babel/plugin-proposal-class-properties" "^7.14.0" "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.5" @@ -4191,13 +3425,13 @@ babel-preset-gatsby@^2.22.0: babel-plugin-dynamic-import-node "^2.3.3" babel-plugin-macros "^3.1.0" babel-plugin-transform-react-remove-prop-types "^0.4.24" - gatsby-core-utils "^3.22.0" - gatsby-legacy-polyfills "^2.22.0" + gatsby-core-utils "^3.25.0" + gatsby-legacy-polyfills "^2.25.0" -backo2@^1.0.2, backo2@~1.0.2: +backo2@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" - integrity sha1-MasayLEpNjRj41s+u2n038+6eUc= + integrity sha512-zj6Z6M7Eq+PBZ7PQxl5NT665MvJdAkzp0f60nAJ+sLaSCBPMwVak5ZegFbgVCzFcCJTKFoMizvM5Ld7+JrRJHA== balanced-match@^1.0.0: version "1.0.2" @@ -4211,11 +3445,6 @@ base-x@^3.0.8: dependencies: safe-buffer "^5.0.1" -base64-arraybuffer@0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz#9818c79e059b1355f97e0428a017c838e90ba812" - integrity sha1-mBjHngWbE1X5fgQooBfIOOkLqBI= - base64-js@^1.3.1: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" @@ -4262,31 +3491,28 @@ bluebird@^3.7.2: resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== -bmp-js@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/bmp-js/-/bmp-js-0.1.0.tgz#e05a63f796a6c1ff25f4771ec7adadc148c07233" - integrity sha1-4Fpj95amwf8l9Hcex62twUjAcjM= - -body-parser@1.19.1: - version "1.19.1" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.1.tgz#1499abbaa9274af3ecc9f6f10396c995943e31d4" - integrity sha512-8ljfQi5eBk8EJfECMrgqNGWPEY5jWP+1IzkzkGdFFEwFQZZyaZ21UqdaHktgiMlH0xLHqIFtE/u2OYE5dOtViA== +body-parser@1.20.1: + version "1.20.1" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" + integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== dependencies: - bytes "3.1.1" + bytes "3.1.2" content-type "~1.0.4" debug "2.6.9" - depd "~1.1.2" - http-errors "1.8.1" + depd "2.0.0" + destroy "1.2.0" + http-errors "2.0.0" iconv-lite "0.4.24" - on-finished "~2.3.0" - qs "6.9.6" - raw-body "2.4.2" + on-finished "2.4.1" + qs "6.11.0" + raw-body "2.5.1" type-is "~1.6.18" + unpipe "1.0.0" -boolbase@^1.0.0, boolbase@~1.0.0: +boolbase@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" - integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== boxen@^4.2.0: version "4.2.0" @@ -4324,33 +3550,22 @@ brace-expansion@^1.1.7: balanced-match "^1.0.0" concat-map "0.0.1" -braces@^3.0.1, braces@^3.0.2, braces@~3.0.2: +braces@^3.0.2, braces@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== dependencies: fill-range "^7.0.1" -browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.0, browserslist@^4.16.3, browserslist@^4.16.6, browserslist@^4.17.5, browserslist@^4.19.1: - version "4.19.1" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.19.1.tgz#4ac0435b35ab655896c31d53018b6dd5e9e4c9a3" - integrity sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A== - dependencies: - caniuse-lite "^1.0.30001286" - electron-to-chromium "^1.4.17" - escalade "^3.1.1" - node-releases "^2.0.1" - picocolors "^1.0.0" - -browserslist@^4.18.1, browserslist@^4.6.6: - version "4.21.3" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.3.tgz#5df277694eb3c48bc5c4b05af3e8b7e09c5a6d1a" - integrity sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ== +browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.3, browserslist@^4.17.5, browserslist@^4.18.1, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.21.9, browserslist@^4.6.6: + version "4.21.10" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.10.tgz#dbbac576628c13d3b2231332cb2ec5a46e015bb0" + integrity sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ== dependencies: - caniuse-lite "^1.0.30001370" - electron-to-chromium "^1.4.202" - node-releases "^2.0.6" - update-browserslist-db "^1.0.5" + caniuse-lite "^1.0.30001517" + electron-to-chromium "^1.4.477" + node-releases "^2.0.13" + update-browserslist-db "^1.0.11" bser@2.1.1: version "2.1.1" @@ -4359,17 +3574,12 @@ bser@2.1.1: dependencies: node-int64 "^0.4.0" -buffer-equal@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-0.0.1.tgz#91bc74b11ea405bc916bc6aa908faafa5b4aac4b" - integrity sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs= - buffer-from@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== -buffer@^5.2.0, buffer@^5.5.0, buffer@^5.7.0: +buffer@^5.5.0, buffer@^5.7.0: version "5.7.1" resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== @@ -4387,12 +3597,7 @@ busboy@^1.0.0: bytes@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" - integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= - -bytes@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.1.tgz#3f018291cb4cbad9accb6e6970bca9c8889e879a" - integrity sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg== + integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== bytes@3.1.2: version "3.1.2" @@ -4427,9 +3632,9 @@ cacheable-request@^6.0.0: responselike "^1.0.2" cacheable-request@^7.0.2: - version "7.0.2" - resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.2.tgz#ea0d0b889364a25854757301ca12b2da77f91d27" - integrity sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew== + version "7.0.4" + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz#7a33ebf08613178b403635be7b899d3e69bbe817" + integrity sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg== dependencies: clone-response "^1.0.2" get-stream "^5.1.0" @@ -4466,14 +3671,14 @@ camelcase@^5.0.0, camelcase@^5.3.1: integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== camelcase@^6.2.0: - version "6.2.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.1.tgz#250fd350cfd555d0d2160b1d51510eaf8326e86e" - integrity sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA== + version "6.3.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== camelize@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b" - integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs= + version "1.0.1" + resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.1.tgz#89b7e16884056331a35d6b5ad064332c91daa6c3" + integrity sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ== caniuse-api@^3.0.0: version "3.0.0" @@ -4485,15 +3690,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001272, caniuse-lite@^1.0.30001286: - version "1.0.30001292" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001292.tgz#4a55f61c06abc9595965cfd77897dc7bc1cdc456" - integrity sha512-jnT4Tq0Q4ma+6nncYQVe7d73kmDmE9C3OGTx3MvW7lBM/eY1S1DZTMBON7dqV481RhNiS5OxD7k9JQvmDOTirw== - -caniuse-lite@^1.0.30001370: - version "1.0.30001374" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001374.tgz#3dab138e3f5485ba2e74bd13eca7fe1037ce6f57" - integrity sha512-mWvzatRx3w+j5wx/mpFN5v5twlPrabG8NqX2c6e45LCpymdoGqNvRkRutFUqpRTXKFQFNQJasvK0YT7suW6/Hw== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001517, caniuse-lite@^1.0.30001520: + version "1.0.30001522" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz#44b87a406c901269adcdb834713e23582dd71856" + integrity sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg== capital-case@^1.0.4: version "1.0.4" @@ -4504,7 +3704,7 @@ capital-case@^1.0.4: tslib "^2.0.3" upper-case-first "^2.0.2" -chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: +chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -4545,6 +3745,22 @@ change-case-all@1.0.14: upper-case "^2.0.2" upper-case-first "^2.0.2" +change-case-all@1.0.15: + version "1.0.15" + resolved "https://registry.yarnpkg.com/change-case-all/-/change-case-all-1.0.15.tgz#de29393167fc101d646cd76b0ef23e27d09756ad" + integrity sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ== + dependencies: + change-case "^4.1.2" + is-lower-case "^2.0.2" + is-upper-case "^2.0.2" + lower-case "^2.0.2" + lower-case-first "^2.0.2" + sponge-case "^1.0.1" + swap-case "^2.0.2" + title-case "^3.0.3" + upper-case "^2.0.2" + upper-case-first "^2.0.2" + change-case@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/change-case/-/change-case-4.1.2.tgz#fedfc5f136045e2398c0410ee441f95704641e12" @@ -4568,7 +3784,7 @@ chardet@^0.7.0: resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== -chokidar@^3.4.2, chokidar@^3.5.3: +chokidar@^3.4.2, chokidar@^3.5.2, chokidar@^3.5.3: version "3.5.3" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== @@ -4583,21 +3799,6 @@ chokidar@^3.4.2, chokidar@^3.5.3: optionalDependencies: fsevents "~2.3.2" -chokidar@^3.5.2: - version "3.5.2" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" - integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - chownr@^1.1.1: version "1.1.4" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" @@ -4613,10 +3814,10 @@ ci-info@2.0.0, ci-info@^2.0.0: resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== -classnames@^2.2.5: - version "2.3.1" - resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e" - integrity sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA== +classnames@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.2.tgz#351d813bf0137fcc6a76a16b88208d2560a0d924" + integrity sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw== cli-boxes@^2.2.0, cli-boxes@^2.2.1: version "2.2.1" @@ -4663,9 +3864,9 @@ clone-deep@^4.0.1: shallow-clone "^3.0.0" clone-response@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" - integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= + version "1.0.3" + resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz#af2032aa47816399cf5f0a1d0db902f517abb8c3" + integrity sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA== dependencies: mimic-response "^1.0.0" @@ -4674,15 +3875,6 @@ clone@^2.1.1: resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w== -coa@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" - integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== - dependencies: - "@types/q" "^1.5.1" - chalk "^2.4.1" - q "^1.1.2" - color-convert@^1.9.0: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" @@ -4700,7 +3892,7 @@ color-convert@^2.0.1: color-name@1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== color-name@^1.0.0, color-name@~1.1.4: version "1.1.4" @@ -4708,9 +3900,9 @@ color-name@^1.0.0, color-name@~1.1.4: integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== color-string@^1.9.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.0.tgz#63b6ebd1bec11999d1df3a79a7569451ac2be8aa" - integrity sha512-9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ== + version "1.9.1" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4" + integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== dependencies: color-name "^1.0.0" simple-swizzle "^0.2.2" @@ -4724,9 +3916,9 @@ color@^4.2.3: color-string "^1.9.0" colord@^2.9.1: - version "2.9.2" - resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.2.tgz#25e2bacbbaa65991422c07ea209e2089428effb1" - integrity sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ== + version "2.9.3" + resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" + integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== colorette@^1.2.2: version "1.4.0" @@ -4768,12 +3960,7 @@ common-tags@1.8.2, common-tags@^1.8.0, common-tags@^1.8.2: commondir@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= - -component-emitter@~1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" - integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== compressible@~2.0.16: version "2.0.18" @@ -4798,7 +3985,7 @@ compression@^1.7.4: concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== concat-stream@^1.5.2: version "1.6.2" @@ -4844,9 +4031,9 @@ content-disposition@0.5.4: safe-buffer "5.2.1" content-type@^1.0.4, content-type@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" - integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== + version "1.0.5" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== convert-hrtime@^3.0.0: version "3.0.0" @@ -4854,21 +4041,24 @@ convert-hrtime@^3.0.0: integrity sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA== convert-source-map@^1.7.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" - integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== - dependencies: - safe-buffer "~5.1.1" + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== cookie-signature@1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" - integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== -cookie@0.4.1, cookie@^0.4.1, cookie@~0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.1.tgz#afd713fe26ebd21ba95ceb61f9a8116e50a537d1" - integrity sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA== +cookie@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" + integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== + +cookie@^0.4.1, cookie@~0.4.1: + version "0.4.2" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" + integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== core-js-compat@3.9.0: version "3.9.0" @@ -4878,28 +4068,22 @@ core-js-compat@3.9.0: browserslist "^4.16.3" semver "7.0.0" -core-js-compat@^3.18.0, core-js-compat@^3.19.1: - version "3.20.0" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.20.0.tgz#fd704640c5a213816b6d10ec0192756111e2c9d1" - integrity sha512-relrah5h+sslXssTTOkvqcC/6RURifB0W5yhYBdBkaPYa5/2KBMiog3XiD+s3TwEHWxInWVv4Jx2/Lw0vng+IQ== +core-js-compat@^3.31.0: + version "3.32.1" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.32.1.tgz#55f9a7d297c0761a8eb1d31b593e0f5b6ffae964" + integrity sha512-GSvKDv4wE0bPnQtjklV101juQ85g6H3rm5PDP20mqlS5j0kXF3pP97YvAu5hl+uFHqMictp3b2VxOHljWMAtuA== dependencies: - browserslist "^4.19.1" - semver "7.0.0" - -core-js-pure@^3.19.0: - version "3.20.0" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.20.0.tgz#7253feccf8bb05b72c153ddccdbe391ddbffbe03" - integrity sha512-qsrbIwWSEEYOM7z616jAVgwhuDDtPLwZSpUsU3vyUkHYqKTf/uwOJBZg2V7lMurYWkpVlaVOxBrfX0Q3ppvjfg== + browserslist "^4.21.10" -core-js-pure@^3.8.1: - version "3.25.0" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.25.0.tgz#f8d1f176ff29abbfeb610110de891d5ae5a361d4" - integrity sha512-IeHpLwk3uoci37yoI2Laty59+YqH9x5uR65/yiA0ARAJrTrN4YU0rmauLWfvqOuk77SlNJXj2rM6oT/dBD87+A== +core-js-pure@^3.23.3: + version "3.32.1" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.32.1.tgz#5775b88f9062885f67b6d7edce59984e89d276f3" + integrity sha512-f52QZwkFVDPf7UEQZGHKx6NYxsxmVGJe5DIvbzOdRMJlmT6yv0KDjR8rmy3ngr/t5wU54c7Sp/qIJH0ppbhVpQ== core-js@^3.22.3: - version "3.24.1" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.24.1.tgz#cf7724d41724154010a6576b7b57d94c5d66e64f" - integrity sha512-0QTBSYSUZ6Gq21utGzkfITDylE8jWC9Ne1D2MrhvlsZBI1x39OdDIVbzSqtgMndIy6BlHxBXpMGqzZmnztg2rg== + version "3.32.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.32.1.tgz#a7d8736a3ed9dd05940c3c4ff32c591bb735be77" + integrity sha512-lqufgNn9NLnESg5mQeYsxQP5w7wrViSj0jr/kv6ECQiByzQkrn1MKvV0L3acttpDqfQrHLwr2KCMgX5b8X+lyQ== core-util-is@~1.0.0: version "1.0.3" @@ -4926,9 +4110,9 @@ cosmiconfig@^6.0.0: yaml "^1.7.2" cosmiconfig@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d" - integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ== + version "7.1.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" + integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== dependencies: "@types/parse-json" "^4.0.0" import-fresh "^3.2.1" @@ -4936,21 +4120,28 @@ cosmiconfig@^7.0.0: path-type "^4.0.0" yaml "^1.10.0" -create-gatsby@^2.22.0: - version "2.22.0" - resolved "https://registry.yarnpkg.com/create-gatsby/-/create-gatsby-2.22.0.tgz#b3d9cd1dd3b8f0a246cb97c01bf375913e51110b" - integrity sha512-8/SyYTUTGDN3gDSTUWTH1QOfUQL4MrfzeyX+UzVz8DCU4Pamd9cegaA3HPCC6PyP6KbwfPR2dwpbUqETiMEfyg== +create-gatsby@^2.25.0: + version "2.25.0" + resolved "https://registry.yarnpkg.com/create-gatsby/-/create-gatsby-2.25.0.tgz#9878d20b0bf3316565339f54a193856163d6f7da" + integrity sha512-96Kl/6Far2j65/vFv/6Mb9+T+/4oW8hlC3UmdfjgBgUIzTPFmezY1ygPu2dfCKjprWkArB8DpE7EsAaJoRKB1Q== dependencies: "@babel/runtime" "^7.15.4" -cross-fetch@^3.0.4: - version "3.1.5" - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" - integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== +cross-fetch@3.1.4: + version "3.1.4" + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.4.tgz#9723f3a3a247bf8b89039f3a380a9244e8fa2f39" + integrity sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ== + dependencies: + node-fetch "2.6.1" + +cross-fetch@^3.1.5: + version "3.1.8" + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.8.tgz#0327eba65fd68a7d119f8fb2bf9334a1a7956f82" + integrity sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg== dependencies: - node-fetch "2.6.7" + node-fetch "^2.6.12" -cross-spawn@^6.0.0, cross-spawn@^6.0.5: +cross-spawn@^6.0.0: version "6.0.5" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== @@ -4970,18 +4161,6 @@ cross-spawn@^7.0.2, cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" -cross-undici-fetch@^0.1.19: - version "0.1.19" - resolved "https://registry.yarnpkg.com/cross-undici-fetch/-/cross-undici-fetch-0.1.19.tgz#1bef41652c33ec812b51cd3b4e1295114cd62d4c" - integrity sha512-bNBuesVn09Iy15mAM/hpt97fLWSexblVYpUYa5FjbtLHA7om9w3g1uRGGwrEnmVxy3wouNvZyJwQzAPHXgOrxQ== - dependencies: - abort-controller "^3.0.0" - form-data-encoder "^1.7.1" - formdata-node "^4.3.1" - node-fetch "^2.6.7" - undici "^4.9.3" - web-streams-polyfill "^3.2.0" - crypto-random-string@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" @@ -4990,14 +4169,12 @@ crypto-random-string@^2.0.0: css-color-keywords@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05" - integrity sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU= + integrity sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg== -css-declaration-sorter@^6.0.3: - version "6.1.3" - resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.1.3.tgz#e9852e4cf940ba79f509d9425b137d1f94438dc2" - integrity sha512-SvjQjNRZgh4ULK1LDJ2AduPKUKxIqmtU7ZAyi47BTV+M90Qvxr9AB6lKlLbDUfXqI9IQeYA8LbAsCZPpJEV3aA== - dependencies: - timsort "^0.3.0" +css-declaration-sorter@^6.3.1: + version "6.4.1" + resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz#28beac7c20bad7f1775be3a7129d7eae409a3a71" + integrity sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g== css-loader@^5.2.7: version "5.2.7" @@ -5028,33 +4205,7 @@ css-minimizer-webpack-plugin@^2.0.0: serialize-javascript "^5.0.1" source-map "^0.6.1" -css-select-base-adapter@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" - integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== - -css-select@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" - integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== - dependencies: - boolbase "^1.0.0" - css-what "^3.2.1" - domutils "^1.7.0" - nth-check "^1.0.2" - -css-select@^4.1.3: - version "4.2.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.2.0.tgz#ab28276d3afb00cc05e818bd33eb030f14f57895" - integrity sha512-6YVG6hsH9yIb/si3Th/is8Pex7qnVHO6t7q7U6TIUnkQASGbS8tnUDBftnPynLNnuUl/r2+PTd0ekiiq7R0zJw== - dependencies: - boolbase "^1.0.0" - css-what "^5.1.0" - domhandler "^4.3.0" - domutils "^2.8.0" - nth-check "^2.0.1" - -css-select@^4.2.1: +css-select@^4.1.3, css-select@^4.2.1: version "4.3.0" resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== @@ -5066,22 +4217,14 @@ css-select@^4.2.1: nth-check "^2.0.1" css-to-react-native@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-3.0.0.tgz#62dbe678072a824a689bcfee011fc96e02a7d756" - integrity sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ== + version "3.2.0" + resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-3.2.0.tgz#cdd8099f71024e149e4f6fe17a7d46ecd55f1e32" + integrity sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ== dependencies: camelize "^1.0.0" css-color-keywords "^1.0.0" postcss-value-parser "^4.0.2" -css-tree@1.0.0-alpha.37: - version "1.0.0-alpha.37" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22" - integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== - dependencies: - mdn-data "2.0.4" - source-map "^0.6.1" - css-tree@^1.1.2, css-tree@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" @@ -5090,16 +4233,6 @@ css-tree@^1.1.2, css-tree@^1.1.3: mdn-data "2.0.14" source-map "^0.6.1" -css-what@^3.2.1: - version "3.4.2" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4" - integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== - -css-what@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-5.1.0.tgz#3f7b707aadf633baf62c2ceb8579b545bb40f7fe" - integrity sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw== - css-what@^6.0.1: version "6.1.0" resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" @@ -5108,7 +4241,7 @@ css-what@^6.0.1: css.escape@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" - integrity sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s= + integrity sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg== css@2.2.4: version "2.2.4" @@ -5128,58 +4261,58 @@ cssesc@^3.0.0: cssfilter@0.0.10: version "0.0.10" resolved "https://registry.yarnpkg.com/cssfilter/-/cssfilter-0.0.10.tgz#c6d2672632a2e5c83e013e6864a42ce8defd20ae" - integrity sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4= - -cssnano-preset-default@^5.1.9: - version "5.1.9" - resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.1.9.tgz#79628ac48eccbdad570f70b4018cc38d43d1b7df" - integrity sha512-RhkEucqlQ+OxEi14K1p8gdXcMQy1mSpo7P1oC44oRls7BYIj8p+cht4IFBFV3W4iOjTP8EUB33XV1fX9KhDzyA== - dependencies: - css-declaration-sorter "^6.0.3" - cssnano-utils "^2.0.1" - postcss-calc "^8.0.0" - postcss-colormin "^5.2.2" - postcss-convert-values "^5.0.2" - postcss-discard-comments "^5.0.1" - postcss-discard-duplicates "^5.0.1" - postcss-discard-empty "^5.0.1" - postcss-discard-overridden "^5.0.1" - postcss-merge-longhand "^5.0.4" - postcss-merge-rules "^5.0.3" - postcss-minify-font-values "^5.0.1" - postcss-minify-gradients "^5.0.3" - postcss-minify-params "^5.0.2" - postcss-minify-selectors "^5.1.0" - postcss-normalize-charset "^5.0.1" - postcss-normalize-display-values "^5.0.1" - postcss-normalize-positions "^5.0.1" - postcss-normalize-repeat-style "^5.0.1" - postcss-normalize-string "^5.0.1" - postcss-normalize-timing-functions "^5.0.1" - postcss-normalize-unicode "^5.0.1" - postcss-normalize-url "^5.0.4" - postcss-normalize-whitespace "^5.0.1" - postcss-ordered-values "^5.0.2" - postcss-reduce-initial "^5.0.2" - postcss-reduce-transforms "^5.0.1" - postcss-svgo "^5.0.3" - postcss-unique-selectors "^5.0.2" - -cssnano-utils@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-2.0.1.tgz#8660aa2b37ed869d2e2f22918196a9a8b6498ce2" - integrity sha512-i8vLRZTnEH9ubIyfdZCAdIdgnHAUeQeByEeQ2I7oTilvP9oHO6RScpeq3GsFUVqeB8uZgOQ9pw8utofNn32hhQ== + integrity sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw== + +cssnano-preset-default@^5.2.14: + version "5.2.14" + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz#309def4f7b7e16d71ab2438052093330d9ab45d8" + integrity sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A== + dependencies: + css-declaration-sorter "^6.3.1" + cssnano-utils "^3.1.0" + postcss-calc "^8.2.3" + postcss-colormin "^5.3.1" + postcss-convert-values "^5.1.3" + postcss-discard-comments "^5.1.2" + postcss-discard-duplicates "^5.1.0" + postcss-discard-empty "^5.1.1" + postcss-discard-overridden "^5.1.0" + postcss-merge-longhand "^5.1.7" + postcss-merge-rules "^5.1.4" + postcss-minify-font-values "^5.1.0" + postcss-minify-gradients "^5.1.1" + postcss-minify-params "^5.1.4" + postcss-minify-selectors "^5.2.1" + postcss-normalize-charset "^5.1.0" + postcss-normalize-display-values "^5.1.0" + postcss-normalize-positions "^5.1.1" + postcss-normalize-repeat-style "^5.1.1" + postcss-normalize-string "^5.1.0" + postcss-normalize-timing-functions "^5.1.0" + postcss-normalize-unicode "^5.1.1" + postcss-normalize-url "^5.1.0" + postcss-normalize-whitespace "^5.1.1" + postcss-ordered-values "^5.1.3" + postcss-reduce-initial "^5.1.2" + postcss-reduce-transforms "^5.1.0" + postcss-svgo "^5.1.0" + postcss-unique-selectors "^5.1.1" + +cssnano-utils@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz#95684d08c91511edfc70d2636338ca37ef3a6861" + integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA== cssnano@^5.0.0: - version "5.0.14" - resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.0.14.tgz#99bc550f663b48c38e9b8e0ae795697c9de84b47" - integrity sha512-qzhRkFvBhv08tbyKCIfWbxBXmkIpLl1uNblt8SpTHkgLfON5OCPX/CCnkdNmEosvo8bANQYmTTMEgcVBlisHaw== + version "5.1.15" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.15.tgz#ded66b5480d5127fcb44dac12ea5a983755136bf" + integrity sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw== dependencies: - cssnano-preset-default "^5.1.9" + cssnano-preset-default "^5.2.14" lilconfig "^2.0.3" yaml "^1.10.2" -csso@^4.0.2, csso@^4.2.0: +csso@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== @@ -5187,9 +4320,9 @@ csso@^4.0.2, csso@^4.2.0: css-tree "^1.1.2" csstype@^3.0.2: - version "3.0.10" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.10.tgz#2ad3a7bed70f35b965707c092e5f30b327c290e5" - integrity sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" + integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== d@1, d@^1.0.1: version "1.0.1" @@ -5199,28 +4332,37 @@ d@1, d@^1.0.1: es5-ext "^0.10.50" type "^1.0.1" -damerau-levenshtein@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.7.tgz#64368003512a1a6992593741a09a9d31a836f55d" - integrity sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw== +damerau-levenshtein@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" + integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== -dataloader@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-2.0.0.tgz#41eaf123db115987e21ca93c005cd7753c55fe6f" - integrity sha512-YzhyDAwA4TaQIhM5go+vCLmU0UikghC/t9DTQYZR2M/UvZ1MdOhPezSDZcjj9uqQJOMqjLcpWtyW2iNINdlatQ== +dataloader@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-2.1.0.tgz#c69c538235e85e7ac6c6c444bae8ecabf5de9df7" + integrity sha512-qTcEYLen3r7ojZNgVUaRggOI+KM7jrKxXeSHhogh/TWxYMeONEMqY+hmkobiYQozsGIyg9OYVzO4ZIfoB4I0pQ== date-fns@^2.25.0: - version "2.27.0" - resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.27.0.tgz#e1ff3c3ddbbab8a2eaadbb6106be2929a5a2d92b" - integrity sha512-sj+J0Mo2p2X1e306MHq282WS4/A8Pz/95GIFcsPNMPMZVI3EUrAdSv90al1k+p74WGLCruMXk23bfEDZa71X9Q== + version "2.30.0" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.30.0.tgz#f367e644839ff57894ec6ac480de40cae4b0f4d0" + integrity sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw== + dependencies: + "@babel/runtime" "^7.21.0" -debug@2, debug@2.6.9, debug@^2.1.3, debug@^2.6.0, debug@^2.6.9: +debug@2, debug@2.6.9, debug@^2.1.3, debug@^2.6.0: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" +debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@~4.3.1, debug@~4.3.2: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + debug@^3.0.0, debug@^3.0.1, debug@^3.1.0, debug@^3.2.6, debug@^3.2.7: version "3.2.7" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" @@ -5228,34 +4370,20 @@ debug@^3.0.0, debug@^3.0.1, debug@^3.1.0, debug@^3.2.6, debug@^3.2.7: dependencies: ms "^2.1.1" -debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@~4.3.1: - version "4.3.3" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" - integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== - dependencies: - ms "2.1.2" - -debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= + integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= + version "0.2.2" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" + integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== decompress-response@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" - integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= + integrity sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA== dependencies: mimic-response "^1.0.0" @@ -5277,9 +4405,9 @@ deep-is@^0.1.3: integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== deepmerge@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" - integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== + version "4.3.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== defer-to-connect@^1.0.1: version "1.1.3" @@ -5296,17 +4424,10 @@ define-lazy-prop@^2.0.0: resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== -define-properties@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" - integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== - dependencies: - object-keys "^1.0.12" - -define-properties@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" - integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== +define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" + integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== dependencies: has-property-descriptors "^1.0.0" object-keys "^1.1.1" @@ -5314,7 +4435,7 @@ define-properties@^1.1.4: delayed-stream@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== depd@2.0.0: version "2.0.0" @@ -5324,17 +4445,22 @@ depd@2.0.0: depd@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" - integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= + integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== dependency-graph@^0.11.0: version "0.11.0" resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.11.0.tgz#ac0ce7ed68a54da22165a85e97a01d53f5eb2e27" integrity sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg== -destroy@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" - integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= +dequal@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" + integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== + +destroy@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== detect-libc@^1.0.3: version "1.0.3" @@ -5342,9 +4468,9 @@ detect-libc@^1.0.3: integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== detect-libc@^2.0.0, detect-libc@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" - integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== + version "2.0.2" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.2.tgz#8ccf2ba9315350e1241b88d0ac3b0e1fbd99605d" + integrity sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw== detect-port-alt@^1.1.6: version "1.1.6" @@ -5355,17 +4481,17 @@ detect-port-alt@^1.1.6: debug "^2.6.0" detect-port@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-1.3.0.tgz#d9c40e9accadd4df5cac6a782aefd014d573d1f1" - integrity sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ== + version "1.5.1" + resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-1.5.1.tgz#451ca9b6eaf20451acb0799b8ab40dff7718727b" + integrity sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ== dependencies: address "^1.0.1" - debug "^2.6.0" + debug "4" devcert@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/devcert/-/devcert-1.2.0.tgz#7fb0fa2ca4c73baf3a3053973e80ebc5899fb20d" - integrity sha512-Tca9LUcmDegqTxlnQLTxVARS3MqYT+eWJfskXykefknT9jPoSJEA+t5BkDq5C5Tz+gVmAWmOH5vvKMfLJO/UhQ== + version "1.2.2" + resolved "https://registry.yarnpkg.com/devcert/-/devcert-1.2.2.tgz#7ebbefeb74991e269ceafcd66f2bb78677c12652" + integrity sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA== dependencies: "@types/configstore" "^2.1.1" "@types/debug" "^0.0.30" @@ -5382,6 +4508,7 @@ devcert@^1.2.0: eol "^0.9.1" get-port "^3.2.0" glob "^7.1.2" + is-valid-domain "^0.1.6" lodash "^4.17.4" mkdirp "^0.5.1" password-prompt "^1.0.4" @@ -5415,70 +4542,37 @@ dom-converter@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== - dependencies: - utila "~0.4" - -dom-serializer@0: - version "0.2.2" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" - integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== - dependencies: - domelementtype "^2.0.1" - entities "^2.0.0" + dependencies: + utila "~0.4" dom-serializer@^1.0.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.3.2.tgz#6206437d32ceefaec7161803230c7a20bc1b4d91" - integrity sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig== + version "1.4.1" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" + integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== dependencies: domelementtype "^2.0.1" domhandler "^4.2.0" entities "^2.0.0" -dom-walk@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84" - integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w== - dom7@^4.0.2: - version "4.0.4" - resolved "https://registry.yarnpkg.com/dom7/-/dom7-4.0.4.tgz#8b68c5d8e5e2ed0fddb1cb93e433bc9060c8f3fb" - integrity sha512-DSSgBzQ4rJWQp1u6o+3FVwMNnT5bzQbMb+o31TjYYeRi05uAcpF8koxdfzeoe5ElzPmua7W7N28YJhF7iEKqIw== + version "4.0.6" + resolved "https://registry.yarnpkg.com/dom7/-/dom7-4.0.6.tgz#091a51621d7a19ce0fb86045cafb3c10035e97ed" + integrity sha512-emjdpPLhpNubapLFdjNL9tP06Sr+GZkrIHEXLWvOGsytACUrkbeIdjO5g77m00BrHTznnlcNqgmn7pCN192TBA== dependencies: ssr-window "^4.0.0" -domelementtype@1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" - integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== - domelementtype@^2.0.1, domelementtype@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57" - integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A== - -domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.0.tgz#16c658c626cf966967e306f966b431f77d4a5626" - integrity sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g== - dependencies: - domelementtype "^2.2.0" + version "2.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== -domhandler@^4.3.1: +domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: version "4.3.1" resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== dependencies: domelementtype "^2.2.0" -domutils@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" - integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== - dependencies: - dom-serializer "0" - domelementtype "1" - domutils@^2.5.2, domutils@^2.8.0: version "2.8.0" resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" @@ -5519,14 +4613,14 @@ dotenv@^8.6.0: integrity sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g== dset@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/dset/-/dset-3.1.1.tgz#07de5af7a8d03eab337ad1a8ba77fe17bba61a8c" - integrity sha512-hYf+jZNNqJBD2GiMYb+5mqOIX4R4RRHXU3qWMWYN+rqcR2/YpRL2bUHr8C8fU+5DNvqYjJ8YvMGSLuVPWU1cNg== + version "3.1.2" + resolved "https://registry.yarnpkg.com/dset/-/dset-3.1.2.tgz#89c436ca6450398396dc6538ea00abc0c54cd45a" + integrity sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q== duplexer3@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" - integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= + version "0.1.5" + resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.5.tgz#0b5e4d7bad5de8901ea4440624c8e1d20099217e" + integrity sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA== duplexer@^0.1.2: version "0.1.2" @@ -5536,17 +4630,12 @@ duplexer@^0.1.2: ee-first@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= - -electron-to-chromium@^1.4.17: - version "1.4.26" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.26.tgz#d71b9da220543cf10614a576c3d5ebbe43d96efb" - integrity sha512-cA1YwlRzO6TGp7yd3+KAqh9Tt6Z4CuuKqsAJP6uF/H5MQryjAGDhMhnY5cEXo8MaRCczpzSBhMPdqRIodkbZYw== + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== -electron-to-chromium@^1.4.202: - version "1.4.211" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.211.tgz#afaa8b58313807501312d598d99b953568d60f91" - integrity sha512-BZSbMpyFQU0KBJ1JG26XGeFI3i4op+qOYGxftmZXFZoHkhLgsSv4DHDJfl8ogII3hIuzGt51PaZ195OVu0yJ9A== +electron-to-chromium@^1.4.477: + version "1.4.498" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.498.tgz#cef35341123f62a35ba7084e439c911d25e0d81b" + integrity sha512-4LODxAzKGVy7CJyhhN5mebwe7U2L29P+0G+HUriHnabm0d7LSff8Yn7t+Wq+2/9ze2Fu1dhX7mww090xfv7qXQ== emoji-regex@^8.0.0: version "8.0.0" @@ -5561,7 +4650,7 @@ emoji-regex@^9.2.2: emojis-list@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" - integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= + integrity sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng== emojis-list@^3.0.0: version "3.0.0" @@ -5571,7 +4660,7 @@ emojis-list@^3.0.0: encodeurl@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" - integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== end-of-stream@^1.1.0, end-of-stream@^1.4.1: version "1.4.4" @@ -5580,56 +4669,53 @@ end-of-stream@^1.1.0, end-of-stream@^1.4.1: dependencies: once "^1.4.0" -engine.io-client@~4.1.0: - version "4.1.4" - resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-4.1.4.tgz#0bda5ba4bd87bced2ad00b93c67e133d0fb981ba" - integrity sha512-843fqAdKeUMFqKi1sSjnR11tJ4wi8sIefu6+JC1OzkkJBmjtc/gM/rZ53tJfu5Iae/3gApm5veoS+v+gtT0+Fg== +engine.io-client@~6.2.3: + version "6.2.3" + resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-6.2.3.tgz#a8cbdab003162529db85e9de31575097f6d29458" + integrity sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw== dependencies: - base64-arraybuffer "0.1.4" - component-emitter "~1.3.0" + "@socket.io/component-emitter" "~3.1.0" debug "~4.3.1" - engine.io-parser "~4.0.1" - has-cors "1.1.0" - parseqs "0.0.6" - parseuri "0.0.6" - ws "~7.4.2" - xmlhttprequest-ssl "~1.6.2" - yeast "0.1.2" - -engine.io-parser@~4.0.0, engine.io-parser@~4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-4.0.3.tgz#83d3a17acfd4226f19e721bb22a1ee8f7662d2f6" - integrity sha512-xEAAY0msNnESNPc00e19y5heTPX4y/TJ36gr8t1voOaNmTojP9b3oK3BbJLFufW2XFPQaaijpFewm2g2Um3uqA== - dependencies: - base64-arraybuffer "0.1.4" + engine.io-parser "~5.0.3" + ws "~8.2.3" + xmlhttprequest-ssl "~2.0.0" -engine.io@~4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-4.1.1.tgz#9a8f8a5ac5a5ea316183c489bf7f5b6cf91ace5b" - integrity sha512-t2E9wLlssQjGw0nluF6aYyfX8LwYU8Jj0xct+pAhfWfv/YrBn6TSNtEYsgxHIfaMqfrLx07czcMg9bMN6di+3w== +engine.io-parser@~5.0.3: + version "5.0.7" + resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-5.0.7.tgz#ed5eae76c71f398284c578ab6deafd3ba7e4e4f6" + integrity sha512-P+jDFbvK6lE3n1OL+q9KuzdOFWkkZ/cMV9gol/SbVfpyqfvrfrFTOFJ6fQm2VC3PZHlU3QPhVwmbsCnauHF2MQ== + +engine.io@~6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-6.2.1.tgz#e3f7826ebc4140db9bbaa9021ad6b1efb175878f" + integrity sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA== dependencies: + "@types/cookie" "^0.4.1" + "@types/cors" "^2.8.12" + "@types/node" ">=10.0.0" accepts "~1.3.4" base64id "2.0.0" cookie "~0.4.1" cors "~2.8.5" debug "~4.3.1" - engine.io-parser "~4.0.0" - ws "~7.4.2" + engine.io-parser "~5.0.3" + ws "~8.2.3" -enhanced-resolve@^5.8.3: - version "5.8.3" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.8.3.tgz#6d552d465cce0423f5b3d718511ea53826a7b2f0" - integrity sha512-EGAbGvH7j7Xt2nc0E7D99La1OiEs8LnyimkRgwExpUMScN6O+3x9tIWs7PLQZVNx4YD+00skHXPXi1yQHpAmZA== +enhanced-resolve@^5.15.0, enhanced-resolve@^5.8.3: + version "5.15.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" + integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== dependencies: graceful-fs "^4.2.4" tapable "^2.2.0" enquirer@^2.3.5: - version "2.3.6" - resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" - integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== + version "2.4.1" + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.4.1.tgz#93334b3fbd74fc7097b224ab4a8fb7e40bf4ae56" + integrity sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ== dependencies: ansi-colors "^4.1.1" + strip-ansi "^6.0.1" entities@^2.0.0: version "2.2.0" @@ -5637,9 +4723,9 @@ entities@^2.0.0: integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== envinfo@^7.8.1: - version "7.8.1" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" - integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== + version "7.10.0" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.10.0.tgz#55146e3909cc5fe63c22da63fb15b05aeac35b13" + integrity sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw== eol@^0.9.1: version "0.9.1" @@ -5653,79 +4739,91 @@ error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" -error-stack-parser@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.0.6.tgz#5a99a707bd7a4c58a797902d48d82803ede6aad8" - integrity sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ== - dependencies: - stackframe "^1.1.1" - -error-stack-parser@^2.1.4: +error-stack-parser@^2.0.6, error-stack-parser@^2.1.4: version "2.1.4" resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286" integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== dependencies: stackframe "^1.3.4" -es-abstract@^1.17.2, es-abstract@^1.19.0, es-abstract@^1.19.1: - version "1.19.1" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz#d4885796876916959de78edaa0df456627115ec3" - integrity sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w== - dependencies: - call-bind "^1.0.2" - es-to-primitive "^1.2.1" - function-bind "^1.1.1" - get-intrinsic "^1.1.1" - get-symbol-description "^1.0.0" - has "^1.0.3" - has-symbols "^1.0.2" - internal-slot "^1.0.3" - is-callable "^1.2.4" - is-negative-zero "^2.0.1" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.1" - is-string "^1.0.7" - is-weakref "^1.0.1" - object-inspect "^1.11.0" - object-keys "^1.1.1" - object.assign "^4.1.2" - string.prototype.trimend "^1.0.4" - string.prototype.trimstart "^1.0.4" - unbox-primitive "^1.0.1" - -es-abstract@^1.19.2, es-abstract@^1.19.5: - version "1.20.1" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.1.tgz#027292cd6ef44bd12b1913b828116f54787d1814" - integrity sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA== +es-abstract@^1.19.0, es-abstract@^1.20.4, es-abstract@^1.21.2, es-abstract@^1.21.3: + version "1.22.1" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.1.tgz#8b4e5fc5cefd7f1660f0f8e1a52900dfbc9d9ccc" + integrity sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw== dependencies: + array-buffer-byte-length "^1.0.0" + arraybuffer.prototype.slice "^1.0.1" + available-typed-arrays "^1.0.5" call-bind "^1.0.2" + es-set-tostringtag "^2.0.1" es-to-primitive "^1.2.1" - function-bind "^1.1.1" function.prototype.name "^1.1.5" - get-intrinsic "^1.1.1" + get-intrinsic "^1.2.1" get-symbol-description "^1.0.0" + globalthis "^1.0.3" + gopd "^1.0.1" has "^1.0.3" has-property-descriptors "^1.0.0" + has-proto "^1.0.1" has-symbols "^1.0.3" - internal-slot "^1.0.3" - is-callable "^1.2.4" + internal-slot "^1.0.5" + is-array-buffer "^3.0.2" + is-callable "^1.2.7" is-negative-zero "^2.0.2" is-regex "^1.1.4" is-shared-array-buffer "^1.0.2" is-string "^1.0.7" + is-typed-array "^1.1.10" is-weakref "^1.0.2" - object-inspect "^1.12.0" + object-inspect "^1.12.3" object-keys "^1.1.1" - object.assign "^4.1.2" - regexp.prototype.flags "^1.4.3" - string.prototype.trimend "^1.0.5" - string.prototype.trimstart "^1.0.5" + object.assign "^4.1.4" + regexp.prototype.flags "^1.5.0" + safe-array-concat "^1.0.0" + safe-regex-test "^1.0.0" + string.prototype.trim "^1.2.7" + string.prototype.trimend "^1.0.6" + string.prototype.trimstart "^1.0.6" + typed-array-buffer "^1.0.0" + typed-array-byte-length "^1.0.0" + typed-array-byte-offset "^1.0.0" + typed-array-length "^1.0.4" unbox-primitive "^1.0.2" + which-typed-array "^1.1.10" -es-module-lexer@^0.9.0: - version "0.9.3" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19" - integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== +es-iterator-helpers@^1.0.12: + version "1.0.13" + resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.13.tgz#72101046ffc19baf9996adc70e6177a26e6e8084" + integrity sha512-LK3VGwzvaPWobO8xzXXGRUOGw8Dcjyfk62CsY/wfHN75CwsJPbuypOYJxK6g5RyEL8YDjIWcl6jgd8foO6mmrA== + dependencies: + asynciterator.prototype "^1.0.0" + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.21.3" + es-set-tostringtag "^2.0.1" + function-bind "^1.1.1" + get-intrinsic "^1.2.1" + globalthis "^1.0.3" + has-property-descriptors "^1.0.0" + has-proto "^1.0.1" + has-symbols "^1.0.3" + internal-slot "^1.0.5" + iterator.prototype "^1.1.0" + safe-array-concat "^1.0.0" + +es-module-lexer@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.0.tgz#6be9c9e0b4543a60cd166ff6f8b4e9dae0b0c16f" + integrity sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA== + +es-set-tostringtag@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" + integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== + dependencies: + get-intrinsic "^1.1.3" + has "^1.0.3" + has-tostringtag "^1.0.0" es-shim-unscopables@^1.0.0: version "1.0.0" @@ -5744,18 +4842,18 @@ es-to-primitive@^1.2.1: is-symbol "^1.0.2" es5-ext@^0.10.35, es5-ext@^0.10.46, es5-ext@^0.10.50, es5-ext@^0.10.53, es5-ext@~0.10.14, es5-ext@~0.10.2, es5-ext@~0.10.46: - version "0.10.53" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1" - integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q== + version "0.10.62" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.62.tgz#5e6adc19a6da524bf3d1e02bbc8960e5eb49a9a5" + integrity sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA== dependencies: - es6-iterator "~2.0.3" - es6-symbol "~3.1.3" - next-tick "~1.0.0" + es6-iterator "^2.0.3" + es6-symbol "^3.1.3" + next-tick "^1.1.0" -es6-iterator@^2.0.3, es6-iterator@~2.0.3: +es6-iterator@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" - integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= + integrity sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g== dependencies: d "1" es5-ext "^0.10.35" @@ -5766,7 +4864,7 @@ es6-promise@^4.1.1: resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== -es6-symbol@^3.1.1, es6-symbol@~3.1.3: +es6-symbol@^3.1.1, es6-symbol@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== @@ -5797,12 +4895,12 @@ escape-goat@^2.0.0: escape-html@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== escape-string-regexp@^2.0.0: version "2.0.0" @@ -5825,25 +4923,25 @@ eslint-config-airbnb-base@^15.0.0: semver "^6.3.0" eslint-config-airbnb-typescript@^16.1.0: - version "16.1.0" - resolved "https://registry.yarnpkg.com/eslint-config-airbnb-typescript/-/eslint-config-airbnb-typescript-16.1.0.tgz#f75a6b4f3bb679eef34c3c930359c2ca9bc3f09c" - integrity sha512-W5Cq20KpEx5ZLC54bnVrC37zq2+WD956Kp/Ma3nYFRjT1v9KM63v+DPkrrmmrVqrlDKaD0ivm/qeYmyHV6qKlw== + version "16.2.0" + resolved "https://registry.yarnpkg.com/eslint-config-airbnb-typescript/-/eslint-config-airbnb-typescript-16.2.0.tgz#9193fafd62f1cbf444895f4495eae334baf3265b" + integrity sha512-OUaMPZpTOZGKd5tXOjJ9PRU4iYNW/Z5DoHIynjsVK/FpkWdiY5+nxQW6TiJAlLwVI1l53xUOrnlZWtVBVQzuWA== dependencies: eslint-config-airbnb-base "^15.0.0" eslint-config-airbnb@^19.0.2: - version "19.0.2" - resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-19.0.2.tgz#3a1681e39b68cc6abeae58300014ed5d5706b625" - integrity sha512-4v5DEMVSl043LaCT+gsxPcoiIk0iYG5zxJKKjIy80H/D//2E0vtuOBWkb0CBDxjF+y26yQzspIXYuY6wMmt9Cw== + version "19.0.4" + resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-19.0.4.tgz#84d4c3490ad70a0ffa571138ebcdea6ab085fdc3" + integrity sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew== dependencies: eslint-config-airbnb-base "^15.0.0" object.assign "^4.1.2" object.entries "^1.1.5" eslint-config-prettier@^8.3.0: - version "8.3.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz#f7471b20b6fe8a9a9254cc684454202886a2dd7a" - integrity sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew== + version "8.10.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz#3a06a662130807e2502fc3ff8b4143d8a0658e11" + integrity sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg== eslint-config-react-app@^6.0.0: version "6.0.0" @@ -5852,41 +4950,21 @@ eslint-config-react-app@^6.0.0: dependencies: confusing-browser-globals "^1.0.10" -eslint-import-resolver-node@^0.3.6: - version "0.3.6" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" - integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== - dependencies: - debug "^3.2.7" - resolve "^1.20.0" - -eslint-loader@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-4.0.2.tgz#386a1e21bcb613b3cf2d252a3b708023ccfb41ec" - integrity sha512-EDpXor6lsjtTzZpLUn7KmXs02+nIjGcgees9BYjNkWra3jVq5vVa8IoCKgzT2M7dNNeoMBtaSG83Bd40N3poLw== - dependencies: - find-cache-dir "^3.3.1" - fs-extra "^8.1.0" - loader-utils "^2.0.0" - object-hash "^2.0.3" - schema-utils "^2.6.5" - -eslint-module-utils@^2.7.1: - version "2.7.1" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.1.tgz#b435001c9f8dd4ab7f6d0efcae4b9696d4c24b7c" - integrity sha512-fjoetBXQZq2tSTWZ9yWVl2KuFrTZZH3V+9iD1V1RfpDgxzJR+mPd/KZmMiA8gbPqdBzpNiEHOuT7IYEWxrH0zQ== +eslint-import-resolver-node@^0.3.7: + version "0.3.9" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac" + integrity sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g== dependencies: debug "^3.2.7" - find-up "^2.1.0" - pkg-dir "^2.0.0" + is-core-module "^2.13.0" + resolve "^1.22.4" -eslint-module-utils@^2.7.3: - version "2.7.3" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz#ad7e3a10552fdd0642e1e55292781bd6e34876ee" - integrity sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ== +eslint-module-utils@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz#e439fee65fc33f6bba630ff621efc38ec0375c49" + integrity sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw== dependencies: debug "^3.2.7" - find-up "^2.1.0" eslint-plugin-flowtype@^5.10.0: version "5.10.0" @@ -5896,118 +4974,84 @@ eslint-plugin-flowtype@^5.10.0: lodash "^4.17.15" string-natural-compare "^3.0.1" -eslint-plugin-import@^2.25.3: - version "2.25.3" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.25.3.tgz#a554b5f66e08fb4f6dc99221866e57cfff824766" - integrity sha512-RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg== +eslint-plugin-import@^2.25.3, eslint-plugin-import@^2.26.0: + version "2.28.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz#63b8b5b3c409bfc75ebaf8fb206b07ab435482c4" + integrity sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A== dependencies: - array-includes "^3.1.4" - array.prototype.flat "^1.2.5" - debug "^2.6.9" - doctrine "^2.1.0" - eslint-import-resolver-node "^0.3.6" - eslint-module-utils "^2.7.1" - has "^1.0.3" - is-core-module "^2.8.0" - is-glob "^4.0.3" - minimatch "^3.0.4" - object.values "^1.1.5" - resolve "^1.20.0" - tsconfig-paths "^3.11.0" - -eslint-plugin-import@^2.26.0: - version "2.26.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b" - integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA== - dependencies: - array-includes "^3.1.4" - array.prototype.flat "^1.2.5" - debug "^2.6.9" + array-includes "^3.1.6" + array.prototype.findlastindex "^1.2.2" + array.prototype.flat "^1.3.1" + array.prototype.flatmap "^1.3.1" + debug "^3.2.7" doctrine "^2.1.0" - eslint-import-resolver-node "^0.3.6" - eslint-module-utils "^2.7.3" + eslint-import-resolver-node "^0.3.7" + eslint-module-utils "^2.8.0" has "^1.0.3" - is-core-module "^2.8.1" + is-core-module "^2.13.0" is-glob "^4.0.3" minimatch "^3.1.2" - object.values "^1.1.5" - resolve "^1.22.0" - tsconfig-paths "^3.14.1" - -eslint-plugin-jsx-a11y@^6.5.1: - version "6.5.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz#cdbf2df901040ca140b6ec14715c988889c2a6d8" - integrity sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g== - dependencies: - "@babel/runtime" "^7.16.3" - aria-query "^4.2.2" - array-includes "^3.1.4" + object.fromentries "^2.0.6" + object.groupby "^1.0.0" + object.values "^1.1.6" + semver "^6.3.1" + tsconfig-paths "^3.14.2" + +eslint-plugin-jsx-a11y@^6.5.1, eslint-plugin-jsx-a11y@^6.6.1: + version "6.7.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz#fca5e02d115f48c9a597a6894d5bcec2f7a76976" + integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA== + dependencies: + "@babel/runtime" "^7.20.7" + aria-query "^5.1.3" + array-includes "^3.1.6" + array.prototype.flatmap "^1.3.1" ast-types-flow "^0.0.7" - axe-core "^4.3.5" - axobject-query "^2.2.0" - damerau-levenshtein "^1.0.7" + axe-core "^4.6.2" + axobject-query "^3.1.1" + damerau-levenshtein "^1.0.8" emoji-regex "^9.2.2" has "^1.0.3" - jsx-ast-utils "^3.2.1" - language-tags "^1.0.5" - minimatch "^3.0.4" + jsx-ast-utils "^3.3.3" + language-tags "=1.0.5" + minimatch "^3.1.2" + object.entries "^1.1.6" + object.fromentries "^2.0.6" + semver "^6.3.0" eslint-plugin-prettier@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.0.0.tgz#8b99d1e4b8b24a762472b4567992023619cb98e0" - integrity sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ== + version "4.2.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b" + integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== dependencies: prettier-linter-helpers "^1.0.0" -eslint-plugin-react-hooks@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz#318dbf312e06fab1c835a4abef00121751ac1172" - integrity sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA== - -eslint-plugin-react-hooks@^4.5.0: +eslint-plugin-react-hooks@^4.3.0, eslint-plugin-react-hooks@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== -eslint-plugin-react@^7.27.1: - version "7.27.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.27.1.tgz#469202442506616f77a854d91babaae1ec174b45" - integrity sha512-meyunDjMMYeWr/4EBLTV1op3iSG3mjT/pz5gti38UzfM4OPpNc2m0t2xvKCOMU5D6FSdd34BIMFOvQbW+i8GAA== - dependencies: - array-includes "^3.1.4" - array.prototype.flatmap "^1.2.5" - doctrine "^2.1.0" - estraverse "^5.3.0" - jsx-ast-utils "^2.4.1 || ^3.0.0" - minimatch "^3.0.4" - object.entries "^1.1.5" - object.fromentries "^2.0.5" - object.hasown "^1.1.0" - object.values "^1.1.5" - prop-types "^15.7.2" - resolve "^2.0.0-next.3" - semver "^6.3.0" - string.prototype.matchall "^4.0.6" - -eslint-plugin-react@^7.30.1: - version "7.30.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.30.1.tgz#2be4ab23ce09b5949c6631413ba64b2810fd3e22" - integrity sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg== +eslint-plugin-react@^7.27.1, eslint-plugin-react@^7.30.1: + version "7.33.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz#69ee09443ffc583927eafe86ffebb470ee737608" + integrity sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw== dependencies: - array-includes "^3.1.5" - array.prototype.flatmap "^1.3.0" + array-includes "^3.1.6" + array.prototype.flatmap "^1.3.1" + array.prototype.tosorted "^1.1.1" doctrine "^2.1.0" + es-iterator-helpers "^1.0.12" estraverse "^5.3.0" jsx-ast-utils "^2.4.1 || ^3.0.0" minimatch "^3.1.2" - object.entries "^1.1.5" - object.fromentries "^2.0.5" - object.hasown "^1.1.1" - object.values "^1.1.5" + object.entries "^1.1.6" + object.fromentries "^2.0.6" + object.hasown "^1.1.2" + object.values "^1.1.6" prop-types "^15.8.1" - resolve "^2.0.0-next.3" - semver "^6.3.0" - string.prototype.matchall "^4.0.7" + resolve "^2.0.0-next.4" + semver "^6.3.1" + string.prototype.matchall "^4.0.8" eslint-scope@5.1.1, eslint-scope@^5.1.1: version "5.1.1" @@ -6017,10 +5061,10 @@ eslint-scope@5.1.1, eslint-scope@^5.1.1: esrecurse "^4.3.0" estraverse "^4.1.1" -eslint-scope@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.0.tgz#c1f6ea30ac583031f203d65c73e723b01298f153" - integrity sha512-aWwkhnS0qAXqNOgKOK0dJ2nvzEbhEvpy8OlJ9kZ0FeZnA6zpjv1/Vei+puGFFX7zkPCkHHXb7IDX3A+7yPrRWg== +eslint-scope@^7.2.2: + version "7.2.2" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== dependencies: esrecurse "^4.3.0" estraverse "^5.2.0" @@ -6049,10 +5093,10 @@ eslint-visitor-keys@^2.0.0, eslint-visitor-keys@^2.1.0: resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== -eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz#eee4acea891814cda67a7d8812d9647dd0179af2" - integrity sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA== +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== eslint-webpack-plugin@^2.7.0: version "2.7.0" @@ -6067,15 +5111,15 @@ eslint-webpack-plugin@^2.7.0: schema-utils "^3.1.1" eslint-webpack-plugin@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/eslint-webpack-plugin/-/eslint-webpack-plugin-3.1.1.tgz#83dad2395e5f572d6f4d919eedaa9cf902890fcb" - integrity sha512-xSucskTN9tOkfW7so4EaiFIkulWLXwCB/15H917lR6pTv0Zot6/fetFucmENRb7J5whVSFKIvwnrnsa78SG2yg== + version "3.2.0" + resolved "https://registry.yarnpkg.com/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz#1978cdb9edc461e4b0195a20da950cf57988347c" + integrity sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w== dependencies: - "@types/eslint" "^7.28.2" - jest-worker "^27.3.1" - micromatch "^4.0.4" + "@types/eslint" "^7.29.0 || ^8.4.1" + jest-worker "^28.0.2" + micromatch "^4.0.5" normalize-path "^3.0.0" - schema-utils "^3.1.1" + schema-utils "^4.0.0" eslint@^7.32.0: version "7.32.0" @@ -6124,48 +5168,47 @@ eslint@^7.32.0: v8-compile-cache "^2.0.3" eslint@^8.5.0: - version "8.5.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.5.0.tgz#ddd2c1afd8f412036f87ae2a063d2aa296d3175f" - integrity sha512-tVGSkgNbOfiHyVte8bCM8OmX+xG9PzVG/B4UCF60zx7j61WIVY/AqJECDgpLD4DbbESD0e174gOg3ZlrX15GDg== - dependencies: - "@eslint/eslintrc" "^1.0.5" - "@humanwhocodes/config-array" "^0.9.2" - ajv "^6.10.0" + version "8.47.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.47.0.tgz#c95f9b935463fb4fad7005e626c7621052e90806" + integrity sha512-spUQWrdPt+pRVP1TTJLmfRNJJHHZryFmptzcafwSvHsceV81djHOdnEeDmkdotZyLNjDhrOasNK8nikkoG1O8Q== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@eslint-community/regexpp" "^4.6.1" + "@eslint/eslintrc" "^2.1.2" + "@eslint/js" "^8.47.0" + "@humanwhocodes/config-array" "^0.11.10" + "@humanwhocodes/module-importer" "^1.0.1" + "@nodelib/fs.walk" "^1.2.8" + ajv "^6.12.4" chalk "^4.0.0" cross-spawn "^7.0.2" debug "^4.3.2" doctrine "^3.0.0" - enquirer "^2.3.5" escape-string-regexp "^4.0.0" - eslint-scope "^7.1.0" - eslint-utils "^3.0.0" - eslint-visitor-keys "^3.1.0" - espree "^9.2.0" - esquery "^1.4.0" + eslint-scope "^7.2.2" + eslint-visitor-keys "^3.4.3" + espree "^9.6.1" + esquery "^1.4.2" esutils "^2.0.2" fast-deep-equal "^3.1.3" file-entry-cache "^6.0.1" - functional-red-black-tree "^1.0.1" - glob-parent "^6.0.1" - globals "^13.6.0" - ignore "^4.0.6" - import-fresh "^3.0.0" + find-up "^5.0.0" + glob-parent "^6.0.2" + globals "^13.19.0" + graphemer "^1.4.0" + ignore "^5.2.0" imurmurhash "^0.1.4" is-glob "^4.0.0" + is-path-inside "^3.0.3" js-yaml "^4.1.0" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.4.1" lodash.merge "^4.6.2" - minimatch "^3.0.4" + minimatch "^3.1.2" natural-compare "^1.4.0" - optionator "^0.9.1" - progress "^2.0.0" - regexpp "^3.2.0" - semver "^7.2.1" + optionator "^0.9.3" strip-ansi "^6.0.1" - strip-json-comments "^3.1.0" text-table "^0.2.0" - v8-compile-cache "^2.0.3" espree@^7.3.0, espree@^7.3.1: version "7.3.1" @@ -6176,24 +5219,24 @@ espree@^7.3.0, espree@^7.3.1: acorn-jsx "^5.3.1" eslint-visitor-keys "^1.3.0" -espree@^9.2.0: - version "9.2.0" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.2.0.tgz#c50814e01611c2d0f8bd4daa83c369eabba80dbc" - integrity sha512-oP3utRkynpZWF/F2x/HZJ+AGtnIclaR7z1pYPxy7NYM2fSO6LgK/Rkny8anRSPK/VwEA1eqm2squui0T7ZMOBg== +espree@^9.6.0, espree@^9.6.1: + version "9.6.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== dependencies: - acorn "^8.6.0" - acorn-jsx "^5.3.1" - eslint-visitor-keys "^3.1.0" + acorn "^8.9.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^3.4.1" esprima@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== -esquery@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" - integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== +esquery@^1.4.0, esquery@^1.4.2: + version "1.5.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" + integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== dependencies: estraverse "^5.1.0" @@ -6222,12 +5265,12 @@ esutils@^2.0.2: etag@~1.8.1: version "1.8.1" resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== event-emitter@^0.3.5: version "0.3.5" resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" - integrity sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk= + integrity sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA== dependencies: d "1" es5-ext "~0.10.14" @@ -6288,12 +5331,7 @@ execa@^5.1.1: exenv@^1.2.0: version "1.2.2" resolved "https://registry.yarnpkg.com/exenv/-/exenv-1.2.2.tgz#2ae78e85d9894158670b03d47bec1f03bd91bb9d" - integrity sha1-KueOhdmJQVhnCwPUe+wfA72Ru50= - -exif-parser@^0.1.12: - version "0.1.12" - resolved "https://registry.yarnpkg.com/exif-parser/-/exif-parser-0.1.12.tgz#58a9d2d72c02c1f6f02a0ef4a9166272b7760922" - integrity sha1-WKnS1ywCwfbwKg70qRZicrd2CSI= + integrity sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw== expand-template@^2.0.3: version "2.0.3" @@ -6320,47 +5358,48 @@ express-http-proxy@^1.6.3: raw-body "^2.3.0" express@^4.17.1: - version "4.17.2" - resolved "https://registry.yarnpkg.com/express/-/express-4.17.2.tgz#c18369f265297319beed4e5558753cc8c1364cb3" - integrity sha512-oxlxJxcQlYwqPWKVJJtvQiwHgosH/LrLSPA+H4UxpyvSS6jC5aH+5MoHFM+KABgTOt0APue4w66Ha8jCUo9QGg== + version "4.18.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" + integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== dependencies: - accepts "~1.3.7" + accepts "~1.3.8" array-flatten "1.1.1" - body-parser "1.19.1" + body-parser "1.20.1" content-disposition "0.5.4" content-type "~1.0.4" - cookie "0.4.1" + cookie "0.5.0" cookie-signature "1.0.6" debug "2.6.9" - depd "~1.1.2" + depd "2.0.0" encodeurl "~1.0.2" escape-html "~1.0.3" etag "~1.8.1" - finalhandler "~1.1.2" + finalhandler "1.2.0" fresh "0.5.2" + http-errors "2.0.0" merge-descriptors "1.0.1" methods "~1.1.2" - on-finished "~2.3.0" + on-finished "2.4.1" parseurl "~1.3.3" path-to-regexp "0.1.7" proxy-addr "~2.0.7" - qs "6.9.6" + qs "6.11.0" range-parser "~1.2.1" safe-buffer "5.2.1" - send "0.17.2" - serve-static "1.14.2" + send "0.18.0" + serve-static "1.15.0" setprototypeof "1.2.0" - statuses "~1.5.0" + statuses "2.0.1" type-is "~1.6.18" utils-merge "1.0.1" vary "~1.1.2" ext@^1.1.2: - version "1.6.0" - resolved "https://registry.yarnpkg.com/ext/-/ext-1.6.0.tgz#3871d50641e874cc172e2b53f919842d19db4c52" - integrity sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg== + version "1.7.0" + resolved "https://registry.yarnpkg.com/ext/-/ext-1.7.0.tgz#0ea4383c0103d60e70be99e9a7f11027a33c4f5f" + integrity sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw== dependencies: - type "^2.5.0" + type "^2.7.2" external-editor@^3.0.3: version "3.1.0" @@ -6371,7 +5410,7 @@ external-editor@^3.0.3: iconv-lite "^0.4.24" tmp "^0.0.33" -extract-files@^11.0.0: +extract-files@11.0.0: version "11.0.0" resolved "https://registry.yarnpkg.com/extract-files/-/extract-files-11.0.0.tgz#b72d428712f787eef1f5193aff8ab5351ca8469a" integrity sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ== @@ -6382,25 +5421,14 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-diff@^1.1.2: - version "1.2.0" - resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" - integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== - -fast-glob@^3.1.1: - version "3.2.7" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" - integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" + version "1.3.0" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0" + integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== fast-glob@^3.2.9: - version "3.2.11" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" - integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== + version "3.3.1" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4" + integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" @@ -6416,24 +5444,24 @@ fast-json-stable-stringify@^2.0.0: fast-levenshtein@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== fastest-levenshtein@^1.0.12: - version "1.0.12" - resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz#9990f7d3a88cc5a9ffd1f1745745251700d497e2" - integrity sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow== + version "1.0.16" + resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" + integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== -fastq@^1.11.1, fastq@^1.13.0, fastq@^1.6.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" - integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== +fastq@^1.13.0, fastq@^1.6.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" + integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== dependencies: reusify "^1.0.4" fb-watchman@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" - integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== + version "2.0.2" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" + integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== dependencies: bser "2.1.1" @@ -6443,17 +5471,17 @@ fbjs-css-vars@^1.0.0: integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== fbjs@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.2.tgz#dfae08a85c66a58372993ce2caf30863f569ff94" - integrity sha512-qv+boqYndjElAJHNN3NoM8XuwQZ1j2m3kEvTgdle8IDjr6oUbkEpvABWtj/rQl3vq4ew7dnElBxL4YJAwTVqQQ== + version "3.0.5" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.5.tgz#aa0edb7d5caa6340011790bd9249dbef8a81128d" + integrity sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg== dependencies: - cross-fetch "^3.0.4" + cross-fetch "^3.1.5" fbjs-css-vars "^1.0.0" loose-envify "^1.0.0" object-assign "^4.1.0" promise "^7.1.1" setimmediate "^1.0.5" - ua-parser-js "^0.7.30" + ua-parser-js "^1.0.35" fd@~0.0.2: version "0.0.3" @@ -6482,24 +5510,19 @@ file-loader@^6.2.0: loader-utils "^2.0.0" schema-utils "^3.0.0" -file-type@^16.5.3: - version "16.5.3" - resolved "https://registry.yarnpkg.com/file-type/-/file-type-16.5.3.tgz#474b7e88c74724046abb505e9b8ed4db30c4fc06" - integrity sha512-uVsl7iFhHSOY4bEONLlTK47iAHtNsFHWP5YE4xJfZ4rnX7S1Q3wce09XgqSC7E/xh8Ncv/be1lNoyprlUH/x6A== +file-type@^16.5.3, file-type@^16.5.4: + version "16.5.4" + resolved "https://registry.yarnpkg.com/file-type/-/file-type-16.5.4.tgz#474fb4f704bee427681f98dd390058a172a6c2fd" + integrity sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw== dependencies: readable-web-to-node-stream "^3.0.0" strtok3 "^6.2.4" token-types "^4.1.1" -file-type@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/file-type/-/file-type-9.0.0.tgz#a68d5ad07f486414dfb2c8866f73161946714a18" - integrity sha512-Qe/5NJrgIOlwijpq3B7BEpzPFcgzggOTagZmkXQY4LA6bsXKTUstK7Wp12lEJ/mLKTpvIZxmIuRcLYWT6ov9lw== - filename-reserved-regex@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz#abf73dfab735d045440abfea2d91f389ebbfa229" - integrity sha1-q/c9+rc10EVECr/qLZHzieu/oik= + integrity sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ== filenamify@^4.3.0: version "4.3.0" @@ -6525,19 +5548,19 @@ fill-range@^7.0.1: filter-obj@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-1.1.0.tgz#9b311112bc6c6127a16e016c6c5d7f19e0805c5b" - integrity sha1-mzERErxsYSehbgFsbF1/GeCAXFs= + integrity sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ== -finalhandler@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" - integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== +finalhandler@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" + integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== dependencies: debug "2.6.9" encodeurl "~1.0.2" escape-html "~1.0.3" - on-finished "~2.3.0" + on-finished "2.4.1" parseurl "~1.3.3" - statuses "~1.5.0" + statuses "2.0.1" unpipe "~1.0.0" find-cache-dir@^3.3.1, find-cache-dir@^3.3.2: @@ -6549,13 +5572,6 @@ find-cache-dir@^3.3.1, find-cache-dir@^3.3.2: make-dir "^3.0.2" pkg-dir "^4.1.0" -find-up@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" - integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= - dependencies: - locate-path "^2.0.0" - find-up@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" @@ -6588,19 +5604,26 @@ flat-cache@^3.0.4: rimraf "^3.0.2" flatted@^3.1.0: - version "3.2.4" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.4.tgz#28d9969ea90661b5134259f312ab6aa7929ac5e2" - integrity sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw== + version "3.2.7" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== follow-redirects@^1.14.0: - version "1.14.6" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.6.tgz#8cfb281bbc035b3c067d6cd975b0f6ade6e855cd" - integrity sha512-fhUl5EwSJbbl8AR+uYL2KQDxLkdSjZGR36xy46AO7cOMTrCMON6Sa28FmAnC2tRTDbd/Uuzz3aJBv7EBN7JH8A== + version "1.15.2" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" fork-ts-checker-webpack-plugin@^6.5.0: - version "6.5.2" - resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz#4f67183f2f9eb8ba7df7177ce3cf3e75cdafb340" - integrity sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA== + version "6.5.3" + resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz#eda2eff6e22476a2688d10661688c47f611b37f3" + integrity sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ== dependencies: "@babel/code-frame" "^7.8.3" "@types/json-schema" "^7.0.5" @@ -6616,10 +5639,14 @@ fork-ts-checker-webpack-plugin@^6.5.0: semver "^7.3.2" tapable "^1.0.0" -form-data-encoder@^1.7.1: - version "1.7.1" - resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-1.7.1.tgz#ac80660e4f87ee0d3d3c3638b7da8278ddb8ec96" - integrity sha512-EFRDrsMm/kyqbTQocNvRXMLjc7Es2Vk+IQFx/YW7hkUH1eBl4J1fqiP34l74Yt0pFLCNpc06fkbVk00008mzjg== +form-data@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" + integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" form-data@^3.0.0: version "3.0.1" @@ -6630,29 +5657,22 @@ form-data@^3.0.0: combined-stream "^1.0.8" mime-types "^2.1.12" -formdata-node@^4.3.1: - version "4.3.2" - resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.3.2.tgz#0262e94931e36db7239c2b08bdb6aaf18ec47d21" - integrity sha512-k7lYJyzDOSL6h917favP8j1L0/wNyylzU+x+1w4p5haGVHNlP58dbpdJhiCUsDbWsa9HwEtLp89obQgXl2e0qg== - dependencies: - node-domexception "1.0.0" - web-streams-polyfill "4.0.0-beta.1" - forwarded@0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== -fraction.js@^4.1.1: - version "4.1.2" - resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.1.2.tgz#13e420a92422b6cf244dff8690ed89401029fbe8" - integrity sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA== +fraction.js@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.1.tgz#14b4cc886575a5684f8d5fd5759c5db376bb7bb8" + integrity sha512-/KxoyCnPM0GwYI4NN0Iag38Tqt+od3/mLuguepLgCAKPn0ZhC544nssAW0tG2/00zXEYl9W+7hwAIpLHo6Oc7Q== framer-motion@^6.2.4: - version "6.2.4" - resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-6.2.4.tgz#3d9c61be3fb8381a770efccdb56cc421de662979" - integrity sha512-1UfnSG4c4CefKft6QMYGx8AWt3TtaFoR/Ax4dkuDDD5BDDeIuUm7gesmJrF8GzxeX/i6fMm8+MEdPngUyPVdLA== + version "6.5.1" + resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-6.5.1.tgz#802448a16a6eb764124bf36d8cbdfa6dd6b931a7" + integrity sha512-o1BGqqposwi7cgDrtg0dNONhkmPsUFDaLcKXigzuTFC5x58mE8iyTazxSudFzmT6MEyJKfjjU8ItoMe3W+3fiw== dependencies: + "@motionone/dom" "10.12.0" framesync "6.0.1" hey-listen "^1.0.8" popmotion "11.0.3" @@ -6671,7 +5691,7 @@ framesync@6.0.1: fresh@0.5.2: version "0.5.2" resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== fs-constants@^1.0.0: version "1.0.0" @@ -6681,18 +5701,9 @@ fs-constants@^1.0.0: fs-exists-cached@1.0.0, fs-exists-cached@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs-exists-cached/-/fs-exists-cached-1.0.0.tgz#cf25554ca050dc49ae6656b41de42258989dcbce" - integrity sha1-zyVVTKBQ3EmuZla0HeQiWJidy84= - -fs-extra@^10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.0.0.tgz#9ff61b655dde53fb34a82df84bb214ce802e17c1" - integrity sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" + integrity sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg== -fs-extra@^10.1.0: +fs-extra@^10.0.0, fs-extra@^10.1.0: version "10.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== @@ -6701,15 +5712,6 @@ fs-extra@^10.1.0: jsonfile "^6.0.1" universalify "^2.0.0" -fs-extra@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" - integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^4.0.0" - universalify "^0.1.0" - fs-extra@^9.0.0, fs-extra@^9.0.1: version "9.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" @@ -6720,20 +5722,20 @@ fs-extra@^9.0.0, fs-extra@^9.0.1: jsonfile "^6.0.1" universalify "^2.0.0" -fs-monkey@1.0.3, fs-monkey@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.3.tgz#ae3ac92d53bb328efe0e9a1d9541f6ad8d48e2d3" - integrity sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q== +fs-monkey@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.4.tgz#ee8c1b53d3fe8bb7e5d2c5c5dfc0168afdd2f747" + integrity sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ== fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== function-bind@^1.1.1: version "1.1.1" @@ -6753,17 +5755,17 @@ function.prototype.name@^1.1.5: functional-red-black-tree@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" - integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= + integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== -functions-have-names@^1.2.2: +functions-have-names@^1.2.2, functions-have-names@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== -gatsby-cli@^4.22.0: - version "4.22.0" - resolved "https://registry.yarnpkg.com/gatsby-cli/-/gatsby-cli-4.22.0.tgz#c59ee913f9644c686bba70ad8a0844bcbc1d2593" - integrity sha512-YMfA7MeUB8JEepR6opjBbPcPJsZGIrswO3PNAYzfRxxzpx7zvqDA3tzb3gj5WM5+6k6u+0ngj2sXhdnyN3sFsQ== +gatsby-cli@^4.25.0: + version "4.25.0" + resolved "https://registry.yarnpkg.com/gatsby-cli/-/gatsby-cli-4.25.0.tgz#da76a6a61a97948c6ce07984b33c911554982f51" + integrity sha512-CJ2PCsfFmn9Xqc/jg9MFMU1BG5oQGiej1TFFx8GhChJ+kGhi9ANnNM+qo1K4vOmoMnsT4SSGiPAFD10AWFqpAQ== dependencies: "@babel/code-frame" "^7.14.0" "@babel/core" "^7.15.5" @@ -6781,13 +5783,13 @@ gatsby-cli@^4.22.0: clipboardy "^2.3.0" common-tags "^1.8.2" convert-hrtime "^3.0.0" - create-gatsby "^2.22.0" + create-gatsby "^2.25.0" envinfo "^7.8.1" execa "^5.1.1" fs-exists-cached "^1.0.0" fs-extra "^10.1.0" - gatsby-core-utils "^3.22.0" - gatsby-telemetry "^3.22.0" + gatsby-core-utils "^3.25.0" + gatsby-telemetry "^3.25.0" hosted-git-info "^3.0.8" is-valid-path "^0.1.1" joi "^17.4.2" @@ -6808,23 +5810,7 @@ gatsby-cli@^4.22.0: yoga-layout-prebuilt "^1.10.0" yurnalist "^2.1.0" -gatsby-core-utils@3.0.0-next.0: - version "3.0.0-next.0" - resolved "https://registry.yarnpkg.com/gatsby-core-utils/-/gatsby-core-utils-3.0.0-next.0.tgz#0acb5bf02b265b249062e1577e70b80210c57146" - integrity sha512-UlzxhmT1TZJGOWLuDAOcs4huBsk9Bw0FNdgXpr3PGAdhcUzyM8iy6pBlTWZHGX/uItVqo+5H07J2eKJ7i49wBg== - dependencies: - "@babel/runtime" "^7.15.4" - ci-info "2.0.0" - configstore "^5.0.1" - file-type "^16.5.3" - fs-extra "^10.0.0" - got "^11.8.2" - node-object-hash "^2.3.9" - proper-lockfile "^4.1.2" - tmp "^0.2.1" - xdg-basedir "^4.0.0" - -gatsby-core-utils@^3.0.0-next.0, gatsby-core-utils@^3.4.0: +gatsby-core-utils@3.4.0: version "3.4.0" resolved "https://registry.yarnpkg.com/gatsby-core-utils/-/gatsby-core-utils-3.4.0.tgz#6d5658dc045dcf60a314d4f2d0bc85e260659837" integrity sha512-dYQpyo1BLGJzxQOXgGs1Fbj7jzGj5cKAIPYz2hz2l4Aus6skwjjaUlOjZlrWIahNHoLkx3mH0f5y6E8205T/aQ== @@ -6840,31 +5826,10 @@ gatsby-core-utils@^3.0.0-next.0, gatsby-core-utils@^3.4.0: tmp "^0.2.1" xdg-basedir "^4.0.0" -gatsby-core-utils@^3.17.0: - version "3.17.0" - resolved "https://registry.yarnpkg.com/gatsby-core-utils/-/gatsby-core-utils-3.17.0.tgz#5fe33c4267a3d0a7439b8065ee9c16f5cc2aead1" - integrity sha512-1e0YaqTAEpSSBkpWkY703lu+Bl76ASXUvUcpnNO3CavCYZsRQxAXtMXIKIEvhm1z6zWJmY9HILo6/DjP+PHeyw== - dependencies: - "@babel/runtime" "^7.15.4" - ci-info "2.0.0" - configstore "^5.0.1" - fastq "^1.13.0" - file-type "^16.5.3" - fs-extra "^10.1.0" - got "^11.8.3" - import-from "^4.0.0" - lmdb "2.5.2" - lock "^1.1.0" - node-object-hash "^2.3.10" - proper-lockfile "^4.1.2" - resolve-from "^5.0.0" - tmp "^0.2.1" - xdg-basedir "^4.0.0" - -gatsby-core-utils@^3.22.0: - version "3.22.0" - resolved "https://registry.yarnpkg.com/gatsby-core-utils/-/gatsby-core-utils-3.22.0.tgz#5d7c15722961ba8c97507a42841e95ea2622e730" - integrity sha512-/0FEKdnNCSn/f7dapxmBFxdFCWhteEZcsrwg/jxtXzSWRzs/7mzG8tyPCVUFlCnw3lLPSfej/9KBlGjXTvIIkQ== +gatsby-core-utils@^3.25.0, gatsby-core-utils@^3.4.0: + version "3.25.0" + resolved "https://registry.yarnpkg.com/gatsby-core-utils/-/gatsby-core-utils-3.25.0.tgz#6ebfd2b8c95f3bbc3b52a9619a1ff26c68109c25" + integrity sha512-lmMDwbnKpqAi+8WWd7MvCTCx3E0u7j8sbVgydERNCYVxKVpzD/aLCH4WPb4EE9m1H1rSm76w0Z+MaentyB/c/Q== dependencies: "@babel/runtime" "^7.15.4" ci-info "2.0.0" @@ -6882,34 +5847,17 @@ gatsby-core-utils@^3.22.0: tmp "^0.2.1" xdg-basedir "^4.0.0" -gatsby-core-utils@^3.5.0-next.2: - version "3.5.0-next.2" - resolved "https://registry.yarnpkg.com/gatsby-core-utils/-/gatsby-core-utils-3.5.0-next.2.tgz#cbb44b76a77a889391157487a08e775eb40633b2" - integrity sha512-/J/YS4fYqROU3noe18caRF9ezuGMAzKK0CxntpjY3s+aU8xFQFL7xWBc+kaSPIYi5I5Sl9b/N5nVwBhELYDStA== - dependencies: - "@babel/runtime" "^7.15.4" - ci-info "2.0.0" - configstore "^5.0.1" - file-type "^16.5.3" - fs-extra "^10.0.0" - got "^11.8.3" - lock "^1.1.0" - node-object-hash "^2.3.10" - proper-lockfile "^4.1.2" - tmp "^0.2.1" - xdg-basedir "^4.0.0" - -gatsby-graphiql-explorer@^2.22.0: - version "2.22.0" - resolved "https://registry.yarnpkg.com/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.22.0.tgz#451bf1f53db73638a54b52ef922166dc7b6f84b1" - integrity sha512-p1MGkC6FVq2s2eKvC02bGUSrlxTJF/BQQ+pK2fZAHbiMpGAvM7mnvSkhQrzNpWexBoqpUlAPAFvZ+ihwOtSWWQ== +gatsby-graphiql-explorer@^2.25.0: + version "2.25.0" + resolved "https://registry.yarnpkg.com/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.25.0.tgz#78fe692009739cbd330b6c10a1cfebcff8301ab8" + integrity sha512-/NDsaW4x3/KtvzmxYvedhDwUW1kb7gQO6iOhCkillVJSYBd6mPB8aOSulM49fyCT76UXGYFtRaUI8fyOkmpWhg== dependencies: "@babel/runtime" "^7.15.4" gatsby-graphql-source-toolkit@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/gatsby-graphql-source-toolkit/-/gatsby-graphql-source-toolkit-2.0.1.tgz#9f48fc67733bb413ba9c43753f8c6642c51b80a9" - integrity sha512-oRKIaLlZNGPN2fqygvnlU47x/FFpTEHHxN7l1ztTXk1c26v4I0TAZDFokB75kKYrpUgpuqqUTP7D/eVdiGYA7w== + version "2.0.4" + resolved "https://registry.yarnpkg.com/gatsby-graphql-source-toolkit/-/gatsby-graphql-source-toolkit-2.0.4.tgz#99e76be3a59341377e95bf9ebb0a1af1e0a8f68e" + integrity sha512-yaXPYLQ1OdShFNk+N3yVQl86ZKT9wUfZ+vORV32f3U+yhse6Mqfje3DhsKHQ2xHazJ3dsdjIdvZOZ1ofDaErPA== dependencies: "@types/node-fetch" "^2.5.7" fs-extra "^9.0.1" @@ -6917,43 +5865,43 @@ gatsby-graphql-source-toolkit@^2.0.1: node-fetch "^2.6.0" p-queue "^6.4.0" -gatsby-legacy-polyfills@^2.22.0: - version "2.22.0" - resolved "https://registry.yarnpkg.com/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.22.0.tgz#1a1f15abf1301d2277cdb90cd2d521e20ac131a3" - integrity sha512-7b1xbOPyaxHaG97RZNk32hoCfu9VJTXaa7UZMSO3Y3RbkolwYfzrVSZdLoToapTF5rsIN8nk02xX1RwVfd2ctg== +gatsby-legacy-polyfills@^2.25.0: + version "2.25.0" + resolved "https://registry.yarnpkg.com/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.25.0.tgz#1a8633df7fff795a70cdf4d43a8d0251674940ab" + integrity sha512-cMeFwMH1FGENo2gNpyTyMYc/CJ7uBGE26n89OGrVVvBMaQegK+CMNZBOh09sLrXUcOp8hSOX2IwzvOlo6CdWpg== dependencies: "@babel/runtime" "^7.15.4" core-js-compat "3.9.0" -gatsby-link@^4.22.0: - version "4.22.0" - resolved "https://registry.yarnpkg.com/gatsby-link/-/gatsby-link-4.22.0.tgz#447a615d4638359616c25c9a6b1503c824b50a50" - integrity sha512-usZwJXdBAJQKRdiGGffWHswrBvqbiYBqQ4iGP9oDDhHhWe+UInh9EMTfjHDsAinU11nvqfzN7r7zDJKm8SyddA== +gatsby-link@^4.25.0: + version "4.25.0" + resolved "https://registry.yarnpkg.com/gatsby-link/-/gatsby-link-4.25.0.tgz#f7bd0b1e8c74be14e67cd649de1c4aa25f145237" + integrity sha512-Fpwk45sUMPvFUAZehNE8SLb3vQyVSxt9YxU++ZZECyukK4A/3Wxk3eIzoNvwfpMfWu6pnAkqcBhIO6KAfvbPGQ== dependencies: "@types/reach__router" "^1.3.10" - gatsby-page-utils "^2.22.0" + gatsby-page-utils "^2.25.0" prop-types "^15.8.1" -gatsby-page-utils@^2.22.0: - version "2.22.0" - resolved "https://registry.yarnpkg.com/gatsby-page-utils/-/gatsby-page-utils-2.22.0.tgz#f1517bf0f2bc78e3799a4ac66af6218cb9bf7fca" - integrity sha512-bmIy2buF4w+Cyp+b4gDiS/qox6/KcEpzy/SU9Oh5iflb7YIR+CHIO0YcxcmhY44I1BqKnaYH95IHRurqPXuZvg== +gatsby-page-utils@^2.25.0: + version "2.25.0" + resolved "https://registry.yarnpkg.com/gatsby-page-utils/-/gatsby-page-utils-2.25.0.tgz#1bd878b1a1a8b51822437bf8cbe2d5b38bfcee3e" + integrity sha512-TlwS149JCeb3xGANeV8HdcQi9Q8J9hYwlO9jdxLGVIXVGbWIMWFrDuwx382jOOsISGQ3jfByToNulUzO6fiqig== dependencies: "@babel/runtime" "^7.15.4" bluebird "^3.7.2" chokidar "^3.5.3" fs-exists-cached "^1.0.0" - gatsby-core-utils "^3.22.0" + gatsby-core-utils "^3.25.0" glob "^7.2.3" lodash "^4.17.21" micromatch "^4.0.5" -gatsby-parcel-config@0.13.0: - version "0.13.0" - resolved "https://registry.yarnpkg.com/gatsby-parcel-config/-/gatsby-parcel-config-0.13.0.tgz#6f793282dc8352477605c3d44292c161b2435a7c" - integrity sha512-RJdrI8ioVXpwoCu9XjhQu/xidIshI+Vvjn07WlGV4IRNW77Xt9t2iXk12LdTHKmvKxXmGIA0CeC0eEg79V/2EQ== +gatsby-parcel-config@0.16.0: + version "0.16.0" + resolved "https://registry.yarnpkg.com/gatsby-parcel-config/-/gatsby-parcel-config-0.16.0.tgz#a71a55f9cd912b1e84a723089a16c5ef90520e31" + integrity sha512-2+hOg6cMBGZ8r+4lN3k+dOWGvku453vbZCAhp6V3RuFYxbWuvDFP7Icr0GCOyZ62utkFr9m7H2U1Wjf4KOHyEQ== dependencies: - "@gatsbyjs/parcel-namer-relative-to-cwd" "1.7.0" + "@gatsbyjs/parcel-namer-relative-to-cwd" "^1.10.0" "@parcel/bundler-default" "2.6.2" "@parcel/compressor-raw" "2.6.2" "@parcel/namer-default" "2.6.2" @@ -6962,19 +5910,14 @@ gatsby-parcel-config@0.13.0: "@parcel/packager-raw" "2.6.2" "@parcel/reporter-dev-server" "2.6.2" "@parcel/resolver-default" "2.6.2" - "@parcel/runtime-browser-hmr" "2.6.2" "@parcel/runtime-js" "2.6.2" - "@parcel/runtime-react-refresh" "2.6.2" - "@parcel/runtime-service-worker" "2.6.2" "@parcel/transformer-js" "2.6.2" "@parcel/transformer-json" "2.6.2" - "@parcel/transformer-raw" "2.6.2" - "@parcel/transformer-react-refresh-wrap" "2.6.2" gatsby-plugin-eslint@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/gatsby-plugin-eslint/-/gatsby-plugin-eslint-4.0.2.tgz#a963d03c851e299d407becec8c9b5e4386d2223e" - integrity sha512-fNLmtu8zgkrdifF9tnbtzmraJzSulhLo868FObCkArfjXB4PLxguxfBWKuJ6PMeZcSIIA4SgouCXHo2hoA12Pw== + version "4.0.4" + resolved "https://registry.yarnpkg.com/gatsby-plugin-eslint/-/gatsby-plugin-eslint-4.0.4.tgz#6c951e33f5b75424ece6c8f550b22051651d844e" + integrity sha512-o3WKrW+ssF6XJmmTAfy7XeLsbTzdTwibBDnM6/Ub2cSDNXd1YjshtidJu4BXOLvtWW/LoqpMfWi0OPbVsb/ZLA== dependencies: webpack-merge "^5.8.0" @@ -6984,9 +5927,9 @@ gatsby-plugin-fontawesome-css@^1.2.0: integrity sha512-Me7zFKPDmFQAWZmC2MQN7vWSHGFneu6FeIylkVinSMh89C0wPeoF165rpfuEdpgG0HScNg0fSh3xCIxYr5gPOQ== gatsby-plugin-graphql-codegen@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/gatsby-plugin-graphql-codegen/-/gatsby-plugin-graphql-codegen-3.1.0.tgz#349933ae3ad95a60870b2d991f69cdf22164eff6" - integrity sha512-4mDkLkLwU5q0dPN2rSv68W62lHjBStER7ZANiQ0Hp4Pwk7jtzQW4coUMbRYWY0wrV9l5TartFm91teKii38R7g== + version "3.1.1" + resolved "https://registry.yarnpkg.com/gatsby-plugin-graphql-codegen/-/gatsby-plugin-graphql-codegen-3.1.1.tgz#346c29a28d0eec37ed74a1c6686df65898cd34aa" + integrity sha512-GLvIOTnzMB6rWGJNu6KM9kBM74oyKu73pfHia9cpthzaaZG1AKNmxXZXEPfvUDmSzjKktjpoKPRMHWDWPk3fVA== dependencies: "@graphql-codegen/core" "^2.2.0" "@graphql-codegen/plugin-helpers" "^2.0.0" @@ -6997,34 +5940,35 @@ gatsby-plugin-graphql-codegen@^3.1.0: "@graphql-tools/graphql-tag-pluck" "^7.0.0" "@graphql-tools/json-file-loader" "^7.0.0" "@graphql-tools/load" "^7.0.0" - "@graphql-tools/url-loader" "^7.0.0" + "@graphql-tools/url-loader" "7.0.0 - 7.4.2" "@graphql-tools/utils" "^8.0.0" fs-extra "^10.0.0" lodash.debounce "4.0.8" gatsby-plugin-image@^2.5.0-next.2: - version "2.5.0-next.2" - resolved "https://registry.yarnpkg.com/gatsby-plugin-image/-/gatsby-plugin-image-2.5.0-next.2.tgz#4bb2d39aad68e5d590bd6ed3d440cc2fad4ac786" - integrity sha512-HctyGwh92EQcgM8YsIlRGG+ppNLnpm8QqFGNIB4hKkggbpHfgLBDIwPOq9JyJGuGgMS7qLvct6f0LUaTf1JmsA== + version "2.25.0" + resolved "https://registry.yarnpkg.com/gatsby-plugin-image/-/gatsby-plugin-image-2.25.0.tgz#3ce19dd2101a7858c17dfabe884ec004bb4fa15b" + integrity sha512-Q1TRjvBF7x50alS22i91rksl7A3g42S0jIdPEQcT9bl8MbFaJiboHGna/jp78nxm9vu4qtUJ1IziRSOu0bgHNQ== dependencies: "@babel/code-frame" "^7.14.0" "@babel/parser" "^7.15.5" "@babel/runtime" "^7.15.4" "@babel/traverse" "^7.15.4" babel-jsx-utils "^1.1.0" - babel-plugin-remove-graphql-queries "^4.5.0-next.2" + babel-plugin-remove-graphql-queries "^4.25.0" camelcase "^5.3.1" - chokidar "^3.5.2" + chokidar "^3.5.3" common-tags "^1.8.2" - fs-extra "^10.0.0" - gatsby-core-utils "^3.5.0-next.2" + fs-extra "^10.1.0" + gatsby-core-utils "^3.25.0" + gatsby-plugin-utils "^3.19.0" objectFitPolyfill "^2.3.5" - prop-types "^15.7.2" + prop-types "^15.8.1" -gatsby-plugin-page-creator@^4.22.0: - version "4.22.0" - resolved "https://registry.yarnpkg.com/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.22.0.tgz#01a90dd90df0cbc443146dac9c5d7e1ad162f16d" - integrity sha512-9Vv0tsAINxzZLzDbqI5DcIWIEDU6yj99qyS21ayYoZHaYPhGWO8bsgmQi37bhXrGYz2xFg85BCvg6NPzs2EyVA== +gatsby-plugin-page-creator@^4.25.0: + version "4.25.0" + resolved "https://registry.yarnpkg.com/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.25.0.tgz#6f47f1a49e18af9ef42207c22b20f5d78ccc02fb" + integrity sha512-plHek7xHSV9l1bLPa1JAnxzBqP7j2ihCPRwpBk/wIJAR8cG65wjAT+Nu8DKpW0+2/MYill84ns1r2m8g0L/7bg== dependencies: "@babel/runtime" "^7.15.4" "@babel/traverse" "^7.15.4" @@ -7032,50 +5976,44 @@ gatsby-plugin-page-creator@^4.22.0: chokidar "^3.5.3" fs-exists-cached "^1.0.0" fs-extra "^10.1.0" - gatsby-core-utils "^3.22.0" - gatsby-page-utils "^2.22.0" - gatsby-plugin-utils "^3.16.0" - gatsby-telemetry "^3.22.0" + gatsby-core-utils "^3.25.0" + gatsby-page-utils "^2.25.0" + gatsby-plugin-utils "^3.19.0" + gatsby-telemetry "^3.25.0" globby "^11.1.0" lodash "^4.17.21" gatsby-plugin-react-helmet@^5.4.0: - version "5.4.0" - resolved "https://registry.yarnpkg.com/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.4.0.tgz#8c40c8749053b65de2c3360b0451adec019c15db" - integrity sha512-bDJYOBk0HNaK8pKHTqr8U6CFNTRCgFvgqyrGNxHeva4sS2GKV/Rj5axRYx8ti8HXgyHMgNbaMO8SgZIKf8W5DQ== + version "5.25.0" + resolved "https://registry.yarnpkg.com/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.25.0.tgz#6849d405bfbc0846e73449d4425b45f84ec58fbb" + integrity sha512-sU/xae/sGuYFcFDpqUxwXnaOmx8xrU2Q+XSULqAapji0uTBhW6al6CJsaPFigi8IOG2bQX8ano2iWWcGF3/GHw== dependencies: "@babel/runtime" "^7.15.4" gatsby-plugin-react-svg@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/gatsby-plugin-react-svg/-/gatsby-plugin-react-svg-3.1.0.tgz#00269f182793f1f624bbfb9817608f6ee26f7b70" - integrity sha512-OiEeTRQ+tzf7YrOnj87uMD6AGRl7BKxogAp1CUDtfiP+WGWZ99S5PeDLHJW5ExxGH1NVzWlNgtJjNmJhDksPhg== + version "3.3.0" + resolved "https://registry.yarnpkg.com/gatsby-plugin-react-svg/-/gatsby-plugin-react-svg-3.3.0.tgz#1dad8594ecd6ffd86e5ff45e1b9365367c999c44" + integrity sha512-kFPElMFu1QCkiFCm1pSrVkOHAeafU6wkD0qCVPs7nL/Txh5KFh0aOO6Feiwvfre1Jo+Eg3lwCuGmgsy9L+4pDg== dependencies: svg-react-loader "^0.4.6" gatsby-plugin-sharp@^4.17.0: - version "4.17.0" - resolved "https://registry.yarnpkg.com/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.17.0.tgz#157901c4e3ac728f562d08d4a846fa1bd888a81c" - integrity sha512-+wP4hskMBSNgPYqBX2uqoqb5JUtMMvaZTzYNkZmnKkg85rHeDpUy+eMoCqrhh8wpW/NgcbQ9o6uK43jj2qv0xQ== + version "4.25.1" + resolved "https://registry.yarnpkg.com/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.25.1.tgz#dcc31bdc698511501acc9b95ba277844c15a7576" + integrity sha512-cGRb8lmwJkzwT1Qze0R+VL+55BIb9weM17m+dUf6gs5Z++lQltqge+L8a1qWWsGL6KfLQN7+bIqjhmTTscIPMQ== dependencies: "@babel/runtime" "^7.15.4" - "@gatsbyjs/potrace" "^2.2.0" - async "^3.2.3" + async "^3.2.4" bluebird "^3.7.2" debug "^4.3.4" filenamify "^4.3.0" fs-extra "^10.1.0" - gatsby-core-utils "^3.17.0" - gatsby-plugin-utils "^3.11.0" - gatsby-telemetry "^3.17.0" - got "^11.8.3" + gatsby-core-utils "^3.25.0" + gatsby-plugin-utils "^3.19.0" lodash "^4.17.21" - mini-svg-data-uri "^1.4.4" probe-image-size "^7.2.3" - progress "^2.0.3" semver "^7.3.7" - sharp "^0.30.3" - svgo "1.3.2" + sharp "^0.30.7" gatsby-plugin-static-page-modal@^1.0.4: version "1.0.4" @@ -7083,16 +6021,16 @@ gatsby-plugin-static-page-modal@^1.0.4: integrity sha512-Ke/HpTSm0PPCDmbjntVplUpPo3U348p26jgFgNr96bcA/a0xBLptGcyrjMT512zsZwscgSeP7vPIVzax5sH6Ow== gatsby-plugin-styled-components@^5.4.0: - version "5.4.0" - resolved "https://registry.yarnpkg.com/gatsby-plugin-styled-components/-/gatsby-plugin-styled-components-5.4.0.tgz#bb632ac9ecdf12a657dbb9f2c310e6ea105f86a7" - integrity sha512-YsQJW4nuhuSIRrLRwexXWmrqIgirFWfYVtdhPTIHcrq5VCDW2OkMw/Kn+WNpHt1GUmP+3piKfKtofeF61xKwuw== + version "5.25.0" + resolved "https://registry.yarnpkg.com/gatsby-plugin-styled-components/-/gatsby-plugin-styled-components-5.25.0.tgz#e0bac90712986400376a65c6e72678bc12dff8fe" + integrity sha512-gBCgvLDz+X9Xq8BhroFWZTtURMycgARyly4SlidrPqcPtxWhJtas+gc01/uivHnjIUW6SAac8cpot3ld/PLdZA== dependencies: "@babel/runtime" "^7.15.4" -gatsby-plugin-typescript@^4.22.0: - version "4.22.0" - resolved "https://registry.yarnpkg.com/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.22.0.tgz#521eb45922769812035b11e5d85f936041e18e0f" - integrity sha512-3AbTskIjIBJT0jZKv4tIewBXOB1VEeylujsmIhgkk08Gb5i1ObXzEEwvT4uoibJxWKqTNLdSi7J2UW0eicWUdg== +gatsby-plugin-typescript@^4.25.0: + version "4.25.0" + resolved "https://registry.yarnpkg.com/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.25.0.tgz#e498d00a4e811157fae0214bee9bfae13c569ef6" + integrity sha512-8BTtiVWuIqIEGx/PBBMWd6FYPgel16hT3js7SMo5oI9K4EPsSxRItgRf41MTJGxRR20EhL4e99g2S8x0v1+odA== dependencies: "@babel/core" "^7.15.5" "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.5" @@ -7100,145 +6038,95 @@ gatsby-plugin-typescript@^4.22.0: "@babel/plugin-proposal-optional-chaining" "^7.14.5" "@babel/preset-typescript" "^7.15.0" "@babel/runtime" "^7.15.4" - babel-plugin-remove-graphql-queries "^4.22.0" - -gatsby-plugin-utils@^3.11.0: - version "3.11.0" - resolved "https://registry.yarnpkg.com/gatsby-plugin-utils/-/gatsby-plugin-utils-3.11.0.tgz#cffbd98ab0cafe2ff9b8eb513c980024605dcadf" - integrity sha512-v2D6O2aME9p7tqlGykq5mgtj7Jqp/CWatgo0zJ7bFWSYPPUpQ7jRVAph1PIgFTAV/CaUrrvt9sxdRaZrglJyug== - dependencies: - "@babel/runtime" "^7.15.4" - "@gatsbyjs/potrace" "^2.2.0" - fs-extra "^10.1.0" - gatsby-core-utils "^3.17.0" - gatsby-sharp "^0.11.0" - graphql-compose "^9.0.7" - import-from "^4.0.0" - joi "^17.4.2" - mime "^3.0.0" - mini-svg-data-uri "^1.4.4" - svgo "^2.8.0" + babel-plugin-remove-graphql-queries "^4.25.0" -gatsby-plugin-utils@^3.16.0: - version "3.16.0" - resolved "https://registry.yarnpkg.com/gatsby-plugin-utils/-/gatsby-plugin-utils-3.16.0.tgz#c789486e27c7ac6470159a82d86c066848be623e" - integrity sha512-GemN7/f+yxQQuOPeq+Q7hoVY9TTeN3LdL8b8q+a4qBBjHBwp4w+hcYR4j+pPYUFMya9dvOyMZcc3pkfhMGUaRw== +gatsby-plugin-utils@^3.19.0: + version "3.19.0" + resolved "https://registry.yarnpkg.com/gatsby-plugin-utils/-/gatsby-plugin-utils-3.19.0.tgz#f464b02cc51dcdc0c0e094b7352ee4bf660126ea" + integrity sha512-EZtvgHSU5NPbEn6a4cfSpEGCQ09SfwbhoybHTJKj1clop86HSwOCV2iH8RbCc+X6jbdgHaSZsfsl7zG1h7DBUw== dependencies: "@babel/runtime" "^7.15.4" - "@gatsbyjs/potrace" "^2.3.0" fastq "^1.13.0" fs-extra "^10.1.0" - gatsby-core-utils "^3.22.0" - gatsby-sharp "^0.16.0" + gatsby-core-utils "^3.25.0" + gatsby-sharp "^0.19.0" graphql-compose "^9.0.7" import-from "^4.0.0" joi "^17.4.2" mime "^3.0.0" - mini-svg-data-uri "^1.4.4" - svgo "^2.8.0" -gatsby-react-router-scroll@^5.22.0: - version "5.22.0" - resolved "https://registry.yarnpkg.com/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.22.0.tgz#50082a4f6a64b61aea7880d7300f7d7546b2c4ba" - integrity sha512-aMOTgIMz+rWEfUaQ6nwcPbiT8UYgml6VXAEFDbvKt/uRqWqAMYppksp7HEiO7d1DNP7Zf+FbSGLM/xjLXT3oew== +gatsby-react-router-scroll@^5.25.0: + version "5.25.0" + resolved "https://registry.yarnpkg.com/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.25.0.tgz#86cec0acc0594db01e7f3c37cf5034e034f2b635" + integrity sha512-SFSdezIa5lahCE8ieCLrtLA5tztemGco/rN8si9rI9KHu1h1jPvDhsNqs2g+Z50JrUb1RPfsmxJTmLa5i6MIgQ== dependencies: "@babel/runtime" "^7.15.4" prop-types "^15.8.1" -gatsby-script@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/gatsby-script/-/gatsby-script-1.7.0.tgz#9cf1e5206034dd73c249019ef19870d40b4ac792" - integrity sha512-6u32KfM7IB36KTpM4WxEbcTFY1ozpHjQNyWS1Uc7q/Zp+R9BF4Iv7rOosOmOeA0JBd5JF0NwGnJlQiu1nYzwcA== - -gatsby-sharp@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/gatsby-sharp/-/gatsby-sharp-0.11.0.tgz#f672e26a4134e2ff264a335ab6efd35782de8052" - integrity sha512-RIbU8qi/Qs7G/KJiY0zyGS9Yic5n4RpDUf/1W3gvRl78Uo3LSuIeGEpaai6mYEnreuGb5fQIcqdkYs/UV3e8WA== - dependencies: - "@types/sharp" "^0.30.0" - sharp "^0.30.3" +gatsby-script@^1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/gatsby-script/-/gatsby-script-1.10.0.tgz#0096ceaee2f251528c02bed5e7e058314d359127" + integrity sha512-8jAtQR0mw3G8sCy6i2D1jfGvUF5d9AIboEQuo9ZEChT4Ep5f+PSRxiWZqSjhKvintAOIeS4QXCJP5Rtp3xZKLg== -gatsby-sharp@^0.16.0: - version "0.16.0" - resolved "https://registry.yarnpkg.com/gatsby-sharp/-/gatsby-sharp-0.16.0.tgz#c909b6d179de58c74d36671fb0848f3219c0d5f4" - integrity sha512-ApkxUe04waBzqyTE1x9OcP/ZzIbFBYxkjsrBoK+Fl2CZrQgBk7433kVVufy7FVW4o69StQmztrwaNEh2t5miTQ== +gatsby-sharp@^0.19.0: + version "0.19.0" + resolved "https://registry.yarnpkg.com/gatsby-sharp/-/gatsby-sharp-0.19.0.tgz#c2c35d885103ebf9d2733737db798312897a716c" + integrity sha512-EbI3RNBu2+aaxuMUP/INmoj8vcNAG6BgpFvi1tLeU7/gVTNVQ+7pC/ZYtlVCzSw+faaw7r1ZBMi6F66mNIIz5A== dependencies: "@types/sharp" "^0.30.5" sharp "^0.30.7" -gatsby-source-filesystem@4.0.0-next.0: - version "4.0.0-next.0" - resolved "https://registry.yarnpkg.com/gatsby-source-filesystem/-/gatsby-source-filesystem-4.0.0-next.0.tgz#c2a6f55794340652a34e8d19158b805f5773aef6" - integrity sha512-ykTzeKTJxlIiV0tTBidx+3HMfzTa848XDZmUNIIJD0SyBu2lSIjX65DntpJi/twduhQWtqlwUkY83OPhI9shxA== +gatsby-source-filesystem@4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/gatsby-source-filesystem/-/gatsby-source-filesystem-4.4.0.tgz#9921ac0600166e4ee0cd561d194c2df89a42e11d" + integrity sha512-tN+aJdOnBf92V9oHXaGzPB6gL0EhpYH0mh/dfszroy25CtSq07fZu8SynS/B3ClJVi22MkD0imcDVMlPJGSQ3w== dependencies: "@babel/runtime" "^7.15.4" chokidar "^3.5.2" - fastq "^1.11.1" + fastq "^1.13.0" file-type "^16.5.3" fs-extra "^10.0.0" - gatsby-core-utils "^3.0.0-next.0" + gatsby-core-utils "^3.4.0" got "^9.6.0" md5-file "^5.0.0" mime "^2.5.2" pretty-bytes "^5.4.1" progress "^2.0.3" valid-url "^1.0.9" - xstate "^4.14.0" + xstate "^4.26.1" gatsby-source-filesystem@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/gatsby-source-filesystem/-/gatsby-source-filesystem-4.4.0.tgz#9921ac0600166e4ee0cd561d194c2df89a42e11d" - integrity sha512-tN+aJdOnBf92V9oHXaGzPB6gL0EhpYH0mh/dfszroy25CtSq07fZu8SynS/B3ClJVi22MkD0imcDVMlPJGSQ3w== + version "4.25.0" + resolved "https://registry.yarnpkg.com/gatsby-source-filesystem/-/gatsby-source-filesystem-4.25.0.tgz#2748b0abd37abea0fbf70f33fb544debee3280ff" + integrity sha512-gja4++bPkYpnum4/TxFicr3zRHBArnM2HjT77EE4EuDhdl6qlJYr/heD09LIPN2jdR5gmPwMDjIZnuYZ/6j/aQ== dependencies: "@babel/runtime" "^7.15.4" - chokidar "^3.5.2" - fastq "^1.13.0" - file-type "^16.5.3" - fs-extra "^10.0.0" - gatsby-core-utils "^3.4.0" - got "^9.6.0" + chokidar "^3.5.3" + file-type "^16.5.4" + fs-extra "^10.1.0" + gatsby-core-utils "^3.25.0" md5-file "^5.0.0" mime "^2.5.2" pretty-bytes "^5.4.1" - progress "^2.0.3" valid-url "^1.0.9" - xstate "^4.26.1" + xstate "4.32.1" -gatsby-source-graphcms@^2.7.0-next.1: - version "2.7.0-next.1" - resolved "https://registry.yarnpkg.com/gatsby-source-graphcms/-/gatsby-source-graphcms-2.7.0-next.1.tgz#23248958d24f1eee2e1653252e2689e7b8d407d0" - integrity sha512-GiFQyqrDdkY0sdQSp9jwHket5mpuhXhxSqoMi9IlinOuIJmtAL4jkKQ/8xGkaeGwI//CpY7z8c4Q0wJdo00RzA== +gatsby-source-graphcms@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/gatsby-source-graphcms/-/gatsby-source-graphcms-2.8.0.tgz#f30e2c94284fc74cae85f67a3b8e269c0ed48d98" + integrity sha512-fQZ5R1rQPoQ5FvDP3y46YTjAOwqdCgmsYLLwYBfBanmJKSi3m4413pBY52sJBRxeApBhevciaal1kEvRok1auw== dependencies: - "@babel/runtime" "7.12.5" - gatsby-core-utils "3.0.0-next.0" + "@babel/runtime" "7.16.7" + gatsby-core-utils "3.4.0" gatsby-graphql-source-toolkit "^2.0.1" - gatsby-source-filesystem "4.0.0-next.0" + gatsby-source-filesystem "4.4.0" he "1.2.0" node-fetch "2.6.1" -gatsby-telemetry@^3.17.0: - version "3.17.0" - resolved "https://registry.yarnpkg.com/gatsby-telemetry/-/gatsby-telemetry-3.17.0.tgz#de5b094340d714969ac5a5f01ed19999d3b9557e" - integrity sha512-1N4uKj2Yj7AykLmwjsdOmNirf3UmP8CBXjj/LmWf5cLDVbdPqkirAlyD6uTeEliG5UFHPTlBsRi26v558mFYJQ== - dependencies: - "@babel/code-frame" "^7.14.0" - "@babel/runtime" "^7.15.4" - "@turist/fetch" "^7.1.7" - "@turist/time" "^0.0.2" - async-retry-ng "^2.0.1" - boxen "^4.2.0" - configstore "^5.0.1" - fs-extra "^10.1.0" - gatsby-core-utils "^3.17.0" - git-up "^4.0.5" - is-docker "^2.2.1" - lodash "^4.17.21" - node-fetch "^2.6.7" - -gatsby-telemetry@^3.22.0: - version "3.22.0" - resolved "https://registry.yarnpkg.com/gatsby-telemetry/-/gatsby-telemetry-3.22.0.tgz#3e802a2a5ebca583c7695ee01cb06345c6ed5872" - integrity sha512-ZQIbPj0CVmElSc/XNGDru34MDFBkqYq9XtQgugqeiZErfdfDw8ukuJ2EUYafeSSfw+0BFTON+uSq96ixL88coQ== +gatsby-telemetry@^3.25.0: + version "3.25.0" + resolved "https://registry.yarnpkg.com/gatsby-telemetry/-/gatsby-telemetry-3.25.0.tgz#1e5b109927fd465daa097fd3946ab2a9eb39b25a" + integrity sha512-FGC1yS2evJxTN/Ku9XonCBiqhH6uO6aPjjps65BbL+Xbpct/qfirIFxYG6DhHPrksR0fKOhstJGnQqay74hWdQ== dependencies: "@babel/code-frame" "^7.14.0" "@babel/runtime" "^7.15.4" @@ -7247,39 +6135,38 @@ gatsby-telemetry@^3.22.0: boxen "^4.2.0" configstore "^5.0.1" fs-extra "^10.1.0" - gatsby-core-utils "^3.22.0" - git-up "^6.0.0" + gatsby-core-utils "^3.25.0" + git-up "^7.0.0" is-docker "^2.2.1" lodash "^4.17.21" node-fetch "^2.6.7" gatsby-transformer-sharp@^4.17.0: - version "4.17.0" - resolved "https://registry.yarnpkg.com/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.17.0.tgz#abc2eddd4b28d268eeca6363d22b3e416a33ac53" - integrity sha512-yaBzgqpjMqpy1ZuJ4CRbYh8rdiyvuSlMS0aMRiGlcjgUmKuT5qGJsQWsuhihbKWqn8OPhNzrAsnWvWnOVjAeCg== + version "4.25.0" + resolved "https://registry.yarnpkg.com/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.25.0.tgz#978e15c20111f4616dec599809daa1678de79881" + integrity sha512-7aqecTvOUFiNB96ij77UnAGJs7Un0TlkpamG//dSl6Nru9EylGz/NW/Eg0vioQyHLCYdMvd5xO8V3BOHJADsnw== dependencies: "@babel/runtime" "^7.15.4" - "@gatsbyjs/potrace" "^2.2.0" bluebird "^3.7.2" common-tags "^1.8.2" fs-extra "^10.1.0" - gatsby-plugin-utils "^3.11.0" + gatsby-plugin-utils "^3.19.0" probe-image-size "^7.2.3" semver "^7.3.7" - sharp "^0.30.3" + sharp "^0.30.7" -gatsby-worker@^1.22.0: - version "1.22.0" - resolved "https://registry.yarnpkg.com/gatsby-worker/-/gatsby-worker-1.22.0.tgz#adcf32623e87752ded5946ee5eed8afbebb0dfed" - integrity sha512-WORh9XnhZR9ATZcMk11Nx3ee65LboJUQoPVrOH5YCcG9upVpWtoE64AQCS9y32ajQGqb60X6JuwO9IP1ddTdiA== +gatsby-worker@^1.25.0: + version "1.25.0" + resolved "https://registry.yarnpkg.com/gatsby-worker/-/gatsby-worker-1.25.0.tgz#0bbed669f3b21345a350743b9826cbfd007fa3a9" + integrity sha512-gjp28irgHASihwvMyF5aZMALWGax9mEmcD8VYGo2osRe7p6BZuWi4cSuP9XM9EvytDvIugpnSadmTP01B7LtWg== dependencies: "@babel/core" "^7.15.5" "@babel/runtime" "^7.15.4" gatsby@^4.22.0: - version "4.22.0" - resolved "https://registry.yarnpkg.com/gatsby/-/gatsby-4.22.0.tgz#45abc807f209f1be1872d2c6c86f7f76b4a61c33" - integrity sha512-tpssrpJX0vn27oolu72XaDyXpqLPsAh7EjebeOVOlegEq6ZwHg6b+XjhQoLFujt3ogXHza+vNhSuMQ6NFLzzMA== + version "4.25.7" + resolved "https://registry.yarnpkg.com/gatsby/-/gatsby-4.25.7.tgz#56a0c7f9e25fcf895864d88fd648f97e26dd560f" + integrity sha512-kspM1XokxDw2YqC2hkPKQTfWSNSq/AnY8PNYSrUM+MCsyIKFuGqSVchNonZN1g8/nCoh4jQpBYXH5Uw2Hrs6Sw== dependencies: "@babel/code-frame" "^7.14.0" "@babel/core" "^7.15.5" @@ -7308,6 +6195,8 @@ gatsby@^4.22.0: "@typescript-eslint/eslint-plugin" "^4.33.0" "@typescript-eslint/parser" "^4.33.0" "@vercel/webpack-asset-relocator-loader" "^1.7.0" + acorn-loose "^8.3.0" + acorn-walk "^8.2.0" address "1.1.2" anser "^2.1.0" autoprefixer "^10.4.0" @@ -7316,8 +6205,8 @@ gatsby@^4.22.0: babel-plugin-add-module-exports "^1.0.4" babel-plugin-dynamic-import-node "^2.3.3" babel-plugin-lodash "^3.3.4" - babel-plugin-remove-graphql-queries "^4.22.0" - babel-preset-gatsby "^2.22.0" + babel-plugin-remove-graphql-queries "^4.25.0" + babel-preset-gatsby "^2.25.0" better-opn "^2.1.1" bluebird "^3.7.2" browserslist "^4.17.5" @@ -7344,9 +6233,9 @@ gatsby@^4.22.0: eslint-config-react-app "^6.0.0" eslint-plugin-flowtype "^5.10.0" eslint-plugin-import "^2.26.0" - eslint-plugin-jsx-a11y "^6.5.1" + eslint-plugin-jsx-a11y "^6.6.1" eslint-plugin-react "^7.30.1" - eslint-plugin-react-hooks "^4.5.0" + eslint-plugin-react-hooks "^4.6.0" eslint-webpack-plugin "^2.7.0" event-source-polyfill "1.0.25" execa "^5.1.1" @@ -7359,26 +6248,27 @@ gatsby@^4.22.0: find-cache-dir "^3.3.2" fs-exists-cached "1.0.0" fs-extra "^10.1.0" - gatsby-cli "^4.22.0" - gatsby-core-utils "^3.22.0" - gatsby-graphiql-explorer "^2.22.0" - gatsby-legacy-polyfills "^2.22.0" - gatsby-link "^4.22.0" - gatsby-page-utils "^2.22.0" - gatsby-parcel-config "0.13.0" - gatsby-plugin-page-creator "^4.22.0" - gatsby-plugin-typescript "^4.22.0" - gatsby-plugin-utils "^3.16.0" - gatsby-react-router-scroll "^5.22.0" - gatsby-script "^1.7.0" - gatsby-telemetry "^3.22.0" - gatsby-worker "^1.22.0" + gatsby-cli "^4.25.0" + gatsby-core-utils "^3.25.0" + gatsby-graphiql-explorer "^2.25.0" + gatsby-legacy-polyfills "^2.25.0" + gatsby-link "^4.25.0" + gatsby-page-utils "^2.25.0" + gatsby-parcel-config "0.16.0" + gatsby-plugin-page-creator "^4.25.0" + gatsby-plugin-typescript "^4.25.0" + gatsby-plugin-utils "^3.19.0" + gatsby-react-router-scroll "^5.25.0" + gatsby-script "^1.10.0" + gatsby-telemetry "^3.25.0" + gatsby-worker "^1.25.0" glob "^7.2.3" globby "^11.1.0" got "^11.8.5" graphql "^15.7.2" graphql-compose "^9.0.7" graphql-playground-middleware-express "^1.7.22" + graphql-tag "^2.12.6" hasha "^5.2.2" invariant "^2.2.4" is-relative "^1.0.0" @@ -7414,7 +6304,8 @@ gatsby@^4.22.0: query-string "^6.14.1" raw-loader "^4.0.2" react-dev-utils "^12.0.1" - react-refresh "^0.9.0" + react-refresh "^0.14.0" + react-server-dom-webpack "0.0.0-experimental-c8b778b7f-20220825" redux "4.1.2" redux-thunk "^2.4.0" resolve-from "^5.0.0" @@ -7422,8 +6313,8 @@ gatsby@^4.22.0: shallow-compare "^1.2.2" signal-exit "^3.0.5" slugify "^1.6.1" - socket.io "3.1.2" - socket.io-client "3.1.3" + socket.io "4.5.4" + socket.io-client "4.5.4" st "^2.0.0" stack-trace "^0.0.10" string-similarity "^1.2.2" @@ -7441,9 +6332,9 @@ gatsby@^4.22.0: webpack-stats-plugin "^1.0.3" webpack-virtual-modules "^0.3.2" xstate "4.32.1" - yaml-loader "^0.6.0" + yaml-loader "^0.8.0" optionalDependencies: - gatsby-sharp "^0.16.0" + gatsby-sharp "^0.19.0" gensync@^1.0.0-beta.2: version "1.0.0-beta.2" @@ -7455,19 +6346,20 @@ get-caller-file@^2.0.1: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" - integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== dependencies: function-bind "^1.1.1" has "^1.0.3" - has-symbols "^1.0.1" + has-proto "^1.0.1" + has-symbols "^1.0.3" get-port@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc" - integrity sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw= + integrity sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg== get-stream@^4.0.0, get-stream@^4.1.0: version "4.1.0" @@ -7496,34 +6388,18 @@ get-symbol-description@^1.0.0: call-bind "^1.0.2" get-intrinsic "^1.1.1" -gifwrap@^0.9.2: - version "0.9.2" - resolved "https://registry.yarnpkg.com/gifwrap/-/gifwrap-0.9.2.tgz#348e286e67d7cf57942172e1e6f05a71cee78489" - integrity sha512-fcIswrPaiCDAyO8xnWvHSZdWChjKXUanKKpAiWWJ/UTkEi/aYKn5+90e7DE820zbEaVR9CE2y4z9bzhQijZ0BA== - dependencies: - image-q "^1.1.1" - omggif "^1.0.10" - -git-up@^4.0.5: - version "4.0.5" - resolved "https://registry.yarnpkg.com/git-up/-/git-up-4.0.5.tgz#e7bb70981a37ea2fb8fe049669800a1f9a01d759" - integrity sha512-YUvVDg/vX3d0syBsk/CKUTib0srcQME0JyHkL5BaYdwLsiCslPWmDSi8PUMo9pXYjrryMcmsCoCgsTpSCJEQaA== - dependencies: - is-ssh "^1.3.0" - parse-url "^6.0.0" - -git-up@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/git-up/-/git-up-6.0.0.tgz#dbd6e4eee270338be847a0601e6d0763c90b74db" - integrity sha512-6RUFSNd1c/D0xtGnyWN2sxza2bZtZ/EmI9448n6rCZruFwV/ezeEn2fJP7XnUQGwf0RAtd/mmUCbtH6JPYA2SA== +git-up@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/git-up/-/git-up-7.0.0.tgz#bace30786e36f56ea341b6f69adfd83286337467" + integrity sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ== dependencies: is-ssh "^1.4.0" - parse-url "^7.0.2" + parse-url "^8.1.0" github-from-package@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" - integrity sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4= + integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" @@ -7532,7 +6408,7 @@ glob-parent@^5.1.2, glob-parent@~5.1.2: dependencies: is-glob "^4.0.1" -glob-parent@^6.0.1: +glob-parent@^6.0.2: version "6.0.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== @@ -7544,19 +6420,7 @@ glob-to-regexp@^0.4.1: resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== -glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.6: - version "7.2.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" - integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^7.2.3: +glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.6, glob@^7.2.3: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -7569,9 +6433,9 @@ glob@^7.2.3: path-is-absolute "^1.0.0" global-dirs@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.0.tgz#70a76fe84ea315ab37b1f5576cbde7d48ef72686" - integrity sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA== + version "3.0.1" + resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.1.tgz#0c488971f066baceda21447aecb1a8b911d22485" + integrity sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA== dependencies: ini "2.0.0" @@ -7591,46 +6455,26 @@ global-prefix@^3.0.0: kind-of "^6.0.2" which "^1.3.1" -global@~4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406" - integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w== - dependencies: - min-document "^2.19.0" - process "^0.11.10" - globals@^11.1.0: version "11.12.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== -globals@^13.2.0: - version "13.17.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" - integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== - dependencies: - type-fest "^0.20.2" - -globals@^13.6.0, globals@^13.9.0: - version "13.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.12.0.tgz#4d733760304230a0082ed96e21e5c565f898089e" - integrity sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg== +globals@^13.19.0, globals@^13.2.0, globals@^13.6.0, globals@^13.9.0: + version "13.21.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.21.0.tgz#163aae12f34ef502f5153cfbdd3600f36c63c571" + integrity sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg== dependencies: type-fest "^0.20.2" -globby@^11.0.3, globby@^11.0.4: - version "11.0.4" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" - integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== +globalthis@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" + integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== dependencies: - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.1.1" - ignore "^5.1.4" - merge2 "^1.3.0" - slash "^3.0.0" + define-properties "^1.1.3" -globby@^11.1.0: +globby@^11.0.3, globby@^11.0.4, globby@^11.1.0: version "11.1.0" resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== @@ -7642,27 +6486,17 @@ globby@^11.1.0: merge2 "^1.4.1" slash "^3.0.0" -got@^11.8.2, got@^11.8.3: - version "11.8.3" - resolved "https://registry.yarnpkg.com/got/-/got-11.8.3.tgz#f496c8fdda5d729a90b4905d2b07dbd148170770" - integrity sha512-7gtQ5KiPh1RtGS9/Jbv1ofDpBFuq42gyfEib+ejaRBJuj/3tQFeR5+gw57e4ipaU8c/rCjvX6fkQz2lyDlGAOg== +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== dependencies: - "@sindresorhus/is" "^4.0.0" - "@szmarczak/http-timer" "^4.0.5" - "@types/cacheable-request" "^6.0.1" - "@types/responselike" "^1.0.0" - cacheable-lookup "^5.0.3" - cacheable-request "^7.0.2" - decompress-response "^6.0.0" - http2-wrapper "^1.0.0-beta.5.2" - lowercase-keys "^2.0.0" - p-cancelable "^2.0.0" - responselike "^2.0.0" + get-intrinsic "^1.1.3" -got@^11.8.5: - version "11.8.5" - resolved "https://registry.yarnpkg.com/got/-/got-11.8.5.tgz#ce77d045136de56e8f024bebb82ea349bc730046" - integrity sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ== +got@^11.8.3, got@^11.8.5: + version "11.8.6" + resolved "https://registry.yarnpkg.com/got/-/got-11.8.6.tgz#276e827ead8772eddbcfc97170590b841823233a" + integrity sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g== dependencies: "@sindresorhus/is" "^4.0.0" "@szmarczak/http-timer" "^4.0.5" @@ -7693,15 +6527,20 @@ got@^9.6.0: to-readable-stream "^1.0.0" url-parse-lax "^3.0.0" -graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.3, graceful-fs@^4.2.4: - version "4.2.8" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" - integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.3, graceful-fs@^4.2.4, graceful-fs@^4.2.9: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== graphql-compose@^9.0.7: - version "9.0.8" - resolved "https://registry.yarnpkg.com/graphql-compose/-/graphql-compose-9.0.8.tgz#920b6b0584f5e3784a532138974063d3807f7455" - integrity sha512-I3zvygpVz5hOWk2cYL6yhbgfKbNWbiZFNXlWkv/55U+lX6Y3tL+SyY3zunw7QWrN/qtwG2DqZb13SHTv2MgdEQ== + version "9.0.10" + resolved "https://registry.yarnpkg.com/graphql-compose/-/graphql-compose-9.0.10.tgz#1e870166deb1785761865fe742dea0601d2c77f2" + integrity sha512-UsVoxfi2+c8WbHl2pEB+teoRRZoY4mbWBoijeLDGpAZBSPChnqtSRjp+T9UcouLCwGr5ooNyOQLoI3OVzU1bPQ== dependencies: graphql-type-json "0.3.2" @@ -7720,11 +6559,11 @@ graphql-playground-middleware-express@^1.7.22: graphql-playground-html "^1.6.30" graphql-sse@^1.0.1: - version "1.0.6" - resolved "https://registry.yarnpkg.com/graphql-sse/-/graphql-sse-1.0.6.tgz#4f98e0a06f2020542ed054399116108491263224" - integrity sha512-y2mVBN2KwNrzxX2KBncQ6kzc6JWvecxuBernrl0j65hsr6MAS3+Yn8PTFSOgRmtolxugepxveyZVQEuaNEbw3w== + version "1.3.2" + resolved "https://registry.yarnpkg.com/graphql-sse/-/graphql-sse-1.3.2.tgz#9aff5e70997cfdb80316e8f8243ac0a9b17d7e07" + integrity sha512-Pai+YPHU09FOLBfKqQNRbkNP6UHn6LJEKPvQegCqgHi2hrXlzKsoRW1Yx7u/8s7YWWYaWQ5q4ZA9MeQuyrJ1Jw== -graphql-tag@^2.11.0: +graphql-tag@^2.11.0, graphql-tag@^2.12.6: version "2.12.6" resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.6.tgz#d441a569c1d2537ef10ca3d1633b48725329b5f1" integrity sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg== @@ -7737,9 +6576,9 @@ graphql-type-json@0.3.2: integrity sha512-J+vjof74oMlCWXSvt0DOf2APEdZOCdubEvGDUAlqH//VBYcOYsGgRW7Xzorr44LvkjiuvecWc8fChxuZZbChtg== graphql-ws@^5.4.1: - version "5.5.5" - resolved "https://registry.yarnpkg.com/graphql-ws/-/graphql-ws-5.5.5.tgz#f375486d3f196e2a2527b503644693ae3a8670a9" - integrity sha512-hvyIS71vs4Tu/yUYHPvGXsTgo0t3arU820+lT5VjZS2go0ewp2LqyCgxEN56CzOG7Iys52eRhHBiD1gGRdiQtw== + version "5.14.0" + resolved "https://registry.yarnpkg.com/graphql-ws/-/graphql-ws-5.14.0.tgz#766f249f3974fc2c48fae0d1fb20c2c4c79cd591" + integrity sha512-itrUTQZP/TgswR4GSSYuwWUzrE/w5GhbwM2GX3ic2U7aw33jgEsayfIlvaj7/GcIvZgNMzsPTrE5hqPuFUiE5g== graphql@^15.7.2: version "15.8.0" @@ -7753,25 +6592,15 @@ gzip-size@^6.0.0: dependencies: duplexer "^0.1.2" -has-bigints@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" - integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== - -has-bigints@^1.0.2: +has-bigints@^1.0.1, has-bigints@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== -has-cors@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" - integrity sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk= - has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== has-flag@^4.0.0: version "4.0.0" @@ -7785,12 +6614,12 @@ has-property-descriptors@^1.0.0: dependencies: get-intrinsic "^1.1.1" -has-symbols@^1.0.1, has-symbols@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" - integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== -has-symbols@^1.0.3: +has-symbols@^1.0.2, has-symbols@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== @@ -7854,10 +6683,10 @@ hosted-git-info@^3.0.8: dependencies: lru-cache "^6.0.0" -html-entities@^2.1.0: - version "2.3.2" - resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.3.2.tgz#760b404685cb1d794e4f4b744332e3b00dcfe488" - integrity sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ== +html-entities@^2.1.0, html-entities@^2.3.3: + version "2.4.0" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.4.0.tgz#edd0cee70402584c8c76cc2c0556db09d1f45061" + integrity sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ== htmlparser2@^6.1.0: version "6.1.0" @@ -7870,9 +6699,9 @@ htmlparser2@^6.1.0: entities "^2.0.0" http-cache-semantics@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" - integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== + version "4.1.1" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" + integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== http-errors@1.8.0: version "1.8.0" @@ -7885,17 +6714,6 @@ http-errors@1.8.0: statuses ">= 1.5.0 < 2" toidentifier "1.0.0" -http-errors@1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.8.1.tgz#7c3f28577cbc8a207388455dbd62295ed07bd68c" - integrity sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g== - dependencies: - depd "~1.1.2" - inherits "2.0.4" - setprototypeof "1.2.0" - statuses ">= 1.5.0 < 2" - toidentifier "1.0.1" - http-errors@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" @@ -7942,25 +6760,20 @@ ignore@^4.0.6: resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== -ignore@^5.1.4, ignore@^5.1.8, ignore@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" - integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== - -image-q@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/image-q/-/image-q-1.1.1.tgz#fc84099664460b90ca862d9300b6bfbbbfbf8056" - integrity sha1-/IQJlmRGC5DKhi2TALa/u7+/gFY= +ignore@^5.1.8, ignore@^5.2.0: + version "5.2.4" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" + integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== immer@^9.0.7: - version "9.0.15" - resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.15.tgz#0b9169e5b1d22137aba7d43f8a81a495dd1b62dc" - integrity sha512-2eB/sswms9AEUSkOm4SbV5Y7Vmt/bKRwByd52jfLkW4OLYeaTP3EEiJ9agqU0O/tq6Dk62Zfj+TJSqfm1rLVGQ== + version "9.0.21" + resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.21.tgz#1e025ea31a40f24fb064f1fef23e931496330176" + integrity sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA== immutable@~3.7.6: version "3.7.6" resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b" - integrity sha1-E7TTyxK++hVIKib+Gy665kAHHks= + integrity sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw== import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1: version "3.3.0" @@ -7978,17 +6791,17 @@ import-from@4.0.0, import-from@^4.0.0: import-lazy@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" - integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= + integrity sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A== imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== dependencies: once "^1.3.0" wrappy "1" @@ -8027,12 +6840,12 @@ inquirer@^7.0.0: strip-ansi "^6.0.0" through "^2.3.6" -internal-slot@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" - integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== +internal-slot@^1.0.3, internal-slot@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" + integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== dependencies: - get-intrinsic "^1.1.0" + get-intrinsic "^1.2.0" has "^1.0.3" side-channel "^1.0.4" @@ -8061,16 +6874,32 @@ is-absolute@^1.0.0: is-relative "^1.0.0" is-windows "^1.0.1" +is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" + integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.0" + is-typed-array "^1.1.10" + is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== is-arrayish@^0.3.1: version "0.3.2" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== +is-async-function@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646" + integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== + dependencies: + has-tostringtag "^1.0.0" + is-bigint@^1.0.1: version "1.0.4" resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" @@ -8093,10 +6922,10 @@ is-boolean-object@^1.1.0: call-bind "^1.0.2" has-tostringtag "^1.0.0" -is-callable@^1.1.4, is-callable@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" - integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== is-ci@^2.0.0: version "2.0.0" @@ -8105,21 +6934,14 @@ is-ci@^2.0.0: dependencies: ci-info "^2.0.0" -is-core-module@^2.2.0, is-core-module@^2.8.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.0.tgz#0321336c3d0925e497fd97f5d95cb114a5ccd548" - integrity sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw== - dependencies: - has "^1.0.3" - -is-core-module@^2.8.1, is-core-module@^2.9.0: - version "2.10.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" - integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== +is-core-module@^2.13.0, is-core-module@^2.9.0: + version "2.13.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db" + integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== dependencies: has "^1.0.3" -is-date-object@^1.0.1: +is-date-object@^1.0.1, is-date-object@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== @@ -8134,27 +6956,36 @@ is-docker@^2.0.0, is-docker@^2.1.1, is-docker@^2.2.1: is-extglob@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" - integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA= + integrity sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww== is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-finalizationregistry@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz#c8749b65f17c133313e661b1289b95ad3dbd62e6" + integrity sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw== + dependencies: + call-bind "^1.0.2" is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-function@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08" - integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ== +is-generator-function@^1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" is-glob@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" - integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM= + integrity sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg== dependencies: is-extglob "^1.0.0" @@ -8176,7 +7007,7 @@ is-installed-globally@^0.4.0: is-invalid-path@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/is-invalid-path/-/is-invalid-path-0.1.0.tgz#307a855b3cf1a938b44ea70d2c61106053714f34" - integrity sha1-MHqFWzzxqTi0TqcNLGEQYFNxTzQ= + integrity sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ== dependencies: is-glob "^2.0.0" @@ -8187,7 +7018,12 @@ is-lower-case@^2.0.2: dependencies: tslib "^2.0.3" -is-negative-zero@^2.0.1, is-negative-zero@^2.0.2: +is-map@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" + integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== + +is-negative-zero@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== @@ -8198,9 +7034,9 @@ is-npm@^5.0.0: integrity sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA== is-number-object@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz#6a7aaf838c7f0686a50b4553f7e54a96494e89f0" - integrity sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g== + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== dependencies: has-tostringtag "^1.0.0" @@ -8214,7 +7050,7 @@ is-obj@^2.0.0: resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== -is-path-inside@^3.0.2: +is-path-inside@^3.0.2, is-path-inside@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== @@ -8258,10 +7094,10 @@ is-root@^2.1.0: resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== -is-shared-array-buffer@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz#97b0c85fbdacb59c9c446fe653b82cf2b5b7cfe6" - integrity sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA== +is-set@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" + integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== is-shared-array-buffer@^1.0.2: version "1.0.2" @@ -8270,13 +7106,6 @@ is-shared-array-buffer@^1.0.2: dependencies: call-bind "^1.0.2" -is-ssh@^1.3.0: - version "1.3.3" - resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.3.3.tgz#7f133285ccd7f2c2c7fc897b771b53d95a2b2c7e" - integrity sha512-NKzJmQzJfEEma3w5cJNcUMxoXfDjz0Zj0eyCalHn2E6VOwlzjZo0yuO2fcBSf8zhFuVCL/82/r5gRcoi6aEPVQ== - dependencies: - protocols "^1.1.0" - is-ssh@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.4.0.tgz#4f8220601d2839d8fa624b3106f8e8884f01b8b2" @@ -8287,7 +7116,7 @@ is-ssh@^1.4.0: is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" - integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= + integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ== is-stream@^2.0.0: version "2.0.1" @@ -8308,10 +7137,17 @@ is-symbol@^1.0.2, is-symbol@^1.0.3: dependencies: has-symbols "^1.0.2" +is-typed-array@^1.1.10, is-typed-array@^1.1.9: + version "1.1.12" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a" + integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg== + dependencies: + which-typed-array "^1.1.11" + is-typedarray@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= + integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== is-unc-path@^1.0.0: version "1.0.0" @@ -8327,20 +7163,40 @@ is-upper-case@^2.0.2: dependencies: tslib "^2.0.3" +is-valid-domain@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-valid-domain/-/is-valid-domain-0.1.6.tgz#3c85469d2938f170c8f82ce6e52df8ad9fca8105" + integrity sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg== + dependencies: + punycode "^2.1.1" + is-valid-path@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/is-valid-path/-/is-valid-path-0.1.1.tgz#110f9ff74c37f663e1ec7915eb451f2db93ac9df" - integrity sha1-EQ+f90w39mPh7HkV60UfLbk6yd8= + integrity sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A== dependencies: is-invalid-path "^0.1.0" -is-weakref@^1.0.1, is-weakref@^1.0.2: +is-weakmap@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" + integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== + +is-weakref@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== dependencies: call-bind "^1.0.2" +is-weakset@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" + integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + is-windows@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" @@ -8358,22 +7214,27 @@ is-yarn-global@^0.3.0: resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232" integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== isobject@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== -isomorphic-ws@^4.0.1: +isomorphic-ws@4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== @@ -8383,6 +7244,22 @@ iterall@^1.2.1: resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.3.0.tgz#afcb08492e2915cbd8a0884eb93a8c94d0d72fea" integrity sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg== +iterator.prototype@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.0.tgz#690c88b043d821f783843aaf725d7ac3b62e3b46" + integrity sha512-rjuhAk1AJ1fssphHD0IFV6TWL40CwRZ53FrztKx43yk2v6rguBYsY4Bj1VU4HmoMmKwZUlx7mfnhDf9cOp4YTw== + dependencies: + define-properties "^1.1.4" + get-intrinsic "^1.1.3" + has-symbols "^1.0.3" + has-tostringtag "^1.0.0" + reflect.getprototypeof "^1.0.3" + +javascript-stringify@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/javascript-stringify/-/javascript-stringify-2.1.0.tgz#27c76539be14d8bd128219a2d731b09337904e79" + integrity sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg== + jest-worker@^26.3.0: version "26.6.2" resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" @@ -8392,16 +7269,7 @@ jest-worker@^26.3.0: merge-stream "^2.0.0" supports-color "^7.0.0" -jest-worker@^27.3.1, jest-worker@^27.4.1: - version "27.4.5" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.4.5.tgz#d696e3e46ae0f24cff3fa7195ffba22889262242" - integrity sha512-f2s8kEdy15cv9r7q4KkzGXvlY0JTcmCbMHZBfSQDwW77REr45IDWwd0lksDFeVHH2jJ5pqb90T77XscrjeGzzg== - dependencies: - "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^8.0.0" - -jest-worker@^27.5.1: +jest-worker@^27.4.5, jest-worker@^27.5.1: version "27.5.1" resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== @@ -8410,38 +7278,26 @@ jest-worker@^27.5.1: merge-stream "^2.0.0" supports-color "^8.0.0" -jimp-compact@^0.16.1-2: - version "0.16.1-2" - resolved "https://registry.yarnpkg.com/jimp-compact/-/jimp-compact-0.16.1-2.tgz#a82ff9a5a81f15a4b61b5e2e50fae6a43305e5a9" - integrity sha512-b2A3rRT1TITzqmaO70U2/uunCh43BQVq7BfRwGPkD5xj8/WZsR3sPTy9DENt+dNZGsel3zBEm1UtYegUxjZW7A== - -jimp@^0.16.1: - version "0.16.1" - resolved "https://registry.yarnpkg.com/jimp/-/jimp-0.16.1.tgz#192f851a30e5ca11112a3d0aa53137659a78ca7a" - integrity sha512-+EKVxbR36Td7Hfd23wKGIeEyHbxShZDX6L8uJkgVW3ESA9GiTEPK08tG1XI2r/0w5Ch0HyJF5kPqF9K7EmGjaw== +jest-worker@^28.0.2: + version "28.1.3" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-28.1.3.tgz#7e3c4ce3fa23d1bb6accb169e7f396f98ed4bb98" + integrity sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g== dependencies: - "@babel/runtime" "^7.7.2" - "@jimp/custom" "^0.16.1" - "@jimp/plugins" "^0.16.1" - "@jimp/types" "^0.16.1" - regenerator-runtime "^0.13.3" + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^8.0.0" joi@^17.4.2: - version "17.5.0" - resolved "https://registry.yarnpkg.com/joi/-/joi-17.5.0.tgz#7e66d0004b5045d971cf416a55fb61d33ac6e011" - integrity sha512-R7hR50COp7StzLnDi4ywOXHrBrgNXuUUfJWIR5lPY5Bm/pOD3jZaTwpluUXVLRWcoWZxkrHBBJ5hLxgnlehbdw== + version "17.9.2" + resolved "https://registry.yarnpkg.com/joi/-/joi-17.9.2.tgz#8b2e4724188369f55451aebd1d0b1d9482470690" + integrity sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw== dependencies: "@hapi/hoek" "^9.0.0" "@hapi/topo" "^5.0.0" "@sideway/address" "^4.1.3" - "@sideway/formula" "^3.0.0" + "@sideway/formula" "^3.0.1" "@sideway/pinpoint" "^2.0.0" -jpeg-js@0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.4.2.tgz#8b345b1ae4abde64c2da2fe67ea216a114ac279d" - integrity sha512-+az2gi/hvex7eLTMTlbRLOhH6P6WFdk2ITI8HJsaH2VqYO0I594zXSYEP+tf4FW+8Cy68ScDXoAsQdyQanv3sw== - "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" @@ -8470,12 +7326,12 @@ jsesc@^2.5.1: jsesc@~0.5.0: version "0.5.0" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== json-buffer@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" - integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= + integrity sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ== json-buffer@3.0.1: version "3.0.1" @@ -8487,12 +7343,7 @@ json-loader@^0.5.7: resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" integrity sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w== -json-parse-better-errors@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" - integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== - -json-parse-even-better-errors@^2.3.0: +json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== @@ -8510,38 +7361,24 @@ json-schema-traverse@^1.0.0: json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" - integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== json5@^0.5.0: version "0.5.1" resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" - integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE= + integrity sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw== -json5@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" - integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== +json5@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" + integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== dependencies: minimist "^1.2.0" -json5@^2.1.2: - version "2.2.0" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" - integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== - dependencies: - minimist "^1.2.5" - -json5@^2.2.0, json5@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" - integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== - -jsonfile@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" - integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= - optionalDependencies: - graceful-fs "^4.1.6" +json5@^2.1.2, json5@^2.2.0, json5@^2.2.1, json5@^2.2.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== jsonfile@^6.0.1: version "6.1.0" @@ -8555,17 +7392,19 @@ jsonfile@^6.0.1: jsonp@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/jsonp/-/jsonp-0.2.1.tgz#a65b4fa0f10bda719a05441ea7b94c55f3e15bae" - integrity sha1-pltPoPEL2nGaBUQep7lMVfPhW64= + integrity sha512-pfog5gdDxPdV4eP7Kg87M8/bHgshlZ5pybl+yKxAnCZ5O7lCIn7Ixydj03wOlnDQesky2BPyA91SQ+5Y/mNwzw== dependencies: debug "^2.1.3" -"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz#720b97bfe7d901b927d87c3773637ae8ea48781b" - integrity sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA== +"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3: + version "3.3.5" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz#4766bd05a8e2a11af222becd19e15575e52a853a" + integrity sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== dependencies: - array-includes "^3.1.3" - object.assign "^4.1.2" + array-includes "^3.1.6" + array.prototype.flat "^1.3.1" + object.assign "^4.1.4" + object.values "^1.1.6" keyv@^3.0.0: version "3.1.0" @@ -8575,9 +7414,9 @@ keyv@^3.0.0: json-buffer "3.0.0" keyv@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.0.4.tgz#f040b236ea2b06ed15ed86fbef8407e1a1c8e376" - integrity sha512-vqNHbAc8BBsxk+7QBYLW0Y219rWcClspR6WSeoHYKG5mnsSoOH+BL1pWq02DDCVdvvuUny5rkBlzMRzoqc+GIg== + version "4.5.3" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.3.tgz#00873d2b046df737963157bd04f294ca818c9c25" + integrity sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug== dependencies: json-buffer "3.0.1" @@ -8592,19 +7431,19 @@ kleur@^3.0.3: integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== klona@^2.0.4: - version "2.0.5" - resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.5.tgz#d166574d90076395d9963aa7a928fabb8d76afbc" - integrity sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ== + version "2.0.6" + resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22" + integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA== language-subtag-registry@~0.3.2: - version "0.3.21" - resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a" - integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg== + version "0.3.22" + resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" + integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== -language-tags@^1.0.5: +language-tags@=1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" - integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo= + integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== dependencies: language-subtag-registry "~0.3.2" @@ -8615,6 +7454,13 @@ latest-version@5.1.0, latest-version@^5.1.0: dependencies: package-json "^6.3.0" +"legacy-swc-helpers@npm:@swc/helpers@=0.4.14": + version "0.4.14" + resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.14.tgz#1352ac6d95e3617ccb7c1498ff019654f1e12a74" + integrity sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw== + dependencies: + tslib "^2.4.0" + levn@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" @@ -8624,9 +7470,9 @@ levn@^0.4.1: type-check "~0.4.0" lilconfig@^2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.4.tgz#f4507d043d7058b380b6a8f5cb7bcd4b34cee082" - integrity sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA== + version "2.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== lines-and-columns@^1.1.6: version "1.2.4" @@ -8669,64 +7515,33 @@ lmdb@2.5.3: "@lmdb/lmdb-linux-x64" "2.5.3" "@lmdb/lmdb-win32-x64" "2.5.3" -load-bmfont@^1.3.1, load-bmfont@^1.4.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.4.1.tgz#c0f5f4711a1e2ccff725a7b6078087ccfcddd3e9" - integrity sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA== - dependencies: - buffer-equal "0.0.1" - mime "^1.3.4" - parse-bmfont-ascii "^1.0.3" - parse-bmfont-binary "^1.0.5" - parse-bmfont-xml "^1.1.4" - phin "^2.9.1" - xhr "^2.0.1" - xtend "^4.0.0" - loader-runner@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.2.0.tgz#d7022380d66d14c5fb1d496b89864ebcfd478384" - integrity sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw== + version "4.3.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" + integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== loader-utils@1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" - integrity sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0= + integrity sha512-gkD9aSEG9UGglyPcDJqY9YBTUtCLKaBK6ihD2VP1d1X60lTfFspNZNulGBBbUZLkPygy4LySYHyxBpq+VhjObQ== dependencies: big.js "^3.1.3" emojis-list "^2.0.0" json5 "^0.5.0" -loader-utils@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" - integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^1.0.1" - -loader-utils@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.2.tgz#d6e3b4fb81870721ae4e0868ab11dd638368c129" - integrity sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A== +loader-utils@^2.0.0, loader-utils@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" + integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== dependencies: big.js "^5.2.2" emojis-list "^3.0.0" json5 "^2.1.2" loader-utils@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.2.0.tgz#bcecc51a7898bee7473d4bc6b845b23af8304d4f" - integrity sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ== - -locate-path@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" - integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= - dependencies: - p-locate "^2.0.0" - path-exists "^3.0.0" + version "3.2.1" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.2.1.tgz#4fb104b599daafd82ef3e1a41fb9265f87e1f576" + integrity sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw== locate-path@^3.0.0: version "3.0.0" @@ -8753,52 +7568,52 @@ locate-path@^6.0.0: lock@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/lock/-/lock-1.1.0.tgz#53157499d1653b136ca66451071fca615703fa55" - integrity sha1-UxV0mdFlOxNspmRRBx/KYVcD+lU= + integrity sha512-NZQIJJL5Rb9lMJ0Yl1JoVr9GSdo4HTPsUEWsSFzB8dE8DSoiLCVavWZPi7Rnlv/o73u6I24S/XYc/NmG4l8EKA== lodash.clonedeep@4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" - integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= + integrity sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ== lodash.debounce@4.0.8, lodash.debounce@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== lodash.deburr@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/lodash.deburr/-/lodash.deburr-4.1.0.tgz#ddb1bbb3ef07458c0177ba07de14422cb033ff9b" - integrity sha1-3bG7s+8HRYwBd7oH3hRCLLAz/5s= + integrity sha512-m/M1U1f3ddMCs6Hq2tAsYThTBDaAKFDX3dwDo97GEYzamXi9SqUpjWi/Rrj/gf3X2n8ktwgZrlP1z6E3v/IExQ== lodash.every@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.every/-/lodash.every-4.6.0.tgz#eb89984bebc4364279bb3aefbbd1ca19bfa6c6a7" - integrity sha1-64mYS+vENkJ5uzrvu9HKGb+mxqc= + integrity sha512-isF82d+65/sNvQ3aaQAW7LLHnnTxSN/2fm4rhYyuufLzA4VtHz6y6S5vFwe6PQVr2xdqUOyxBbTNKDpnmeu50w== lodash.flattendeep@^4.4.0: version "4.4.0" resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" - integrity sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI= + integrity sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ== lodash.foreach@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" - integrity sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM= + integrity sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ== lodash.map@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" - integrity sha1-dx7Hg540c9nEzeKLGTlMNWL09tM= + integrity sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q== lodash.maxby@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.maxby/-/lodash.maxby-4.6.0.tgz#082240068f3c7a227aa00a8380e4f38cf0786e3d" - integrity sha1-CCJABo88eiJ6oAqDgOTzjPB4bj0= + integrity sha512-QfTqQTwzmKxLy7VZlbx2M/ipWv8DCQ2F5BI/MRxLharOQ5V78yMSuB+JE+EuUM22txYfj09R2Q7hUlEYj7KdNg== lodash.memoize@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= + integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== lodash.merge@^4.6.2: version "4.6.2" @@ -8808,14 +7623,14 @@ lodash.merge@^4.6.2: lodash.truncate@^4.4.2: version "4.4.2" resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" - integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM= + integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== lodash.uniq@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" - integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= + integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== -lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@~4.17.0: +lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@~4.17.0: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== @@ -8854,7 +7669,7 @@ lowercase-keys@^2.0.0: lru-cache@4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.0.tgz#b5cbf01556c16966febe54ceec0fb4dc90df6c28" - integrity sha1-tcvwFVbBaWb+vlTO7A+03JDfbCg= + integrity sha512-WKhDkjlLwzE8jAQdQlsxLUQTPXLCKX/4cJk6s5AlRtJkDBk0IKH5O51bVDH61K9N4bhbbyvLM6EiOuE8ovApPA== dependencies: pseudomap "^1.0.1" yallist "^2.0.0" @@ -8867,6 +7682,13 @@ lru-cache@^4.0.0: pseudomap "^1.0.2" yallist "^2.1.2" +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + lru-cache@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" @@ -8877,7 +7699,7 @@ lru-cache@^6.0.0: lru-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3" - integrity sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM= + integrity sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ== dependencies: es5-ext "~0.10.2" @@ -8898,7 +7720,7 @@ map-age-cleaner@^0.1.3: map-cache@^0.2.0: version "0.2.2" resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" - integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= + integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg== md5-file@^5.0.0: version "5.0.0" @@ -8910,11 +7732,6 @@ mdn-data@2.0.14: resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== -mdn-data@2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" - integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== - meant@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/meant/-/meant-1.0.3.tgz#67769af9de1d158773e928ae82c456114903554c" @@ -8923,7 +7740,7 @@ meant@^1.0.3: media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= + integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== mem@^8.1.1: version "8.1.1" @@ -8933,19 +7750,12 @@ mem@^8.1.1: map-age-cleaner "^0.1.3" mimic-fn "^3.1.0" -memfs@^3.1.2: - version "3.4.7" - resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.4.7.tgz#e5252ad2242a724f938cb937e3c4f7ceb1f70e5a" - integrity sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw== - dependencies: - fs-monkey "^1.0.3" - -memfs@^3.2.2: - version "3.4.0" - resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.4.0.tgz#8bc12062b973be6b295d4340595736a656f0a257" - integrity sha512-o/RfP0J1d03YwsAxyHxAYs2kyJp55AFkMazlFAZFR2I2IXkxiUTXRabJ6RmNNCQ83LAD2jy52Khj0m3OffpNdA== +memfs@^3.1.2, memfs@^3.2.2: + version "3.6.0" + resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.6.0.tgz#d7a2110f86f79dd950a8b6df6d57bc984aa185f6" + integrity sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ== dependencies: - fs-monkey "1.0.3" + fs-monkey "^1.0.4" memoizee@^0.4.15: version "0.4.15" @@ -8964,7 +7774,7 @@ memoizee@^0.4.15: merge-descriptors@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= + integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== merge-stream@^2.0.0: version "2.0.0" @@ -8976,7 +7786,7 @@ merge2@^1.3.0, merge2@^1.4.1: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== -meros@^1.1.4: +meros@1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/meros/-/meros-1.1.4.tgz#c17994d3133db8b23807f62bec7f0cb276cfd948" integrity sha512-E9ZXfK9iQfG9s73ars9qvvvbSIkJZF5yOo9j4tcwM5tN8mUKfj/EKN5PzOr3ZH0y5wL7dLAHw3RVEfpQV9Q7VQ== @@ -8984,17 +7794,9 @@ meros@^1.1.4: methods@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= - -micromatch@^4.0.4: - version "4.0.4" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" - integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== - dependencies: - braces "^3.0.1" - picomatch "^2.2.3" + integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== -micromatch@^4.0.5: +micromatch@^4.0.4, micromatch@^4.0.5: version "4.0.5" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== @@ -9002,19 +7804,19 @@ micromatch@^4.0.5: braces "^3.0.2" picomatch "^2.3.1" -mime-db@1.51.0, "mime-db@>= 1.43.0 < 2": - version "1.51.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.51.0.tgz#d9ff62451859b18342d960850dc3cfb77e63fb0c" - integrity sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g== +mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== -mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.30, mime-types@~2.1.24: - version "2.1.34" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.34.tgz#5a712f9ec1503511a945803640fafe09d3793c24" - integrity sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A== +mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.30, mime-types@~2.1.24, mime-types@~2.1.34: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: - mime-db "1.51.0" + mime-db "1.52.0" -mime@1.6.0, mime@^1.3.4: +mime@1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== @@ -9049,13 +7851,6 @@ mimic-response@^3.1.0: resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== -min-document@^2.19.0: - version "2.19.0" - resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" - integrity sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU= - dependencies: - dom-walk "^0.1.0" - mini-css-extract-plugin@1.6.2: version "1.6.2" resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz#83172b4fd812f8fc4a09d6f6d16f924f53990ca8" @@ -9065,34 +7860,17 @@ mini-css-extract-plugin@1.6.2: schema-utils "^3.0.0" webpack-sources "^1.1.0" -mini-svg-data-uri@^1.4.4: - version "1.4.4" - resolved "https://registry.yarnpkg.com/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz#8ab0aabcdf8c29ad5693ca595af19dd2ead09939" - integrity sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg== - -minimatch@3.0.4, minimatch@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== - dependencies: - brace-expansion "^1.1.7" - -minimatch@^3.1.1, minimatch@^3.1.2: +minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" -minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" - integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== - -minimist@^1.2.6: - version "1.2.6" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" - integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== +minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== mitt@^1.2.0: version "1.2.0" @@ -9104,22 +7882,22 @@ mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== -mkdirp@^0.5.1, mkdirp@^0.5.4, mkdirp@~0.5.1: - version "0.5.5" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" - integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== +mkdirp@^0.5.1, mkdirp@^0.5.4: + version "0.5.6" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== dependencies: - minimist "^1.2.5" + minimist "^1.2.6" moment@^2.29.1: - version "2.29.1" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3" - integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ== + version "2.29.4" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108" + integrity sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w== ms@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== ms@2.1.2: version "2.1.2" @@ -9131,26 +7909,26 @@ ms@2.1.3, ms@^2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== -msgpackr-extract@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/msgpackr-extract/-/msgpackr-extract-2.0.2.tgz#201a8d7ade47e99b3ba277c45736b00e195d4670" - integrity sha512-coskCeJG2KDny23zWeu+6tNy7BLnAiOGgiwzlgdm4oeSsTpqEJJPguHIuKZcCdB7tzhZbXNYSg6jZAXkZErkJA== +msgpackr-extract@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/msgpackr-extract/-/msgpackr-extract-3.0.2.tgz#e05ec1bb4453ddf020551bcd5daaf0092a2c279d" + integrity sha512-SdzXp4kD/Qf8agZ9+iTu6eql0m3kWm1A2y1hkpTeVNENutaB0BwHlSvAIaMxwntmRUAUjon2V4L8Z/njd0Ct8A== dependencies: - node-gyp-build-optional-packages "5.0.2" + node-gyp-build-optional-packages "5.0.7" optionalDependencies: - "@msgpackr-extract/msgpackr-extract-darwin-arm64" "2.0.2" - "@msgpackr-extract/msgpackr-extract-darwin-x64" "2.0.2" - "@msgpackr-extract/msgpackr-extract-linux-arm" "2.0.2" - "@msgpackr-extract/msgpackr-extract-linux-arm64" "2.0.2" - "@msgpackr-extract/msgpackr-extract-linux-x64" "2.0.2" - "@msgpackr-extract/msgpackr-extract-win32-x64" "2.0.2" + "@msgpackr-extract/msgpackr-extract-darwin-arm64" "3.0.2" + "@msgpackr-extract/msgpackr-extract-darwin-x64" "3.0.2" + "@msgpackr-extract/msgpackr-extract-linux-arm" "3.0.2" + "@msgpackr-extract/msgpackr-extract-linux-arm64" "3.0.2" + "@msgpackr-extract/msgpackr-extract-linux-x64" "3.0.2" + "@msgpackr-extract/msgpackr-extract-win32-x64" "3.0.2" msgpackr@^1.5.4: - version "1.6.1" - resolved "https://registry.yarnpkg.com/msgpackr/-/msgpackr-1.6.1.tgz#4f3c94d6a5b819b838ffc736eddaf60eba436d20" - integrity sha512-Je+xBEfdjtvA4bKaOv8iRhjC8qX2oJwpYH4f7JrG4uMVJVmnmkAT4pjKdbztKprGj3iwjcxPzb5umVZ02Qq3tA== + version "1.9.7" + resolved "https://registry.yarnpkg.com/msgpackr/-/msgpackr-1.9.7.tgz#8f13c06d7a22946a6d8351804ce39a6a9e74ca83" + integrity sha512-baUNaLvKQvVhzfWTNO07njwbZK1Lxjtb0P1JL6/EhXdLTHzR57/mZqqJC39TtQKvOmkJA4pcejS4dbk7BDgLLA== optionalDependencies: - msgpackr-extract "^2.0.2" + msgpackr-extract "^3.0.2" multer@^1.4.5-lts.1: version "1.4.5-lts.1" @@ -9170,20 +7948,25 @@ mute-stream@0.0.8, mute-stream@~0.0.4: resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== -nanoid@^3.1.30: - version "3.1.30" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.30.tgz#63f93cc548d2a113dc5dfbc63bfa09e2b9b64362" - integrity sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ== +nanoid@^3.3.6: + version "3.3.6" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" + integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== napi-build-utils@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== +natural-compare-lite@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4" + integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== + natural-compare@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== needle@^2.5.2: version "2.9.1" @@ -9194,12 +7977,12 @@ needle@^2.5.2: iconv-lite "^0.4.4" sax "^1.2.4" -negotiator@0.6.2, negotiator@~0.6.2: - version "0.6.2" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" - integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== +negotiator@0.6.3, negotiator@~0.6.2: + version "0.6.3" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== -neo-async@^2.6.2: +neo-async@^2.6.1, neo-async@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== @@ -9209,11 +7992,6 @@ next-tick@1, next-tick@^1.1.0: resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb" integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ== -next-tick@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" - integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= - nice-try@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" @@ -9228,70 +8006,53 @@ no-case@^3.0.4: tslib "^2.0.3" node-abi@^3.3.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.5.0.tgz#26e8b7b251c3260a5ac5ba5aef3b4345a0229248" - integrity sha512-LtHvNIBgOy5mO8mPEUtkCW/YCRWYEKshIvqhe1GHHyXEHEB5mgICyYnAcl4qan3uFeRROErKGzatFHPf6kDxWw== + version "3.47.0" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.47.0.tgz#6cbfa2916805ae25c2b7156ca640131632eb05e8" + integrity sha512-2s6B2CWZM//kPgwnuI0KrYwNjfdByE25zvAaEpq9IH4zcNsarH8Ihu/UuX6XMPEogDAxkuUFeZn60pXNHAqn3A== dependencies: semver "^7.3.5" -node-addon-api@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz#81325e0a2117789c0128dab65e7e38f07ceba161" - integrity sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A== - node-addon-api@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-4.3.0.tgz#52a1a0b475193e0928e98e0426a0d1254782b77f" integrity sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ== node-addon-api@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-5.0.0.tgz#7d7e6f9ef89043befdb20c1989c905ebde18c501" - integrity sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA== + version "5.1.0" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-5.1.0.tgz#49da1ca055e109a23d537e9de43c09cca21eb762" + integrity sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA== -node-domexception@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" - integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== +node-addon-api@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.0.0.tgz#8136add2f510997b3b94814f4af1cce0b0e3962e" + integrity sha512-vgbBJTS4m5/KkE16t5Ly0WW9hz46swAstv0hYYwMtbG7AznRhNyfLRe8HZAiWIpcHzoO7HxhLuBQj9rJ/Ho0ZA== node-fetch@2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== -node-fetch@2.6.7, node-fetch@^2.6.7: - version "2.6.7" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" - integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== - dependencies: - whatwg-url "^5.0.0" - -node-fetch@^2.6.0, node-fetch@^2.6.1, node-fetch@^2.6.6: - version "2.6.6" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.6.tgz#1751a7c01834e8e1697758732e9efb6eeadfaf89" - integrity sha512-Z8/6vRlTUChSdIgMa51jxQ4lrw/Jy5SOW10ObaA47/RElsAN2c5Pn8bTgFGWn/ibwzXTE8qwr1Yzx28vsecXEA== +node-fetch@^2.6.0, node-fetch@^2.6.1, node-fetch@^2.6.12, node-fetch@^2.6.6, node-fetch@^2.6.7: + version "2.6.13" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.13.tgz#a20acbbec73c2e09f9007de5cda17104122e0010" + integrity sha512-StxNAxh15zr77QvvkmveSQ8uCQ4+v5FkvNTj0OESmiHu+VRi/gXArXtkWMElOsOUNLtUEvI4yS+rdtOHZTwlQA== dependencies: whatwg-url "^5.0.0" -node-gyp-build-optional-packages@5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.2.tgz#3de7d30bd1f9057b5dfbaeab4a4442b7fe9c5901" - integrity sha512-PiN4NWmlQPqvbEFcH/omQsswWQbe5Z9YK/zdB23irp5j2XibaA2IrGvpSWmVVG4qMZdmPdwPctSy4a86rOMn6g== - node-gyp-build-optional-packages@5.0.3: version "5.0.3" resolved "https://registry.yarnpkg.com/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz#92a89d400352c44ad3975010368072b41ad66c17" integrity sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA== -node-gyp-build@^4.3.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40" - integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg== +node-gyp-build-optional-packages@5.0.7: + version "5.0.7" + resolved "https://registry.yarnpkg.com/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.7.tgz#5d2632bbde0ab2f6e22f1bbac2199b07244ae0b3" + integrity sha512-YlCCc6Wffkx0kHkmam79GKvDQ6x+QZkMjFGrIMxgFNILFvGSbCp2fCBC55pGTT9gVaz8Na5CLmxt/urtzRv36w== node-html-parser@^5.3.3: - version "5.3.3" - resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-5.3.3.tgz#2845704f3a7331a610e0e551bf5fa02b266341b6" - integrity sha512-ncg1033CaX9UexbyA7e1N0aAoAYRDiV8jkTvzEnfd1GDvzFdrsXLzR4p4ik8mwLgnaKP/jyUFWDy9q3jvRT2Jw== + version "5.4.2" + resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-5.4.2.tgz#93e004038c17af80226c942336990a0eaed8136a" + integrity sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw== dependencies: css-select "^4.2.1" he "1.2.0" @@ -9299,27 +8060,22 @@ node-html-parser@^5.3.3: node-int64@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" - integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= + integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== -node-object-hash@^2.3.10, node-object-hash@^2.3.9: +node-object-hash@^2.3.10: version "2.3.10" resolved "https://registry.yarnpkg.com/node-object-hash/-/node-object-hash-2.3.10.tgz#4b0c1a3a8239e955f0db71f8e00b38b5c0b33992" integrity sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA== -node-releases@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.1.tgz#3d1d395f204f1f2f29a54358b9fb678765ad2fc5" - integrity sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA== - -node-releases@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" - integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== +node-releases@^2.0.13: + version "2.0.13" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" + integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== normalize-path@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" - integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= + integrity sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w== dependencies: remove-trailing-separator "^1.0.1" @@ -9331,14 +8087,14 @@ normalize-path@^3.0.0, normalize-path@~3.0.0: normalize-range@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" - integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== normalize-url@^4.1.0: version "4.5.1" resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA== -normalize-url@^6.0.1, normalize-url@^6.1.0: +normalize-url@^6.0.1: version "6.1.0" resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== @@ -9346,7 +8102,7 @@ normalize-url@^6.0.1, normalize-url@^6.1.0: npm-run-path@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" - integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= + integrity sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw== dependencies: path-key "^2.0.0" @@ -9357,17 +8113,10 @@ npm-run-path@^4.0.1: dependencies: path-key "^3.0.0" -nth-check@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" - integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== - dependencies: - boolbase "~1.0.0" - nth-check@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.1.tgz#2efe162f5c3da06a28959fbd3db75dbeea9f0fc2" - integrity sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w== + version "2.1.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== dependencies: boolbase "^1.0.0" @@ -9387,104 +8136,82 @@ nullthrows@^1.1.1: object-assign@^4, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== -object-hash@^2.0.3: - version "2.2.0" - resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.2.0.tgz#5ad518581eefc443bd763472b8ff2e9c2c0d54a5" - integrity sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw== - -object-inspect@^1.11.0, object-inspect@^1.9.0: - version "1.12.0" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0" - integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g== +object-inspect@^1.12.3, object-inspect@^1.9.0: + version "1.12.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== -object-inspect@^1.12.0: - version "1.12.2" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" - integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== - -object-keys@^1.0.12, object-keys@^1.1.1: +object-keys@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== -object.assign@^4.1.0, object.assign@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" - integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== +object.assign@^4.1.0, object.assign@^4.1.2, object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== dependencies: - call-bind "^1.0.0" - define-properties "^1.1.3" - has-symbols "^1.0.1" + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" object-keys "^1.1.1" -object.entries@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" - integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== +object.entries@^1.1.5, object.entries@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23" + integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" + define-properties "^1.1.4" + es-abstract "^1.20.4" -object.fromentries@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" - integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== +object.fromentries@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73" + integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" + define-properties "^1.1.4" + es-abstract "^1.20.4" -object.getownpropertydescriptors@^2.1.0: - version "2.1.3" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz#b223cf38e17fefb97a63c10c91df72ccb386df9e" - integrity sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw== +object.groupby@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.0.tgz#cb29259cf90f37e7bac6437686c1ea8c916d12a9" + integrity sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" - -object.hasown@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.0.tgz#7232ed266f34d197d15cac5880232f7a4790afe5" - integrity sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.19.1" + define-properties "^1.2.0" + es-abstract "^1.21.2" + get-intrinsic "^1.2.1" -object.hasown@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.1.tgz#ad1eecc60d03f49460600430d97f23882cf592a3" - integrity sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A== +object.hasown@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92" + integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== dependencies: define-properties "^1.1.4" - es-abstract "^1.19.5" + es-abstract "^1.20.4" -object.values@^1.1.0, object.values@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" - integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== +object.values@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" + integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" + define-properties "^1.1.4" + es-abstract "^1.20.4" objectFitPolyfill@^2.3.5: version "2.3.5" resolved "https://registry.yarnpkg.com/objectFitPolyfill/-/objectFitPolyfill-2.3.5.tgz#be8c83064aabfa4e88780f776c2013c48ce1f745" integrity sha512-8Quz071ZmGi0QWEG4xB3Bv5Lpw6K0Uca87FLoLMKMWjB6qIq9IyBegP3b/VLNxv2WYvIMGoeUQ+c6ibUkNa8TA== -omggif@^1.0.10, omggif@^1.0.9: - version "1.0.10" - resolved "https://registry.yarnpkg.com/omggif/-/omggif-1.0.10.tgz#ddaaf90d4a42f532e9e7cb3a95ecdd47f17c7b19" - integrity sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw== - -on-finished@~2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" - integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= +on-finished@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== dependencies: ee-first "1.1.1" @@ -9496,7 +8223,7 @@ on-headers@~1.0.2: once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" @@ -9516,40 +8243,40 @@ open@^7.0.3: is-wsl "^2.1.1" open@^8.4.0: - version "8.4.0" - resolved "https://registry.yarnpkg.com/open/-/open-8.4.0.tgz#345321ae18f8138f82565a910fdc6b39e8c244f8" - integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q== + version "8.4.2" + resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" + integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== dependencies: define-lazy-prop "^2.0.0" is-docker "^2.1.1" is-wsl "^2.2.0" opentracing@^0.14.5: - version "0.14.5" - resolved "https://registry.yarnpkg.com/opentracing/-/opentracing-0.14.5.tgz#891fa92cd90a24e64f99bc964370227310926c85" - integrity sha512-XLKtEfHxqrWyF1fzxznsv78w3csW41ucHnjiKnfzZLD5FN8UBDZZL1i4q0FR29zjxXhm+2Hop+5Vr/b8tKIvEg== + version "0.14.7" + resolved "https://registry.yarnpkg.com/opentracing/-/opentracing-0.14.7.tgz#25d472bd0296dc0b64d7b94cbc995219031428f5" + integrity sha512-vz9iS7MJ5+Bp1URw8Khvdyw1H/hGvzHWlKQ7eRrQojSCDL1/SrWfrY9QebLw97n2deyRtzHRC3MkQfVNUCo91Q== -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== +optionator@^0.9.1, optionator@^0.9.3: + version "0.9.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" + integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== dependencies: + "@aashutoshrathi/word-wrap" "^1.2.3" deep-is "^0.1.3" fast-levenshtein "^2.0.6" levn "^0.4.1" prelude-ls "^1.2.1" type-check "^0.4.0" - word-wrap "^1.2.3" ordered-binary@^1.2.4: - version "1.3.0" - resolved "https://registry.yarnpkg.com/ordered-binary/-/ordered-binary-1.3.0.tgz#a116d64c923278216e335602d279750b2ebd746e" - integrity sha512-knIeYepTI6BDAzGxqFEDGtI/iGqs57H32CInAIxEvAHG46vk1Di0CEpyc1A7iY39B1mfik3g3KLYwOTNnnMHLA== + version "1.4.1" + resolved "https://registry.yarnpkg.com/ordered-binary/-/ordered-binary-1.4.1.tgz#205cb6efd6c27fa0ef4eced994a023e081cdc911" + integrity sha512-9LtiGlPy982CsgxZvJGNNp2/NnrgEr6EAyN3iIEP3/8vd3YLgAZQHbQ75ZrkfBRGrNg37Dk3U6tuVb+B4Xfslg== os-tmpdir@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== overlayscrollbars-react@^0.2.3: version "0.2.3" @@ -9557,9 +8284,9 @@ overlayscrollbars-react@^0.2.3: integrity sha512-eN/JsEtJvPulOXOZXIdo1H90eriUWcgj4TwSdOcchk2M4uY2/BpsHlZ2+0viZMLXTcNQNJz+/4m47NugSBg+0g== overlayscrollbars@^1.13.1: - version "1.13.1" - resolved "https://registry.yarnpkg.com/overlayscrollbars/-/overlayscrollbars-1.13.1.tgz#0b840a88737f43a946b9d87875a2f9e421d0338a" - integrity sha512-gIQfzgGgu1wy80EB4/6DaJGHMEGmizq27xHIESrzXq0Y/J0Ay1P3DWk6tuVmEPIZH15zaBlxeEJOqdJKmowHCQ== + version "1.13.3" + resolved "https://registry.yarnpkg.com/overlayscrollbars/-/overlayscrollbars-1.13.3.tgz#992c96fd2c8535802d1e56c40bc12ec03076c626" + integrity sha512-1nB/B5kaakJuHXaLXLRK0bUIilWhUGT6q5g+l2s5vqYdLle/sd0kscBHkQC1kuuDg9p9WR4MTdySDOPbeL/86g== p-cancelable@^1.0.0: version "1.1.0" @@ -9574,7 +8301,7 @@ p-cancelable@^2.0.0: p-defer@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" - integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= + integrity sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw== p-defer@^3.0.0: version "3.0.0" @@ -9584,7 +8311,7 @@ p-defer@^3.0.0: p-finally@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" - integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= + integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== p-limit@3.1.0, p-limit@^3.0.2: version "3.1.0" @@ -9593,13 +8320,6 @@ p-limit@3.1.0, p-limit@^3.0.2: dependencies: yocto-queue "^0.1.0" -p-limit@^1.1.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" - integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== - dependencies: - p-try "^1.0.0" - p-limit@^2.0.0, p-limit@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" @@ -9607,13 +8327,6 @@ p-limit@^2.0.0, p-limit@^2.2.0: dependencies: p-try "^2.0.0" -p-locate@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" - integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= - dependencies: - p-limit "^1.1.0" - p-locate@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" @@ -9650,11 +8363,6 @@ p-timeout@^3.2.0: dependencies: p-finally "^1.0.0" -p-try@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" - integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= - p-try@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" @@ -9670,11 +8378,6 @@ package-json@^6.3.0: registry-url "^5.0.0" semver "^6.2.0" -pako@^1.0.5: - version "1.0.11" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" - integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== - param-case@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" @@ -9690,38 +8393,15 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" -parse-bmfont-ascii@^1.0.3: - version "1.0.6" - resolved "https://registry.yarnpkg.com/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz#11ac3c3ff58f7c2020ab22769079108d4dfa0285" - integrity sha1-Eaw8P/WPfCAgqyJ2kHkQjU36AoU= - -parse-bmfont-binary@^1.0.5: - version "1.0.6" - resolved "https://registry.yarnpkg.com/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz#d038b476d3e9dd9db1e11a0b0e53a22792b69006" - integrity sha1-0Di0dtPp3Z2x4RoLDlOiJ5K2kAY= - -parse-bmfont-xml@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz#015319797e3e12f9e739c4d513872cd2fa35f389" - integrity sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ== - dependencies: - xml-parse-from-string "^1.0.0" - xml2js "^0.4.5" - parse-filepath@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" - integrity sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE= + integrity sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q== dependencies: is-absolute "^1.0.0" map-cache "^0.2.0" path-root "^0.1.1" -parse-headers@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/parse-headers/-/parse-headers-2.0.4.tgz#9eaf2d02bed2d1eff494331ce3df36d7924760bf" - integrity sha512-psZ9iZoCNFLrgRjZ1d8mn0h9WRqJwFxM9q3x7iUjN/YT2OksthDJ5TiPCu2F38kS4zutqfW+YdVVkBZZx3/1aw== - parse-json@^5.0.0: version "5.2.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" @@ -9732,52 +8412,19 @@ parse-json@^5.0.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" -parse-path@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-4.0.3.tgz#82d81ec3e071dcc4ab49aa9f2c9c0b8966bb22bf" - integrity sha512-9Cepbp2asKnWTJ9x2kpw6Fe8y9JDbqwahGCTvklzd/cEq5C5JC59x2Xb0Kx+x0QZ8bvNquGO8/BWP0cwBHzSAA== - dependencies: - is-ssh "^1.3.0" - protocols "^1.4.0" - qs "^6.9.4" - query-string "^6.13.8" - -parse-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-5.0.0.tgz#f933152f3c6d34f4cf36cfc3d07b138ac113649d" - integrity sha512-qOpH55/+ZJ4jUu/oLO+ifUKjFPNZGfnPJtzvGzKN/4oLMil5m9OH4VpOj6++9/ytJcfks4kzH2hhi87GL/OU9A== +parse-path@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-7.0.0.tgz#605a2d58d0a749c8594405d8cc3a2bf76d16099b" + integrity sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog== dependencies: protocols "^2.0.0" -parse-url@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-6.0.0.tgz#f5dd262a7de9ec00914939220410b66cff09107d" - integrity sha512-cYyojeX7yIIwuJzledIHeLUBVJ6COVLeT4eF+2P6aKVzwvgKQPndCBv3+yQ7pcWjqToYwaligxzSYNNmGoMAvw== - dependencies: - is-ssh "^1.3.0" - normalize-url "^6.1.0" - parse-path "^4.0.0" - protocols "^1.4.0" - -parse-url@^7.0.2: - version "7.0.2" - resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-7.0.2.tgz#d21232417199b8d371c6aec0cedf1406fd6393f0" - integrity sha512-PqO4Z0eCiQ08Wj6QQmrmp5YTTxpYfONdOEamrtvK63AmzXpcavIVQubGHxOEwiIoDZFb8uDOoQFS0NCcjqIYQg== +parse-url@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-8.1.0.tgz#972e0827ed4b57fc85f0ea6b0d839f0d8a57a57d" + integrity sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w== dependencies: - is-ssh "^1.4.0" - normalize-url "^6.1.0" - parse-path "^5.0.0" - protocols "^2.0.1" - -parseqs@0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.6.tgz#8e4bb5a19d1cdc844a08ac974d34e273afa670d5" - integrity sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w== - -parseuri@0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.6.tgz#e1496e829e3ac2ff47f39a4dd044b32823c4a25a" - integrity sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow== + parse-path "^7.0.0" parseurl@^1.3.3, parseurl@~1.3.3: version "1.3.3" @@ -9793,12 +8440,12 @@ pascal-case@^3.1.2: tslib "^2.0.3" password-prompt@^1.0.4: - version "1.1.2" - resolved "https://registry.yarnpkg.com/password-prompt/-/password-prompt-1.1.2.tgz#85b2f93896c5bd9e9f2d6ff0627fa5af3dc00923" - integrity sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA== + version "1.1.3" + resolved "https://registry.yarnpkg.com/password-prompt/-/password-prompt-1.1.3.tgz#05e539f4e7ca4d6c865d479313f10eb9db63ee5f" + integrity sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw== dependencies: - ansi-escapes "^3.1.0" - cross-spawn "^6.0.5" + ansi-escapes "^4.3.2" + cross-spawn "^7.0.3" path-case@^3.0.4: version "3.0.4" @@ -9811,7 +8458,7 @@ path-case@^3.0.4: path-exists@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= + integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== path-exists@^4.0.0: version "4.0.0" @@ -9821,19 +8468,19 @@ path-exists@^4.0.0: path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== path-key@^2.0.0, path-key@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-parse@^1.0.6, path-parse@^1.0.7: +path-parse@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== @@ -9841,69 +8488,45 @@ path-parse@^1.0.6, path-parse@^1.0.7: path-root-regex@^0.1.0: version "0.1.2" resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" - integrity sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0= + integrity sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ== path-root@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" - integrity sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc= + integrity sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg== dependencies: path-root-regex "^0.1.0" path-to-regexp@0.1.7: version "0.1.7" resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= + integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== path-type@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== -peek-readable@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/peek-readable/-/peek-readable-4.0.2.tgz#a5cb847e347d3eccdc37642c82d2b4155c1ab8af" - integrity sha512-9fMaz6zoxw9ypO1KZy5RDJgSupEtu0Q+g/OqqsVHX3rKGR8qehRLYzsFARZ4bVvdvfknKiXvuDbkMnO1g6cRpQ== - -phin@^2.9.1: - version "2.9.3" - resolved "https://registry.yarnpkg.com/phin/-/phin-2.9.3.tgz#f9b6ac10a035636fb65dfc576aaaa17b8743125c" - integrity sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA== +peek-readable@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/peek-readable/-/peek-readable-4.1.0.tgz#4ece1111bf5c2ad8867c314c81356847e8a62e72" + integrity sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg== physical-cpu-count@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/physical-cpu-count/-/physical-cpu-count-2.0.0.tgz#18de2f97e4bf7a9551ad7511942b5496f7aba660" - integrity sha1-GN4vl+S/epVRrXURlCtUlverpmA= + integrity sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g== picocolors@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3: - version "2.3.0" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" - integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== - -picomatch@^2.3.1: +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== -pixelmatch@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/pixelmatch/-/pixelmatch-4.0.2.tgz#8f47dcec5011b477b67db03c243bc1f3085e8854" - integrity sha1-j0fc7FARtHe2fbA8JDvB8wheiFQ= - dependencies: - pngjs "^3.0.0" - -pkg-dir@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" - integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= - dependencies: - find-up "^2.1.0" - pkg-dir@^4.1.0: version "4.2.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" @@ -9923,17 +8546,12 @@ platform@^1.3.6: resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.6.tgz#48b4ce983164b209c2d45a107adb31f473a6e7a7" integrity sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg== -pngjs@^3.0.0, pngjs@^3.3.3: - version "3.4.0" - resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-3.4.0.tgz#99ca7d725965fb655814eaf65f38f12bbdbf555f" - integrity sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w== - polished@^4.1.3: - version "4.1.3" - resolved "https://registry.yarnpkg.com/polished/-/polished-4.1.3.tgz#7a3abf2972364e7d97770b827eec9a9e64002cfc" - integrity sha512-ocPAcVBUOryJEKe0z2KLd1l9EBa1r5mSwlKpExmrLzsnIzJo4axsoU9O2BjOTkDGDT4mZ0WFE5XKTlR3nLnZOA== + version "4.2.2" + resolved "https://registry.yarnpkg.com/polished/-/polished-4.2.2.tgz#2529bb7c3198945373c52e34618c8fe7b1aa84d1" + integrity sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ== dependencies: - "@babel/runtime" "^7.14.0" + "@babel/runtime" "^7.17.8" popmotion@11.0.3: version "11.0.3" @@ -9945,50 +8563,51 @@ popmotion@11.0.3: style-value-types "5.0.0" tslib "^2.1.0" -postcss-calc@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.0.0.tgz#a05b87aacd132740a5db09462a3612453e5df90a" - integrity sha512-5NglwDrcbiy8XXfPM11F3HeC6hoT9W7GUH/Zi5U/p7u3Irv4rHhdDcIZwG0llHXV4ftsBjpfWMXAnXNl4lnt8g== +postcss-calc@^8.2.3: + version "8.2.4" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.2.4.tgz#77b9c29bfcbe8a07ff6693dc87050828889739a5" + integrity sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q== dependencies: - postcss-selector-parser "^6.0.2" - postcss-value-parser "^4.0.2" + postcss-selector-parser "^6.0.9" + postcss-value-parser "^4.2.0" -postcss-colormin@^5.2.2: - version "5.2.2" - resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.2.2.tgz#019cd6912bef9e7e0924462c5e4ffae241e2f437" - integrity sha512-tSEe3NpqWARUTidDlF0LntPkdlhXqfDFuA1yslqpvvGAfpZ7oBaw+/QXd935NKm2U9p4PED0HDZlzmMk7fVC6g== +postcss-colormin@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.1.tgz#86c27c26ed6ba00d96c79e08f3ffb418d1d1988f" + integrity sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ== dependencies: - browserslist "^4.16.6" + browserslist "^4.21.4" caniuse-api "^3.0.0" colord "^2.9.1" postcss-value-parser "^4.2.0" -postcss-convert-values@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.0.2.tgz#879b849dc3677c7d6bc94b6a2c1a3f0808798059" - integrity sha512-KQ04E2yadmfa1LqXm7UIDwW1ftxU/QWZmz6NKnHnUvJ3LEYbbcX6i329f/ig+WnEByHegulocXrECaZGLpL8Zg== +postcss-convert-values@^5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz#04998bb9ba6b65aa31035d669a6af342c5f9d393" + integrity sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA== dependencies: - postcss-value-parser "^4.1.0" + browserslist "^4.21.4" + postcss-value-parser "^4.2.0" -postcss-discard-comments@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.0.1.tgz#9eae4b747cf760d31f2447c27f0619d5718901fe" - integrity sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg== +postcss-discard-comments@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz#8df5e81d2925af2780075840c1526f0660e53696" + integrity sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ== -postcss-discard-duplicates@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.1.tgz#68f7cc6458fe6bab2e46c9f55ae52869f680e66d" - integrity sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA== +postcss-discard-duplicates@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848" + integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw== -postcss-discard-empty@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.0.1.tgz#ee136c39e27d5d2ed4da0ee5ed02bc8a9f8bf6d8" - integrity sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw== +postcss-discard-empty@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz#e57762343ff7f503fe53fca553d18d7f0c369c6c" + integrity sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A== -postcss-discard-overridden@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.0.1.tgz#454b41f707300b98109a75005ca4ab0ff2743ac6" - integrity sha512-Y28H7y93L2BpJhrdUR2SR2fnSsT+3TVx1NmVQLbcnZWwIUpJ7mfcTC6Za9M2PG6w8j7UQRfzxqn8jU2VwFxo3Q== +postcss-discard-overridden@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e" + integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw== postcss-flexbugs-fixes@^5.0.2: version "5.0.2" @@ -10004,56 +8623,54 @@ postcss-loader@^5.3.0: klona "^2.0.4" semver "^7.3.4" -postcss-merge-longhand@^5.0.4: - version "5.0.4" - resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.0.4.tgz#41f4f3270282ea1a145ece078b7679f0cef21c32" - integrity sha512-2lZrOVD+d81aoYkZDpWu6+3dTAAGkCKbV5DoRhnIR7KOULVrI/R7bcMjhrH9KTRy6iiHKqmtG+n/MMj1WmqHFw== +postcss-merge-longhand@^5.1.7: + version "5.1.7" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz#24a1bdf402d9ef0e70f568f39bdc0344d568fb16" + integrity sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ== dependencies: - postcss-value-parser "^4.1.0" - stylehacks "^5.0.1" + postcss-value-parser "^4.2.0" + stylehacks "^5.1.1" -postcss-merge-rules@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.0.3.tgz#b5cae31f53129812a77e3eb1eeee448f8cf1a1db" - integrity sha512-cEKTMEbWazVa5NXd8deLdCnXl+6cYG7m2am+1HzqH0EnTdy8fRysatkaXb2dEnR+fdaDxTvuZ5zoBdv6efF6hg== +postcss-merge-rules@^5.1.4: + version "5.1.4" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz#2f26fa5cacb75b1402e213789f6766ae5e40313c" + integrity sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g== dependencies: - browserslist "^4.16.6" + browserslist "^4.21.4" caniuse-api "^3.0.0" - cssnano-utils "^2.0.1" + cssnano-utils "^3.1.0" postcss-selector-parser "^6.0.5" -postcss-minify-font-values@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.0.1.tgz#a90cefbfdaa075bd3dbaa1b33588bb4dc268addf" - integrity sha512-7JS4qIsnqaxk+FXY1E8dHBDmraYFWmuL6cgt0T1SWGRO5bzJf8sUoelwa4P88LEWJZweHevAiDKxHlofuvtIoA== +postcss-minify-font-values@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz#f1df0014a726083d260d3bd85d7385fb89d1f01b" + integrity sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA== dependencies: - postcss-value-parser "^4.1.0" + postcss-value-parser "^4.2.0" -postcss-minify-gradients@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.0.3.tgz#f970a11cc71e08e9095e78ec3a6b34b91c19550e" - integrity sha512-Z91Ol22nB6XJW+5oe31+YxRsYooxOdFKcbOqY/V8Fxse1Y3vqlNRpi1cxCqoACZTQEhl+xvt4hsbWiV5R+XI9Q== +postcss-minify-gradients@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz#f1fe1b4f498134a5068240c2f25d46fcd236ba2c" + integrity sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw== dependencies: colord "^2.9.1" - cssnano-utils "^2.0.1" - postcss-value-parser "^4.1.0" + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" -postcss-minify-params@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.0.2.tgz#1b644da903473fbbb18fbe07b8e239883684b85c" - integrity sha512-qJAPuBzxO1yhLad7h2Dzk/F7n1vPyfHfCCh5grjGfjhi1ttCnq4ZXGIW77GSrEbh9Hus9Lc/e/+tB4vh3/GpDg== +postcss-minify-params@^5.1.4: + version "5.1.4" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz#c06a6c787128b3208b38c9364cfc40c8aa5d7352" + integrity sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw== dependencies: - alphanum-sort "^1.0.2" - browserslist "^4.16.6" - cssnano-utils "^2.0.1" - postcss-value-parser "^4.1.0" + browserslist "^4.21.4" + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" -postcss-minify-selectors@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.1.0.tgz#4385c845d3979ff160291774523ffa54eafd5a54" - integrity sha512-NzGBXDa7aPsAcijXZeagnJBKBPMYLaJJzB8CQh6ncvyl2sIndLVWfbcDi0SBjRWk5VqEjXvf8tYwzoKf4Z07og== +postcss-minify-selectors@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz#d4e7e6b46147b8117ea9325a915a801d5fe656c6" + integrity sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg== dependencies: - alphanum-sort "^1.0.2" postcss-selector-parser "^6.0.5" postcss-modules-extract-imports@^3.0.0: @@ -10062,9 +8679,9 @@ postcss-modules-extract-imports@^3.0.0: integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== postcss-modules-local-by-default@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz#ebbb54fae1598eecfdf691a02b3ff3b390a5a51c" - integrity sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ== + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz#b08eb4f083050708998ba2c6061b50c2870ca524" + integrity sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA== dependencies: icss-utils "^5.0.0" postcss-selector-parser "^6.0.2" @@ -10084,118 +8701,113 @@ postcss-modules-values@^4.0.0: dependencies: icss-utils "^5.0.0" -postcss-normalize-charset@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.0.1.tgz#121559d1bebc55ac8d24af37f67bd4da9efd91d0" - integrity sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg== +postcss-normalize-charset@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz#9302de0b29094b52c259e9b2cf8dc0879879f0ed" + integrity sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg== -postcss-normalize-display-values@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.0.1.tgz#62650b965981a955dffee83363453db82f6ad1fd" - integrity sha512-uupdvWk88kLDXi5HEyI9IaAJTE3/Djbcrqq8YgjvAVuzgVuqIk3SuJWUisT2gaJbZm1H9g5k2w1xXilM3x8DjQ== +postcss-normalize-display-values@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz#72abbae58081960e9edd7200fcf21ab8325c3da8" + integrity sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA== dependencies: - cssnano-utils "^2.0.1" - postcss-value-parser "^4.1.0" + postcss-value-parser "^4.2.0" -postcss-normalize-positions@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.0.1.tgz#868f6af1795fdfa86fbbe960dceb47e5f9492fe5" - integrity sha512-rvzWAJai5xej9yWqlCb1OWLd9JjW2Ex2BCPzUJrbaXmtKtgfL8dBMOOMTX6TnvQMtjk3ei1Lswcs78qKO1Skrg== +postcss-normalize-positions@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz#ef97279d894087b59325b45c47f1e863daefbb92" + integrity sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg== dependencies: - postcss-value-parser "^4.1.0" + postcss-value-parser "^4.2.0" -postcss-normalize-repeat-style@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.1.tgz#cbc0de1383b57f5bb61ddd6a84653b5e8665b2b5" - integrity sha512-syZ2itq0HTQjj4QtXZOeefomckiV5TaUO6ReIEabCh3wgDs4Mr01pkif0MeVwKyU/LHEkPJnpwFKRxqWA/7O3w== +postcss-normalize-repeat-style@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz#e9eb96805204f4766df66fd09ed2e13545420fb2" + integrity sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g== dependencies: - cssnano-utils "^2.0.1" - postcss-value-parser "^4.1.0" + postcss-value-parser "^4.2.0" -postcss-normalize-string@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.0.1.tgz#d9eafaa4df78c7a3b973ae346ef0e47c554985b0" - integrity sha512-Ic8GaQ3jPMVl1OEn2U//2pm93AXUcF3wz+OriskdZ1AOuYV25OdgS7w9Xu2LO5cGyhHCgn8dMXh9bO7vi3i9pA== +postcss-normalize-string@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz#411961169e07308c82c1f8c55f3e8a337757e228" + integrity sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w== dependencies: - postcss-value-parser "^4.1.0" + postcss-value-parser "^4.2.0" -postcss-normalize-timing-functions@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.0.1.tgz#8ee41103b9130429c6cbba736932b75c5e2cb08c" - integrity sha512-cPcBdVN5OsWCNEo5hiXfLUnXfTGtSFiBU9SK8k7ii8UD7OLuznzgNRYkLZow11BkQiiqMcgPyh4ZqXEEUrtQ1Q== +postcss-normalize-timing-functions@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz#d5614410f8f0b2388e9f240aa6011ba6f52dafbb" + integrity sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg== dependencies: - cssnano-utils "^2.0.1" - postcss-value-parser "^4.1.0" + postcss-value-parser "^4.2.0" -postcss-normalize-unicode@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.1.tgz#82d672d648a411814aa5bf3ae565379ccd9f5e37" - integrity sha512-kAtYD6V3pK0beqrU90gpCQB7g6AOfP/2KIPCVBKJM2EheVsBQmx/Iof+9zR9NFKLAx4Pr9mDhogB27pmn354nA== +postcss-normalize-unicode@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz#f67297fca3fea7f17e0d2caa40769afc487aa030" + integrity sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA== dependencies: - browserslist "^4.16.0" - postcss-value-parser "^4.1.0" + browserslist "^4.21.4" + postcss-value-parser "^4.2.0" -postcss-normalize-url@^5.0.4: - version "5.0.4" - resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.0.4.tgz#3b0322c425e31dd275174d0d5db0e466f50810fb" - integrity sha512-cNj3RzK2pgQQyNp7dzq0dqpUpQ/wYtdDZM3DepPmFjCmYIfceuD9VIAcOdvrNetjIU65g1B4uwdP/Krf6AFdXg== +postcss-normalize-url@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz#ed9d88ca82e21abef99f743457d3729a042adcdc" + integrity sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew== dependencies: normalize-url "^6.0.1" postcss-value-parser "^4.2.0" -postcss-normalize-whitespace@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.1.tgz#b0b40b5bcac83585ff07ead2daf2dcfbeeef8e9a" - integrity sha512-iPklmI5SBnRvwceb/XH568yyzK0qRVuAG+a1HFUsFRf11lEJTiQQa03a4RSCQvLKdcpX7XsI1Gen9LuLoqwiqA== +postcss-normalize-whitespace@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz#08a1a0d1ffa17a7cc6efe1e6c9da969cc4493cfa" + integrity sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA== dependencies: - postcss-value-parser "^4.1.0" + postcss-value-parser "^4.2.0" -postcss-ordered-values@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.0.2.tgz#1f351426977be00e0f765b3164ad753dac8ed044" - integrity sha512-8AFYDSOYWebJYLyJi3fyjl6CqMEG/UVworjiyK1r573I56kb3e879sCJLGvR3merj+fAdPpVplXKQZv+ey6CgQ== +postcss-ordered-values@^5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz#b6fd2bd10f937b23d86bc829c69e7732ce76ea38" + integrity sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ== dependencies: - cssnano-utils "^2.0.1" - postcss-value-parser "^4.1.0" + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" -postcss-reduce-initial@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.0.2.tgz#fa424ce8aa88a89bc0b6d0f94871b24abe94c048" - integrity sha512-v/kbAAQ+S1V5v9TJvbGkV98V2ERPdU6XvMcKMjqAlYiJ2NtsHGlKYLPjWWcXlaTKNxooId7BGxeraK8qXvzKtw== +postcss-reduce-initial@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz#798cd77b3e033eae7105c18c9d371d989e1382d6" + integrity sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg== dependencies: - browserslist "^4.16.6" + browserslist "^4.21.4" caniuse-api "^3.0.0" -postcss-reduce-transforms@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.1.tgz#93c12f6a159474aa711d5269923e2383cedcf640" - integrity sha512-a//FjoPeFkRuAguPscTVmRQUODP+f3ke2HqFNgGPwdYnpeC29RZdCBvGRGTsKpMURb/I3p6jdKoBQ2zI+9Q7kA== +postcss-reduce-transforms@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz#333b70e7758b802f3dd0ddfe98bb1ccfef96b6e9" + integrity sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ== dependencies: - cssnano-utils "^2.0.1" - postcss-value-parser "^4.1.0" + postcss-value-parser "^4.2.0" -postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5: - version "6.0.8" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.8.tgz#f023ed7a9ea736cd7ef70342996e8e78645a7914" - integrity sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ== +postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9: + version "6.0.13" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" + integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" -postcss-svgo@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.0.3.tgz#d945185756e5dfaae07f9edb0d3cae7ff79f9b30" - integrity sha512-41XZUA1wNDAZrQ3XgWREL/M2zSw8LJPvb5ZWivljBsUQAGoEKMYm6okHsTjJxKYI4M75RQEH4KYlEM52VwdXVA== +postcss-svgo@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.1.0.tgz#0a317400ced789f233a28826e77523f15857d80d" + integrity sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA== dependencies: - postcss-value-parser "^4.1.0" + postcss-value-parser "^4.2.0" svgo "^2.7.0" -postcss-unique-selectors@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.0.2.tgz#5d6893daf534ae52626708e0d62250890108c0c1" - integrity sha512-w3zBVlrtZm7loQWRPVC0yjUwwpty7OM6DnEHkxcSQXO1bMS3RJ+JUS5LFMSDZHJcvGsRwhZinCWVqn8Kej4EDA== +postcss-unique-selectors@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz#a9f273d1eacd09e9aa6088f4b0507b18b1b541b6" + integrity sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA== dependencies: - alphanum-sort "^1.0.2" postcss-selector-parser "^6.0.5" postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: @@ -10204,13 +8816,13 @@ postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0, postcss-value-parser@^ integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== postcss@^8.2.15, postcss@^8.2.9, postcss@^8.3.11: - version "8.4.5" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95" - integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg== + version "8.4.28" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.28.tgz#c6cc681ed00109072816e1557f889ef51cf950a5" + integrity sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw== dependencies: - nanoid "^3.1.30" + nanoid "^3.3.6" picocolors "^1.0.0" - source-map-js "^1.0.1" + source-map-js "^1.0.2" prebuild-install@^7.1.1: version "7.1.1" @@ -10238,7 +8850,7 @@ prelude-ls@^1.2.1: prepend-http@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" - integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= + integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA== prettier-linter-helpers@^1.0.0: version "1.0.0" @@ -10248,9 +8860,9 @@ prettier-linter-helpers@^1.0.0: fast-diff "^1.1.2" prettier@^2.7.1: - version "2.7.1" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" - integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== + version "2.8.8" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" + integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== pretty-bytes@^5.4.1: version "5.6.0" @@ -10279,11 +8891,6 @@ process-nextick-args@~2.0.0: resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== -process@^0.11.10: - version "0.11.10" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" - integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= - progress@^2.0.0, progress@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" @@ -10304,16 +8911,7 @@ prompts@^2.4.2: kleur "^3.0.3" sisteransi "^1.0.5" -prop-types@^15.6.1, prop-types@^15.7.2: - version "15.7.2" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" - integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== - dependencies: - loose-envify "^1.4.0" - object-assign "^4.1.1" - react-is "^16.8.1" - -prop-types@^15.8.1: +prop-types@^15.6.1, prop-types@^15.7.2, prop-types@^15.8.1: version "15.8.1" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== @@ -10331,11 +8929,6 @@ proper-lockfile@^4.1.2: retry "^0.12.0" signal-exit "^3.0.2" -protocols@^1.1.0, protocols@^1.4.0: - version "1.4.8" - resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.8.tgz#48eea2d8f58d9644a4a32caae5d5db290a075ce8" - integrity sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg== - protocols@^2.0.0, protocols@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/protocols/-/protocols-2.0.1.tgz#8f155da3fc0f32644e83c5782c8e8212ccf70a86" @@ -10352,7 +8945,7 @@ proxy-addr@~2.0.7: pseudomap@^1.0.1, pseudomap@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" - integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= + integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ== pump@^3.0.0: version "3.0.0" @@ -10362,10 +8955,10 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -punycode@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== +punycode@^2.1.0, punycode@^2.1.1: + version "2.3.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== pupa@^2.1.1: version "2.1.1" @@ -10374,24 +8967,14 @@ pupa@^2.1.1: dependencies: escape-goat "^2.0.0" -q@^1.1.2: - version "1.5.1" - resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" - integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= - -qs@6.9.6: - version "6.9.6" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.6.tgz#26ed3c8243a431b2924aca84cc90471f35d5a0ee" - integrity sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ== - -qs@^6.9.4: - version "6.10.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.2.tgz#c1431bea37fc5b24c5bdbafa20f16bdf2a4b9ffe" - integrity sha512-mSIdjzqznWgfd4pMii7sHtaYF8rx8861hBO80SraY5GT0XQibWZWJSid0avzHGkDIZLImux2S5mXO0Hfct2QCw== +qs@6.11.0: + version "6.11.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== dependencies: side-channel "^1.0.4" -query-string@^6.13.8, query-string@^6.14.1: +query-string@^6.14.1: version "6.14.1" resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.14.1.tgz#7ac2dca46da7f309449ba0f86b1fd28255b0c86a" integrity sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw== @@ -10401,11 +8984,6 @@ query-string@^6.13.8, query-string@^6.14.1: split-on-first "^1.0.0" strict-uri-encode "^2.0.0" -querystring@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.1.tgz#40d77615bb09d16902a85c3e38aa8b5ed761c2dd" - integrity sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg== - queue-microtask@^1.2.2: version "1.2.3" resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" @@ -10419,7 +8997,7 @@ quick-lru@^5.1.1: ramda@0.21.0: version "0.21.0" resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.21.0.tgz#a001abedb3ff61077d4ff1d577d44de77e8d0a35" - integrity sha1-oAGr7bP/YQd9T/HVd9RN536NCjU= + integrity sha512-HGd5aczYKQXGILB+abY290V7Xz62eFajpa6AtMdwEmQSakJmgSO7ks4eI3HdR34j+X2Vz4Thp9VAJbrCAMbO2w== randombytes@^2.1.0: version "2.1.0" @@ -10433,20 +9011,20 @@ range-parser@^1.2.1, range-parser@~1.2.1: resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== -raw-body@2.4.2, raw-body@^2.4.1: - version "2.4.2" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.2.tgz#baf3e9c21eebced59dd6533ac872b71f7b61cb32" - integrity sha512-RPMAFUJP19WIet/99ngh6Iv8fzAbqum4Li7AD6DtGaW2RpMB/11xDoalPiJMTbu6I3hkbMVkATvZrqb9EEqeeQ== +raw-body@2.5.1: + version "2.5.1" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" + integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== dependencies: - bytes "3.1.1" - http-errors "1.8.1" + bytes "3.1.2" + http-errors "2.0.0" iconv-lite "0.4.24" unpipe "1.0.0" -raw-body@^2.3.0: - version "2.5.1" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" - integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== +raw-body@^2.3.0, raw-body@^2.4.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a" + integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== dependencies: bytes "3.1.2" http-errors "2.0.0" @@ -10461,7 +9039,7 @@ raw-loader@^4.0.2: loader-utils "^2.0.0" schema-utils "^3.0.0" -rc@^1.2.7, rc@^1.2.8: +rc@1.2.8, rc@^1.2.7, rc@^1.2.8: version "1.2.8" resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== @@ -10472,9 +9050,9 @@ rc@^1.2.7, rc@^1.2.8: strip-json-comments "~2.0.1" react-content-loader@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/react-content-loader/-/react-content-loader-6.1.0.tgz#6b06be3889d2480ae909be0374a6062a36a53dec" - integrity sha512-S4/+doQrNs0PGDgUYCGGfdFjGax8dMQzYkWcSSxfaUcUjFkbnikWARuX9lWkglocIVhxnn3lxNb6uEWFFUzNUw== + version "6.2.1" + resolved "https://registry.yarnpkg.com/react-content-loader/-/react-content-loader-6.2.1.tgz#8feb733c2d2495002e1b216f13707f2b5f2a8ead" + integrity sha512-6ONbFX+Hi3SHuP66JB8CPvJn372pj+qwltJV0J8z/8MFrq98I1cbFdZuhDWeQXu3CFxiiDTXJn7DFxx2ZvrO7g== react-dev-utils@^12.0.1: version "12.0.1" @@ -10515,20 +9093,15 @@ react-dom@^17.0.1: object-assign "^4.1.1" scheduler "^0.20.2" -react-error-overlay@6.0.9: - version "6.0.9" - resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.9.tgz#3c743010c9359608c375ecd6bc76f35d93995b0a" - integrity sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew== - react-error-overlay@^6.0.11: version "6.0.11" resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.11.tgz#92835de5841c5cf08ba00ddd2d677b6d17ff9adb" integrity sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg== react-fast-compare@^3.1.1: - version "3.2.0" - resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.0.tgz#641a9da81b6a6320f270e89724fb45a0b39e43bb" - integrity sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA== + version "3.2.2" + resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.2.tgz#929a97a532304ce9fee4bcae44234f1ce2c21d49" + integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ== react-helmet@^6.1.0: version "6.1.0" @@ -10548,7 +9121,7 @@ react-image-lightbox@^5.1.4: prop-types "^15.7.2" react-modal "^3.11.1" -react-is@^16.13.1, react-is@^16.7.0, react-is@^16.8.1: +react-is@^16.13.1, react-is@^16.7.0: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== @@ -10559,40 +9132,49 @@ react-lifecycles-compat@^3.0.0, react-lifecycles-compat@^3.0.4: integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== react-modal@^3.11.1: - version "3.14.4" - resolved "https://registry.yarnpkg.com/react-modal/-/react-modal-3.14.4.tgz#2ca7e8e9a180955e5c9508c228b73167c1e6f6a3" - integrity sha512-8surmulejafYCH9wfUmFyj4UfbSJwjcgbS9gf3oOItu4Hwd6ivJyVBETI0yHRhpJKCLZMUtnhzk76wXTsNL6Qg== + version "3.16.1" + resolved "https://registry.yarnpkg.com/react-modal/-/react-modal-3.16.1.tgz#34018528fc206561b1a5467fc3beeaddafb39b2b" + integrity sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg== dependencies: exenv "^1.2.0" prop-types "^15.7.2" react-lifecycles-compat "^3.0.0" warning "^4.0.3" -react-refresh@^0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.9.0.tgz#71863337adc3e5c2f8a6bfddd12ae3bfe32aafbf" - integrity sha512-Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ== +react-refresh@^0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.0.tgz#4e02825378a5f227079554d4284889354e5f553e" + integrity sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ== + +react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825: + version "0.0.0-experimental-c8b778b7f-20220825" + resolved "https://registry.yarnpkg.com/react-server-dom-webpack/-/react-server-dom-webpack-0.0.0-experimental-c8b778b7f-20220825.tgz#b147886ed7cff5b31d9452d6ffe6987bfd876ceb" + integrity sha512-JyCjbp6ZvkH/T0EuVPdceYlC8u5WqWDSJr2KxDvc81H2eJ+7zYUN++IcEycnR2F+HmER8QVgxfotnIx352zi+w== + dependencies: + acorn "^6.2.1" + loose-envify "^1.1.0" + neo-async "^2.6.1" react-share@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/react-share/-/react-share-4.4.0.tgz#cabbf2111d7a907a888ab4d89d08410329efd5ee" - integrity sha512-POe8Ge/JT9Ew9iyW7CiYsCCWCb8uMJWqFl9S7W0fJ/oH5gBJNzukH0bL5vSr17KKG5h15d3GfKaoviI22BKeYA== + version "4.4.1" + resolved "https://registry.yarnpkg.com/react-share/-/react-share-4.4.1.tgz#4bfb0b512e26afedfea2fb66eb13c95c28fb216a" + integrity sha512-AJ9m9RiJssqvYg7MoJUc9J0D7b/liWrsfQ99ndKc5vJ4oVHHd4Fy87jBlKEQPibT40oYA3AQ/a9/oQY6/yaigw== dependencies: - classnames "^2.2.5" + classnames "^2.3.2" jsonp "^0.2.1" react-side-effect@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/react-side-effect/-/react-side-effect-2.1.1.tgz#66c5701c3e7560ab4822a4ee2742dee215d72eb3" - integrity sha512-2FoTQzRNTncBVtnzxFOk2mCpcfxQpenBMbk5kSVBg5UcPqV9fRbgY2zhb7GTWWOlpFmAxhClBDlIq8Rsubz1yQ== + version "2.1.2" + resolved "https://registry.yarnpkg.com/react-side-effect/-/react-side-effect-2.1.2.tgz#dc6345b9e8f9906dc2eeb68700b615e0b4fe752a" + integrity sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw== react-tsparticles@^1.39.2: - version "1.39.2" - resolved "https://registry.yarnpkg.com/react-tsparticles/-/react-tsparticles-1.39.2.tgz#8706f264b9775a321f0b0e1d3c436e174319a6ec" - integrity sha512-KDMLhKHuLQS3M6tKiS9fAt9dWWEuckv/Bhh3kqGAXwS9JnA7UGklav4WrtKlZE8fKTQ+c1yIRPfX2GD+AaNZ3g== + version "1.43.1" + resolved "https://registry.yarnpkg.com/react-tsparticles/-/react-tsparticles-1.43.1.tgz#495c47814d79f512e222a138cab613fe2d5bff72" + integrity sha512-IWa33DP6CjcO+/upUqPhYpxduCFQvWXqCHV6rgvIPvmaqPqs8BkNbeBgBqcEPJRPzTluaD/+r9d7tDp2Uhd0uA== dependencies: fast-deep-equal "^3.1.3" - tsparticles "^1.39.2" + tsparticles "^1.43.1" react@^17.0.1: version "17.0.2" @@ -10605,14 +9187,14 @@ react@^17.0.1: read@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" - integrity sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ= + integrity sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ== dependencies: mute-stream "~0.0.4" readable-stream@^2.2.2: - version "2.3.7" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + version "2.3.8" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== dependencies: core-util-is "~1.0.0" inherits "~2.0.3" @@ -10623,9 +9205,9 @@ readable-stream@^2.2.2: util-deprecate "~1.0.1" readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== dependencies: inherits "^2.0.3" string_decoder "^1.1.1" @@ -10646,16 +9228,16 @@ readdirp@~3.6.0: picomatch "^2.2.1" recursive-readdir@^2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f" - integrity sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg== + version "2.2.3" + resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.3.tgz#e726f328c0d69153bcabd5c322d3195252379372" + integrity sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA== dependencies: - minimatch "3.0.4" + minimatch "^3.0.5" redux-thunk@^2.4.0: - version "2.4.1" - resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.4.1.tgz#0dd8042cf47868f4b29699941de03c9301a75714" - integrity sha512-OOYGNY5Jy2TWvTL1KgAlVy6dcx3siPJ1wTq741EPyUKfn6W6nChdICjZwCd0p8AZBs5kWpZlbkXW2nE/zjUa+Q== + version "2.4.2" + resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.4.2.tgz#b9d05d11994b99f7a91ea223e8b04cf0afa5ef3b" + integrity sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q== redux@4.1.2: version "4.1.2" @@ -10664,10 +9246,22 @@ redux@4.1.2: dependencies: "@babel/runtime" "^7.9.2" -regenerate-unicode-properties@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz#54d09c7115e1f53dc2314a974b32c1c344efe326" - integrity sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA== +reflect.getprototypeof@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.3.tgz#2738fd896fcc3477ffbd4190b40c2458026b6928" + integrity sha512-TTAOZpkJ2YLxl7mVHWrNo3iDMEkYlva/kgFcXndqMgbo/AZUmmavEkdXV+hXtE4P8xdyEKRzalaFqZVuwIk/Nw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + get-intrinsic "^1.1.1" + globalthis "^1.0.3" + which-builtin-type "^1.1.3" + +regenerate-unicode-properties@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" + integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ== dependencies: regenerate "^1.4.2" @@ -10676,58 +9270,55 @@ regenerate@^1.4.2: resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== -regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4, regenerator-runtime@^0.13.7: - version "0.13.9" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" - integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== +regenerator-runtime@^0.13.4, regenerator-runtime@^0.13.7: + version "0.13.11" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== -regenerator-transform@^0.14.2: - version "0.14.5" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" - integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== - dependencies: - "@babel/runtime" "^7.8.4" +regenerator-runtime@^0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45" + integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA== -regexp.prototype.flags@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26" - integrity sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" +regenerator-transform@^0.15.2: + version "0.15.2" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" + integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== + dependencies: + "@babel/runtime" "^7.8.4" -regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3: - version "1.4.3" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" - integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== +regexp.prototype.flags@^1.4.3, regexp.prototype.flags@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" + integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - functions-have-names "^1.2.2" + define-properties "^1.2.0" + functions-have-names "^1.2.3" -regexpp@^3.1.0, regexpp@^3.2.0: +regexpp@^3.1.0: version "3.2.0" resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== -regexpu-core@^4.7.1: - version "4.8.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.8.0.tgz#e5605ba361b67b1718478501327502f4479a98f0" - integrity sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg== +regexpu-core@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" + integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== dependencies: + "@babel/regjsgen" "^0.8.0" regenerate "^1.4.2" - regenerate-unicode-properties "^9.0.0" - regjsgen "^0.5.2" - regjsparser "^0.7.0" + regenerate-unicode-properties "^10.1.0" + regjsparser "^0.9.1" unicode-match-property-ecmascript "^2.0.0" - unicode-match-property-value-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" registry-auth-token@^4.0.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.1.tgz#6d7b4006441918972ccd5fedcd41dc322c79b250" - integrity sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw== + version "4.2.2" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.2.tgz#f02d49c3668884612ca031419491a13539e21fac" + integrity sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg== dependencies: - rc "^1.2.8" + rc "1.2.8" registry-url@^5.0.0: version "5.1.0" @@ -10736,41 +9327,13 @@ registry-url@^5.0.0: dependencies: rc "^1.2.8" -regjsgen@^0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" - integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== - -regjsparser@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.7.0.tgz#a6b667b54c885e18b52554cb4960ef71187e9968" - integrity sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ== +regjsparser@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" + integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== dependencies: jsesc "~0.5.0" -relay-compiler@12.0.0: - version "12.0.0" - resolved "https://registry.yarnpkg.com/relay-compiler/-/relay-compiler-12.0.0.tgz#9f292d483fb871976018704138423a96c8a45439" - integrity sha512-SWqeSQZ+AMU/Cr7iZsHi1e78Z7oh00I5SvR092iCJq79aupqJ6Ds+I1Pz/Vzo5uY5PY0jvC4rBJXzlIN5g9boQ== - dependencies: - "@babel/core" "^7.14.0" - "@babel/generator" "^7.14.0" - "@babel/parser" "^7.14.0" - "@babel/runtime" "^7.0.0" - "@babel/traverse" "^7.14.0" - "@babel/types" "^7.0.0" - babel-preset-fbjs "^3.4.0" - chalk "^4.0.0" - fb-watchman "^2.0.0" - fbjs "^3.0.0" - glob "^7.1.1" - immutable "~3.7.6" - invariant "^2.2.4" - nullthrows "^1.1.1" - relay-runtime "12.0.0" - signedsource "^1.0.0" - yargs "^15.3.1" - relay-runtime@12.0.0: version "12.0.0" resolved "https://registry.yarnpkg.com/relay-runtime/-/relay-runtime-12.0.0.tgz#1e039282bdb5e0c1b9a7dc7f6b9a09d4f4ff8237" @@ -10783,7 +9346,7 @@ relay-runtime@12.0.0: remove-trailing-separator@^1.0.1: version "1.1.0" resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" - integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= + integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw== renderkid@^2.0.4: version "2.0.7" @@ -10799,7 +9362,7 @@ renderkid@^2.0.4: require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== require-from-string@^2.0.2: version "2.0.2" @@ -10814,7 +9377,7 @@ require-main-filename@^2.0.0: require-package-name@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/require-package-name/-/require-package-name-2.0.1.tgz#c11e97276b65b8e2923f75dabf5fb2ef0c3841b9" - integrity sha1-wR6XJ2tluOKSP3Xav1+y7ww4Qbk= + integrity sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q== resolve-alpn@^1.0.0: version "1.2.1" @@ -10841,44 +9404,37 @@ resolve-from@^4.0.0: resolve-url@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" - integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= + integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg== -resolve@^1.14.2, resolve@^1.20.0: - version "1.20.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" - integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== +resolve@^1.10.0, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.22.4: + version "1.22.4" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.4.tgz#1dc40df46554cdaf8948a486a10f6ba1e2026c34" + integrity sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg== dependencies: - is-core-module "^2.2.0" - path-parse "^1.0.6" + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" -resolve@^1.19.0, resolve@^1.22.0: - version "1.22.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" - integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== +resolve@^2.0.0-next.4: + version "2.0.0-next.4" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" + integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== dependencies: is-core-module "^2.9.0" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" -resolve@^2.0.0-next.3: - version "2.0.0-next.3" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46" - integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q== - dependencies: - is-core-module "^2.2.0" - path-parse "^1.0.6" - responselike@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" - integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= + integrity sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ== dependencies: lowercase-keys "^1.0.0" responselike@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/responselike/-/responselike-2.0.0.tgz#26391bcc3174f750f9a79eacc40a12a5c42d7723" - integrity sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw== + version "2.0.1" + resolved "https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz#9a0bc8fdc252f3fb1cca68b016591059ba1422bc" + integrity sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw== dependencies: lowercase-keys "^2.0.0" @@ -10893,7 +9449,7 @@ restore-cursor@^3.1.0: retry@^0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" - integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs= + integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== reusify@^1.0.4: version "1.0.4" @@ -10929,7 +9485,7 @@ run-parallel@^1.1.9: rx@4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" - integrity sha1-pfE/957zt0D+MKqAP7CfmIBdR4I= + integrity sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug== rxjs@^6.6.0: version "6.6.7" @@ -10938,6 +9494,16 @@ rxjs@^6.6.0: dependencies: tslib "^1.9.0" +safe-array-concat@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.0.0.tgz#2064223cba3c08d2ee05148eedbc563cd6d84060" + integrity sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.0" + has-symbols "^1.0.3" + isarray "^2.0.5" + safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" @@ -10948,12 +9514,21 @@ safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@~5.2.0: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== +safe-regex-test@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" + integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + is-regex "^1.1.4" + "safer-buffer@>= 2.1.2 < 3": version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== -sax@>=0.6.0, sax@^1.2.4, sax@~1.2.4: +sax@>=0.6.0, sax@^1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== @@ -10984,15 +9559,25 @@ schema-utils@^2.6.5: ajv "^6.12.4" ajv-keywords "^3.5.2" -schema-utils@^3.0.0, schema-utils@^3.1.0, schema-utils@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281" - integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw== +schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" + integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== dependencies: "@types/json-schema" "^7.0.8" ajv "^6.12.5" ajv-keywords "^3.5.2" +schema-utils@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b" + integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== + dependencies: + "@types/json-schema" "^7.0.9" + ajv "^8.9.0" + ajv-formats "^2.1.1" + ajv-keywords "^5.1.0" + semver-diff@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b" @@ -11006,47 +9591,40 @@ semver@7.0.0: integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== semver@^5.5.0, semver@^5.7.1: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + version "5.7.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== -semver@^7.2.1, semver@^7.3.4, semver@^7.3.5: - version "7.3.5" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" - integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== - dependencies: - lru-cache "^6.0.0" +semver@^6.0.0, semver@^6.2.0, semver@^6.3.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.2, semver@^7.3.7: - version "7.3.7" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" - integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== +semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7: + version "7.5.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" + integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" -send@0.17.2: - version "0.17.2" - resolved "https://registry.yarnpkg.com/send/-/send-0.17.2.tgz#926622f76601c41808012c8bf1688fe3906f7820" - integrity sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww== +send@0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== dependencies: debug "2.6.9" - depd "~1.1.2" - destroy "~1.0.4" + depd "2.0.0" + destroy "1.2.0" encodeurl "~1.0.2" escape-html "~1.0.3" etag "~1.8.1" fresh "0.5.2" - http-errors "1.8.1" + http-errors "2.0.0" mime "1.6.0" ms "2.1.3" - on-finished "~2.3.0" + on-finished "2.4.1" range-parser "~1.2.1" - statuses "~1.5.0" + statuses "2.0.1" sentence-case@^3.0.4: version "3.0.4" @@ -11064,32 +9642,32 @@ serialize-javascript@^5.0.1: dependencies: randombytes "^2.1.0" -serialize-javascript@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" - integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== +serialize-javascript@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c" + integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== dependencies: randombytes "^2.1.0" -serve-static@1.14.2: - version "1.14.2" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.2.tgz#722d6294b1d62626d41b43a013ece4598d292bfa" - integrity sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ== +serve-static@1.15.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== dependencies: encodeurl "~1.0.2" escape-html "~1.0.3" parseurl "~1.3.3" - send "0.17.2" + send "0.18.0" set-blocking@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== setimmediate@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= + integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== setprototypeof@1.2.0: version "1.2.0" @@ -11113,7 +9691,7 @@ shallowequal@^1.1.0: resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== -sharp@^0.30.3, sharp@^0.30.7: +sharp@^0.30.7: version "0.30.7" resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.30.7.tgz#7862bda98804fdd1f0d5659c85e3324b90d94c7c" integrity sha512-G+MY2YW33jgflKPTXXptVO28HvNOo9G3j0MybYAHeEmby+QuD2U98dT6ueht9cv/XDqZspSpIhoSW+BAKJ7Hig== @@ -11130,7 +9708,7 @@ sharp@^0.30.3, sharp@^0.30.7: shebang-command@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== dependencies: shebang-regex "^1.0.0" @@ -11144,7 +9722,7 @@ shebang-command@^2.0.0: shebang-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== shebang-regex@^3.0.0: version "3.0.0" @@ -11152,9 +9730,9 @@ shebang-regex@^3.0.0: integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== shell-quote@^1.7.3: - version "1.7.3" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123" - integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw== + version "1.8.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" + integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== side-channel@^1.0.4: version "1.0.4" @@ -11166,30 +9744,21 @@ side-channel@^1.0.4: object-inspect "^1.9.0" signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.5, signal-exit@^3.0.6: - version "3.0.6" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.6.tgz#24e630c4b0f03fea446a2bd299e62b4a6ca8d0af" - integrity sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ== + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== signedsource@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/signedsource/-/signedsource-1.0.0.tgz#1ddace4981798f93bd833973803d80d52e93ad6a" - integrity sha1-HdrOSYF5j5O9gzlzgD2A1S6TrWo= + integrity sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww== simple-concat@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== -simple-get@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.0.tgz#73fa628278d21de83dadd5512d2cc1f4872bd675" - integrity sha512-ZalZGexYr3TA0SwySsr5HlgOOinS4Jsa8YB2GJ6lUNAazyAu4KG/VmzMTwAt2YVXzzVj8QmefmAonZIK2BSGcQ== - dependencies: - decompress-response "^6.0.0" - once "^1.3.1" - simple-concat "^1.0.0" - -simple-get@^4.0.1: +simple-get@^4.0.0, simple-get@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543" integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== @@ -11201,7 +9770,7 @@ simple-get@^4.0.1: simple-swizzle@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" - integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= + integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== dependencies: is-arrayish "^0.3.1" @@ -11225,9 +9794,9 @@ slice-ansi@^4.0.0: is-fullwidth-code-point "^3.0.0" slugify@^1.6.1: - version "1.6.4" - resolved "https://registry.yarnpkg.com/slugify/-/slugify-1.6.4.tgz#33d84cc9e859ca3852e6537af6a5ff5bb9e439aa" - integrity sha512-Pcz296CK0uGnTf4iNQId79Uv6/5G16t0g0x3OsxWS8qVSOW+JXNnNHKVcuDiMgEGTWyK6zjlWXo2dvzV/FLf9Q== + version "1.6.6" + resolved "https://registry.yarnpkg.com/slugify/-/slugify-1.6.6.tgz#2d4ac0eacb47add6af9e04d3be79319cbcc7924b" + integrity sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw== snake-case@^3.0.4: version "3.0.4" @@ -11237,57 +9806,50 @@ snake-case@^3.0.4: dot-case "^3.0.4" tslib "^2.0.3" -socket.io-adapter@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-2.1.0.tgz#edc5dc36602f2985918d631c1399215e97a1b527" - integrity sha512-+vDov/aTsLjViYTwS9fPy5pEtTkrbEKsw2M+oVSoFGw6OD1IpvlV1VPhUzNbofCQ8oyMbdYJqDtGdmHQK6TdPg== +socket.io-adapter@~2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz#b50a4a9ecdd00c34d4c8c808224daa1a786152a6" + integrity sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg== -socket.io-client@3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-3.1.3.tgz#57ddcefea58cfab71f0e94c21124de8e3c5aa3e2" - integrity sha512-4sIGOGOmCg3AOgGi7EEr6ZkTZRkrXwub70bBB/F0JSkMOUFpA77WsL87o34DffQQ31PkbMUIadGOk+3tx1KGbw== +socket.io-client@4.5.4: + version "4.5.4" + resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.5.4.tgz#d3cde8a06a6250041ba7390f08d2468ccebc5ac9" + integrity sha512-ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g== dependencies: - "@types/component-emitter" "^1.2.10" - backo2 "~1.0.2" - component-emitter "~1.3.0" - debug "~4.3.1" - engine.io-client "~4.1.0" - parseuri "0.0.6" - socket.io-parser "~4.0.4" + "@socket.io/component-emitter" "~3.1.0" + debug "~4.3.2" + engine.io-client "~6.2.3" + socket.io-parser "~4.2.1" -socket.io-parser@~4.0.3, socket.io-parser@~4.0.4: - version "4.0.4" - resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-4.0.4.tgz#9ea21b0d61508d18196ef04a2c6b9ab630f4c2b0" - integrity sha512-t+b0SS+IxG7Rxzda2EVvyBZbvFPBCjJoyHuE0P//7OAsN23GItzDRdWa6ALxZI/8R5ygK7jAR6t028/z+7295g== +socket.io-parser@~4.2.1: + version "4.2.4" + resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-4.2.4.tgz#c806966cf7270601e47469ddeec30fbdfda44c83" + integrity sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew== dependencies: - "@types/component-emitter" "^1.2.10" - component-emitter "~1.3.0" + "@socket.io/component-emitter" "~3.1.0" debug "~4.3.1" -socket.io@3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-3.1.2.tgz#06e27caa1c4fc9617547acfbb5da9bc1747da39a" - integrity sha512-JubKZnTQ4Z8G4IZWtaAZSiRP3I/inpy8c/Bsx2jrwGrTbKeVU5xd6qkKMHpChYeM3dWZSO0QACiGK+obhBNwYw== +socket.io@4.5.4: + version "4.5.4" + resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-4.5.4.tgz#a4513f06e87451c17013b8d13fdfaf8da5a86a90" + integrity sha512-m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ== dependencies: - "@types/cookie" "^0.4.0" - "@types/cors" "^2.8.8" - "@types/node" ">=10.0.0" accepts "~1.3.4" base64id "~2.0.0" - debug "~4.3.1" - engine.io "~4.1.0" - socket.io-adapter "~2.1.0" - socket.io-parser "~4.0.3" + debug "~4.3.2" + engine.io "~6.2.1" + socket.io-adapter "~2.4.0" + socket.io-parser "~4.2.1" source-list-map@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== -source-map-js@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.1.tgz#a1741c131e3c77d048252adfa24e23b908670caf" - integrity sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA== +source-map-js@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== source-map-resolve@^0.5.2: version "0.5.3" @@ -11313,20 +9875,15 @@ source-map-url@^0.4.0: resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== -source-map@^0.5.0: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= - source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -source-map@^0.7.3, source-map@~0.7.2: - version "0.7.3" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" - integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== +source-map@^0.7.3: + version "0.7.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== split-on-first@^1.0.0: version "1.1.0" @@ -11343,7 +9900,7 @@ sponge-case@^1.0.1: sprintf-js@~1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== ssr-window@^4.0.0, ssr-window@^4.0.2: version "4.0.2" @@ -11371,12 +9928,7 @@ stable@^0.1.8: stack-trace@^0.0.10: version "0.0.10" resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" - integrity sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA= - -stackframe@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.2.0.tgz#52429492d63c62eb989804c11552e3d22e779303" - integrity sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA== + integrity sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg== stackframe@^1.3.4: version "1.3.4" @@ -11388,15 +9940,15 @@ statuses@2.0.1: resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== -"statuses@>= 1.5.0 < 2", statuses@~1.5.0: +"statuses@>= 1.5.0 < 2": version "1.5.0" resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" - integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= + integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== stream-parser@~0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/stream-parser/-/stream-parser-0.3.1.tgz#1618548694420021a1182ff0af1911c129761773" - integrity sha1-FhhUhpRCACGhGC/wrxkRwSl2F3M= + integrity sha512-bJ/HgKq41nlKvlhccD5kaCr/P+Hu0wPNKPJOH7en+YrJu/9EgqUF+88w5Jb6KNcjOFMhfX4B2asfeAtIGuHObQ== dependencies: debug "2" @@ -11408,7 +9960,7 @@ streamsearch@^1.1.0: strict-uri-encode@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" - integrity sha1-ucczDHBChi9rFC3CdLvMWGbONUY= + integrity sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ== string-natural-compare@^3.0.1: version "3.0.1" @@ -11435,67 +9987,46 @@ string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2 is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" -string.prototype.matchall@^4.0.6: - version "4.0.6" - resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz#5abb5dabc94c7b0ea2380f65ba610b3a544b15fa" - integrity sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" - get-intrinsic "^1.1.1" - has-symbols "^1.0.2" - internal-slot "^1.0.3" - regexp.prototype.flags "^1.3.1" - side-channel "^1.0.4" - -string.prototype.matchall@^4.0.7: - version "4.0.7" - resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d" - integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg== +string.prototype.matchall@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3" + integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" - get-intrinsic "^1.1.1" + define-properties "^1.1.4" + es-abstract "^1.20.4" + get-intrinsic "^1.1.3" has-symbols "^1.0.3" internal-slot "^1.0.3" - regexp.prototype.flags "^1.4.1" + regexp.prototype.flags "^1.4.3" side-channel "^1.0.4" -string.prototype.trimend@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" - integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - -string.prototype.trimend@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" - integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== +string.prototype.trim@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" + integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== dependencies: call-bind "^1.0.2" define-properties "^1.1.4" - es-abstract "^1.19.5" + es-abstract "^1.20.4" -string.prototype.trimstart@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" - integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== +string.prototype.trimend@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" + integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" + define-properties "^1.1.4" + es-abstract "^1.20.4" -string.prototype.trimstart@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" - integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== +string.prototype.trimstart@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" + integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== dependencies: call-bind "^1.0.2" define-properties "^1.1.4" - es-abstract "^1.19.5" + es-abstract "^1.20.4" string_decoder@^1.1.1: version "1.3.0" @@ -11514,7 +10045,7 @@ string_decoder@~1.1.1: strip-ansi@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg== dependencies: ansi-regex "^2.0.0" @@ -11535,12 +10066,12 @@ strip-ansi@^6.0.0, strip-ansi@^6.0.1: strip-bom@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== strip-eof@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" - integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + integrity sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q== strip-final-newline@^2.0.0: version "2.0.0" @@ -11555,7 +10086,7 @@ strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= + integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== strip-outer@^1.0.1: version "1.0.1" @@ -11565,12 +10096,12 @@ strip-outer@^1.0.1: escape-string-regexp "^1.0.2" strtok3@^6.2.4: - version "6.2.4" - resolved "https://registry.yarnpkg.com/strtok3/-/strtok3-6.2.4.tgz#302aea64c0fa25d12a0385069ba66253fdc38a81" - integrity sha512-GO8IcFF9GmFDvqduIspUBwCzCbqzegyVKIsSymcMgiZKeCfrN9SowtUoi8+b59WZMAjIzVZic/Ft97+pynR3Iw== + version "6.3.0" + resolved "https://registry.yarnpkg.com/strtok3/-/strtok3-6.3.0.tgz#358b80ffe6d5d5620e19a073aa78ce947a90f9a0" + integrity sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw== dependencies: "@tokenizer/token" "^0.3.0" - peek-readable "^4.0.1" + peek-readable "^4.1.0" style-loader@^2.0.0: version "2.0.0" @@ -11589,18 +10120,18 @@ style-value-types@5.0.0: tslib "^2.1.0" styled-breakpoints@^11.0.5: - version "11.0.5" - resolved "https://registry.yarnpkg.com/styled-breakpoints/-/styled-breakpoints-11.0.5.tgz#7e23120b5de23878da80d2abccbd0b7d8e45bbab" - integrity sha512-hnTPmETNlXLp91XHaY2R+B6E77dH0ZJpoyD+VJUk4+meHSrlKcAk0vcChqcDdQRIA/VRtRmIb0lfS8aasb//eg== + version "11.2.3" + resolved "https://registry.yarnpkg.com/styled-breakpoints/-/styled-breakpoints-11.2.3.tgz#ddef928c3de59d4e701deb249694ab0a82d02e65" + integrity sha512-NJLcZfrV/+OCzxgBrJjSLGpWmzQUuBCIsFhurTlWrjA7qXBD4XHmPqd68NNAqz92j0JUpGnitwL1RF6Fh1/IUw== styled-components@^5.3.3: - version "5.3.3" - resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.3.tgz#312a3d9a549f4708f0fb0edc829eb34bde032743" - integrity sha512-++4iHwBM7ZN+x6DtPPWkCI4vdtwumQ+inA/DdAsqYd4SVgUKJie5vXyzotA00ttcFdQkCng7zc6grwlfIfw+lw== + version "5.3.11" + resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.11.tgz#9fda7bf1108e39bf3f3e612fcc18170dedcd57a8" + integrity sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw== dependencies: "@babel/helper-module-imports" "^7.0.0" "@babel/traverse" "^7.4.5" - "@emotion/is-prop-valid" "^0.8.8" + "@emotion/is-prop-valid" "^1.1.0" "@emotion/stylis" "^0.8.4" "@emotion/unitless" "^0.7.4" babel-plugin-styled-components ">= 1.12.0" @@ -11609,18 +10140,18 @@ styled-components@^5.3.3: shallowequal "^1.1.0" supports-color "^5.5.0" -stylehacks@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.0.1.tgz#323ec554198520986806388c7fdaebc38d2c06fb" - integrity sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA== +stylehacks@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.1.1.tgz#7934a34eb59d7152149fa69d6e9e56f2fc34bcc9" + integrity sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw== dependencies: - browserslist "^4.16.0" + browserslist "^4.21.4" postcss-selector-parser "^6.0.4" -subscriptions-transport-ws@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/subscriptions-transport-ws/-/subscriptions-transport-ws-0.11.0.tgz#baf88f050cba51d52afe781de5e81b3c31f89883" - integrity sha512-8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ== +subscriptions-transport-ws@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/subscriptions-transport-ws/-/subscriptions-transport-ws-0.10.0.tgz#91fce775b31935e4ca995895a40942268877d23f" + integrity sha512-k28LhLn3abJ1mowFW+LP4QGggE0e3hrk55zXbMHyAeZkCUYtC0owepiwqMD3zX8DglQVaxnhE760pESrNSEzpg== dependencies: backo2 "^1.0.2" eventemitter3 "^3.1.0" @@ -11671,26 +10202,7 @@ svg-react-loader@^0.4.6: traverse "0.6.6" xml2js "0.4.17" -svgo@1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167" - integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== - dependencies: - chalk "^2.4.1" - coa "^2.0.2" - css-select "^2.0.0" - css-select-base-adapter "^0.1.1" - css-tree "1.0.0-alpha.37" - csso "^4.0.2" - js-yaml "^3.13.1" - mkdirp "~0.5.1" - object.values "^1.1.0" - sax "~1.2.4" - stable "^0.1.8" - unquote "~1.1.1" - util.promisify "~1.0.0" - -svgo@^2.7.0, svgo@^2.8.0: +svgo@^2.7.0: version "2.8.0" resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24" integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== @@ -11723,7 +10235,7 @@ symbol-observable@^1.0.4: resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== -sync-fetch@^0.3.1: +sync-fetch@0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/sync-fetch/-/sync-fetch-0.3.1.tgz#62aa82c4b4d43afd6906bfd7b5f92056458509f0" integrity sha512-xj5qiCDap/03kpci5a+qc5wSJjc8ZSixgG2EUmH1B8Ea2sfWclQA7eH40hiHPCtkCn6MCk4Wb+dqcXdCy2PP3g== @@ -11732,9 +10244,9 @@ sync-fetch@^0.3.1: node-fetch "^2.6.1" table@^6.0.9: - version "6.7.5" - resolved "https://registry.yarnpkg.com/table/-/table-6.7.5.tgz#f04478c351ef3d8c7904f0e8be90a1b62417d238" - integrity sha512-LFNeryOqiQHqCVKzhkymKwt6ozeRhlm8IL1mE8rNUurkir4heF6PzMyRgaTa4tlyPTGGgXuvVOF/OLWiH09Lqw== + version "6.8.1" + resolved "https://registry.yarnpkg.com/table/-/table-6.8.1.tgz#ea2b71359fe03b017a5fbc296204471158080bdf" + integrity sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA== dependencies: ajv "^8.0.1" lodash.truncate "^4.4.2" @@ -11778,45 +10290,36 @@ term-size@^2.1.0: resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54" integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== -terser-webpack-plugin@^5.1.3, terser-webpack-plugin@^5.2.4: - version "5.3.0" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.0.tgz#21641326486ecf91d8054161c816e464435bae9f" - integrity sha512-LPIisi3Ol4chwAaPP8toUJ3L4qCM1G0wao7L3qNv57Drezxj6+VEyySpPw4B1HSO2Eg/hDY/MNF5XihCAoqnsQ== +terser-webpack-plugin@^5.2.4, terser-webpack-plugin@^5.3.7: + version "5.3.9" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz#832536999c51b46d468067f9e37662a3b96adfe1" + integrity sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA== dependencies: - jest-worker "^27.4.1" + "@jridgewell/trace-mapping" "^0.3.17" + jest-worker "^27.4.5" schema-utils "^3.1.1" - serialize-javascript "^6.0.0" - source-map "^0.6.1" - terser "^5.7.2" + serialize-javascript "^6.0.1" + terser "^5.16.8" -terser@^5.2.0: - version "5.14.2" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.14.2.tgz#9ac9f22b06994d736174f4091aa368db896f1c10" - integrity sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA== - dependencies: - "@jridgewell/source-map" "^0.3.2" - acorn "^8.5.0" - commander "^2.20.0" - source-map-support "~0.5.20" - -terser@^5.7.2: - version "5.10.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.10.0.tgz#b86390809c0389105eb0a0b62397563096ddafcc" - integrity sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA== +terser@^5.16.8, terser@^5.2.0: + version "5.19.2" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.19.2.tgz#bdb8017a9a4a8de4663a7983f45c506534f9234e" + integrity sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA== dependencies: + "@jridgewell/source-map" "^0.3.3" + acorn "^8.8.2" commander "^2.20.0" - source-map "~0.7.2" source-map-support "~0.5.20" text-table@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== through@^2.3.6: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== timers-ext@^0.1.7: version "0.1.7" @@ -11826,21 +10329,6 @@ timers-ext@^0.1.7: es5-ext "~0.10.46" next-tick "1" -timm@^1.6.1: - version "1.7.1" - resolved "https://registry.yarnpkg.com/timm/-/timm-1.7.1.tgz#96bab60c7d45b5a10a8a4d0f0117c6b7e5aff76f" - integrity sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw== - -timsort@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" - integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= - -tinycolor2@^1.4.1: - version "1.4.2" - resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.2.tgz#3f6a4d1071ad07676d7fa472e1fac40a719d8803" - integrity sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA== - title-case@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/title-case/-/title-case-3.0.3.tgz#bc689b46f02e411f1d1e1d081f7c3deca0489982" @@ -11865,7 +10353,7 @@ tmp@^0.2.1: to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== to-readable-stream@^1.0.0: version "1.0.0" @@ -11890,9 +10378,9 @@ toidentifier@1.0.1: integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== token-types@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/token-types/-/token-types-4.1.1.tgz#ef9e8c8e2e0ded9f1b3f8dbaa46a3228b113ba1a" - integrity sha512-hD+QyuUAyI2spzsI0B7gf/jJ2ggR4RjkAo37j3StuePhApJUwcWDjnHDOFdIWYSwNR28H14hpwm4EI+V1Ted1w== + version "4.2.1" + resolved "https://registry.yarnpkg.com/token-types/-/token-types-4.2.1.tgz#0f897f03665846982806e138977dbe72d44df753" + integrity sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ== dependencies: "@tokenizer/token" "^0.3.0" ieee754 "^1.2.1" @@ -11900,17 +10388,17 @@ token-types@^4.1.1: tr46@~0.0.3: version "0.0.3" resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== traverse@0.6.6: version "0.6.6" resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" - integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc= + integrity sha512-kdf4JKs8lbARxWdp7RKdNzoJBhGUcIalSYibuGyHJbmk40pOysQ0+QPvlkCOICOivDWU2IJo2rkrxyTK2AH4fw== trim-repeated@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/trim-repeated/-/trim-repeated-1.0.0.tgz#e3646a2ea4e891312bf7eace6cfb05380bc01c21" - integrity sha1-42RqLqTokTEr9+rObPsFOAvAHCE= + integrity sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg== dependencies: escape-string-regexp "^1.0.2" @@ -11919,23 +10407,13 @@ trim-repeated@^1.0.0: resolved "https://registry.yarnpkg.com/true-case-path/-/true-case-path-2.2.1.tgz#c5bf04a5bbec3fd118be4084461b3a27c4d796bf" integrity sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q== -tsconfig-paths@^3.11.0: - version "3.12.0" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.12.0.tgz#19769aca6ee8f6a1a341e38c8fa45dd9fb18899b" - integrity sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg== - dependencies: - "@types/json5" "^0.0.29" - json5 "^1.0.1" - minimist "^1.2.0" - strip-bom "^3.0.0" - -tsconfig-paths@^3.14.1: - version "3.14.1" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" - integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== +tsconfig-paths@^3.14.2: + version "3.14.2" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088" + integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== dependencies: "@types/json5" "^0.0.29" - json5 "^1.0.1" + json5 "^1.0.2" minimist "^1.2.6" strip-bom "^3.0.0" @@ -11944,20 +10422,25 @@ tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== -tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@~2.3.0: +tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.1, tslib@^2.4.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== + +tslib@~2.3.0: version "2.3.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== -tslib@^2.4.0, tslib@~2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" - integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== +tslib@~2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" + integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== -tsparticles@^1.39.2: - version "1.39.2" - resolved "https://registry.yarnpkg.com/tsparticles/-/tsparticles-1.39.2.tgz#5529b52967ba67f4cc48d66fabaf1001de29fffd" - integrity sha512-ClhuRuruVoR0ijj4fA8tmV+dRgGymMNqcBlvYu2gKUUIXRAkQRJrRfzqHqHY9eHqC/7gXEr6yUTNHs2vvvvUqw== +tsparticles@^1.39.2, tsparticles@^1.43.1: + version "1.43.1" + resolved "https://registry.yarnpkg.com/tsparticles/-/tsparticles-1.43.1.tgz#1f6b37ee41b6ab043d66a0e20bfe0855a1aea006" + integrity sha512-6EuHncwqzoyTlUxc11YH8LVlwVUgpYaZD0yMOeA2OvRqFZ9VQV8EjjQ6ZfXt6pfGA1ObPwU929jveFatxwTQkg== tsutils@^3.21.0: version "3.21.0" @@ -11969,7 +10452,7 @@ tsutils@^3.21.0: tunnel-agent@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= + integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== dependencies: safe-buffer "^5.0.1" @@ -12006,17 +10489,56 @@ type-is@^1.6.4, type-is@~1.6.18: type-of@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/type-of/-/type-of-2.0.1.tgz#e72a1741896568e9f628378d816d6912f7f23972" - integrity sha1-5yoXQYllaOn2KDeNgW1pEvfyOXI= + integrity sha512-39wxbwHdQ2sTiBB8wAzKfQ9GN+om8w+sjNWzr+vZJR5AMD5J+J7Yc8AtXnU9r/r2c8XiDZ/smxutDmZehX/qpQ== type@^1.0.1: version "1.2.0" resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== -type@^2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/type/-/type-2.5.0.tgz#0a2e78c2e77907b252abe5f298c1b01c63f0db3d" - integrity sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw== +type@^2.7.2: + version "2.7.2" + resolved "https://registry.yarnpkg.com/type/-/type-2.7.2.tgz#2376a15a3a28b1efa0f5350dcf72d24df6ef98d0" + integrity sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw== + +typed-array-buffer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60" + integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.1" + is-typed-array "^1.1.10" + +typed-array-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0" + integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA== + dependencies: + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + +typed-array-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b" + integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + +typed-array-length@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" + integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== + dependencies: + call-bind "^1.0.2" + for-each "^0.3.3" + is-typed-array "^1.1.9" typedarray-to-buffer@^3.1.5: version "3.1.5" @@ -12028,27 +10550,17 @@ typedarray-to-buffer@^3.1.5: typedarray@^0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= + integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== typescript@^4.5.5: - version "4.5.5" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.5.5.tgz#d8c953832d28924a9e3d37c73d729c846c5896f3" - integrity sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA== + version "4.9.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" + integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== -ua-parser-js@^0.7.30: - version "0.7.31" - resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.31.tgz#649a656b191dffab4f21d5e053e27ca17cbff5c6" - integrity sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ== - -unbox-primitive@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" - integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== - dependencies: - function-bind "^1.1.1" - has-bigints "^1.0.1" - has-symbols "^1.0.2" - which-boxed-primitive "^1.0.2" +ua-parser-js@^1.0.35: + version "1.0.35" + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.35.tgz#c4ef44343bc3db0a3cbefdf21822f1b1fc1ab011" + integrity sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA== unbox-primitive@^1.0.2: version "1.0.2" @@ -12063,12 +10575,7 @@ unbox-primitive@^1.0.2: unc-path-regex@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" - integrity sha1-5z3T17DXxe2G+6xrCufYxqadUPo= - -undici@^4.9.3: - version "4.12.2" - resolved "https://registry.yarnpkg.com/undici/-/undici-4.12.2.tgz#f2fc50ca77a774ed8c0e7067c9361ee18a2f422b" - integrity sha512-RZj6SbkQFs5O/pJCboGEo6l5DTCe3Zg4r/8Z/0/2qnIv08+s6zL4akohOPMYWKc3mzwv15WTvsfMWaafZcvYoQ== + integrity sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg== unicode-canonical-property-names-ecmascript@^2.0.0: version "2.0.0" @@ -12083,15 +10590,15 @@ unicode-match-property-ecmascript@^2.0.0: unicode-canonical-property-names-ecmascript "^2.0.0" unicode-property-aliases-ecmascript "^2.0.0" -unicode-match-property-value-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714" - integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw== +unicode-match-property-value-ecmascript@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== unicode-property-aliases-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz#0a36cb9a585c4f6abd51ad1deddb285c165297c8" - integrity sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ== + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== unique-string@^2.0.0: version "2.0.0" @@ -12100,11 +10607,6 @@ unique-string@^2.0.0: dependencies: crypto-random-string "^2.0.0" -universalify@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" - integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== - universalify@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" @@ -12113,24 +10615,19 @@ universalify@^2.0.0: unixify@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unixify/-/unixify-1.0.0.tgz#3a641c8c2ffbce4da683a5c70f03a462940c2090" - integrity sha1-OmQcjC/7zk2mg6XHDwOkYpQMIJA= + integrity sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg== dependencies: normalize-path "^2.1.1" unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= - -unquote@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" - integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ= + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== -update-browserslist-db@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz#be06a5eedd62f107b7c19eb5bcefb194411abf38" - integrity sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q== +update-browserslist-db@^1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" + integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== dependencies: escalade "^3.1.1" picocolors "^1.0.0" @@ -12179,7 +10676,7 @@ uri-js@^4.2.2: urix@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" - integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= + integrity sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg== url-loader@^4.1.1: version "4.1.1" @@ -12193,36 +10690,19 @@ url-loader@^4.1.1: url-parse-lax@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" - integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= + integrity sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ== dependencies: prepend-http "^2.0.0" -utif@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/utif/-/utif-2.0.1.tgz#9e1582d9bbd20011a6588548ed3266298e711759" - integrity sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg== - dependencies: - pako "^1.0.5" - util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= - -util.promisify@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee" - integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.2" - has-symbols "^1.0.1" - object.getownpropertydescriptors "^2.1.0" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== utila@~0.4: version "0.4.0" resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" - integrity sha1-ihagXURWV6Oupe7MWxKk+lN5dyw= + integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== utility-types@^3.10.0: version "3.10.0" @@ -12232,7 +10712,7 @@ utility-types@^3.10.0: utils-merge@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== uuid@^8.3.2: version "8.3.2" @@ -12240,24 +10720,29 @@ uuid@^8.3.2: integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== v8-compile-cache@^2.0.3: - version "2.3.0" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" - integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== + version "2.4.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz#cdada8bec61e15865f05d097c5f4fd30e94dc128" + integrity sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw== -valid-url@^1.0.9: +valid-url@1.0.9, valid-url@^1.0.9: version "1.0.9" resolved "https://registry.yarnpkg.com/valid-url/-/valid-url-1.0.9.tgz#1c14479b40f1397a75782f115e4086447433a200" - integrity sha1-HBRHm0DxOXp1eC8RXkCGRHQzogA= + integrity sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA== -value-or-promise@1.0.11, value-or-promise@^1.0.11: +value-or-promise@1.0.11: version "1.0.11" resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.11.tgz#3e90299af31dd014fe843fe309cefa7c1d94b140" integrity sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg== +value-or-promise@^1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.12.tgz#0e5abfeec70148c78460a849f6b003ea7986f15c" + integrity sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q== + vary@^1, vary@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== warning@^4.0.3: version "4.0.3" @@ -12266,10 +10751,10 @@ warning@^4.0.3: dependencies: loose-envify "^1.0.0" -watchpack@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.3.1.tgz#4200d9447b401156eeca7767ee610f8809bc9d25" - integrity sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA== +watchpack@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" + integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== dependencies: glob-to-regexp "^0.4.1" graceful-fs "^4.1.2" @@ -12279,20 +10764,10 @@ weak-lru-cache@^1.2.2: resolved "https://registry.yarnpkg.com/weak-lru-cache/-/weak-lru-cache-1.2.2.tgz#fdbb6741f36bae9540d12f480ce8254060dccd19" integrity sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw== -web-streams-polyfill@4.0.0-beta.1: - version "4.0.0-beta.1" - resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.1.tgz#3b19b9817374b7cee06d374ba7eeb3aeb80e8c95" - integrity sha512-3ux37gEX670UUphBF9AMCq8XM6iQ8Ac6A+DSRRjDoRBm1ufCkaCDdNVbaqq60PsEkdNlLKrGtv/YBP4EJXqNtQ== - -web-streams-polyfill@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.0.tgz#a6b74026b38e4885869fb5c589e90b95ccfc7965" - integrity sha512-EqPmREeOzttaLRm5HS7io98goBgZ7IVz79aDvqjD0kYXLtFZTc0T/U6wHTPKyIjb+MdN7DFIIX6hgdBEpWmfPA== - webidl-conversions@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== webpack-dev-middleware@^4.3.0: version "4.3.0" @@ -12307,9 +10782,9 @@ webpack-dev-middleware@^4.3.0: schema-utils "^3.0.0" webpack-merge@^5.8.0: - version "5.8.0" - resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.8.0.tgz#2b39dbf22af87776ad744c390223731d30a68f61" - integrity sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q== + version "5.9.0" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.9.0.tgz#dc160a1c4cf512ceca515cc231669e9ddb133826" + integrity sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg== dependencies: clone-deep "^4.0.1" wildcard "^2.0.0" @@ -12322,15 +10797,15 @@ webpack-sources@^1.1.0: source-list-map "^2.0.0" source-map "~0.6.1" -webpack-sources@^3.2.2: - version "3.2.2" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.2.tgz#d88e3741833efec57c4c789b6010db9977545260" - integrity sha512-cp5qdmHnu5T8wRg2G3vZZHoJPN14aqQ89SyQ11NpGH5zEMDCclt49rzo+MaRazk7/UeILhAI+/sEtcM+7Fr0nw== +webpack-sources@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" + integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== webpack-stats-plugin@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/webpack-stats-plugin/-/webpack-stats-plugin-1.0.3.tgz#0f64551a0b984b48a9e7acdee32e3cfda556fe51" - integrity sha512-tV/SQHl6lKfBahJcNDmz8JG1rpWPB9NEDQSMIoL74oVAotdxYljpgIsgLzgc1N9QrtA9KEA0moJVwQtNZv2aDA== + version "1.1.3" + resolved "https://registry.yarnpkg.com/webpack-stats-plugin/-/webpack-stats-plugin-1.1.3.tgz#ebcc36c8b468074ad737882e2043c1ce4b55d928" + integrity sha512-yUKYyy+e0iF/w31QdfioRKY+h3jDBRpthexBOWGKda99iu2l/wxYsI/XqdlP5IU58/0KB9CsJZgWNAl+/MPkRw== webpack-virtual-modules@^0.3.2: version "0.3.2" @@ -12340,39 +10815,39 @@ webpack-virtual-modules@^0.3.2: debug "^3.0.0" webpack@^5.61.0: - version "5.65.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.65.0.tgz#ed2891d9145ba1f0d318e4ea4f89c3fa18e6f9be" - integrity sha512-Q5or2o6EKs7+oKmJo7LaqZaMOlDWQse9Tm5l1WAfU/ujLGN5Pb0SqGeVkN/4bpPmEqEP5RnVhiqsOtWtUVwGRw== - dependencies: - "@types/eslint-scope" "^3.7.0" - "@types/estree" "^0.0.50" - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/wasm-edit" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" - acorn "^8.4.1" - acorn-import-assertions "^1.7.6" + version "5.88.2" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.88.2.tgz#f62b4b842f1c6ff580f3fcb2ed4f0b579f4c210e" + integrity sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ== + dependencies: + "@types/eslint-scope" "^3.7.3" + "@types/estree" "^1.0.0" + "@webassemblyjs/ast" "^1.11.5" + "@webassemblyjs/wasm-edit" "^1.11.5" + "@webassemblyjs/wasm-parser" "^1.11.5" + acorn "^8.7.1" + acorn-import-assertions "^1.9.0" browserslist "^4.14.5" chrome-trace-event "^1.0.2" - enhanced-resolve "^5.8.3" - es-module-lexer "^0.9.0" + enhanced-resolve "^5.15.0" + es-module-lexer "^1.2.1" eslint-scope "5.1.1" events "^3.2.0" glob-to-regexp "^0.4.1" - graceful-fs "^4.2.4" - json-parse-better-errors "^1.0.2" + graceful-fs "^4.2.9" + json-parse-even-better-errors "^2.3.1" loader-runner "^4.2.0" mime-types "^2.1.27" neo-async "^2.6.2" - schema-utils "^3.1.0" + schema-utils "^3.2.0" tapable "^2.1.1" - terser-webpack-plugin "^5.1.3" - watchpack "^2.3.1" - webpack-sources "^3.2.2" + terser-webpack-plugin "^5.3.7" + watchpack "^2.4.0" + webpack-sources "^3.2.3" whatwg-url@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" - integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== dependencies: tr46 "~0.0.3" webidl-conversions "^3.0.0" @@ -12388,10 +10863,49 @@ which-boxed-primitive@^1.0.2: is-string "^1.0.5" is-symbol "^1.0.3" +which-builtin-type@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.1.3.tgz#b1b8443707cc58b6e9bf98d32110ff0c2cbd029b" + integrity sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw== + dependencies: + function.prototype.name "^1.1.5" + has-tostringtag "^1.0.0" + is-async-function "^2.0.0" + is-date-object "^1.0.5" + is-finalizationregistry "^1.0.2" + is-generator-function "^1.0.10" + is-regex "^1.1.4" + is-weakref "^1.0.2" + isarray "^2.0.5" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.1" + which-typed-array "^1.1.9" + +which-collection@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" + integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== + dependencies: + is-map "^2.0.1" + is-set "^2.0.1" + is-weakmap "^2.0.1" + is-weakset "^2.0.1" + which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + version "2.0.1" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" + integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== + +which-typed-array@^1.1.10, which-typed-array@^1.1.11, which-typed-array@^1.1.9: + version "1.1.11" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.11.tgz#99d691f23c72aab6768680805a271b69761ed61a" + integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.0" which@^1.2.9, which@^1.3.1: version "1.3.1" @@ -12415,14 +10929,9 @@ widest-line@^3.1.0: string-width "^4.0.0" wildcard@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec" - integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== - -word-wrap@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + version "2.0.1" + resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" + integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== wrap-ansi@^6.2.0: version "6.2.0" @@ -12445,7 +10954,7 @@ wrap-ansi@^7.0.0: wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== write-file-atomic@^3.0.0: version "3.0.3" @@ -12457,78 +10966,45 @@ write-file-atomic@^3.0.0: signal-exit "^3.0.2" typedarray-to-buffer "^3.1.5" -"ws@^5.2.0 || ^6.0.0 || ^7.0.0": - version "7.5.6" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.6.tgz#e59fc509fb15ddfb65487ee9765c5a51dec5fe7b" - integrity sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA== - -ws@^8.3.0: - version "8.4.2" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.4.2.tgz#18e749868d8439f2268368829042894b6907aa0b" - integrity sha512-Kbk4Nxyq7/ZWqr/tarI9yIt/+iNNFOjBXEWgTb4ydaNHBNGgvf2QHbS9fdfsndfjFlFwEd4Al+mw83YkaD10ZA== +ws@8.2.3, ws@~8.2.3: + version "8.2.3" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.2.3.tgz#63a56456db1b04367d0b721a0b80cae6d8becbba" + integrity sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA== -ws@~7.4.2: - version "7.4.6" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" - integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== +"ws@^5.2.0 || ^6.0.0 || ^7.0.0": + version "7.5.9" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== xdg-basedir@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== -xhr@^2.0.1: - version "2.6.0" - resolved "https://registry.yarnpkg.com/xhr/-/xhr-2.6.0.tgz#b69d4395e792b4173d6b7df077f0fc5e4e2b249d" - integrity sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA== - dependencies: - global "~4.4.0" - is-function "^1.0.1" - parse-headers "^2.0.0" - xtend "^4.0.0" - -xml-parse-from-string@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz#a9029e929d3dbcded169f3c6e28238d95a5d5a28" - integrity sha1-qQKekp09vN7RafPG4oI42VpdWig= - xml2js@0.4.17: version "0.4.17" resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.17.tgz#17be93eaae3f3b779359c795b419705a8817e868" - integrity sha1-F76T6q4/O3eTWceVtBlwWogX6Gg= + integrity sha512-1O7wk/NTQN0UEOItIYTxK4qP4sMUVU60MbF4Nj0a8jd6eebMXOicVI/KFOEsYKKH4uBpx6XG9ZGZctXK5rtO5Q== dependencies: sax ">=0.6.0" xmlbuilder "^4.1.0" -xml2js@^0.4.5: - version "0.4.23" - resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66" - integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== - dependencies: - sax ">=0.6.0" - xmlbuilder "~11.0.0" - xmlbuilder@^4.1.0: version "4.2.1" resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-4.2.1.tgz#aa58a3041a066f90eaa16c2f5389ff19f3f461a5" - integrity sha1-qlijBBoGb5DqoWwvU4n/GfP0YaU= + integrity sha512-oEePiEefhQhAeUnwRnIBLBWmk/fsWWbQ53EEWsRuzECbQ3m5o/Esmq6H47CYYwSLW+Ynt0rS9hd0pd2ogMAWjg== dependencies: lodash "^4.0.0" -xmlbuilder@~11.0.0: - version "11.0.1" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" - integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== - -xmlhttprequest-ssl@~1.6.2: - version "1.6.3" - resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.6.3.tgz#03b713873b01659dfa2c1c5d056065b27ddc2de6" - integrity sha512-3XfeQE/wNkvrIktn2Kf0869fC0BN6UpydVasGIeSm2B1Llihf7/0UfZM+eCkOw3P7bP4+qPgqhm7ZoxuJtFU0Q== +xmlhttprequest-ssl@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz#91360c86b914e67f44dce769180027c0da618c67" + integrity sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A== xss@^1.0.6: - version "1.0.10" - resolved "https://registry.yarnpkg.com/xss/-/xss-1.0.10.tgz#5cd63a9b147a755a14cb0455c7db8866120eb4d2" - integrity sha512-qmoqrRksmzqSKvgqzN0055UFWY7OKx1/9JWeRswwEVX9fCG5jcYRxa/A2DHcmZX6VJvjzHRQ2STeeVcQkrmLSw== + version "1.0.14" + resolved "https://registry.yarnpkg.com/xss/-/xss-1.0.14.tgz#4f3efbde75ad0d82e9921cc3c95e6590dd336694" + integrity sha512-og7TEJhXvn1a7kzZGQ7ETjdQVS2UfZyTlsEdDOqvQF7GoxNfY+0YLCzBy1kPdsDDx4QuNAonQPddpsn6Xl/7sw== dependencies: commander "^2.20.3" cssfilter "0.0.10" @@ -12538,10 +11014,10 @@ xstate@4.32.1: resolved "https://registry.yarnpkg.com/xstate/-/xstate-4.32.1.tgz#1a09c808a66072938861a3b4acc5b38460244b70" integrity sha512-QYUd+3GkXZ8i6qdixnOn28bL3EvA++LONYL/EMWwKlFSh/hiLndJ8YTnz77FDs+JUXcwU7NZJg7qoezoRHc4GQ== -xstate@^4.14.0, xstate@^4.26.1: - version "4.26.1" - resolved "https://registry.yarnpkg.com/xstate/-/xstate-4.26.1.tgz#4fc1afd153f88cf302a9ee2b758f6629e6a829b6" - integrity sha512-JLofAEnN26l/1vbODgsDa+Phqa61PwDlxWu8+2pK+YbXf+y9pQSDLRvcYH2H1kkeUBA5fGp+xFL/zfE8jNMw4g== +xstate@^4.26.1: + version "4.38.2" + resolved "https://registry.yarnpkg.com/xstate/-/xstate-4.38.2.tgz#1b74544fc9c8c6c713ba77f81c6017e65aa89804" + integrity sha512-Fba/DwEPDLneHT3tbJ9F3zafbQXszOlyCJyQqqdzmtlY/cwE2th462KK48yaANf98jHlP6lJvxfNtN0LFKXPQg== xtend@^4.0.0: version "4.0.2" @@ -12561,26 +11037,37 @@ y18n@^4.0.0: yallist@^2.0.0, yallist@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" - integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= + integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== yallist@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== -yaml-loader@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/yaml-loader/-/yaml-loader-0.6.0.tgz#fe1c48b9f4803dace55a59a1474e790ba6ab1b48" - integrity sha512-1bNiLelumURyj+zvVHOv8Y3dpCri0F2S+DCcmps0pA1zWRLjS+FhZQg4o3aUUDYESh73+pKZNI18bj7stpReow== +yaml-loader@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/yaml-loader/-/yaml-loader-0.8.0.tgz#c839325e3fdee082b3768b2a21fe34fde5d96f61" + integrity sha512-LjeKnTzVBKWiQBeE2L9ssl6WprqaUIxCSNs5tle8PaDydgu3wVFXTbMfsvF2MSErpy9TDVa092n4q6adYwJaWg== dependencies: - loader-utils "^1.4.0" - yaml "^1.8.3" + javascript-stringify "^2.0.1" + loader-utils "^2.0.0" + yaml "^2.0.0" -yaml@^1.10.0, yaml@^1.10.2, yaml@^1.7.2, yaml@^1.8.3: +yaml@^1.10.0, yaml@^1.10.2, yaml@^1.7.2: version "1.10.2" resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== +yaml@^2.0.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b" + integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== + yargs-parser@^18.1.2: version "18.1.3" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" @@ -12606,11 +11093,6 @@ yargs@^15.3.1, yargs@^15.4.1: y18n "^4.0.0" yargs-parser "^18.1.2" -yeast@0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" - integrity sha1-AI4G2AlDIMNy28L47XagymyKxBk= - yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"