diff --git a/.github/assets/faustjs-logo.svg b/.github/assets/faustjs-logo.svg new file mode 100644 index 0000000..923848d --- /dev/null +++ b/.github/assets/faustjs-logo.svg @@ -0,0 +1 @@ + diff --git a/.github/workflows/blueprint-export-diff.yml b/.github/workflows/blueprint-export-diff.yml index 2766e05..fb367c1 100644 --- a/.github/workflows/blueprint-export-diff.yml +++ b/.github/workflows/blueprint-export-diff.yml @@ -9,7 +9,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v2 with: - node-version: '18' + node-version: "18" - name: Check for changes id: check-for-export-changes run: echo ::set-output name=check::$(git diff --name-only origin/main --exit-code -- acm-blueprint.zip) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9cb4e2f..35407e2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: ['18', '20' ] + node: ["18", "20"] steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 diff --git a/.gitignore b/.gitignore index 1437c53..3da3c1a 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ /node_modules /.pnp .pnp.js +package-lock.json # testing /coverage diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..deed13c --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +lts/jod diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 1d7cdcc..18e4f82 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -14,4 +14,4 @@ This will import the ACM Blueprint export into your WordPress database. Make any 1. Before exporting, make sure you have deleted any of the initial content that gets created upon a WordPress install (e.g. "Sample Page", "Hello World", any comments, etc.) 2. From the WP CLI, run `wp acm blueprint export --open --wp-options=category_base,permalink_structure,nav_menu_options,theme_mods_twentytwentytwo --post-types=nav_menu_item,post,page,testimonial,project`. This will export the site into the appropriate ACM Blueprint .zip, and also open the location where the .zip was saved. It will also export the Navigational Menus and the CPTs from the ACM models. -3. Replace the existing `acm-blueprint.zip` in the repo with the newly exported `acm-blueprint.zip` and make a PR with the changes. \ No newline at end of file +3. Replace the existing `acm-blueprint.zip` in the repo with the newly exported `acm-blueprint.zip` and make a PR with the changes. diff --git a/README.md b/README.md index 87ff467..6b03e20 100644 --- a/README.md +++ b/README.md @@ -1,27 +1,91 @@ -# Faust Scaffold +# ![Faust.js Logo](./.github/assets/faustjs-logo.svg) Faust.js Starter Kit -This repository contains a starter scaffolding to get you up and running quickly on [WP Engine's Atlas platform](https://wpengine.com/atlas/) with a WordPress site skeleton for more advanced developers. +This repository contains a starter kit to get you up and running quickly on [WP Engine's Headless Platform](https://wpengine.com/headless-wordpress/) with a WordPress site skeleton for more advanced developers. -# Installation +## For more information -Run `npm i` -Change the `.env.local.sample` file's name to `.env.local.` -Run `npm run build` -Run `npm run generate` -Run `npm run start` +To get started on WP Engine's Platform please follow the docs here [https://developers.wpengine.com/docs/atlas/getting-started/create-app/](https://developers.wpengine.com/docs/atlas/getting-started/create-app/) -While making changes to the scaffold, run `npm run dev` in another terminal window. +## Project Structure -## For more information +``` +├── src/ +│ ├── __generated__/ +│ ├── components/ +│ ├── fragments/ +│ ├── pages/ +│ ├── queries/ +│ ├── styles/ +│ └── wp-templates/ +├── DEVELOPMENT.md +├── faust.config.js +├── next.config.js +├── package.json +├── possibleTypes.json +└── README.md +└── screenshots +``` + +## Available Commands + +| Command | Script | Description | +| --------------- | ---------------------------------------------------------------------- | ---------------------------------- | +| `dev` | `npm run generate && concurrently "faust dev" "npm run watch-codegen"` | Start dev server and watch codegen | +| `build` | `faust build` | Build the project for production | +| `generate` | `faust generatePossibleTypes` | Generate GraphQL possible types | +| `start` | `faust start` | Start the production server | +| `codegen` | `graphql-codegen` | Run GraphQL code generation | +| `watch-codegen` | `graphql-codegen -w` | Watch and auto-run GraphQL codegen | +| `format` | `prettier . --write` | Format code with Prettier | +| `test:format` | `prettier . --check` | Check code formatting | + +## Screenshots + +
+ View Screenshots + +![Front Page](screenshots/front-page.png) + +![Category Page](screenshots/category-page.png) + +![Single Page](screenshots/single-page.png) -For more information on this Blueprint please check out the following sources: +![Single Post](screenshots/single-post.png) + +
+ +## Our Community 🩵 + +At WP Engine, we have a strong community built around headless WordPress to support you with your journey. + +- [Discord Headless Community Channel](https://faustjs.org/discord) +- [Fortnightly Headless Community Call](https://discord.gg/headless-wordpress-836253505944813629?event=1371472220592930857) +- [WP Engine's Headless Platform developer community](https://wpengine.com/builders/headless) +- [WP Engine`s Builders YouTube Channel](https://www.youtube.com/@WPEngineBuilders) +- [WP Engine's Headless Platform](https://wpengine.com/headless-wordpress/) +- [WP Engines Headless Platform Docs](https://developers.wpengine.com/docs/atlas/overview/) + +## Plugin Ecosystem 🪄 -- [WP Engine's Atlas Platform](https://wpengine.com/atlas/) - [Faust.js](https://faustjs.org) +- [HWP Toolkit](https://github.com/wpengine/hwptoolkit) - [WPGraphQL](https://www.wpgraphql.com) -- [WP Engine's Atlas developer community](https://developers.wpengine.com) +- [WPGraphQL Content Blocks](https://github.com/wpengine/wp-graphql-content-blocks) +- [WPGraphQL IDE](https://github.com/wp-graphql/wpgraphql-ide) +- [WP GraphQL ACF](https://github.com/wp-graphql/wp-graphql-acf) + +## Documentation 🔎 + +> [!NOTE] +> We are continuously adding new docs for [Faustjs.org](https://faustjs.org/docs) + +- [Faust.js Documentation](https://faustjs.org/docs/) +- [Headless Platform Documentation](https://wpengine.com/headless-wordpress/) +- [WPGraphQL Documentation](https://developers.wpengine.com/docs/atlas/overview/) + +## Contributions -### Contributor License Agreement +## Contributor License Agreement All external contributors to WP Engine products must have a signed Contributor License Agreement (CLA) in place before the contribution may be accepted into any WP Engine codebase. diff --git a/next.config.js b/next.config.js index 25fa230..ea4ff9f 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,11 @@ -const { withFaust, getWpHostname } = require('@faustwp/core'); +const { withFaust, getWpHostname } = require("@faustwp/core"); /** * @type {import('next').NextConfig} **/ -module.exports = withFaust({}); +module.exports = withFaust({ + images: { + domains: ["faustexample.wpengine.com"], + }, + trailingSlash: true, +}); diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 07585e8..0000000 --- a/package-lock.json +++ /dev/null @@ -1,7225 +0,0 @@ -{ - "name": "faust-scaffold-ts", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "dependencies": { - "@apollo/client": "^3.13.8", - "@faustwp/cli": "^3.2.3", - "@faustwp/core": "^3.2.3", - "graphql": "^16.10.0", - "next": "^15.3.1", - "react": "^19.1.0", - "react-dom": "^19.1.0" - }, - "devDependencies": { - "@graphql-codegen/cli": "^5.0.5", - "@graphql-codegen/client-preset": "^4.8.0", - "@parcel/watcher": "^2.5.1", - "@types/node": "^22.15.2", - "@types/react": "^19.1.2", - "concurrently": "^9.1.2", - "typescript": "^5.8.3" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "dev": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@apollo/client": { - "version": "3.13.8", - "resolved": "https://registry.npmjs.org/@apollo/client/-/client-3.13.8.tgz", - "integrity": "sha512-YM9lQpm0VfVco4DSyKooHS/fDTiKQcCHfxr7i3iL6a0kP/jNO5+4NFK6vtRDxaYisd5BrwOZHLJpPBnvRVpKPg==", - "license": "MIT", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "@wry/caches": "^1.0.0", - "@wry/equality": "^0.5.6", - "@wry/trie": "^0.5.0", - "graphql-tag": "^2.12.6", - "hoist-non-react-statics": "^3.3.2", - "optimism": "^0.18.0", - "prop-types": "^15.7.2", - "rehackt": "^0.1.0", - "symbol-observable": "^4.0.0", - "ts-invariant": "^0.10.3", - "tslib": "^2.3.0", - "zen-observable-ts": "^1.2.5" - }, - "peerDependencies": { - "graphql": "^15.0.0 || ^16.0.0", - "graphql-ws": "^5.5.5 || ^6.0.3", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc", - "subscriptions-transport-ws": "^0.9.0 || ^0.11.0" - }, - "peerDependenciesMeta": { - "graphql-ws": { - "optional": true - }, - "react": { - "optional": true - }, - "react-dom": { - "optional": true - }, - "subscriptions-transport-ws": { - "optional": true - } - } - }, - "node_modules/@ardatan/relay-compiler": { - "version": "12.0.3", - "resolved": "https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-12.0.3.tgz", - "integrity": "sha512-mBDFOGvAoVlWaWqs3hm1AciGHSQE1rqFc/liZTyYz/Oek9yZdT5H26pH2zAFuEiTiBVPPyMuqf5VjOFPI2DGsQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/generator": "^7.26.10", - "@babel/parser": "^7.26.10", - "@babel/runtime": "^7.26.10", - "chalk": "^4.0.0", - "fb-watchman": "^2.0.0", - "immutable": "~3.7.6", - "invariant": "^2.2.4", - "nullthrows": "^1.1.1", - "relay-runtime": "12.0.0", - "signedsource": "^1.0.0" - }, - "bin": { - "relay-compiler": "bin/relay-compiler" - }, - "peerDependencies": { - "graphql": "*" - } - }, - "node_modules/@ardatan/sync-fetch": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@ardatan/sync-fetch/-/sync-fetch-0.0.1.tgz", - "integrity": "sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==", - "dev": true, - "dependencies": { - "node-fetch": "^2.6.1" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", - "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", - "dev": true, - "dependencies": { - "@babel/helper-validator-identifier": "^7.25.9", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz", - "integrity": "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz", - "integrity": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==", - "dev": true, - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.24.7", - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helpers": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/template": "^7.24.7", - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/generator": { - "version": "7.26.10", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.10.tgz", - "integrity": "sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.26.10", - "@babel/types": "^7.26.10", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^3.0.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz", - "integrity": "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.24.7", - "@babel/helper-validator-option": "^7.24.7", - "browserslist": "^4.22.2", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", - "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", - "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", - "dev": true, - "dependencies": { - "@babel/template": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", - "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", - "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", - "dev": true, - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz", - "integrity": "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-simple-access": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz", - "integrity": "sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", - "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", - "dev": true, - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", - "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", - "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", - "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz", - "integrity": "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.26.10", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.10.tgz", - "integrity": "sha512-UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g==", - "dev": true, - "dependencies": { - "@babel/template": "^7.26.9", - "@babel/types": "^7.26.10" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.26.10", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.10.tgz", - "integrity": "sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.26.10" - }, - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", - "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.26.10", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.10.tgz", - "integrity": "sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.26.9", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz", - "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.26.2", - "@babel/parser": "^7.26.9", - "@babel/types": "^7.26.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.7.tgz", - "integrity": "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-hoist-variables": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/types": "^7.24.7", - "debug": "^4.3.1", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.26.10", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.10.tgz", - "integrity": "sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==", - "dev": true, - "dependencies": { - "@babel/helper-string-parser": "^7.25.9", - "@babel/helper-validator-identifier": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@discoveryjs/json-ext": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", - "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/@emnapi/runtime": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.3.tgz", - "integrity": "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==", - "license": "MIT", - "optional": true, - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@faustwp/cli": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/@faustwp/cli/-/cli-3.2.3.tgz", - "integrity": "sha512-xrLPJnyZBm7CfeutYE7hTB1N9/mszdvth2YkuH2h1CRFyK2pc9+yH2i9XAjRMpuNTJKGqhEcg+g+gAHyecMfuw==", - "license": "MIT", - "dependencies": { - "archiver": "^6.0.1", - "chalk": "^4.1.2", - "dotenv-flow": "^3.2.0", - "form-data": "^4.0.0", - "fs-extra": "^11.1.1", - "glob": "^11.0.0", - "isomorphic-fetch": "^3.0.0", - "lodash": "^4.17.21", - "webpack-cli": "5.1.4" - }, - "bin": { - "faust": "dist/index.js" - }, - "engines": { - "node": ">=18", - "npm": ">=8" - } - }, - "node_modules/@faustwp/cli/node_modules/glob": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.1.tgz", - "integrity": "sha512-zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw==", - "license": "ISC", - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^4.0.1", - "minimatch": "^10.0.0", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^2.0.0" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": "20 || >=22" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@faustwp/cli/node_modules/minimatch": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", - "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": "20 || >=22" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@faustwp/core": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/@faustwp/core/-/core-3.2.3.tgz", - "integrity": "sha512-p7VpO9kUkz9oPxRsWcuLLNXtayyS+8xlotI9fc5wZsRyI9CVcdXtQk0MkM8Ojai0L3grt9zvut5WWI3dxIldug==", - "license": "MIT", - "dependencies": { - "@wordpress/hooks": "^3.14.0", - "chalk": "^4.1.2", - "classnames": "^2.3.2", - "cookie": "^0.5.0", - "deepmerge": "^4.2.2", - "fast-xml-parser": "^4.4.1", - "isomorphic-fetch": "^3.0.0", - "js-cookie": "^3.0.5", - "js-sha256": "^0.9.0", - "lodash": "^4.17.21" - }, - "engines": { - "node": ">=18", - "npm": ">=8" - }, - "peerDependencies": { - "@apollo/client": ">=3.6.6", - "next": ">=12.1.6", - "react": ">=17.0.2", - "react-dom": ">=17.0.2" - } - }, - "node_modules/@graphql-codegen/add": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-5.0.3.tgz", - "integrity": "sha512-SxXPmramkth8XtBlAHu4H4jYcYXM/o3p01+psU+0NADQowA8jtYkK6MW5rV6T+CxkEaNZItfSmZRPgIuypcqnA==", - "dev": true, - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.0.3", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/cli": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/@graphql-codegen/cli/-/cli-5.0.5.tgz", - "integrity": "sha512-9p9SI5dPhJdyU+O6p1LUqi5ajDwpm6pUhutb1fBONd0GZltLFwkgWFiFtM6smxkYXlYVzw61p1kTtwqsuXO16w==", - "dev": true, - "dependencies": { - "@babel/generator": "^7.18.13", - "@babel/template": "^7.18.10", - "@babel/types": "^7.18.13", - "@graphql-codegen/client-preset": "^4.6.0", - "@graphql-codegen/core": "^4.0.2", - "@graphql-codegen/plugin-helpers": "^5.0.3", - "@graphql-tools/apollo-engine-loader": "^8.0.0", - "@graphql-tools/code-file-loader": "^8.0.0", - "@graphql-tools/git-loader": "^8.0.0", - "@graphql-tools/github-loader": "^8.0.0", - "@graphql-tools/graphql-file-loader": "^8.0.0", - "@graphql-tools/json-file-loader": "^8.0.0", - "@graphql-tools/load": "^8.0.0", - "@graphql-tools/prisma-loader": "^8.0.0", - "@graphql-tools/url-loader": "^8.0.0", - "@graphql-tools/utils": "^10.0.0", - "@whatwg-node/fetch": "^0.10.0", - "chalk": "^4.1.0", - "cosmiconfig": "^8.1.3", - "debounce": "^1.2.0", - "detect-indent": "^6.0.0", - "graphql-config": "^5.1.1", - "inquirer": "^8.0.0", - "is-glob": "^4.0.1", - "jiti": "^1.17.1", - "json-to-pretty-yaml": "^1.2.2", - "listr2": "^4.0.5", - "log-symbols": "^4.0.0", - "micromatch": "^4.0.5", - "shell-quote": "^1.7.3", - "string-env-interpolation": "^1.0.1", - "ts-log": "^2.2.3", - "tslib": "^2.4.0", - "yaml": "^2.3.1", - "yargs": "^17.0.0" - }, - "bin": { - "gql-gen": "cjs/bin.js", - "graphql-code-generator": "cjs/bin.js", - "graphql-codegen": "cjs/bin.js", - "graphql-codegen-esm": "esm/bin.js" - }, - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "@parcel/watcher": "^2.1.0", - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - }, - "peerDependenciesMeta": { - "@parcel/watcher": { - "optional": true - } - } - }, - "node_modules/@graphql-codegen/client-preset": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/client-preset/-/client-preset-4.8.0.tgz", - "integrity": "sha512-IVtTl7GsPMbQihk5+l5fDYksnPPOoC52sKxzquyIyuecZLEB7W3nNLV29r6+y+tjXTRPA774FR7CHGA2adzhjw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/template": "^7.20.7", - "@graphql-codegen/add": "^5.0.3", - "@graphql-codegen/gql-tag-operations": "4.0.17", - "@graphql-codegen/plugin-helpers": "^5.1.0", - "@graphql-codegen/typed-document-node": "^5.1.1", - "@graphql-codegen/typescript": "^4.1.6", - "@graphql-codegen/typescript-operations": "^4.6.0", - "@graphql-codegen/visitor-plugin-common": "^5.8.0", - "@graphql-tools/documents": "^1.0.0", - "@graphql-tools/utils": "^10.0.0", - "@graphql-typed-document-node/core": "3.2.0", - "tslib": "~2.6.0" - }, - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0", - "graphql-sock": "^1.0.0" - } - }, - "node_modules/@graphql-codegen/core": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-4.0.2.tgz", - "integrity": "sha512-IZbpkhwVqgizcjNiaVzNAzm/xbWT6YnGgeOLwVjm4KbJn3V2jchVtuzHH09G5/WkkLSk2wgbXNdwjM41JxO6Eg==", - "dev": true, - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.0.3", - "@graphql-tools/schema": "^10.0.0", - "@graphql-tools/utils": "^10.0.0", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/gql-tag-operations": { - "version": "4.0.17", - "resolved": "https://registry.npmjs.org/@graphql-codegen/gql-tag-operations/-/gql-tag-operations-4.0.17.tgz", - "integrity": "sha512-2pnvPdIG6W9OuxkrEZ6hvZd142+O3B13lvhrZ48yyEBh2ujtmKokw0eTwDHtlXUqjVS0I3q7+HB2y12G/m69CA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.1.0", - "@graphql-codegen/visitor-plugin-common": "5.8.0", - "@graphql-tools/utils": "^10.0.0", - "auto-bind": "~4.0.0", - "tslib": "~2.6.0" - }, - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/plugin-helpers": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-5.1.0.tgz", - "integrity": "sha512-Y7cwEAkprbTKzVIe436TIw4w03jorsMruvCvu0HJkavaKMQbWY+lQ1RIuROgszDbxAyM35twB5/sUvYG5oW+yg==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^10.0.0", - "change-case-all": "1.0.15", - "common-tags": "1.8.2", - "import-from": "4.0.0", - "lodash": "~4.17.0", - "tslib": "~2.6.0" - }, - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/schema-ast": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-4.1.0.tgz", - "integrity": "sha512-kZVn0z+th9SvqxfKYgztA6PM7mhnSZaj4fiuBWvMTqA+QqQ9BBed6Pz41KuD/jr0gJtnlr2A4++/0VlpVbCTmQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.0.3", - "@graphql-tools/utils": "^10.0.0", - "tslib": "~2.6.0" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/typed-document-node": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typed-document-node/-/typed-document-node-5.1.1.tgz", - "integrity": "sha512-Bp/BrMZDKRwzuVeLv+pSljneqONM7gqu57ZaV34Jbncu2hZWMRDMfizTKghoEwwZbRCYYfJO9tA0sYVVIfI1kg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.1.0", - "@graphql-codegen/visitor-plugin-common": "5.8.0", - "auto-bind": "~4.0.0", - "change-case-all": "1.0.15", - "tslib": "~2.6.0" - }, - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/typescript": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-4.1.6.tgz", - "integrity": "sha512-vpw3sfwf9A7S+kIUjyFxuvrywGxd4lmwmyYnnDVjVE4kSQ6Td3DpqaPTy8aNQ6O96vFoi/bxbZS2BW49PwSUUA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.1.0", - "@graphql-codegen/schema-ast": "^4.0.2", - "@graphql-codegen/visitor-plugin-common": "5.8.0", - "auto-bind": "~4.0.0", - "tslib": "~2.6.0" - }, - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-codegen/typescript-operations": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-4.6.0.tgz", - "integrity": "sha512-/EltSdE/uPoEAblRTVLABVDhsrE//Kl3pCflyG1PWl4gWL9/OzQXYGjo6TF6bPMVn/QBWoO0FeboWf+bk84SXA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.1.0", - "@graphql-codegen/typescript": "^4.1.6", - "@graphql-codegen/visitor-plugin-common": "5.8.0", - "auto-bind": "~4.0.0", - "tslib": "~2.6.0" - }, - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0", - "graphql-sock": "^1.0.0" - } - }, - "node_modules/@graphql-codegen/visitor-plugin-common": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-5.8.0.tgz", - "integrity": "sha512-lC1E1Kmuzi3WZUlYlqB4fP6+CvbKH9J+haU1iWmgsBx5/sO2ROeXJG4Dmt8gP03bI2BwjiwV5WxCEMlyeuzLnA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.1.0", - "@graphql-tools/optimize": "^2.0.0", - "@graphql-tools/relay-operation-optimizer": "^7.0.0", - "@graphql-tools/utils": "^10.0.0", - "auto-bind": "~4.0.0", - "change-case-all": "1.0.15", - "dependency-graph": "^0.11.0", - "graphql-tag": "^2.11.0", - "parse-filepath": "^1.0.2", - "tslib": "~2.6.0" - }, - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/@graphql-tools/apollo-engine-loader": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.1.tgz", - "integrity": "sha512-NaPeVjtrfbPXcl+MLQCJLWtqe2/E4bbAqcauEOQ+3sizw1Fc2CNmhHRF8a6W4D0ekvTRRXAMptXYgA2uConbrA==", - "dev": true, - "dependencies": { - "@ardatan/sync-fetch": "^0.0.1", - "@graphql-tools/utils": "^10.0.13", - "@whatwg-node/fetch": "^0.9.0", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/apollo-engine-loader/node_modules/@whatwg-node/fetch": { - "version": "0.9.18", - "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.18.tgz", - "integrity": "sha512-hqoz6StCW+AjV/3N+vg0s1ah82ptdVUb9nH2ttj3UbySOXUvytWw2yqy8c1cKzyRk6mDD00G47qS3fZI9/gMjg==", - "dev": true, - "dependencies": { - "@whatwg-node/node-fetch": "^0.5.7", - "urlpattern-polyfill": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/apollo-engine-loader/node_modules/@whatwg-node/node-fetch": { - "version": "0.5.27", - "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.27.tgz", - "integrity": "sha512-0OaMj5W4fzWimRSFq07qFiWfquaUMNB+695GwE76LYKVuah+jwCdzSgsIOtwPkiyJ35w0XGhXmJPiIJCdLwopg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@kamilkisiela/fast-url-parser": "^1.1.4", - "busboy": "^1.6.0", - "fast-querystring": "^1.1.1", - "tslib": "^2.6.3" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@graphql-tools/batch-execute": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-9.0.4.tgz", - "integrity": "sha512-kkebDLXgDrep5Y0gK1RN3DMUlLqNhg60OAz0lTCqrYeja6DshxLtLkj+zV4mVbBA4mQOEoBmw6g1LZs3dA84/w==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^10.0.13", - "dataloader": "^2.2.2", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/code-file-loader": { - "version": "8.1.2", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.1.2.tgz", - "integrity": "sha512-GrLzwl1QV2PT4X4TEEfuTmZYzIZHLqoTGBjczdUzSqgCCcqwWzLB3qrJxFQfI8e5s1qZ1bhpsO9NoMn7tvpmyA==", - "dev": true, - "dependencies": { - "@graphql-tools/graphql-tag-pluck": "8.3.1", - "@graphql-tools/utils": "^10.0.13", - "globby": "^11.0.3", - "tslib": "^2.4.0", - "unixify": "^1.0.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/delegate": { - "version": "10.0.11", - "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-10.0.11.tgz", - "integrity": "sha512-+sKeecdIVXhFB/66e5yjeKYZ3Lpn52yNG637ElVhciuLGgFc153rC6l6zcuNd9yx5wMrNx35U/h3HsMIEI3xNw==", - "dev": true, - "dependencies": { - "@graphql-tools/batch-execute": "^9.0.4", - "@graphql-tools/executor": "^1.2.1", - "@graphql-tools/schema": "^10.0.4", - "@graphql-tools/utils": "^10.2.1", - "dataloader": "^2.2.2", - "tslib": "^2.5.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/documents": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/documents/-/documents-1.0.1.tgz", - "integrity": "sha512-aweoMH15wNJ8g7b2r4C4WRuJxZ0ca8HtNO54rkye/3duxTkW4fGBEutCx03jCIr5+a1l+4vFJNP859QnAVBVCA==", - "dev": true, - "dependencies": { - "lodash.sortby": "^4.7.0", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/executor": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.2.6.tgz", - "integrity": "sha512-+1kjfqzM5T2R+dCw7F4vdJ3CqG+fY/LYJyhNiWEFtq0ToLwYzR/KKyD8YuzTirEjSxWTVlcBh7endkx5n5F6ew==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^10.1.1", - "@graphql-typed-document-node/core": "3.2.0", - "@repeaterjs/repeater": "^3.0.4", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/executor-graphql-ws": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-1.1.2.tgz", - "integrity": "sha512-+9ZK0rychTH1LUv4iZqJ4ESbmULJMTsv3XlFooPUngpxZkk00q6LqHKJRrsLErmQrVaC7cwQCaRBJa0teK17Lg==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^10.0.13", - "@types/ws": "^8.0.0", - "graphql-ws": "^5.14.0", - "isomorphic-ws": "^5.0.0", - "tslib": "^2.4.0", - "ws": "^8.13.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/executor-http": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-1.0.9.tgz", - "integrity": "sha512-+NXaZd2MWbbrWHqU4EhXcrDbogeiCDmEbrAN+rMn4Nu2okDjn2MTFDbTIab87oEubQCH4Te1wDkWPKrzXup7+Q==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^10.0.13", - "@repeaterjs/repeater": "^3.0.4", - "@whatwg-node/fetch": "^0.9.0", - "extract-files": "^11.0.0", - "meros": "^1.2.1", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/executor-http/node_modules/@whatwg-node/fetch": { - "version": "0.9.18", - "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.18.tgz", - "integrity": "sha512-hqoz6StCW+AjV/3N+vg0s1ah82ptdVUb9nH2ttj3UbySOXUvytWw2yqy8c1cKzyRk6mDD00G47qS3fZI9/gMjg==", - "dev": true, - "dependencies": { - "@whatwg-node/node-fetch": "^0.5.7", - "urlpattern-polyfill": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/executor-http/node_modules/@whatwg-node/node-fetch": { - "version": "0.5.27", - "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.27.tgz", - "integrity": "sha512-0OaMj5W4fzWimRSFq07qFiWfquaUMNB+695GwE76LYKVuah+jwCdzSgsIOtwPkiyJ35w0XGhXmJPiIJCdLwopg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@kamilkisiela/fast-url-parser": "^1.1.4", - "busboy": "^1.6.0", - "fast-querystring": "^1.1.1", - "tslib": "^2.6.3" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@graphql-tools/executor-legacy-ws": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.0.6.tgz", - "integrity": "sha512-lDSxz9VyyquOrvSuCCnld3256Hmd+QI2lkmkEv7d4mdzkxkK4ddAWW1geQiWrQvWmdsmcnGGlZ7gDGbhEExwqg==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^10.0.13", - "@types/ws": "^8.0.0", - "isomorphic-ws": "^5.0.0", - "tslib": "^2.4.0", - "ws": "^8.15.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/git-loader": { - "version": "8.0.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-8.0.6.tgz", - "integrity": "sha512-FQFO4H5wHAmHVyuUQrjvPE8re3qJXt50TWHuzrK3dEaief7JosmlnkLMDMbMBwtwITz9u1Wpl6doPhT2GwKtlw==", - "dev": true, - "dependencies": { - "@graphql-tools/graphql-tag-pluck": "8.3.1", - "@graphql-tools/utils": "^10.0.13", - "is-glob": "4.0.3", - "micromatch": "^4.0.4", - "tslib": "^2.4.0", - "unixify": "^1.0.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/github-loader": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-8.0.1.tgz", - "integrity": "sha512-W4dFLQJ5GtKGltvh/u1apWRFKBQOsDzFxO9cJkOYZj1VzHCpRF43uLST4VbCfWve+AwBqOuKr7YgkHoxpRMkcg==", - "dev": true, - "dependencies": { - "@ardatan/sync-fetch": "^0.0.1", - "@graphql-tools/executor-http": "^1.0.9", - "@graphql-tools/graphql-tag-pluck": "^8.0.0", - "@graphql-tools/utils": "^10.0.13", - "@whatwg-node/fetch": "^0.9.0", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/github-loader/node_modules/@whatwg-node/fetch": { - "version": "0.9.18", - "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.18.tgz", - "integrity": "sha512-hqoz6StCW+AjV/3N+vg0s1ah82ptdVUb9nH2ttj3UbySOXUvytWw2yqy8c1cKzyRk6mDD00G47qS3fZI9/gMjg==", - "dev": true, - "dependencies": { - "@whatwg-node/node-fetch": "^0.5.7", - "urlpattern-polyfill": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/github-loader/node_modules/@whatwg-node/node-fetch": { - "version": "0.5.11", - "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.11.tgz", - "integrity": "sha512-LS8tSomZa3YHnntpWt3PP43iFEEl6YeIsvDakczHBKlay5LdkXFr8w7v8H6akpG5nRrzydyB0k1iE2eoL6aKIQ==", - "dev": true, - "dependencies": { - "@kamilkisiela/fast-url-parser": "^1.1.4", - "@whatwg-node/events": "^0.1.0", - "busboy": "^1.6.0", - "fast-querystring": "^1.1.1", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/graphql-file-loader": { - "version": "8.0.19", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.0.19.tgz", - "integrity": "sha512-kyEZL4rRJ5LelfCXL3GLgbMiu5Zd7memZaL8ZxPXGI7DA8On1e5IVBH3zZJwf7LzhjSVnPaHM7O/bRzGvTbXzQ==", - "dev": true, - "dependencies": { - "@graphql-tools/import": "7.0.18", - "@graphql-tools/utils": "^10.8.6", - "globby": "^11.0.3", - "tslib": "^2.4.0", - "unixify": "^1.0.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/graphql-tag-pluck": { - "version": "8.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.1.tgz", - "integrity": "sha512-ujits9tMqtWQQq4FI4+qnVPpJvSEn7ogKtyN/gfNT+ErIn6z1e4gyVGQpTK5sgAUXq1lW4gU/5fkFFC5/sL2rQ==", - "dev": true, - "dependencies": { - "@babel/core": "^7.22.9", - "@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": "^10.0.13", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/import": { - "version": "7.0.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-7.0.18.tgz", - "integrity": "sha512-1tw1/1QLB0n5bPWfIrhCRnrHIlbMvbwuifDc98g4FPhJ7OXD+iUQe+IpmD5KHVwYWXWhZOuJuq45DfV/WLNq3A==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^10.8.6", - "resolve-from": "5.0.0", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/json-file-loader": { - "version": "8.0.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.18.tgz", - "integrity": "sha512-JjjIxxewgk8HeMR3npR3YbOkB7fxmdgmqB9kZLWdkRKBxrRXVzhryyq+mhmI0Evzt6pNoHIc3vqwmSctG2sddg==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^10.8.6", - "globby": "^11.0.3", - "tslib": "^2.4.0", - "unixify": "^1.0.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/load": { - "version": "8.0.19", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-8.0.19.tgz", - "integrity": "sha512-YA3T9xTy2B6dNTnqsCzqSclA23j4v3p3A2Vdn0jEbZPGLMRPzWW8MJu2nlgQ8uua1IpYD/J8xgyrFxxAo3qPmQ==", - "dev": true, - "dependencies": { - "@graphql-tools/schema": "^10.0.23", - "@graphql-tools/utils": "^10.8.6", - "p-limit": "3.1.0", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/merge": { - "version": "9.0.24", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.0.24.tgz", - "integrity": "sha512-NzWx/Afl/1qHT3Nm1bghGG2l4jub28AdvtG11PoUlmjcIjnFBJMv4vqL0qnxWe8A82peWo4/TkVdjJRLXwgGEw==", - "dev": true, - "dependencies": { - "@graphql-tools/utils": "^10.8.6", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/optimize": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-2.0.0.tgz", - "integrity": "sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg==", - "dev": true, - "license": "MIT", - "dependencies": { - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/prisma-loader": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/@graphql-tools/prisma-loader/-/prisma-loader-8.0.4.tgz", - "integrity": "sha512-hqKPlw8bOu/GRqtYr0+dINAI13HinTVYBDqhwGAPIFmLr5s+qKskzgCiwbsckdrb5LWVFmVZc+UXn80OGiyBzg==", - "dev": true, - "dependencies": { - "@graphql-tools/url-loader": "^8.0.2", - "@graphql-tools/utils": "^10.0.13", - "@types/js-yaml": "^4.0.0", - "@whatwg-node/fetch": "^0.9.0", - "chalk": "^4.1.0", - "debug": "^4.3.1", - "dotenv": "^16.0.0", - "graphql-request": "^6.0.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.0", - "jose": "^5.0.0", - "js-yaml": "^4.0.0", - "lodash": "^4.17.20", - "scuid": "^1.1.0", - "tslib": "^2.4.0", - "yaml-ast-parser": "^0.0.43" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/prisma-loader/node_modules/@whatwg-node/fetch": { - "version": "0.9.18", - "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.18.tgz", - "integrity": "sha512-hqoz6StCW+AjV/3N+vg0s1ah82ptdVUb9nH2ttj3UbySOXUvytWw2yqy8c1cKzyRk6mDD00G47qS3fZI9/gMjg==", - "dev": true, - "dependencies": { - "@whatwg-node/node-fetch": "^0.5.7", - "urlpattern-polyfill": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/prisma-loader/node_modules/@whatwg-node/node-fetch": { - "version": "0.5.11", - "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.11.tgz", - "integrity": "sha512-LS8tSomZa3YHnntpWt3PP43iFEEl6YeIsvDakczHBKlay5LdkXFr8w7v8H6akpG5nRrzydyB0k1iE2eoL6aKIQ==", - "dev": true, - "dependencies": { - "@kamilkisiela/fast-url-parser": "^1.1.4", - "@whatwg-node/events": "^0.1.0", - "busboy": "^1.6.0", - "fast-querystring": "^1.1.1", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/relay-operation-optimizer": { - "version": "7.0.19", - "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.0.19.tgz", - "integrity": "sha512-xnjLpfzw63yIX1bo+BVh4j1attSwqEkUbpJ+HAhdiSUa3FOQFfpWgijRju+3i87CwhjBANqdTZbcsqLT1hEXig==", - "dev": true, - "license": "MIT", - "dependencies": { - "@ardatan/relay-compiler": "^12.0.3", - "@graphql-tools/utils": "^10.8.6", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/schema": { - "version": "10.0.23", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.23.tgz", - "integrity": "sha512-aEGVpd1PCuGEwqTXCStpEkmheTHNdMayiIKH1xDWqYp9i8yKv9FRDgkGrY4RD8TNxnf7iII+6KOBGaJ3ygH95A==", - "dev": true, - "dependencies": { - "@graphql-tools/merge": "^9.0.24", - "@graphql-tools/utils": "^10.8.6", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/url-loader": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-8.0.2.tgz", - "integrity": "sha512-1dKp2K8UuFn7DFo1qX5c1cyazQv2h2ICwA9esHblEqCYrgf69Nk8N7SODmsfWg94OEaI74IqMoM12t7eIGwFzQ==", - "dev": true, - "dependencies": { - "@ardatan/sync-fetch": "^0.0.1", - "@graphql-tools/delegate": "^10.0.4", - "@graphql-tools/executor-graphql-ws": "^1.1.2", - "@graphql-tools/executor-http": "^1.0.9", - "@graphql-tools/executor-legacy-ws": "^1.0.6", - "@graphql-tools/utils": "^10.0.13", - "@graphql-tools/wrap": "^10.0.2", - "@types/ws": "^8.0.0", - "@whatwg-node/fetch": "^0.9.0", - "isomorphic-ws": "^5.0.0", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.11", - "ws": "^8.12.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/url-loader/node_modules/@whatwg-node/fetch": { - "version": "0.9.18", - "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.18.tgz", - "integrity": "sha512-hqoz6StCW+AjV/3N+vg0s1ah82ptdVUb9nH2ttj3UbySOXUvytWw2yqy8c1cKzyRk6mDD00G47qS3fZI9/gMjg==", - "dev": true, - "dependencies": { - "@whatwg-node/node-fetch": "^0.5.7", - "urlpattern-polyfill": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/url-loader/node_modules/@whatwg-node/node-fetch": { - "version": "0.5.11", - "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.11.tgz", - "integrity": "sha512-LS8tSomZa3YHnntpWt3PP43iFEEl6YeIsvDakczHBKlay5LdkXFr8w7v8H6akpG5nRrzydyB0k1iE2eoL6aKIQ==", - "dev": true, - "dependencies": { - "@kamilkisiela/fast-url-parser": "^1.1.4", - "@whatwg-node/events": "^0.1.0", - "busboy": "^1.6.0", - "fast-querystring": "^1.1.1", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@graphql-tools/utils": { - "version": "10.8.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.8.6.tgz", - "integrity": "sha512-Alc9Vyg0oOsGhRapfL3xvqh1zV8nKoFUdtLhXX7Ki4nClaIJXckrA86j+uxEuG3ic6j4jlM1nvcWXRn/71AVLQ==", - "dev": true, - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "@whatwg-node/promise-helpers": "^1.0.0", - "cross-inspect": "1.0.1", - "dset": "^3.1.4", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/wrap": { - "version": "10.0.5", - "resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-10.0.5.tgz", - "integrity": "sha512-Cbr5aYjr3HkwdPvetZp1cpDWTGdD1Owgsb3z/ClzhmrboiK86EnQDxDvOJiQkDCPWE9lNBwj8Y4HfxroY0D9DQ==", - "dev": true, - "dependencies": { - "@graphql-tools/delegate": "^10.0.4", - "@graphql-tools/schema": "^10.0.3", - "@graphql-tools/utils": "^10.1.1", - "tslib": "^2.4.0", - "value-or-promise": "^1.0.12" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-typed-document-node/core": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz", - "integrity": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==", - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@img/sharp-darwin-arm64": { - "version": "0.34.1", - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.1.tgz", - "integrity": "sha512-pn44xgBtgpEbZsu+lWf2KNb6OAf70X68k+yk69Ic2Xz11zHR/w24/U49XT7AeRwJ0Px+mhALhU5LPci1Aymk7A==", - "cpu": [ - "arm64" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-darwin-arm64": "1.1.0" - } - }, - "node_modules/@img/sharp-darwin-x64": { - "version": "0.34.1", - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.1.tgz", - "integrity": "sha512-VfuYgG2r8BpYiOUN+BfYeFo69nP/MIwAtSJ7/Zpxc5QF3KS22z8Pvg3FkrSFJBPNQ7mmcUcYQFBmEQp7eu1F8Q==", - "cpu": [ - "x64" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-darwin-x64": "1.1.0" - } - }, - "node_modules/@img/sharp-libvips-darwin-arm64": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.1.0.tgz", - "integrity": "sha512-HZ/JUmPwrJSoM4DIQPv/BfNh9yrOA8tlBbqbLz4JZ5uew2+o22Ik+tHQJcih7QJuSa0zo5coHTfD5J8inqj9DA==", - "cpu": [ - "arm64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "darwin" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-darwin-x64": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.1.0.tgz", - "integrity": "sha512-Xzc2ToEmHN+hfvsl9wja0RlnXEgpKNmftriQp6XzY/RaSfwD9th+MSh0WQKzUreLKKINb3afirxW7A0fz2YWuQ==", - "cpu": [ - "x64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "darwin" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linux-arm": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.1.0.tgz", - "integrity": "sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA==", - "cpu": [ - "arm" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linux-arm64": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.1.0.tgz", - "integrity": "sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew==", - "cpu": [ - "arm64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linux-ppc64": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.1.0.tgz", - "integrity": "sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ==", - "cpu": [ - "ppc64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linux-s390x": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.1.0.tgz", - "integrity": "sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA==", - "cpu": [ - "s390x" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linux-x64": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.1.0.tgz", - "integrity": "sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q==", - "cpu": [ - "x64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linuxmusl-arm64": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.1.0.tgz", - "integrity": "sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w==", - "cpu": [ - "arm64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linuxmusl-x64": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.1.0.tgz", - "integrity": "sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A==", - "cpu": [ - "x64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-linux-arm": { - "version": "0.34.1", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.1.tgz", - "integrity": "sha512-anKiszvACti2sGy9CirTlNyk7BjjZPiML1jt2ZkTdcvpLU1YH6CXwRAZCA2UmRXnhiIftXQ7+Oh62Ji25W72jA==", - "cpu": [ - "arm" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linux-arm": "1.1.0" - } - }, - "node_modules/@img/sharp-linux-arm64": { - "version": "0.34.1", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.1.tgz", - "integrity": "sha512-kX2c+vbvaXC6vly1RDf/IWNXxrlxLNpBVWkdpRq5Ka7OOKj6nr66etKy2IENf6FtOgklkg9ZdGpEu9kwdlcwOQ==", - "cpu": [ - "arm64" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linux-arm64": "1.1.0" - } - }, - "node_modules/@img/sharp-linux-s390x": { - "version": "0.34.1", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.1.tgz", - "integrity": "sha512-7s0KX2tI9mZI2buRipKIw2X1ufdTeaRgwmRabt5bi9chYfhur+/C1OXg3TKg/eag1W+6CCWLVmSauV1owmRPxA==", - "cpu": [ - "s390x" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linux-s390x": "1.1.0" - } - }, - "node_modules/@img/sharp-linux-x64": { - "version": "0.34.1", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.1.tgz", - "integrity": "sha512-wExv7SH9nmoBW3Wr2gvQopX1k8q2g5V5Iag8Zk6AVENsjwd+3adjwxtp3Dcu2QhOXr8W9NusBU6XcQUohBZ5MA==", - "cpu": [ - "x64" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linux-x64": "1.1.0" - } - }, - "node_modules/@img/sharp-linuxmusl-arm64": { - "version": "0.34.1", - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.1.tgz", - "integrity": "sha512-DfvyxzHxw4WGdPiTF0SOHnm11Xv4aQexvqhRDAoD00MzHekAj9a/jADXeXYCDFH/DzYruwHbXU7uz+H+nWmSOQ==", - "cpu": [ - "arm64" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linuxmusl-arm64": "1.1.0" - } - }, - "node_modules/@img/sharp-linuxmusl-x64": { - "version": "0.34.1", - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.1.tgz", - "integrity": "sha512-pax/kTR407vNb9qaSIiWVnQplPcGU8LRIJpDT5o8PdAx5aAA7AS3X9PS8Isw1/WfqgQorPotjrZL3Pqh6C5EBg==", - "cpu": [ - "x64" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linuxmusl-x64": "1.1.0" - } - }, - "node_modules/@img/sharp-wasm32": { - "version": "0.34.1", - "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.1.tgz", - "integrity": "sha512-YDybQnYrLQfEpzGOQe7OKcyLUCML4YOXl428gOOzBgN6Gw0rv8dpsJ7PqTHxBnXnwXr8S1mYFSLSa727tpz0xg==", - "cpu": [ - "wasm32" - ], - "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", - "optional": true, - "dependencies": { - "@emnapi/runtime": "^1.4.0" - }, - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-win32-ia32": { - "version": "0.34.1", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.1.tgz", - "integrity": "sha512-WKf/NAZITnonBf3U1LfdjoMgNO5JYRSlhovhRhMxXVdvWYveM4kM3L8m35onYIdh75cOMCo1BexgVQcCDzyoWw==", - "cpu": [ - "ia32" - ], - "license": "Apache-2.0 AND LGPL-3.0-or-later", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-win32-x64": { - "version": "0.34.1", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.1.tgz", - "integrity": "sha512-hw1iIAHpNE8q3uMIRCgGOeDoz9KtFNarFLQclLxr/LK1VBkj8nby18RjFvr6aP7USRYAjTZW6yisnBWMX571Tw==", - "cpu": [ - "x64" - ], - "license": "Apache-2.0 AND LGPL-3.0-or-later", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "license": "ISC", - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "license": "MIT" - }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", - "peer": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@kamilkisiela/fast-url-parser": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/@kamilkisiela/fast-url-parser/-/fast-url-parser-1.1.4.tgz", - "integrity": "sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==", - "dev": true - }, - "node_modules/@next/env": { - "version": "15.3.1", - "resolved": "https://registry.npmjs.org/@next/env/-/env-15.3.1.tgz", - "integrity": "sha512-cwK27QdzrMblHSn9DZRV+DQscHXRuJv6MydlJRpFSqJWZrTYMLzKDeyueJNN9MGd8NNiUKzDQADAf+dMLXX7YQ==", - "license": "MIT" - }, - "node_modules/@next/swc-darwin-arm64": { - "version": "15.3.1", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.3.1.tgz", - "integrity": "sha512-hjDw4f4/nla+6wysBL07z52Gs55Gttp5Bsk5/8AncQLJoisvTBP0pRIBK/B16/KqQyH+uN4Ww8KkcAqJODYH3w==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-darwin-x64": { - "version": "15.3.1", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.3.1.tgz", - "integrity": "sha512-q+aw+cJ2ooVYdCEqZVk+T4Ni10jF6Fo5DfpEV51OupMaV5XL6pf3GCzrk6kSSZBsMKZtVC1Zm/xaNBFpA6bJ2g==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-gnu": { - "version": "15.3.1", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.3.1.tgz", - "integrity": "sha512-wBQ+jGUI3N0QZyWmmvRHjXjTWFy8o+zPFLSOyAyGFI94oJi+kK/LIZFJXeykvgXUk1NLDAEFDZw/NVINhdk9FQ==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-musl": { - "version": "15.3.1", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.3.1.tgz", - "integrity": "sha512-IIxXEXRti/AulO9lWRHiCpUUR8AR/ZYLPALgiIg/9ENzMzLn3l0NSxVdva7R/VDcuSEBo0eGVCe3evSIHNz0Hg==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-gnu": { - "version": "15.3.1", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.3.1.tgz", - "integrity": "sha512-bfI4AMhySJbyXQIKH5rmLJ5/BP7bPwuxauTvVEiJ/ADoddaA9fgyNNCcsbu9SlqfHDoZmfI6g2EjzLwbsVTr5A==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-musl": { - "version": "15.3.1", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.3.1.tgz", - "integrity": "sha512-FeAbR7FYMWR+Z+M5iSGytVryKHiAsc0x3Nc3J+FD5NVbD5Mqz7fTSy8CYliXinn7T26nDMbpExRUI/4ekTvoiA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-arm64-msvc": { - "version": "15.3.1", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.3.1.tgz", - "integrity": "sha512-yP7FueWjphQEPpJQ2oKmshk/ppOt+0/bB8JC8svPUZNy0Pi3KbPx2Llkzv1p8CoQa+D2wknINlJpHf3vtChVBw==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-x64-msvc": { - "version": "15.3.1", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.3.1.tgz", - "integrity": "sha512-3PMvF2zRJAifcRNni9uMk/gulWfWS+qVI/pagd+4yLF5bcXPZPPH2xlYRYOsUjmCJOXSTAC2PjRzbhsRzR2fDQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@parcel/watcher": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz", - "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "detect-libc": "^1.0.3", - "is-glob": "^4.0.3", - "micromatch": "^4.0.5", - "node-addon-api": "^7.0.0" - }, - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - }, - "optionalDependencies": { - "@parcel/watcher-android-arm64": "2.5.1", - "@parcel/watcher-darwin-arm64": "2.5.1", - "@parcel/watcher-darwin-x64": "2.5.1", - "@parcel/watcher-freebsd-x64": "2.5.1", - "@parcel/watcher-linux-arm-glibc": "2.5.1", - "@parcel/watcher-linux-arm-musl": "2.5.1", - "@parcel/watcher-linux-arm64-glibc": "2.5.1", - "@parcel/watcher-linux-arm64-musl": "2.5.1", - "@parcel/watcher-linux-x64-glibc": "2.5.1", - "@parcel/watcher-linux-x64-musl": "2.5.1", - "@parcel/watcher-win32-arm64": "2.5.1", - "@parcel/watcher-win32-ia32": "2.5.1", - "@parcel/watcher-win32-x64": "2.5.1" - } - }, - "node_modules/@parcel/watcher-android-arm64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz", - "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-darwin-arm64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz", - "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-darwin-x64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", - "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-freebsd-x64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz", - "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm-glibc": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz", - "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm-musl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz", - "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm64-glibc": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz", - "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm64-musl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz", - "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-x64-glibc": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz", - "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-x64-musl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz", - "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-win32-arm64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz", - "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-win32-ia32": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz", - "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-win32-x64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", - "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@repeaterjs/repeater": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@repeaterjs/repeater/-/repeater-3.0.6.tgz", - "integrity": "sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==", - "dev": true - }, - "node_modules/@swc/counter": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", - "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", - "license": "Apache-2.0" - }, - "node_modules/@swc/helpers": { - "version": "0.5.15", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", - "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.8.0" - } - }, - "node_modules/@swc/helpers/node_modules/tslib": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", - "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", - "license": "0BSD" - }, - "node_modules/@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", - "peer": true - }, - "node_modules/@types/js-yaml": { - "version": "4.0.9", - "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.9.tgz", - "integrity": "sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==", - "dev": true - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "peer": true - }, - "node_modules/@types/node": { - "version": "22.15.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.2.tgz", - "integrity": "sha512-uKXqKN9beGoMdBfcaTY1ecwz6ctxuJAcUlwE55938g0ZJ8lRxwAZqRz2AJ4pzpt5dHdTPMB863UZ0ESiFUcP7A==", - "license": "MIT", - "dependencies": { - "undici-types": "~6.21.0" - } - }, - "node_modules/@types/react": { - "version": "19.1.2", - "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.2.tgz", - "integrity": "sha512-oxLPMytKchWGbnQM9O7D67uPa9paTNxO7jVoNMXgkkErULBPhPARCfkKL9ytcIJJRGjbsVwW4ugJzyFFvm/Tiw==", - "devOptional": true, - "license": "MIT", - "dependencies": { - "csstype": "^3.0.2" - } - }, - "node_modules/@types/ws": { - "version": "8.5.10", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", - "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", - "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", - "peer": true, - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" - } - }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", - "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", - "peer": true, - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", - "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.12.1" - } - }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", - "peer": true, - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", - "peer": true, - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", - "peer": true - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", - "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-opt": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1", - "@webassemblyjs/wast-printer": "1.12.1" - } - }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", - "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", - "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", - "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@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" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", - "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webpack-cli/configtest": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", - "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", - "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - } - }, - "node_modules/@webpack-cli/info": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", - "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", - "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - } - }, - "node_modules/@webpack-cli/serve": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", - "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", - "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - }, - "peerDependenciesMeta": { - "webpack-dev-server": { - "optional": true - } - } - }, - "node_modules/@whatwg-node/disposablestack": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@whatwg-node/disposablestack/-/disposablestack-0.0.6.tgz", - "integrity": "sha512-LOtTn+JgJvX8WfBVJtF08TGrdjuFzGJc4mkP8EdDI8ADbvO7kiexYep1o8dwnt0okb0jYclCDXF13xU7Ge4zSw==", - "dev": true, - "dependencies": { - "@whatwg-node/promise-helpers": "^1.0.0", - "tslib": "^2.6.3" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@whatwg-node/events": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.2.tgz", - "integrity": "sha512-ApcWxkrs1WmEMS2CaLLFUEem/49erT3sxIVjpzU5f6zmVcnijtDSrhoK2zVobOIikZJdH63jdAXOrvjf6eOUNQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "tslib": "^2.6.3" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@whatwg-node/fetch": { - "version": "0.10.5", - "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.10.5.tgz", - "integrity": "sha512-+yFJU3hmXPAHJULwx0VzCIsvr/H0lvbPvbOH3areOH3NAuCxCwaJsQ8w6/MwwMcvEWIynSsmAxoyaH04KeosPg==", - "dev": true, - "dependencies": { - "@whatwg-node/node-fetch": "^0.7.11", - "urlpattern-polyfill": "^10.0.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@whatwg-node/node-fetch": { - "version": "0.7.14", - "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.7.14.tgz", - "integrity": "sha512-GMCUrFq3gXQSgWMnEBMaQUxh1rd1vi3Kp4MRQT6UKbnRycm4QmUSxp8ZIySxLQ96cpyBvonEH0BYmdQe/pWy8A==", - "dev": true, - "dependencies": { - "@whatwg-node/disposablestack": "^0.0.6", - "@whatwg-node/promise-helpers": "^1.2.5", - "busboy": "^1.6.0", - "tslib": "^2.6.3" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@whatwg-node/promise-helpers": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@whatwg-node/promise-helpers/-/promise-helpers-1.3.0.tgz", - "integrity": "sha512-486CouizxHXucj8Ky153DDragfkMcHtVEToF5Pn/fInhUUSiCmt9Q4JVBa6UK5q4RammFBtGQ4C9qhGlXU9YbA==", - "dev": true, - "dependencies": { - "tslib": "^2.6.3" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@wordpress/hooks": { - "version": "3.58.0", - "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-3.58.0.tgz", - "integrity": "sha512-9LB0ZHnZRQlORttux9t/xbAskF+dk2ujqzPGsVzc92mSKpQP3K2a5Wy74fUnInguB1vLUNHT6nrNdkVom5qX1Q==", - "dependencies": { - "@babel/runtime": "^7.16.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@wry/caches": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@wry/caches/-/caches-1.0.1.tgz", - "integrity": "sha512-bXuaUNLVVkD20wcGBWRyo7j9N3TxePEWFZj2Y+r9OoUzfqmavM84+mFykRicNsBqatba5JLay1t48wxaXaWnlA==", - "dependencies": { - "tslib": "^2.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@wry/context": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@wry/context/-/context-0.7.4.tgz", - "integrity": "sha512-jmT7Sb4ZQWI5iyu3lobQxICu2nC/vbUhP0vIdd6tHC9PTfenmRmuIFqktc6GH9cgi+ZHnsLWPvfSvc4DrYmKiQ==", - "dependencies": { - "tslib": "^2.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@wry/equality": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@wry/equality/-/equality-0.5.7.tgz", - "integrity": "sha512-BRFORjsTuQv5gxcXsuDXx6oGRhuVsEGwZy6LOzRRfgu+eSfxbhUQ9L9YtSEIuIjY/o7g3iWFjrc5eSY1GXP2Dw==", - "dependencies": { - "tslib": "^2.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@wry/trie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@wry/trie/-/trie-0.5.0.tgz", - "integrity": "sha512-FNoYzHawTMk/6KMQoEG5O4PuioX19UbwdQKF44yw0nLfOypfQdjtfZzo/UIJWAJ23sNIFbD1Ug9lbaDGMwbqQA==", - "dependencies": { - "tslib": "^2.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "peer": true - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "peer": true - }, - "node_modules/acorn": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.0.tgz", - "integrity": "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==", - "peer": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-import-attributes": { - "version": "1.9.5", - "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", - "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", - "peer": true, - "peerDependencies": { - "acorn": "^8" - } - }, - "node_modules/agent-base": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", - "dev": true, - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "peer": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "peer": true, - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/archiver": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/archiver/-/archiver-6.0.2.tgz", - "integrity": "sha512-UQ/2nW7NMl1G+1UnrLypQw1VdT9XZg/ECcKPq7l+STzStrSivFIXIp34D8M5zeNGW5NoOupdYCHv6VySCPNNlw==", - "dependencies": { - "archiver-utils": "^4.0.1", - "async": "^3.2.4", - "buffer-crc32": "^0.2.1", - "readable-stream": "^3.6.0", - "readdir-glob": "^1.1.2", - "tar-stream": "^3.0.0", - "zip-stream": "^5.0.1" - }, - "engines": { - "node": ">= 12.0.0" - } - }, - "node_modules/archiver-utils": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-4.0.1.tgz", - "integrity": "sha512-Q4Q99idbvzmgCTEAAhi32BkOyq8iVI5EwdO0PmBDSGIzzjYNdcFn7Q7k3OzbLy4kLUPXfJtG6fO2RjftXbobBg==", - "dependencies": { - "glob": "^8.0.0", - "graceful-fs": "^4.2.0", - "lazystream": "^1.0.0", - "lodash": "^4.17.15", - "normalize-path": "^3.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">= 12.0.0" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", - "dev": true, - "license": "MIT" - }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/async": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", - "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - }, - "node_modules/auto-bind": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/auto-bind/-/auto-bind-4.0.0.tgz", - "integrity": "sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/b4a": { - "version": "1.6.6", - "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.6.tgz", - "integrity": "sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==" - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/bare-events": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.4.2.tgz", - "integrity": "sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==", - "optional": true - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "dev": true, - "dependencies": { - "fill-range": "^7.1.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.23.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", - "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001629", - "electron-to-chromium": "^1.4.796", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.16" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "node-int64": "^0.4.0" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", - "engines": { - "node": "*" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "peer": true - }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "dependencies": { - "streamsearch": "^1.1.0" - }, - "engines": { - "node": ">=10.16.0" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", - "dev": true, - "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001636", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001636.tgz", - "integrity": "sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/capital-case": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", - "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", - "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/change-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", - "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", - "dev": true, - "dependencies": { - "camel-case": "^4.1.2", - "capital-case": "^1.0.4", - "constant-case": "^3.0.4", - "dot-case": "^3.0.4", - "header-case": "^2.0.4", - "no-case": "^3.0.4", - "param-case": "^3.0.4", - "pascal-case": "^3.1.2", - "path-case": "^3.0.4", - "sentence-case": "^3.0.4", - "snake-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/change-case-all": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz", - "integrity": "sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==", - "dev": true, - "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" - } - }, - "node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, - "node_modules/chrome-trace-event": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", - "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", - "peer": true, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/classnames": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", - "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==" - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "dependencies": { - "restore-cursor": "^3.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-spinners": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", - "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", - "dev": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", - "dev": true, - "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", - "license": "MIT" - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/cliui/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", - "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/color": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", - "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", - "license": "MIT", - "optional": true, - "dependencies": { - "color-convert": "^2.0.1", - "color-string": "^1.9.0" - }, - "engines": { - "node": ">=12.5.0" - } - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", - "license": "MIT", - "optional": true, - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "peer": true - }, - "node_modules/common-tags": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", - "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", - "dev": true, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/compress-commons": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-5.0.3.tgz", - "integrity": "sha512-/UIcLWvwAQyVibgpQDPtfNM3SvqN7G9elAPAV7GM0L53EbNWwWiCsWtK8Fwed/APEbptPHXs5PuW+y8Bq8lFTA==", - "dependencies": { - "crc-32": "^1.2.0", - "crc32-stream": "^5.0.0", - "normalize-path": "^3.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">= 12.0.0" - } - }, - "node_modules/concurrently": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.1.2.tgz", - "integrity": "sha512-H9MWcoPsYddwbOGM6difjVwVZHl63nwMEwDJG/L7VGtuaJhb12h2caPG2tVPWs7emuYix252iGfqOyrz1GczTQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.1.2", - "lodash": "^4.17.21", - "rxjs": "^7.8.1", - "shell-quote": "^1.8.1", - "supports-color": "^8.1.1", - "tree-kill": "^1.2.2", - "yargs": "^17.7.2" - }, - "bin": { - "conc": "dist/bin/concurrently.js", - "concurrently": "dist/bin/concurrently.js" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" - } - }, - "node_modules/concurrently/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/constant-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", - "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", - "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case": "^2.0.2" - } - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - }, - "node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, - "node_modules/cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", - "dev": true, - "dependencies": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/crc-32": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", - "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", - "bin": { - "crc32": "bin/crc32.njs" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/crc32-stream": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-5.0.1.tgz", - "integrity": "sha512-lO1dFui+CEUh/ztYIpgpKItKW9Bb4NWakCRJrnqAbFIYD+OZAwb2VfD5T5eXMw2FNcsDHkQcNl/Wh3iVXYwU6g==", - "dependencies": { - "crc-32": "^1.2.0", - "readable-stream": "^3.4.0" - }, - "engines": { - "node": ">= 12.0.0" - } - }, - "node_modules/cross-fetch": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz", - "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==", - "dev": true, - "dependencies": { - "node-fetch": "^2.6.12" - } - }, - "node_modules/cross-inspect": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cross-inspect/-/cross-inspect-1.0.1.tgz", - "integrity": "sha512-Pcw1JTvZLSJH83iiGWt6fRcT+BjZlCDRVwYLbUcHzv/CRpB7r0MlSrGbIyQvVSNyGnbt7G4AXuyCiDR3POvZ1A==", - "dev": true, - "dependencies": { - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", - "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", - "devOptional": true - }, - "node_modules/dataloader": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/dataloader/-/dataloader-2.2.2.tgz", - "integrity": "sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==", - "dev": true - }, - "node_modules/debounce": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", - "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==", - "dev": true - }, - "node_modules/debug": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "dev": true, - "dependencies": { - "clone": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/dependency-graph": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", - "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/detect-indent": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", - "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/detect-libc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", - "dev": true, - "bin": { - "detect-libc": "bin/detect-libc.js" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/dotenv": { - "version": "16.4.5", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", - "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://dotenvx.com" - } - }, - "node_modules/dotenv-flow": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/dotenv-flow/-/dotenv-flow-3.3.0.tgz", - "integrity": "sha512-GLSvRqDZ1TGhloS6ZCZ5chdqqv/3XMqZxAnX9rliJiHn6uyJLguKeu+3M2kcagBkoVCnLWYfbR4rfFe1xSU39A==", - "dependencies": { - "dotenv": "^8.6.0" - }, - "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/dotenv-flow/node_modules/dotenv": { - "version": "8.6.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz", - "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==", - "engines": { - "node": ">=10" - } - }, - "node_modules/dset": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/dset/-/dset-3.1.4.tgz", - "integrity": "sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "license": "MIT" - }, - "node_modules/electron-to-chromium": { - "version": "1.4.803", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.803.tgz", - "integrity": "sha512-61H9mLzGOCLLVsnLiRzCbc63uldP0AniRYPV3hbGVtONA1pI7qSGILdbofR7A8TMbOypDocEAjH/e+9k1QIe3g==" - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "node_modules/enhanced-resolve": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", - "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", - "peer": true, - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/envinfo": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz", - "integrity": "sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==", - "bin": { - "envinfo": "dist/cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/es-module-lexer": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.3.tgz", - "integrity": "sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==", - "peer": true - }, - "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "peer": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "peer": true, - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "peer": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "peer": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "peer": true, - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, - "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/extract-files": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/extract-files/-/extract-files-11.0.0.tgz", - "integrity": "sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==", - "dev": true, - "engines": { - "node": "^12.20 || >= 14.13" - }, - "funding": { - "url": "https://github.com/sponsors/jaydenseric" - } - }, - "node_modules/fast-decode-uri-component": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/fast-decode-uri-component/-/fast-decode-uri-component-1.0.1.tgz", - "integrity": "sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==", - "dev": true - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "peer": true - }, - "node_modules/fast-fifo": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", - "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==" - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dev": true, - "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" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "peer": true - }, - "node_modules/fast-querystring": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/fast-querystring/-/fast-querystring-1.1.2.tgz", - "integrity": "sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==", - "dev": true, - "dependencies": { - "fast-decode-uri-component": "^1.0.1" - } - }, - "node_modules/fast-xml-parser": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz", - "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/NaturalIntelligence" - }, - { - "type": "paypal", - "url": "https://paypal.me/naturalintelligence" - } - ], - "dependencies": { - "strnum": "^1.0.5" - }, - "bin": { - "fxparser": "src/cli/cli.js" - } - }, - "node_modules/fastest-levenshtein": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", - "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", - "engines": { - "node": ">= 4.9.1" - } - }, - "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "bser": "2.1.1" - } - }, - "node_modules/fbjs": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz", - "integrity": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==", - "dev": true, - "license": "MIT", - "dependencies": { - "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": "^1.0.35" - } - }, - "node_modules/fbjs-css-vars": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", - "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/flat": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", - "bin": { - "flat": "cli.js" - } - }, - "node_modules/foreground-child": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", - "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", - "license": "ISC", - "dependencies": { - "cross-spawn": "^7.0.6", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "peer": true - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/graphql": { - "version": "16.10.0", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.10.0.tgz", - "integrity": "sha512-AjqGKbDGUFRKIRCP9tCKiIGHyriz2oHEbPIbEtcSLSs4YjReZOIPQQWek4+6hjw62H9QShXHyaGivGiYVLeYFQ==", - "license": "MIT", - "engines": { - "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" - } - }, - "node_modules/graphql-config": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-5.1.3.tgz", - "integrity": "sha512-RBhejsPjrNSuwtckRlilWzLVt2j8itl74W9Gke1KejDTz7oaA5kVd6wRn9zK9TS5mcmIYGxf7zN7a1ORMdxp1Q==", - "dev": true, - "dependencies": { - "@graphql-tools/graphql-file-loader": "^8.0.0", - "@graphql-tools/json-file-loader": "^8.0.0", - "@graphql-tools/load": "^8.0.0", - "@graphql-tools/merge": "^9.0.0", - "@graphql-tools/url-loader": "^8.0.0", - "@graphql-tools/utils": "^10.0.0", - "cosmiconfig": "^8.1.0", - "jiti": "^2.0.0", - "minimatch": "^9.0.5", - "string-env-interpolation": "^1.0.1", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">= 16.0.0" - }, - "peerDependencies": { - "cosmiconfig-toml-loader": "^1.0.0", - "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - }, - "peerDependenciesMeta": { - "cosmiconfig-toml-loader": { - "optional": true - } - } - }, - "node_modules/graphql-config/node_modules/jiti": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz", - "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==", - "dev": true, - "bin": { - "jiti": "lib/jiti-cli.mjs" - } - }, - "node_modules/graphql-config/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/graphql-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/graphql-request/-/graphql-request-6.1.0.tgz", - "integrity": "sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==", - "dev": true, - "dependencies": { - "@graphql-typed-document-node/core": "^3.2.0", - "cross-fetch": "^3.1.5" - }, - "peerDependencies": { - "graphql": "14 - 16" - } - }, - "node_modules/graphql-sock": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/graphql-sock/-/graphql-sock-1.0.1.tgz", - "integrity": "sha512-gSA0CXdNMvNlpEnH2GY1//SUY7laDsAn51sDm4yh6TTH5UkfbNINydyUAoMHHkAaCaOLNXELQmu3GVcSOw4twg==", - "dev": true, - "license": "MIT", - "peer": true, - "bin": { - "semantic-to-nullable": "dist/cli/to-nullable.js", - "semantic-to-strict": "dist/cli/to-strict.js" - }, - "peerDependencies": { - "graphql": "15.x || 16.x || 17.x" - } - }, - "node_modules/graphql-tag": { - "version": "2.12.6", - "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", - "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", - "dependencies": { - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/graphql-ws": { - "version": "5.16.0", - "resolved": "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.16.0.tgz", - "integrity": "sha512-Ju2RCU2dQMgSKtArPbEtsK5gNLnsQyTNIo/T7cZNp96niC1x0KdJNZV0TIoilceBPQwfb5itrGl8pkFeOUMl4A==", - "devOptional": true, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "graphql": ">=0.11 <=16" - } - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/header-case": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", - "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", - "dev": true, - "dependencies": { - "capital-case": "^1.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "dependencies": { - "react-is": "^16.7.0" - } - }, - "node_modules/http-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", - "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", - "dev": true, - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/https-proxy-agent": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz", - "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", - "dev": true, - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/immutable": { - "version": "3.7.6", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.7.6.tgz", - "integrity": "sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/import-fresh": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", - "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", - "dev": true, - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-fresh/node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/import-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", - "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", - "dev": true, - "engines": { - "node": ">=12.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", - "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/inquirer": { - "version": "8.2.6", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.6.tgz", - "integrity": "sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==", - "dev": true, - "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^6.0.1" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/interpret": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", - "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dev": true, - "license": "MIT", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/is-absolute": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", - "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-relative": "^1.0.0", - "is-windows": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true - }, - "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", - "dependencies": { - "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-2.0.2.tgz", - "integrity": "sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-relative": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", - "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-unc-path": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-unc-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", - "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "unc-path-regex": "^0.1.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-upper-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-2.0.2.tgz", - "integrity": "sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isomorphic-fetch": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", - "integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==", - "dependencies": { - "node-fetch": "^2.6.1", - "whatwg-fetch": "^3.4.1" - } - }, - "node_modules/isomorphic-ws": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz", - "integrity": "sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==", - "dev": true, - "peerDependencies": { - "ws": "*" - } - }, - "node_modules/jackspeak": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.0.tgz", - "integrity": "sha512-9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw==", - "license": "BlueOak-1.0.0", - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "engines": { - "node": "20 || >=22" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "peer": true, - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "peer": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/jiti": { - "version": "1.21.7", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", - "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", - "dev": true, - "bin": { - "jiti": "bin/jiti.js" - } - }, - "node_modules/jose": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/jose/-/jose-5.4.0.tgz", - "integrity": "sha512-6rpxTHPAQyWMb9A35BroFl1Sp0ST3DpPcm5EVIxZxdH+e0Hv9fwhyB3XLKFUcHNpdSDnETmBfuPPTTlYz5+USw==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/panva" - } - }, - "node_modules/js-cookie": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz", - "integrity": "sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==", - "engines": { - "node": ">=14" - } - }, - "node_modules/js-sha256": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz", - "integrity": "sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA==" - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsesc": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", - "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "peer": true - }, - "node_modules/json-to-pretty-yaml": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/json-to-pretty-yaml/-/json-to-pretty-yaml-1.2.2.tgz", - "integrity": "sha512-rvm6hunfCcqegwYaG5T4yKJWxc9FXFgBVrcTZ4XfSVRwa5HA/Xs+vB/Eo9treYYHCeNM0nrSUr82V/M31Urc7A==", - "dev": true, - "dependencies": { - "remedial": "^1.0.7", - "remove-trailing-spaces": "^1.0.6" - }, - "engines": { - "node": ">= 0.2.0" - } - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/lazystream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", - "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", - "dependencies": { - "readable-stream": "^2.0.5" - }, - "engines": { - "node": ">= 0.6.3" - } - }, - "node_modules/lazystream/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/lazystream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/lazystream/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "node_modules/listr2": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-4.0.5.tgz", - "integrity": "sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==", - "dev": true, - "dependencies": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.16", - "log-update": "^4.0.0", - "p-map": "^4.0.0", - "rfdc": "^1.3.0", - "rxjs": "^7.5.5", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "enquirer": ">= 2.3.0 < 3" - }, - "peerDependenciesMeta": { - "enquirer": { - "optional": true - } - } - }, - "node_modules/listr2/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "peer": true, - "engines": { - "node": ">=6.11.5" - } - }, - "node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", - "dev": true - }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", - "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", - "dev": true, - "dependencies": { - "ansi-escapes": "^4.3.0", - "cli-cursor": "^3.1.0", - "slice-ansi": "^4.0.0", - "wrap-ansi": "^6.2.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update/node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/lower-case-first": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-2.0.2.tgz", - "integrity": "sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "peer": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/meros": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/meros/-/meros-1.3.0.tgz", - "integrity": "sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==", - "dev": true, - "engines": { - "node": ">=13" - }, - "peerDependencies": { - "@types/node": ">=13" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - } - } - }, - "node_modules/micromatch": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "dev": true, - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "license": "ISC", - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true - }, - "node_modules/nanoid": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", - "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "peer": true - }, - "node_modules/next": { - "version": "15.3.1", - "resolved": "https://registry.npmjs.org/next/-/next-15.3.1.tgz", - "integrity": "sha512-8+dDV0xNLOgHlyBxP1GwHGVaNXsmp+2NhZEYrXr24GWLHtt27YrBPbPuHvzlhi7kZNYjeJNR93IF5zfFu5UL0g==", - "license": "MIT", - "dependencies": { - "@next/env": "15.3.1", - "@swc/counter": "0.1.3", - "@swc/helpers": "0.5.15", - "busboy": "1.6.0", - "caniuse-lite": "^1.0.30001579", - "postcss": "8.4.31", - "styled-jsx": "5.1.6" - }, - "bin": { - "next": "dist/bin/next" - }, - "engines": { - "node": "^18.18.0 || ^19.8.0 || >= 20.0.0" - }, - "optionalDependencies": { - "@next/swc-darwin-arm64": "15.3.1", - "@next/swc-darwin-x64": "15.3.1", - "@next/swc-linux-arm64-gnu": "15.3.1", - "@next/swc-linux-arm64-musl": "15.3.1", - "@next/swc-linux-x64-gnu": "15.3.1", - "@next/swc-linux-x64-musl": "15.3.1", - "@next/swc-win32-arm64-msvc": "15.3.1", - "@next/swc-win32-x64-msvc": "15.3.1", - "sharp": "^0.34.1" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.1.0", - "@playwright/test": "^1.41.2", - "babel-plugin-react-compiler": "*", - "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", - "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", - "sass": "^1.3.0" - }, - "peerDependenciesMeta": { - "@opentelemetry/api": { - "optional": true - }, - "@playwright/test": { - "optional": true - }, - "babel-plugin-react-compiler": { - "optional": true - }, - "sass": { - "optional": true - } - } - }, - "node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "dev": true, - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node_modules/node-addon-api": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.0.tgz", - "integrity": "sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==", - "dev": true, - "engines": { - "node": "^16 || ^18 || >= 20" - } - }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true, - "license": "MIT" - }, - "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nullthrows": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz", - "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==", - "dev": true, - "license": "MIT" - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/optimism": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/optimism/-/optimism-0.18.0.tgz", - "integrity": "sha512-tGn8+REwLRNFnb9WmcY5IfpOqeX2kpaYJ1s6Ae3mn12AeydLkR3j+jSCmVQFoXqU8D41PAJ1RG1rCRNWmNZVmQ==", - "dependencies": { - "@wry/caches": "^1.0.0", - "@wry/context": "^0.7.0", - "@wry/trie": "^0.4.3", - "tslib": "^2.3.0" - } - }, - "node_modules/optimism/node_modules/@wry/trie": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@wry/trie/-/trie-0.4.3.tgz", - "integrity": "sha512-I6bHwH0fSf6RqQcnnXLJKhkSXG45MFral3GxPaY4uAl0LYDZM+YDVDAiU9bYwjTuysy1S0IeecWtmq1SZA3M1w==", - "dependencies": { - "tslib": "^2.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dev": true, - "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-locate/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/package-json-from-dist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", - "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", - "license": "BlueOak-1.0.0" - }, - "node_modules/param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", - "dev": true, - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-filepath": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", - "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-absolute": "^1.0.0", - "map-cache": "^0.2.0", - "path-root": "^0.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/path-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", - "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", - "dev": true, - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-root": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", - "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-root-regex": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-root-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", - "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-scurry": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", - "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", - "license": "BlueOak-1.0.0", - "dependencies": { - "lru-cache": "^11.0.0", - "minipass": "^7.1.2" - }, - "engines": { - "node": "20 || >=22" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.1.0.tgz", - "integrity": "sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==", - "license": "ISC", - "engines": { - "node": "20 || >=22" - } - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "node_modules/promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "dev": true, - "license": "MIT", - "dependencies": { - "asap": "~2.0.3" - } - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/queue-tick": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", - "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==" - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "peer": true, - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/react": { - "version": "19.1.0", - "resolved": "https://registry.npmjs.org/react/-/react-19.1.0.tgz", - "integrity": "sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-dom": { - "version": "19.1.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.1.0.tgz", - "integrity": "sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==", - "license": "MIT", - "dependencies": { - "scheduler": "^0.26.0" - }, - "peerDependencies": { - "react": "^19.1.0" - } - }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdir-glob": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.3.tgz", - "integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==", - "dependencies": { - "minimatch": "^5.1.0" - } - }, - "node_modules/rechoir": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", - "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", - "dependencies": { - "resolve": "^1.20.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - }, - "node_modules/rehackt": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/rehackt/-/rehackt-0.1.0.tgz", - "integrity": "sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw==", - "peerDependencies": { - "@types/react": "*", - "react": "*" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "react": { - "optional": true - } - } - }, - "node_modules/relay-runtime": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/relay-runtime/-/relay-runtime-12.0.0.tgz", - "integrity": "sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.0.0", - "fbjs": "^3.0.0", - "invariant": "^2.2.4" - } - }, - "node_modules/remedial": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/remedial/-/remedial-1.0.8.tgz", - "integrity": "sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", - "dev": true - }, - "node_modules/remove-trailing-spaces": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/remove-trailing-spaces/-/remove-trailing-spaces-1.0.8.tgz", - "integrity": "sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA==", - "dev": true - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", - "dependencies": { - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dev": true, - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rfdc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", - "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", - "dev": true - }, - "node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dev": true, - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "node_modules/scheduler": { - "version": "0.26.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.26.0.tgz", - "integrity": "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==", - "license": "MIT" - }, - "node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "peer": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/scuid": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/scuid/-/scuid-1.1.0.tgz", - "integrity": "sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==", - "dev": true - }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/sentence-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", - "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", - "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "node_modules/serialize-javascript": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", - "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", - "peer": true, - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", - "dev": true, - "license": "MIT" - }, - "node_modules/shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", - "dependencies": { - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/sharp": { - "version": "0.34.1", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.1.tgz", - "integrity": "sha512-1j0w61+eVxu7DawFJtnfYcvSv6qPFvfTaqzTQ2BLknVhHTwGS8sc63ZBF4rzkWMBVKybo4S5OBtDdZahh2A1xg==", - "hasInstallScript": true, - "license": "Apache-2.0", - "optional": true, - "dependencies": { - "color": "^4.2.3", - "detect-libc": "^2.0.3", - "semver": "^7.7.1" - }, - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-darwin-arm64": "0.34.1", - "@img/sharp-darwin-x64": "0.34.1", - "@img/sharp-libvips-darwin-arm64": "1.1.0", - "@img/sharp-libvips-darwin-x64": "1.1.0", - "@img/sharp-libvips-linux-arm": "1.1.0", - "@img/sharp-libvips-linux-arm64": "1.1.0", - "@img/sharp-libvips-linux-ppc64": "1.1.0", - "@img/sharp-libvips-linux-s390x": "1.1.0", - "@img/sharp-libvips-linux-x64": "1.1.0", - "@img/sharp-libvips-linuxmusl-arm64": "1.1.0", - "@img/sharp-libvips-linuxmusl-x64": "1.1.0", - "@img/sharp-linux-arm": "0.34.1", - "@img/sharp-linux-arm64": "0.34.1", - "@img/sharp-linux-s390x": "0.34.1", - "@img/sharp-linux-x64": "0.34.1", - "@img/sharp-linuxmusl-arm64": "0.34.1", - "@img/sharp-linuxmusl-x64": "0.34.1", - "@img/sharp-wasm32": "0.34.1", - "@img/sharp-win32-ia32": "0.34.1", - "@img/sharp-win32-x64": "0.34.1" - } - }, - "node_modules/sharp/node_modules/detect-libc": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz", - "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==", - "license": "Apache-2.0", - "optional": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/sharp/node_modules/semver": { - "version": "7.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", - "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", - "license": "ISC", - "optional": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "engines": { - "node": ">=8" - } - }, - "node_modules/shell-quote": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", - "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/signedsource": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/signedsource/-/signedsource-1.0.0.tgz", - "integrity": "sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==", - "dev": true, - "license": "BSD-3-Clause" - }, - "node_modules/simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", - "license": "MIT", - "optional": true, - "dependencies": { - "is-arrayish": "^0.3.1" - } - }, - "node_modules/simple-swizzle/node_modules/is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", - "license": "MIT", - "optional": true - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/snake-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", - "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", - "dev": true, - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "peer": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/sponge-case": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sponge-case/-/sponge-case-1.0.1.tgz", - "integrity": "sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/streamx": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.18.0.tgz", - "integrity": "sha512-LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==", - "dependencies": { - "fast-fifo": "^1.3.2", - "queue-tick": "^1.0.1", - "text-decoder": "^1.1.0" - }, - "optionalDependencies": { - "bare-events": "^2.2.0" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-env-interpolation": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz", - "integrity": "sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==", - "dev": true - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strnum": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", - "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" - }, - "node_modules/styled-jsx": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", - "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", - "license": "MIT", - "dependencies": { - "client-only": "0.0.1" - }, - "engines": { - "node": ">= 12.0.0" - }, - "peerDependencies": { - "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "babel-plugin-macros": { - "optional": true - } - } - }, - "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/swap-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-2.0.2.tgz", - "integrity": "sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/symbol-observable": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", - "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/tar-stream": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", - "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", - "dependencies": { - "b4a": "^1.6.4", - "fast-fifo": "^1.2.0", - "streamx": "^2.15.0" - } - }, - "node_modules/terser": { - "version": "5.31.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.1.tgz", - "integrity": "sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==", - "peer": true, - "dependencies": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.10", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", - "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", - "peer": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.20", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.26.0" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } - } - }, - "node_modules/text-decoder": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.1.0.tgz", - "integrity": "sha512-TmLJNj6UgX8xcUZo4UDStGQtDiTzF7BzWlzn9g7UWrjkpHr5uJTK1ld16wZ3LXb2vb6jH8qU89dW5whuMdXYdw==", - "dependencies": { - "b4a": "^1.6.4" - } - }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true - }, - "node_modules/title-case": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/title-case/-/title-case-3.0.3.tgz", - "integrity": "sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, - "node_modules/tree-kill": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", - "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", - "dev": true, - "bin": { - "tree-kill": "cli.js" - } - }, - "node_modules/ts-invariant": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.10.3.tgz", - "integrity": "sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==", - "dependencies": { - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ts-log": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/ts-log/-/ts-log-2.2.5.tgz", - "integrity": "sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==", - "dev": true - }, - "node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==" - }, - "node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typescript": { - "version": "5.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", - "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", - "dev": true, - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/ua-parser-js": { - "version": "1.0.40", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.40.tgz", - "integrity": "sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/ua-parser-js" - }, - { - "type": "paypal", - "url": "https://paypal.me/faisalman" - }, - { - "type": "github", - "url": "https://github.com/sponsors/faisalman" - } - ], - "license": "MIT", - "bin": { - "ua-parser-js": "script/cli.js" - }, - "engines": { - "node": "*" - } - }, - "node_modules/unc-path-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/undici-types": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", - "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", - "license": "MIT" - }, - "node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/unixify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz", - "integrity": "sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==", - "dev": true, - "dependencies": { - "normalize-path": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unixify/node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "dev": true, - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", - "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/upper-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", - "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/upper-case-first": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", - "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "peer": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/uri-js/node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/urlpattern-polyfill": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", - "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==", - "dev": true - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "node_modules/value-or-promise": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.12.tgz", - "integrity": "sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/watchpack": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", - "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", - "peer": true, - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "dev": true, - "dependencies": { - "defaults": "^1.0.3" - } - }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "node_modules/webpack": { - "version": "5.94.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.94.0.tgz", - "integrity": "sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==", - "peer": true, - "dependencies": { - "@types/estree": "^1.0.5", - "@webassemblyjs/ast": "^1.12.1", - "@webassemblyjs/wasm-edit": "^1.12.1", - "@webassemblyjs/wasm-parser": "^1.12.1", - "acorn": "^8.7.1", - "acorn-import-attributes": "^1.9.5", - "browserslist": "^4.21.10", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.17.1", - "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.11", - "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.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.10", - "watchpack": "^2.4.1", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-cli": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz", - "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", - "dependencies": { - "@discoveryjs/json-ext": "^0.5.0", - "@webpack-cli/configtest": "^2.1.1", - "@webpack-cli/info": "^2.0.2", - "@webpack-cli/serve": "^2.0.5", - "colorette": "^2.0.14", - "commander": "^10.0.1", - "cross-spawn": "^7.0.3", - "envinfo": "^7.7.3", - "fastest-levenshtein": "^1.0.12", - "import-local": "^3.0.2", - "interpret": "^3.1.1", - "rechoir": "^0.8.0", - "webpack-merge": "^5.7.3" - }, - "bin": { - "webpack-cli": "bin/cli.js" - }, - "engines": { - "node": ">=14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "5.x.x" - }, - "peerDependenciesMeta": { - "@webpack-cli/generators": { - "optional": true - }, - "webpack-bundle-analyzer": { - "optional": true - }, - "webpack-dev-server": { - "optional": true - } - } - }, - "node_modules/webpack-cli/node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "engines": { - "node": ">=14" - } - }, - "node_modules/webpack-merge": { - "version": "5.10.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", - "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", - "dependencies": { - "clone-deep": "^4.0.1", - "flat": "^5.0.2", - "wildcard": "^2.0.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "peer": true, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/whatwg-fetch": { - "version": "3.6.20", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", - "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==" - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/wildcard": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", - "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" - }, - "node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - }, - "node_modules/ws": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", - "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", - "dev": true, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - }, - "node_modules/yaml": { - "version": "2.4.5", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.5.tgz", - "integrity": "sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==", - "dev": true, - "bin": { - "yaml": "bin.mjs" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/yaml-ast-parser": { - "version": "0.0.43", - "resolved": "https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz", - "integrity": "sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==", - "dev": true - }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dev": true, - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/zen-observable": { - "version": "0.8.15", - "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.15.tgz", - "integrity": "sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==" - }, - "node_modules/zen-observable-ts": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.2.5.tgz", - "integrity": "sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg==", - "dependencies": { - "zen-observable": "0.8.15" - } - }, - "node_modules/zip-stream": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-5.0.2.tgz", - "integrity": "sha512-LfOdrUvPB8ZoXtvOBz6DlNClfvi//b5d56mSWyJi7XbH/HfhOHfUhOqxhT/rUiR7yiktlunqRo+jY6y/cWC/5g==", - "dependencies": { - "archiver-utils": "^4.0.1", - "compress-commons": "^5.0.1", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">= 12.0.0" - } - } - } -} diff --git a/package.json b/package.json index f0b26ef..ec8b328 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,9 @@ "generate": "faust generatePossibleTypes", "start": "faust start", "codegen": "graphql-codegen", - "watch-codegen": "graphql-codegen -w" + "watch-codegen": "graphql-codegen -w", + "format": "prettier . --write", + "test:format": "prettier . --check" }, "dependencies": { "@apollo/client": "^3.13.8", @@ -14,6 +16,7 @@ "@faustwp/core": "^3.2.3", "graphql": "^16.10.0", "next": "^15.3.1", + "prettier": "^3.5.3", "react": "^19.1.0", "react-dom": "^19.1.0" }, diff --git a/possibleTypes.json b/possibleTypes.json index 3be202e..aeac6f1 100644 --- a/possibleTypes.json +++ b/possibleTypes.json @@ -1 +1 @@ -{"CategoryConnection":["RootQueryToCategoryConnection","CategoryToAncestorsCategoryConnection","CategoryToCategoryConnection","PostToCategoryConnection"],"Connection":["RootQueryToCategoryConnection","TermNodeToEnqueuedScriptConnection","TermNodeToEnqueuedStylesheetConnection","CategoryToAncestorsCategoryConnection","CategoryToCategoryConnection","CategoryToContentNodeConnection","ContentTypeToTaxonomyConnection","TaxonomyToContentTypeConnection","TaxonomyToTermNodeConnection","ContentTypeToContentNodeConnection","UserToCommentConnection","CommentToCommentConnection","UserToEnqueuedScriptConnection","UserToEnqueuedStylesheetConnection","UserToMediaItemConnection","HierarchicalContentNodeToContentNodeAncestorsConnection","HierarchicalContentNodeToContentNodeChildrenConnection","ContentNodeToEnqueuedScriptConnection","ContentNodeToEnqueuedStylesheetConnection","MediaItemToCommentConnection","UserToPageConnection","PageToCommentConnection","PageToRevisionConnection","UserToPostConnection","PostToPostConnection","PostToCategoryConnection","PostToCommentConnection","PostToPostFormatConnection","PostFormatToContentNodeConnection","PostFormatToPostConnection","PostToRevisionConnection","PostToTagConnection","TagToContentNodeConnection","TagToPostConnection","PostToTermNodeConnection","UserToRevisionsConnection","UserToUserRoleConnection","CategoryToPostConnection","RootQueryToCommentConnection","RootQueryToContentNodeConnection","RootQueryToContentTypeConnection","GraphqlDocumentToGraphqlDocumentConnection","GraphqlDocumentToGraphqlDocumentGroupConnection","GraphqlDocumentGroupToContentNodeConnection","GraphqlDocumentGroupToGraphqlDocumentConnection","GraphqlDocumentToTermNodeConnection","RootQueryToGraphqlDocumentGroupConnection","RootQueryToGraphqlDocumentConnection","RootQueryToMediaItemConnection","MenuToMenuItemConnection","MenuItemToMenuItemConnection","RootQueryToMenuItemConnection","RootQueryToMenuConnection","RootQueryToPageConnection","RootQueryToPluginConnection","RootQueryToPostFormatConnection","RootQueryToPostConnection","RootQueryToEnqueuedScriptConnection","RootQueryToEnqueuedStylesheetConnection","RootQueryToRevisionsConnection","RootQueryToTagConnection","RootQueryToTaxonomyConnection","RootQueryToTermNodeConnection","RootQueryToThemeConnection","RootQueryToUserRoleConnection","RootQueryToUserConnection"],"Edge":["TermNodeToEnqueuedScriptConnectionEdge","TermNodeToEnqueuedStylesheetConnectionEdge","CategoryToAncestorsCategoryConnectionEdge","CategoryToCategoryConnectionEdge","ContentNodeToContentTypeConnectionEdge","TaxonomyToContentTypeConnectionEdge","TaxonomyToTermNodeConnectionEdge","ContentTypeToTaxonomyConnectionEdge","ContentTypeToContentNodeConnectionEdge","ContentNodeToEditLockConnectionEdge","CommentToCommenterConnectionEdge","CommentToContentNodeConnectionEdge","CommentToParentCommentConnectionEdge","CommentToCommentConnectionEdge","UserToCommentConnectionEdge","UserToEnqueuedScriptConnectionEdge","UserToEnqueuedStylesheetConnectionEdge","NodeWithAuthorToUserConnectionEdge","HierarchicalContentNodeToContentNodeAncestorsConnectionEdge","HierarchicalContentNodeToContentNodeChildrenConnectionEdge","ContentNodeToEnqueuedScriptConnectionEdge","ContentNodeToEnqueuedStylesheetConnectionEdge","ContentNodeToEditLastConnectionEdge","HierarchicalContentNodeToParentContentNodeConnectionEdge","MediaItemToCommentConnectionEdge","UserToMediaItemConnectionEdge","NodeWithFeaturedImageToMediaItemConnectionEdge","NodeWithRevisionsToContentNodeConnectionEdge","PageToCommentConnectionEdge","PageToPreviewConnectionEdge","PageToRevisionConnectionEdge","UserToPageConnectionEdge","PostToPostConnectionEdge","PostToCategoryConnectionEdge","PostToCommentConnectionEdge","PostToParentConnectionEdge","PostFormatToContentNodeConnectionEdge","PostFormatToPostConnectionEdge","PostFormatToTaxonomyConnectionEdge","PostToPostFormatConnectionEdge","PostToPreviewConnectionEdge","PostToRevisionConnectionEdge","TagToContentNodeConnectionEdge","TagToPostConnectionEdge","TagToTaxonomyConnectionEdge","PostToTagConnectionEdge","PostToTermNodeConnectionEdge","UserToPostConnectionEdge","UserToRevisionsConnectionEdge","UserToUserRoleConnectionEdge","CategoryToContentNodeConnectionEdge","CategoryToParentCategoryConnectionEdge","CategoryToPostConnectionEdge","CategoryToTaxonomyConnectionEdge","RootQueryToCategoryConnectionEdge","RootQueryToCommentConnectionEdge","RootQueryToContentNodeConnectionEdge","RootQueryToContentTypeConnectionEdge","GraphqlDocumentToGraphqlDocumentConnectionEdge","GraphqlDocumentGroupToContentNodeConnectionEdge","GraphqlDocumentGroupToGraphqlDocumentConnectionEdge","GraphqlDocumentGroupToTaxonomyConnectionEdge","GraphqlDocumentToGraphqlDocumentGroupConnectionEdge","GraphqlDocumentToParentConnectionEdge","GraphqlDocumentToPreviewConnectionEdge","GraphqlDocumentToTermNodeConnectionEdge","RootQueryToGraphqlDocumentGroupConnectionEdge","RootQueryToGraphqlDocumentConnectionEdge","RootQueryToMediaItemConnectionEdge","MenuItemToMenuItemConnectionEdge","MenuItemToMenuItemLinkableConnectionEdge","MenuItemToMenuConnectionEdge","MenuToMenuItemConnectionEdge","RootQueryToMenuItemConnectionEdge","RootQueryToMenuConnectionEdge","RootQueryToPageConnectionEdge","RootQueryToPluginConnectionEdge","RootQueryToPostFormatConnectionEdge","RootQueryToPostConnectionEdge","RootQueryToEnqueuedScriptConnectionEdge","RootQueryToEnqueuedStylesheetConnectionEdge","RootQueryToRevisionsConnectionEdge","RootQueryToTagConnectionEdge","RootQueryToTaxonomyConnectionEdge","RootQueryToTermNodeConnectionEdge","RootQueryToThemeConnectionEdge","RootQueryToUserRoleConnectionEdge","RootQueryToUserConnectionEdge"],"Node":["Category","EnqueuedScript","EnqueuedStylesheet","ContentType","Taxonomy","User","Comment","MediaItem","Page","Post","PostFormat","Tag","UserRole","GraphqlDocument","GraphqlDocumentGroup","Menu","MenuItem","Plugin","Theme","CommentAuthor"],"PageInfo":["TermNodeToEnqueuedScriptConnectionPageInfo","TermNodeToEnqueuedStylesheetConnectionPageInfo","CategoryToAncestorsCategoryConnectionPageInfo","CategoryToCategoryConnectionPageInfo","TaxonomyToContentTypeConnectionPageInfo","TaxonomyToTermNodeConnectionPageInfo","ContentTypeToTaxonomyConnectionPageInfo","ContentTypeToContentNodeConnectionPageInfo","CommentToCommentConnectionPageInfo","UserToCommentConnectionPageInfo","UserToEnqueuedScriptConnectionPageInfo","UserToEnqueuedStylesheetConnectionPageInfo","HierarchicalContentNodeToContentNodeAncestorsConnectionPageInfo","HierarchicalContentNodeToContentNodeChildrenConnectionPageInfo","ContentNodeToEnqueuedScriptConnectionPageInfo","ContentNodeToEnqueuedStylesheetConnectionPageInfo","MediaItemToCommentConnectionPageInfo","UserToMediaItemConnectionPageInfo","PageToCommentConnectionPageInfo","PageToRevisionConnectionPageInfo","UserToPageConnectionPageInfo","PostToPostConnectionPageInfo","PostToCategoryConnectionPageInfo","PostToCommentConnectionPageInfo","PostFormatToContentNodeConnectionPageInfo","PostFormatToPostConnectionPageInfo","PostToPostFormatConnectionPageInfo","PostToRevisionConnectionPageInfo","TagToContentNodeConnectionPageInfo","TagToPostConnectionPageInfo","PostToTagConnectionPageInfo","PostToTermNodeConnectionPageInfo","UserToPostConnectionPageInfo","UserToRevisionsConnectionPageInfo","UserToUserRoleConnectionPageInfo","CategoryToContentNodeConnectionPageInfo","CategoryToPostConnectionPageInfo","RootQueryToCategoryConnectionPageInfo","RootQueryToCommentConnectionPageInfo","RootQueryToContentNodeConnectionPageInfo","RootQueryToContentTypeConnectionPageInfo","GraphqlDocumentToGraphqlDocumentConnectionPageInfo","GraphqlDocumentGroupToContentNodeConnectionPageInfo","GraphqlDocumentGroupToGraphqlDocumentConnectionPageInfo","GraphqlDocumentToGraphqlDocumentGroupConnectionPageInfo","GraphqlDocumentToTermNodeConnectionPageInfo","RootQueryToGraphqlDocumentGroupConnectionPageInfo","RootQueryToGraphqlDocumentConnectionPageInfo","RootQueryToMediaItemConnectionPageInfo","MenuItemToMenuItemConnectionPageInfo","MenuToMenuItemConnectionPageInfo","RootQueryToMenuItemConnectionPageInfo","RootQueryToMenuConnectionPageInfo","RootQueryToPageConnectionPageInfo","RootQueryToPluginConnectionPageInfo","RootQueryToPostFormatConnectionPageInfo","RootQueryToPostConnectionPageInfo","RootQueryToEnqueuedScriptConnectionPageInfo","RootQueryToEnqueuedStylesheetConnectionPageInfo","RootQueryToRevisionsConnectionPageInfo","RootQueryToTagConnectionPageInfo","RootQueryToTaxonomyConnectionPageInfo","RootQueryToTermNodeConnectionPageInfo","RootQueryToThemeConnectionPageInfo","RootQueryToUserRoleConnectionPageInfo","RootQueryToUserConnectionPageInfo"],"CategoryConnectionEdge":["CategoryToAncestorsCategoryConnectionEdge","CategoryToCategoryConnectionEdge","PostToCategoryConnectionEdge","CategoryToParentCategoryConnectionEdge","RootQueryToCategoryConnectionEdge"],"TermNode":["Category","PostFormat","Tag","GraphqlDocumentGroup"],"UniformResourceIdentifiable":["Category","ContentType","User","Comment","MediaItem","Page","Post","PostFormat","Tag","GraphqlDocument","GraphqlDocumentGroup"],"EnqueuedScriptConnection":["TermNodeToEnqueuedScriptConnection","UserToEnqueuedScriptConnection","ContentNodeToEnqueuedScriptConnection","RootQueryToEnqueuedScriptConnection"],"EnqueuedScriptConnectionEdge":["TermNodeToEnqueuedScriptConnectionEdge","UserToEnqueuedScriptConnectionEdge","ContentNodeToEnqueuedScriptConnectionEdge","RootQueryToEnqueuedScriptConnectionEdge"],"EnqueuedAsset":["EnqueuedScript","EnqueuedStylesheet"],"EnqueuedScriptConnectionPageInfo":["TermNodeToEnqueuedScriptConnectionPageInfo","UserToEnqueuedScriptConnectionPageInfo","ContentNodeToEnqueuedScriptConnectionPageInfo","RootQueryToEnqueuedScriptConnectionPageInfo"],"WPPageInfo":["TermNodeToEnqueuedScriptConnectionPageInfo","TermNodeToEnqueuedStylesheetConnectionPageInfo","CategoryToAncestorsCategoryConnectionPageInfo","CategoryToCategoryConnectionPageInfo","TaxonomyToContentTypeConnectionPageInfo","TaxonomyToTermNodeConnectionPageInfo","ContentTypeToTaxonomyConnectionPageInfo","ContentTypeToContentNodeConnectionPageInfo","CommentToCommentConnectionPageInfo","UserToCommentConnectionPageInfo","UserToEnqueuedScriptConnectionPageInfo","UserToEnqueuedStylesheetConnectionPageInfo","HierarchicalContentNodeToContentNodeAncestorsConnectionPageInfo","HierarchicalContentNodeToContentNodeChildrenConnectionPageInfo","ContentNodeToEnqueuedScriptConnectionPageInfo","ContentNodeToEnqueuedStylesheetConnectionPageInfo","MediaItemToCommentConnectionPageInfo","UserToMediaItemConnectionPageInfo","PageToCommentConnectionPageInfo","PageToRevisionConnectionPageInfo","UserToPageConnectionPageInfo","PostToPostConnectionPageInfo","PostToCategoryConnectionPageInfo","PostToCommentConnectionPageInfo","PostFormatToContentNodeConnectionPageInfo","PostFormatToPostConnectionPageInfo","PostToPostFormatConnectionPageInfo","PostToRevisionConnectionPageInfo","TagToContentNodeConnectionPageInfo","TagToPostConnectionPageInfo","PostToTagConnectionPageInfo","PostToTermNodeConnectionPageInfo","UserToPostConnectionPageInfo","UserToRevisionsConnectionPageInfo","UserToUserRoleConnectionPageInfo","CategoryToContentNodeConnectionPageInfo","CategoryToPostConnectionPageInfo","RootQueryToCategoryConnectionPageInfo","RootQueryToCommentConnectionPageInfo","RootQueryToContentNodeConnectionPageInfo","RootQueryToContentTypeConnectionPageInfo","GraphqlDocumentToGraphqlDocumentConnectionPageInfo","GraphqlDocumentGroupToContentNodeConnectionPageInfo","GraphqlDocumentGroupToGraphqlDocumentConnectionPageInfo","GraphqlDocumentToGraphqlDocumentGroupConnectionPageInfo","GraphqlDocumentToTermNodeConnectionPageInfo","RootQueryToGraphqlDocumentGroupConnectionPageInfo","RootQueryToGraphqlDocumentConnectionPageInfo","RootQueryToMediaItemConnectionPageInfo","MenuItemToMenuItemConnectionPageInfo","MenuToMenuItemConnectionPageInfo","RootQueryToMenuItemConnectionPageInfo","RootQueryToMenuConnectionPageInfo","RootQueryToPageConnectionPageInfo","RootQueryToPluginConnectionPageInfo","RootQueryToPostFormatConnectionPageInfo","RootQueryToPostConnectionPageInfo","RootQueryToEnqueuedScriptConnectionPageInfo","RootQueryToEnqueuedStylesheetConnectionPageInfo","RootQueryToRevisionsConnectionPageInfo","RootQueryToTagConnectionPageInfo","RootQueryToTaxonomyConnectionPageInfo","RootQueryToTermNodeConnectionPageInfo","RootQueryToThemeConnectionPageInfo","RootQueryToUserRoleConnectionPageInfo","RootQueryToUserConnectionPageInfo"],"EnqueuedStylesheetConnection":["TermNodeToEnqueuedStylesheetConnection","UserToEnqueuedStylesheetConnection","ContentNodeToEnqueuedStylesheetConnection","RootQueryToEnqueuedStylesheetConnection"],"EnqueuedStylesheetConnectionEdge":["TermNodeToEnqueuedStylesheetConnectionEdge","UserToEnqueuedStylesheetConnectionEdge","ContentNodeToEnqueuedStylesheetConnectionEdge","RootQueryToEnqueuedStylesheetConnectionEdge"],"EnqueuedStylesheetConnectionPageInfo":["TermNodeToEnqueuedStylesheetConnectionPageInfo","UserToEnqueuedStylesheetConnectionPageInfo","ContentNodeToEnqueuedStylesheetConnectionPageInfo","RootQueryToEnqueuedStylesheetConnectionPageInfo"],"DatabaseIdentifier":["Category","User","Comment","MediaItem","Page","Post","PostFormat","Tag","GraphqlDocument","GraphqlDocumentGroup","Menu","MenuItem","CommentAuthor"],"HierarchicalTermNode":["Category"],"HierarchicalNode":["Category","MediaItem","Page"],"MenuItemLinkable":["Category","Page","Post","Tag"],"CategoryConnectionPageInfo":["CategoryToAncestorsCategoryConnectionPageInfo","CategoryToCategoryConnectionPageInfo","PostToCategoryConnectionPageInfo","RootQueryToCategoryConnectionPageInfo"],"ContentNodeConnection":["CategoryToContentNodeConnection","ContentTypeToContentNodeConnection","HierarchicalContentNodeToContentNodeAncestorsConnection","HierarchicalContentNodeToContentNodeChildrenConnection","PostFormatToContentNodeConnection","TagToContentNodeConnection","UserToRevisionsConnection","RootQueryToContentNodeConnection","GraphqlDocumentGroupToContentNodeConnection","RootQueryToRevisionsConnection"],"ContentNodeConnectionEdge":["ContentTypeToContentNodeConnectionEdge","CommentToContentNodeConnectionEdge","HierarchicalContentNodeToContentNodeAncestorsConnectionEdge","HierarchicalContentNodeToContentNodeChildrenConnectionEdge","HierarchicalContentNodeToParentContentNodeConnectionEdge","NodeWithRevisionsToContentNodeConnectionEdge","PostFormatToContentNodeConnectionEdge","TagToContentNodeConnectionEdge","UserToRevisionsConnectionEdge","CategoryToContentNodeConnectionEdge","RootQueryToContentNodeConnectionEdge","GraphqlDocumentGroupToContentNodeConnectionEdge","RootQueryToRevisionsConnectionEdge"],"ContentNode":["MediaItem","Page","Post","GraphqlDocument"],"OneToOneConnection":["ContentNodeToContentTypeConnectionEdge","ContentNodeToEditLockConnectionEdge","CommentToCommenterConnectionEdge","CommentToContentNodeConnectionEdge","CommentToParentCommentConnectionEdge","NodeWithAuthorToUserConnectionEdge","ContentNodeToEditLastConnectionEdge","HierarchicalContentNodeToParentContentNodeConnectionEdge","NodeWithFeaturedImageToMediaItemConnectionEdge","NodeWithRevisionsToContentNodeConnectionEdge","PageToPreviewConnectionEdge","PostToParentConnectionEdge","PostFormatToTaxonomyConnectionEdge","PostToPreviewConnectionEdge","TagToTaxonomyConnectionEdge","CategoryToParentCategoryConnectionEdge","CategoryToTaxonomyConnectionEdge","GraphqlDocumentGroupToTaxonomyConnectionEdge","GraphqlDocumentToParentConnectionEdge","GraphqlDocumentToPreviewConnectionEdge","MenuItemToMenuItemLinkableConnectionEdge","MenuItemToMenuConnectionEdge"],"ContentTypeConnectionEdge":["ContentNodeToContentTypeConnectionEdge","TaxonomyToContentTypeConnectionEdge","RootQueryToContentTypeConnectionEdge"],"TaxonomyConnection":["ContentTypeToTaxonomyConnection","RootQueryToTaxonomyConnection"],"TaxonomyConnectionEdge":["ContentTypeToTaxonomyConnectionEdge","PostFormatToTaxonomyConnectionEdge","TagToTaxonomyConnectionEdge","CategoryToTaxonomyConnectionEdge","GraphqlDocumentGroupToTaxonomyConnectionEdge","RootQueryToTaxonomyConnectionEdge"],"ContentTypeConnection":["TaxonomyToContentTypeConnection","RootQueryToContentTypeConnection"],"ContentTypeConnectionPageInfo":["TaxonomyToContentTypeConnectionPageInfo","RootQueryToContentTypeConnectionPageInfo"],"TermNodeConnection":["TaxonomyToTermNodeConnection","PostToTermNodeConnection","GraphqlDocumentToTermNodeConnection","RootQueryToTermNodeConnection"],"TermNodeConnectionEdge":["TaxonomyToTermNodeConnectionEdge","PostToTermNodeConnectionEdge","GraphqlDocumentToTermNodeConnectionEdge","RootQueryToTermNodeConnectionEdge"],"TermNodeConnectionPageInfo":["TaxonomyToTermNodeConnectionPageInfo","PostToTermNodeConnectionPageInfo","GraphqlDocumentToTermNodeConnectionPageInfo","RootQueryToTermNodeConnectionPageInfo"],"TaxonomyConnectionPageInfo":["ContentTypeToTaxonomyConnectionPageInfo","RootQueryToTaxonomyConnectionPageInfo"],"ContentNodeConnectionPageInfo":["ContentTypeToContentNodeConnectionPageInfo","HierarchicalContentNodeToContentNodeAncestorsConnectionPageInfo","HierarchicalContentNodeToContentNodeChildrenConnectionPageInfo","PostFormatToContentNodeConnectionPageInfo","TagToContentNodeConnectionPageInfo","UserToRevisionsConnectionPageInfo","CategoryToContentNodeConnectionPageInfo","RootQueryToContentNodeConnectionPageInfo","GraphqlDocumentGroupToContentNodeConnectionPageInfo","RootQueryToRevisionsConnectionPageInfo"],"UserConnectionEdge":["ContentNodeToEditLockConnectionEdge","NodeWithAuthorToUserConnectionEdge","ContentNodeToEditLastConnectionEdge","RootQueryToUserConnectionEdge"],"Commenter":["User","CommentAuthor"],"CommentConnection":["UserToCommentConnection","CommentToCommentConnection","MediaItemToCommentConnection","PageToCommentConnection","PostToCommentConnection","RootQueryToCommentConnection"],"CommentConnectionEdge":["CommentToParentCommentConnectionEdge","CommentToCommentConnectionEdge","UserToCommentConnectionEdge","MediaItemToCommentConnectionEdge","PageToCommentConnectionEdge","PostToCommentConnectionEdge","RootQueryToCommentConnectionEdge"],"CommenterConnectionEdge":["CommentToCommenterConnectionEdge"],"CommentConnectionPageInfo":["CommentToCommentConnectionPageInfo","UserToCommentConnectionPageInfo","MediaItemToCommentConnectionPageInfo","PageToCommentConnectionPageInfo","PostToCommentConnectionPageInfo","RootQueryToCommentConnectionPageInfo"],"MediaItemConnection":["UserToMediaItemConnection","RootQueryToMediaItemConnection"],"MediaItemConnectionEdge":["UserToMediaItemConnectionEdge","NodeWithFeaturedImageToMediaItemConnectionEdge","RootQueryToMediaItemConnectionEdge"],"NodeWithTemplate":["MediaItem","Page","Post","GraphqlDocument"],"ContentTemplate":["DefaultTemplate","Template_Blank","Template_BlogAlternative"],"NodeWithTitle":["MediaItem","Page","Post","GraphqlDocument"],"NodeWithAuthor":["MediaItem","Page","Post"],"NodeWithComments":["MediaItem","Page","Post"],"HierarchicalContentNode":["MediaItem","Page"],"MediaItemConnectionPageInfo":["UserToMediaItemConnectionPageInfo","RootQueryToMediaItemConnectionPageInfo"],"PageConnection":["UserToPageConnection","PageToRevisionConnection","RootQueryToPageConnection"],"PageConnectionEdge":["PageToPreviewConnectionEdge","PageToRevisionConnectionEdge","UserToPageConnectionEdge","RootQueryToPageConnectionEdge"],"Previewable":["Page","Post"],"NodeWithContentEditor":["Page","Post","GraphqlDocument"],"NodeWithFeaturedImage":["Page","Post"],"NodeWithRevisions":["Page","Post"],"NodeWithPageAttributes":["Page"],"NodeWithEditorBlocks":["Page","Post"],"EditorBlock":["CoreLegacyWidget","CoreWidgetGroup","CoreArchives","CoreAvatar","CoreBlock","CoreButton","CoreCalendar","CoreCategories","CoreCommentAuthorName","CoreCommentContent","CoreCommentDate","CoreCommentEditLink","CoreCommentReplyLink","CoreCommentTemplate","CoreComments","CoreCommentsPagination","CoreCommentsPaginationNext","CoreCommentsPaginationNumbers","CoreCommentsPaginationPrevious","CoreCommentsTitle","CoreCover","CoreFile","CoreFootnotes","CoreGallery","CoreHeading","CoreHomeLink","CoreImage","CoreLatestComments","CoreLatestPosts","CoreList","CoreLoginout","CoreMediaText","CoreNavigation","CoreNavigationLink","CoreNavigationSubmenu","CorePageList","CorePageListItem","CorePattern","CorePostAuthor","CorePostAuthorBiography","CorePostAuthorName","CorePostCommentsForm","CorePostContent","CorePostDate","CorePostExcerpt","CorePostFeaturedImage","CorePostNavigationLink","CorePostTemplate","CorePostTerms","CorePostTitle","CoreQuery","CoreQueryNoResults","CoreQueryPagination","CoreQueryPaginationNext","CoreQueryPaginationNumbers","CoreQueryPaginationPrevious","CoreQueryTitle","CoreReadMore","CoreRss","CoreSearch","CoreShortcode","CoreSiteLogo","CoreSiteTagline","CoreSiteTitle","CoreSocialLink","CoreTagCloud","CoreTemplatePart","CoreTermDescription","CoreAudio","CoreButtons","CoreCode","CoreColumn","CoreColumns","CoreDetails","CoreEmbed","CoreFreeform","CoreGroup","CoreHtml","CoreListItem","CoreMissing","CoreMore","CoreNextpage","CoreParagraph","CorePreformatted","CorePullquote","CoreQuote","CoreSeparator","CoreSocialLinks","CoreSpacer","CoreTable","CoreTextColumns","CoreVerse","CoreVideo","CorePostComments"],"NodeWithPageEditorBlocks":["Page"],"PageEditorBlock":["CoreLegacyWidget","CoreWidgetGroup","CoreArchives","CoreAvatar","CoreBlock","CoreButton","CoreCalendar","CoreCategories","CoreCommentAuthorName","CoreCommentContent","CoreCommentDate","CoreCommentEditLink","CoreCommentReplyLink","CoreCommentTemplate","CoreComments","CoreCommentsPagination","CoreCommentsPaginationNext","CoreCommentsPaginationNumbers","CoreCommentsPaginationPrevious","CoreCommentsTitle","CoreCover","CoreFile","CoreFootnotes","CoreGallery","CoreHeading","CoreHomeLink","CoreImage","CoreLatestComments","CoreLatestPosts","CoreList","CoreLoginout","CoreMediaText","CoreNavigation","CoreNavigationLink","CoreNavigationSubmenu","CorePageList","CorePageListItem","CorePattern","CorePostAuthor","CorePostAuthorBiography","CorePostAuthorName","CorePostCommentsForm","CorePostContent","CorePostDate","CorePostExcerpt","CorePostFeaturedImage","CorePostNavigationLink","CorePostTemplate","CorePostTerms","CorePostTitle","CoreQuery","CoreQueryNoResults","CoreQueryPagination","CoreQueryPaginationNext","CoreQueryPaginationNumbers","CoreQueryPaginationPrevious","CoreQueryTitle","CoreReadMore","CoreRss","CoreSearch","CoreShortcode","CoreSiteLogo","CoreSiteTagline","CoreSiteTitle","CoreSocialLink","CoreTagCloud","CoreTemplatePart","CoreTermDescription","CoreAudio","CoreButtons","CoreCode","CoreColumn","CoreColumns","CoreDetails","CoreEmbed","CoreFreeform","CoreGroup","CoreHtml","CoreListItem","CoreMissing","CoreMore","CoreNextpage","CoreParagraph","CorePreformatted","CorePullquote","CoreQuote","CoreSeparator","CoreSocialLinks","CoreSpacer","CoreTable","CoreTextColumns","CoreVerse","CoreVideo","CorePostComments"],"PageConnectionPageInfo":["PageToRevisionConnectionPageInfo","UserToPageConnectionPageInfo","RootQueryToPageConnectionPageInfo"],"PostConnection":["UserToPostConnection","PostToPostConnection","PostFormatToPostConnection","PostToRevisionConnection","TagToPostConnection","CategoryToPostConnection","RootQueryToPostConnection"],"PostConnectionEdge":["PostToPostConnectionEdge","PostToParentConnectionEdge","PostFormatToPostConnectionEdge","PostToPreviewConnectionEdge","PostToRevisionConnectionEdge","TagToPostConnectionEdge","UserToPostConnectionEdge","CategoryToPostConnectionEdge","RootQueryToPostConnectionEdge"],"NodeWithExcerpt":["Post"],"NodeWithTrackbacks":["Post"],"NodeWithPostEditorBlocks":["Post"],"PostEditorBlock":["CoreLegacyWidget","CoreWidgetGroup","CoreArchives","CoreAvatar","CoreBlock","CoreButton","CoreCalendar","CoreCategories","CoreCommentAuthorName","CoreCommentContent","CoreCommentDate","CoreCommentEditLink","CoreCommentReplyLink","CoreCommentTemplate","CoreComments","CoreCommentsPagination","CoreCommentsPaginationNext","CoreCommentsPaginationNumbers","CoreCommentsPaginationPrevious","CoreCommentsTitle","CoreCover","CoreFile","CoreFootnotes","CoreGallery","CoreHeading","CoreHomeLink","CoreImage","CoreLatestComments","CoreLatestPosts","CoreList","CoreLoginout","CoreMediaText","CoreNavigation","CoreNavigationLink","CoreNavigationSubmenu","CorePageList","CorePageListItem","CorePattern","CorePostAuthor","CorePostAuthorBiography","CorePostAuthorName","CorePostCommentsForm","CorePostContent","CorePostDate","CorePostExcerpt","CorePostFeaturedImage","CorePostNavigationLink","CorePostTemplate","CorePostTerms","CorePostTitle","CoreQuery","CoreQueryNoResults","CoreQueryPagination","CoreQueryPaginationNext","CoreQueryPaginationNumbers","CoreQueryPaginationPrevious","CoreQueryTitle","CoreReadMore","CoreRss","CoreSearch","CoreShortcode","CoreSiteLogo","CoreSiteTagline","CoreSiteTitle","CoreSocialLink","CoreTagCloud","CoreTemplatePart","CoreTermDescription","CoreAudio","CoreButtons","CoreCode","CoreColumn","CoreColumns","CoreDetails","CoreEmbed","CoreFreeform","CoreGroup","CoreHtml","CoreListItem","CoreMissing","CoreMore","CoreNextpage","CoreParagraph","CorePreformatted","CorePullquote","CoreQuote","CoreSeparator","CoreSocialLinks","CoreSpacer","CoreTable","CoreTextColumns","CoreVerse","CoreVideo","CorePostComments"],"PostConnectionPageInfo":["PostToPostConnectionPageInfo","PostFormatToPostConnectionPageInfo","PostToRevisionConnectionPageInfo","TagToPostConnectionPageInfo","UserToPostConnectionPageInfo","CategoryToPostConnectionPageInfo","RootQueryToPostConnectionPageInfo"],"PostFormatConnection":["PostToPostFormatConnection","RootQueryToPostFormatConnection"],"PostFormatConnectionEdge":["PostToPostFormatConnectionEdge","RootQueryToPostFormatConnectionEdge"],"PostFormatConnectionPageInfo":["PostToPostFormatConnectionPageInfo","RootQueryToPostFormatConnectionPageInfo"],"TagConnection":["PostToTagConnection","RootQueryToTagConnection"],"TagConnectionEdge":["PostToTagConnectionEdge","RootQueryToTagConnectionEdge"],"TagConnectionPageInfo":["PostToTagConnectionPageInfo","RootQueryToTagConnectionPageInfo"],"UserRoleConnection":["UserToUserRoleConnection","RootQueryToUserRoleConnection"],"UserRoleConnectionEdge":["UserToUserRoleConnectionEdge","RootQueryToUserRoleConnectionEdge"],"UserRoleConnectionPageInfo":["UserToUserRoleConnectionPageInfo","RootQueryToUserRoleConnectionPageInfo"],"GraphqlDocumentConnection":["GraphqlDocumentToGraphqlDocumentConnection","GraphqlDocumentGroupToGraphqlDocumentConnection","RootQueryToGraphqlDocumentConnection"],"GraphqlDocumentConnectionEdge":["GraphqlDocumentToGraphqlDocumentConnectionEdge","GraphqlDocumentGroupToGraphqlDocumentConnectionEdge","GraphqlDocumentToParentConnectionEdge","GraphqlDocumentToPreviewConnectionEdge","RootQueryToGraphqlDocumentConnectionEdge"],"GraphqlDocumentConnectionPageInfo":["GraphqlDocumentToGraphqlDocumentConnectionPageInfo","GraphqlDocumentGroupToGraphqlDocumentConnectionPageInfo","RootQueryToGraphqlDocumentConnectionPageInfo"],"GraphqlDocumentGroupConnection":["GraphqlDocumentToGraphqlDocumentGroupConnection","RootQueryToGraphqlDocumentGroupConnection"],"GraphqlDocumentGroupConnectionEdge":["GraphqlDocumentToGraphqlDocumentGroupConnectionEdge","RootQueryToGraphqlDocumentGroupConnectionEdge"],"GraphqlDocumentGroupConnectionPageInfo":["GraphqlDocumentToGraphqlDocumentGroupConnectionPageInfo","RootQueryToGraphqlDocumentGroupConnectionPageInfo"],"MenuItemConnection":["MenuToMenuItemConnection","MenuItemToMenuItemConnection","RootQueryToMenuItemConnection"],"MenuItemConnectionEdge":["MenuItemToMenuItemConnectionEdge","MenuToMenuItemConnectionEdge","RootQueryToMenuItemConnectionEdge"],"MenuItemConnectionPageInfo":["MenuItemToMenuItemConnectionPageInfo","MenuToMenuItemConnectionPageInfo","RootQueryToMenuItemConnectionPageInfo"],"MenuItemLinkableConnectionEdge":["MenuItemToMenuItemLinkableConnectionEdge"],"MenuItemObjectUnion":["Post","Page","Category","Tag"],"MenuConnectionEdge":["MenuItemToMenuConnectionEdge","RootQueryToMenuConnectionEdge"],"MenuConnection":["RootQueryToMenuConnection"],"MenuConnectionPageInfo":["RootQueryToMenuConnectionPageInfo"],"PluginConnection":["RootQueryToPluginConnection"],"PluginConnectionEdge":["RootQueryToPluginConnectionEdge"],"PluginConnectionPageInfo":["RootQueryToPluginConnectionPageInfo"],"ThemeConnection":["RootQueryToThemeConnection"],"ThemeConnectionEdge":["RootQueryToThemeConnectionEdge"],"ThemeConnectionPageInfo":["RootQueryToThemeConnectionPageInfo"],"UserConnection":["RootQueryToUserConnection"],"UserConnectionPageInfo":["RootQueryToUserConnectionPageInfo"],"BlockWithSupportsAnchor":["CoreButton","CoreButtonAttributes","CoreCover","CoreCoverAttributes","CoreFile","CoreFileAttributes","CoreGallery","CoreGalleryAttributes","CoreHeading","CoreHeadingAttributes","CoreImage","CoreImageAttributes","CoreList","CoreListAttributes","CoreMediaText","CoreMediaTextAttributes","CoreAudio","CoreAudioAttributes","CoreButtons","CoreButtonsAttributes","CoreCode","CoreCodeAttributes","CoreColumn","CoreColumnAttributes","CoreColumns","CoreColumnsAttributes","CoreGroup","CoreGroupAttributes","CoreListItem","CoreListItemAttributes","CoreParagraph","CoreParagraphAttributes","CorePreformatted","CorePreformattedAttributes","CorePullquote","CorePullquoteAttributes","CoreQuote","CoreQuoteAttributes","CoreSeparator","CoreSeparatorAttributes","CoreSocialLinks","CoreSocialLinksAttributes","CoreSpacer","CoreSpacerAttributes","CoreTable","CoreTableAttributes","CoreVerse","CoreVerseAttributes","CoreVideo","CoreVideoAttributes"]} \ No newline at end of file +{"CategoryConnection":["RootQueryToCategoryConnection","CategoryToAncestorsCategoryConnection","CategoryToCategoryConnection","PostToCategoryConnection"],"Connection":["RootQueryToCategoryConnection","TermNodeToEnqueuedScriptConnection","TermNodeToEnqueuedStylesheetConnection","CategoryToAncestorsCategoryConnection","CategoryToCategoryConnection","CategoryToContentNodeConnection","ContentTypeToTaxonomyConnection","TaxonomyToContentTypeConnection","TaxonomyToTermNodeConnection","ContentTypeToContentNodeConnection","UserToCommentConnection","CommentToCommentConnection","UserToEnqueuedScriptConnection","UserToEnqueuedStylesheetConnection","UserToMediaItemConnection","HierarchicalContentNodeToContentNodeAncestorsConnection","HierarchicalContentNodeToContentNodeChildrenConnection","ContentNodeToEnqueuedScriptConnection","ContentNodeToEnqueuedStylesheetConnection","MediaItemToCommentConnection","UserToPageConnection","PageToCommentConnection","PageToRevisionConnection","UserToPostConnection","PostToPostConnection","PostToCategoryConnection","PostToCommentConnection","PostToPostFormatConnection","PostFormatToContentNodeConnection","PostFormatToPostConnection","PostToRevisionConnection","PostToTagConnection","TagToContentNodeConnection","TagToPostConnection","PostToTermNodeConnection","UserToRevisionsConnection","UserToUserRoleConnection","CategoryToPostConnection","RootQueryToCommentConnection","RootQueryToContentNodeConnection","RootQueryToContentTypeConnection","GraphqlDocumentToGraphqlDocumentConnection","GraphqlDocumentToGraphqlDocumentGroupConnection","GraphqlDocumentGroupToContentNodeConnection","GraphqlDocumentGroupToGraphqlDocumentConnection","GraphqlDocumentToTermNodeConnection","RootQueryToGraphqlDocumentGroupConnection","RootQueryToGraphqlDocumentConnection","RootQueryToMediaItemConnection","MenuToMenuItemConnection","MenuItemToMenuItemConnection","RootQueryToMenuItemConnection","RootQueryToMenuConnection","RootQueryToPageConnection","RootQueryToPluginConnection","RootQueryToPostFormatConnection","RootQueryToPostConnection","RootQueryToEnqueuedScriptConnection","RootQueryToEnqueuedStylesheetConnection","RootQueryToRevisionsConnection","RootQueryToTagConnection","RootQueryToTaxonomyConnection","RootQueryToTermNodeConnection","RootQueryToThemeConnection","RootQueryToUserRoleConnection","RootQueryToUserConnection"],"Edge":["TermNodeToEnqueuedScriptConnectionEdge","TermNodeToEnqueuedStylesheetConnectionEdge","CategoryToAncestorsCategoryConnectionEdge","CategoryToCategoryConnectionEdge","ContentNodeToContentTypeConnectionEdge","TaxonomyToContentTypeConnectionEdge","TaxonomyToTermNodeConnectionEdge","ContentTypeToTaxonomyConnectionEdge","ContentTypeToContentNodeConnectionEdge","ContentNodeToEditLockConnectionEdge","CommentToCommenterConnectionEdge","CommentToContentNodeConnectionEdge","CommentToParentCommentConnectionEdge","CommentToCommentConnectionEdge","UserToCommentConnectionEdge","UserToEnqueuedScriptConnectionEdge","UserToEnqueuedStylesheetConnectionEdge","NodeWithAuthorToUserConnectionEdge","HierarchicalContentNodeToContentNodeAncestorsConnectionEdge","HierarchicalContentNodeToContentNodeChildrenConnectionEdge","ContentNodeToEnqueuedScriptConnectionEdge","ContentNodeToEnqueuedStylesheetConnectionEdge","ContentNodeToEditLastConnectionEdge","HierarchicalContentNodeToParentContentNodeConnectionEdge","MediaItemToCommentConnectionEdge","UserToMediaItemConnectionEdge","NodeWithFeaturedImageToMediaItemConnectionEdge","NodeWithRevisionsToContentNodeConnectionEdge","PageToCommentConnectionEdge","PageToPreviewConnectionEdge","PageToRevisionConnectionEdge","UserToPageConnectionEdge","PostToPostConnectionEdge","PostToCategoryConnectionEdge","PostToCommentConnectionEdge","PostToParentConnectionEdge","PostFormatToContentNodeConnectionEdge","PostFormatToPostConnectionEdge","PostFormatToTaxonomyConnectionEdge","PostToPostFormatConnectionEdge","PostToPreviewConnectionEdge","PostToRevisionConnectionEdge","TagToContentNodeConnectionEdge","TagToPostConnectionEdge","TagToTaxonomyConnectionEdge","PostToTagConnectionEdge","PostToTermNodeConnectionEdge","UserToPostConnectionEdge","UserToRevisionsConnectionEdge","UserToUserRoleConnectionEdge","CategoryToContentNodeConnectionEdge","CategoryToParentCategoryConnectionEdge","CategoryToPostConnectionEdge","CategoryToTaxonomyConnectionEdge","RootQueryToCategoryConnectionEdge","RootQueryToCommentConnectionEdge","RootQueryToContentNodeConnectionEdge","RootQueryToContentTypeConnectionEdge","GraphqlDocumentToGraphqlDocumentConnectionEdge","GraphqlDocumentGroupToContentNodeConnectionEdge","GraphqlDocumentGroupToGraphqlDocumentConnectionEdge","GraphqlDocumentGroupToTaxonomyConnectionEdge","GraphqlDocumentToGraphqlDocumentGroupConnectionEdge","GraphqlDocumentToParentConnectionEdge","GraphqlDocumentToPreviewConnectionEdge","GraphqlDocumentToTermNodeConnectionEdge","RootQueryToGraphqlDocumentGroupConnectionEdge","RootQueryToGraphqlDocumentConnectionEdge","RootQueryToMediaItemConnectionEdge","MenuItemToMenuItemConnectionEdge","MenuItemToMenuItemLinkableConnectionEdge","MenuItemToMenuConnectionEdge","MenuToMenuItemConnectionEdge","RootQueryToMenuItemConnectionEdge","RootQueryToMenuConnectionEdge","RootQueryToPageConnectionEdge","RootQueryToPluginConnectionEdge","RootQueryToPostFormatConnectionEdge","RootQueryToPostConnectionEdge","RootQueryToEnqueuedScriptConnectionEdge","RootQueryToEnqueuedStylesheetConnectionEdge","RootQueryToRevisionsConnectionEdge","RootQueryToTagConnectionEdge","RootQueryToTaxonomyConnectionEdge","RootQueryToTermNodeConnectionEdge","RootQueryToThemeConnectionEdge","RootQueryToUserRoleConnectionEdge","RootQueryToUserConnectionEdge"],"Node":["Category","EnqueuedScript","EnqueuedStylesheet","ContentType","Taxonomy","User","Comment","MediaItem","Page","Post","PostFormat","Tag","UserRole","GraphqlDocument","GraphqlDocumentGroup","Menu","MenuItem","Plugin","Theme","CommentAuthor"],"PageInfo":["TermNodeToEnqueuedScriptConnectionPageInfo","TermNodeToEnqueuedStylesheetConnectionPageInfo","CategoryToAncestorsCategoryConnectionPageInfo","CategoryToCategoryConnectionPageInfo","TaxonomyToContentTypeConnectionPageInfo","TaxonomyToTermNodeConnectionPageInfo","ContentTypeToTaxonomyConnectionPageInfo","ContentTypeToContentNodeConnectionPageInfo","CommentToCommentConnectionPageInfo","UserToCommentConnectionPageInfo","UserToEnqueuedScriptConnectionPageInfo","UserToEnqueuedStylesheetConnectionPageInfo","HierarchicalContentNodeToContentNodeAncestorsConnectionPageInfo","HierarchicalContentNodeToContentNodeChildrenConnectionPageInfo","ContentNodeToEnqueuedScriptConnectionPageInfo","ContentNodeToEnqueuedStylesheetConnectionPageInfo","MediaItemToCommentConnectionPageInfo","UserToMediaItemConnectionPageInfo","PageToCommentConnectionPageInfo","PageToRevisionConnectionPageInfo","UserToPageConnectionPageInfo","PostToPostConnectionPageInfo","PostToCategoryConnectionPageInfo","PostToCommentConnectionPageInfo","PostFormatToContentNodeConnectionPageInfo","PostFormatToPostConnectionPageInfo","PostToPostFormatConnectionPageInfo","PostToRevisionConnectionPageInfo","TagToContentNodeConnectionPageInfo","TagToPostConnectionPageInfo","PostToTagConnectionPageInfo","PostToTermNodeConnectionPageInfo","UserToPostConnectionPageInfo","UserToRevisionsConnectionPageInfo","UserToUserRoleConnectionPageInfo","CategoryToContentNodeConnectionPageInfo","CategoryToPostConnectionPageInfo","RootQueryToCategoryConnectionPageInfo","RootQueryToCommentConnectionPageInfo","RootQueryToContentNodeConnectionPageInfo","RootQueryToContentTypeConnectionPageInfo","GraphqlDocumentToGraphqlDocumentConnectionPageInfo","GraphqlDocumentGroupToContentNodeConnectionPageInfo","GraphqlDocumentGroupToGraphqlDocumentConnectionPageInfo","GraphqlDocumentToGraphqlDocumentGroupConnectionPageInfo","GraphqlDocumentToTermNodeConnectionPageInfo","RootQueryToGraphqlDocumentGroupConnectionPageInfo","RootQueryToGraphqlDocumentConnectionPageInfo","RootQueryToMediaItemConnectionPageInfo","MenuItemToMenuItemConnectionPageInfo","MenuToMenuItemConnectionPageInfo","RootQueryToMenuItemConnectionPageInfo","RootQueryToMenuConnectionPageInfo","RootQueryToPageConnectionPageInfo","RootQueryToPluginConnectionPageInfo","RootQueryToPostFormatConnectionPageInfo","RootQueryToPostConnectionPageInfo","RootQueryToEnqueuedScriptConnectionPageInfo","RootQueryToEnqueuedStylesheetConnectionPageInfo","RootQueryToRevisionsConnectionPageInfo","RootQueryToTagConnectionPageInfo","RootQueryToTaxonomyConnectionPageInfo","RootQueryToTermNodeConnectionPageInfo","RootQueryToThemeConnectionPageInfo","RootQueryToUserRoleConnectionPageInfo","RootQueryToUserConnectionPageInfo"],"CategoryConnectionEdge":["CategoryToAncestorsCategoryConnectionEdge","CategoryToCategoryConnectionEdge","PostToCategoryConnectionEdge","CategoryToParentCategoryConnectionEdge","RootQueryToCategoryConnectionEdge"],"TermNode":["Category","PostFormat","Tag","GraphqlDocumentGroup"],"UniformResourceIdentifiable":["Category","ContentType","User","Comment","MediaItem","Page","Post","PostFormat","Tag","GraphqlDocument","GraphqlDocumentGroup"],"EnqueuedScriptConnection":["TermNodeToEnqueuedScriptConnection","UserToEnqueuedScriptConnection","ContentNodeToEnqueuedScriptConnection","RootQueryToEnqueuedScriptConnection"],"EnqueuedScriptConnectionEdge":["TermNodeToEnqueuedScriptConnectionEdge","UserToEnqueuedScriptConnectionEdge","ContentNodeToEnqueuedScriptConnectionEdge","RootQueryToEnqueuedScriptConnectionEdge"],"EnqueuedAsset":["EnqueuedScript","EnqueuedStylesheet"],"EnqueuedScriptConnectionPageInfo":["TermNodeToEnqueuedScriptConnectionPageInfo","UserToEnqueuedScriptConnectionPageInfo","ContentNodeToEnqueuedScriptConnectionPageInfo","RootQueryToEnqueuedScriptConnectionPageInfo"],"WPPageInfo":["TermNodeToEnqueuedScriptConnectionPageInfo","TermNodeToEnqueuedStylesheetConnectionPageInfo","CategoryToAncestorsCategoryConnectionPageInfo","CategoryToCategoryConnectionPageInfo","TaxonomyToContentTypeConnectionPageInfo","TaxonomyToTermNodeConnectionPageInfo","ContentTypeToTaxonomyConnectionPageInfo","ContentTypeToContentNodeConnectionPageInfo","CommentToCommentConnectionPageInfo","UserToCommentConnectionPageInfo","UserToEnqueuedScriptConnectionPageInfo","UserToEnqueuedStylesheetConnectionPageInfo","HierarchicalContentNodeToContentNodeAncestorsConnectionPageInfo","HierarchicalContentNodeToContentNodeChildrenConnectionPageInfo","ContentNodeToEnqueuedScriptConnectionPageInfo","ContentNodeToEnqueuedStylesheetConnectionPageInfo","MediaItemToCommentConnectionPageInfo","UserToMediaItemConnectionPageInfo","PageToCommentConnectionPageInfo","PageToRevisionConnectionPageInfo","UserToPageConnectionPageInfo","PostToPostConnectionPageInfo","PostToCategoryConnectionPageInfo","PostToCommentConnectionPageInfo","PostFormatToContentNodeConnectionPageInfo","PostFormatToPostConnectionPageInfo","PostToPostFormatConnectionPageInfo","PostToRevisionConnectionPageInfo","TagToContentNodeConnectionPageInfo","TagToPostConnectionPageInfo","PostToTagConnectionPageInfo","PostToTermNodeConnectionPageInfo","UserToPostConnectionPageInfo","UserToRevisionsConnectionPageInfo","UserToUserRoleConnectionPageInfo","CategoryToContentNodeConnectionPageInfo","CategoryToPostConnectionPageInfo","RootQueryToCategoryConnectionPageInfo","RootQueryToCommentConnectionPageInfo","RootQueryToContentNodeConnectionPageInfo","RootQueryToContentTypeConnectionPageInfo","GraphqlDocumentToGraphqlDocumentConnectionPageInfo","GraphqlDocumentGroupToContentNodeConnectionPageInfo","GraphqlDocumentGroupToGraphqlDocumentConnectionPageInfo","GraphqlDocumentToGraphqlDocumentGroupConnectionPageInfo","GraphqlDocumentToTermNodeConnectionPageInfo","RootQueryToGraphqlDocumentGroupConnectionPageInfo","RootQueryToGraphqlDocumentConnectionPageInfo","RootQueryToMediaItemConnectionPageInfo","MenuItemToMenuItemConnectionPageInfo","MenuToMenuItemConnectionPageInfo","RootQueryToMenuItemConnectionPageInfo","RootQueryToMenuConnectionPageInfo","RootQueryToPageConnectionPageInfo","RootQueryToPluginConnectionPageInfo","RootQueryToPostFormatConnectionPageInfo","RootQueryToPostConnectionPageInfo","RootQueryToEnqueuedScriptConnectionPageInfo","RootQueryToEnqueuedStylesheetConnectionPageInfo","RootQueryToRevisionsConnectionPageInfo","RootQueryToTagConnectionPageInfo","RootQueryToTaxonomyConnectionPageInfo","RootQueryToTermNodeConnectionPageInfo","RootQueryToThemeConnectionPageInfo","RootQueryToUserRoleConnectionPageInfo","RootQueryToUserConnectionPageInfo"],"EnqueuedStylesheetConnection":["TermNodeToEnqueuedStylesheetConnection","UserToEnqueuedStylesheetConnection","ContentNodeToEnqueuedStylesheetConnection","RootQueryToEnqueuedStylesheetConnection"],"EnqueuedStylesheetConnectionEdge":["TermNodeToEnqueuedStylesheetConnectionEdge","UserToEnqueuedStylesheetConnectionEdge","ContentNodeToEnqueuedStylesheetConnectionEdge","RootQueryToEnqueuedStylesheetConnectionEdge"],"EnqueuedStylesheetConnectionPageInfo":["TermNodeToEnqueuedStylesheetConnectionPageInfo","UserToEnqueuedStylesheetConnectionPageInfo","ContentNodeToEnqueuedStylesheetConnectionPageInfo","RootQueryToEnqueuedStylesheetConnectionPageInfo"],"DatabaseIdentifier":["Category","User","Comment","MediaItem","Page","Post","PostFormat","Tag","GraphqlDocument","GraphqlDocumentGroup","Menu","MenuItem","CommentAuthor"],"HierarchicalTermNode":["Category"],"HierarchicalNode":["Category","MediaItem","Page"],"MenuItemLinkable":["Category","Page","Post","Tag"],"CategoryConnectionPageInfo":["CategoryToAncestorsCategoryConnectionPageInfo","CategoryToCategoryConnectionPageInfo","PostToCategoryConnectionPageInfo","RootQueryToCategoryConnectionPageInfo"],"ContentNodeConnection":["CategoryToContentNodeConnection","ContentTypeToContentNodeConnection","HierarchicalContentNodeToContentNodeAncestorsConnection","HierarchicalContentNodeToContentNodeChildrenConnection","PostFormatToContentNodeConnection","TagToContentNodeConnection","UserToRevisionsConnection","RootQueryToContentNodeConnection","GraphqlDocumentGroupToContentNodeConnection","RootQueryToRevisionsConnection"],"ContentNodeConnectionEdge":["ContentTypeToContentNodeConnectionEdge","CommentToContentNodeConnectionEdge","HierarchicalContentNodeToContentNodeAncestorsConnectionEdge","HierarchicalContentNodeToContentNodeChildrenConnectionEdge","HierarchicalContentNodeToParentContentNodeConnectionEdge","NodeWithRevisionsToContentNodeConnectionEdge","PostFormatToContentNodeConnectionEdge","TagToContentNodeConnectionEdge","UserToRevisionsConnectionEdge","CategoryToContentNodeConnectionEdge","RootQueryToContentNodeConnectionEdge","GraphqlDocumentGroupToContentNodeConnectionEdge","RootQueryToRevisionsConnectionEdge"],"ContentNode":["MediaItem","Page","Post","GraphqlDocument"],"OneToOneConnection":["ContentNodeToContentTypeConnectionEdge","ContentNodeToEditLockConnectionEdge","CommentToCommenterConnectionEdge","CommentToContentNodeConnectionEdge","CommentToParentCommentConnectionEdge","NodeWithAuthorToUserConnectionEdge","ContentNodeToEditLastConnectionEdge","HierarchicalContentNodeToParentContentNodeConnectionEdge","NodeWithFeaturedImageToMediaItemConnectionEdge","NodeWithRevisionsToContentNodeConnectionEdge","PageToPreviewConnectionEdge","PostToParentConnectionEdge","PostFormatToTaxonomyConnectionEdge","PostToPreviewConnectionEdge","TagToTaxonomyConnectionEdge","CategoryToParentCategoryConnectionEdge","CategoryToTaxonomyConnectionEdge","GraphqlDocumentGroupToTaxonomyConnectionEdge","GraphqlDocumentToParentConnectionEdge","GraphqlDocumentToPreviewConnectionEdge","MenuItemToMenuItemLinkableConnectionEdge","MenuItemToMenuConnectionEdge"],"ContentTypeConnectionEdge":["ContentNodeToContentTypeConnectionEdge","TaxonomyToContentTypeConnectionEdge","RootQueryToContentTypeConnectionEdge"],"TaxonomyConnection":["ContentTypeToTaxonomyConnection","RootQueryToTaxonomyConnection"],"TaxonomyConnectionEdge":["ContentTypeToTaxonomyConnectionEdge","PostFormatToTaxonomyConnectionEdge","TagToTaxonomyConnectionEdge","CategoryToTaxonomyConnectionEdge","GraphqlDocumentGroupToTaxonomyConnectionEdge","RootQueryToTaxonomyConnectionEdge"],"ContentTypeConnection":["TaxonomyToContentTypeConnection","RootQueryToContentTypeConnection"],"ContentTypeConnectionPageInfo":["TaxonomyToContentTypeConnectionPageInfo","RootQueryToContentTypeConnectionPageInfo"],"TermNodeConnection":["TaxonomyToTermNodeConnection","PostToTermNodeConnection","GraphqlDocumentToTermNodeConnection","RootQueryToTermNodeConnection"],"TermNodeConnectionEdge":["TaxonomyToTermNodeConnectionEdge","PostToTermNodeConnectionEdge","GraphqlDocumentToTermNodeConnectionEdge","RootQueryToTermNodeConnectionEdge"],"TermNodeConnectionPageInfo":["TaxonomyToTermNodeConnectionPageInfo","PostToTermNodeConnectionPageInfo","GraphqlDocumentToTermNodeConnectionPageInfo","RootQueryToTermNodeConnectionPageInfo"],"TaxonomyConnectionPageInfo":["ContentTypeToTaxonomyConnectionPageInfo","RootQueryToTaxonomyConnectionPageInfo"],"ContentNodeConnectionPageInfo":["ContentTypeToContentNodeConnectionPageInfo","HierarchicalContentNodeToContentNodeAncestorsConnectionPageInfo","HierarchicalContentNodeToContentNodeChildrenConnectionPageInfo","PostFormatToContentNodeConnectionPageInfo","TagToContentNodeConnectionPageInfo","UserToRevisionsConnectionPageInfo","CategoryToContentNodeConnectionPageInfo","RootQueryToContentNodeConnectionPageInfo","GraphqlDocumentGroupToContentNodeConnectionPageInfo","RootQueryToRevisionsConnectionPageInfo"],"UserConnectionEdge":["ContentNodeToEditLockConnectionEdge","NodeWithAuthorToUserConnectionEdge","ContentNodeToEditLastConnectionEdge","RootQueryToUserConnectionEdge"],"Commenter":["User","CommentAuthor"],"CommentConnection":["UserToCommentConnection","CommentToCommentConnection","MediaItemToCommentConnection","PageToCommentConnection","PostToCommentConnection","RootQueryToCommentConnection"],"CommentConnectionEdge":["CommentToParentCommentConnectionEdge","CommentToCommentConnectionEdge","UserToCommentConnectionEdge","MediaItemToCommentConnectionEdge","PageToCommentConnectionEdge","PostToCommentConnectionEdge","RootQueryToCommentConnectionEdge"],"CommenterConnectionEdge":["CommentToCommenterConnectionEdge"],"CommentConnectionPageInfo":["CommentToCommentConnectionPageInfo","UserToCommentConnectionPageInfo","MediaItemToCommentConnectionPageInfo","PageToCommentConnectionPageInfo","PostToCommentConnectionPageInfo","RootQueryToCommentConnectionPageInfo"],"MediaItemConnection":["UserToMediaItemConnection","RootQueryToMediaItemConnection"],"MediaItemConnectionEdge":["UserToMediaItemConnectionEdge","NodeWithFeaturedImageToMediaItemConnectionEdge","RootQueryToMediaItemConnectionEdge"],"NodeWithTemplate":["MediaItem","Page","Post","GraphqlDocument"],"ContentTemplate":["DefaultTemplate","Template_Blank","Template_BlogAlternative"],"NodeWithTitle":["MediaItem","Page","Post","GraphqlDocument"],"NodeWithAuthor":["MediaItem","Page","Post"],"NodeWithComments":["MediaItem","Page","Post"],"HierarchicalContentNode":["MediaItem","Page"],"MediaItemConnectionPageInfo":["UserToMediaItemConnectionPageInfo","RootQueryToMediaItemConnectionPageInfo"],"PageConnection":["UserToPageConnection","PageToRevisionConnection","RootQueryToPageConnection"],"PageConnectionEdge":["PageToPreviewConnectionEdge","PageToRevisionConnectionEdge","UserToPageConnectionEdge","RootQueryToPageConnectionEdge"],"Previewable":["Page","Post"],"NodeWithContentEditor":["Page","Post","GraphqlDocument"],"NodeWithFeaturedImage":["Page","Post"],"NodeWithRevisions":["Page","Post"],"NodeWithPageAttributes":["Page"],"PageConnectionPageInfo":["PageToRevisionConnectionPageInfo","UserToPageConnectionPageInfo","RootQueryToPageConnectionPageInfo"],"PostConnection":["UserToPostConnection","PostToPostConnection","PostFormatToPostConnection","PostToRevisionConnection","TagToPostConnection","CategoryToPostConnection","RootQueryToPostConnection"],"PostConnectionEdge":["PostToPostConnectionEdge","PostToParentConnectionEdge","PostFormatToPostConnectionEdge","PostToPreviewConnectionEdge","PostToRevisionConnectionEdge","TagToPostConnectionEdge","UserToPostConnectionEdge","CategoryToPostConnectionEdge","RootQueryToPostConnectionEdge"],"NodeWithExcerpt":["Post"],"NodeWithTrackbacks":["Post"],"PostConnectionPageInfo":["PostToPostConnectionPageInfo","PostFormatToPostConnectionPageInfo","PostToRevisionConnectionPageInfo","TagToPostConnectionPageInfo","UserToPostConnectionPageInfo","CategoryToPostConnectionPageInfo","RootQueryToPostConnectionPageInfo"],"PostFormatConnection":["PostToPostFormatConnection","RootQueryToPostFormatConnection"],"PostFormatConnectionEdge":["PostToPostFormatConnectionEdge","RootQueryToPostFormatConnectionEdge"],"PostFormatConnectionPageInfo":["PostToPostFormatConnectionPageInfo","RootQueryToPostFormatConnectionPageInfo"],"TagConnection":["PostToTagConnection","RootQueryToTagConnection"],"TagConnectionEdge":["PostToTagConnectionEdge","RootQueryToTagConnectionEdge"],"TagConnectionPageInfo":["PostToTagConnectionPageInfo","RootQueryToTagConnectionPageInfo"],"UserRoleConnection":["UserToUserRoleConnection","RootQueryToUserRoleConnection"],"UserRoleConnectionEdge":["UserToUserRoleConnectionEdge","RootQueryToUserRoleConnectionEdge"],"UserRoleConnectionPageInfo":["UserToUserRoleConnectionPageInfo","RootQueryToUserRoleConnectionPageInfo"],"GraphqlDocumentConnection":["GraphqlDocumentToGraphqlDocumentConnection","GraphqlDocumentGroupToGraphqlDocumentConnection","RootQueryToGraphqlDocumentConnection"],"GraphqlDocumentConnectionEdge":["GraphqlDocumentToGraphqlDocumentConnectionEdge","GraphqlDocumentGroupToGraphqlDocumentConnectionEdge","GraphqlDocumentToParentConnectionEdge","GraphqlDocumentToPreviewConnectionEdge","RootQueryToGraphqlDocumentConnectionEdge"],"GraphqlDocumentConnectionPageInfo":["GraphqlDocumentToGraphqlDocumentConnectionPageInfo","GraphqlDocumentGroupToGraphqlDocumentConnectionPageInfo","RootQueryToGraphqlDocumentConnectionPageInfo"],"GraphqlDocumentGroupConnection":["GraphqlDocumentToGraphqlDocumentGroupConnection","RootQueryToGraphqlDocumentGroupConnection"],"GraphqlDocumentGroupConnectionEdge":["GraphqlDocumentToGraphqlDocumentGroupConnectionEdge","RootQueryToGraphqlDocumentGroupConnectionEdge"],"GraphqlDocumentGroupConnectionPageInfo":["GraphqlDocumentToGraphqlDocumentGroupConnectionPageInfo","RootQueryToGraphqlDocumentGroupConnectionPageInfo"],"MenuItemConnection":["MenuToMenuItemConnection","MenuItemToMenuItemConnection","RootQueryToMenuItemConnection"],"MenuItemConnectionEdge":["MenuItemToMenuItemConnectionEdge","MenuToMenuItemConnectionEdge","RootQueryToMenuItemConnectionEdge"],"MenuItemConnectionPageInfo":["MenuItemToMenuItemConnectionPageInfo","MenuToMenuItemConnectionPageInfo","RootQueryToMenuItemConnectionPageInfo"],"MenuItemLinkableConnectionEdge":["MenuItemToMenuItemLinkableConnectionEdge"],"MenuItemObjectUnion":["Post","Page","Category","Tag"],"MenuConnectionEdge":["MenuItemToMenuConnectionEdge","RootQueryToMenuConnectionEdge"],"MenuConnection":["RootQueryToMenuConnection"],"MenuConnectionPageInfo":["RootQueryToMenuConnectionPageInfo"],"PluginConnection":["RootQueryToPluginConnection"],"PluginConnectionEdge":["RootQueryToPluginConnectionEdge"],"PluginConnectionPageInfo":["RootQueryToPluginConnectionPageInfo"],"ThemeConnection":["RootQueryToThemeConnection"],"ThemeConnectionEdge":["RootQueryToThemeConnectionEdge"],"ThemeConnectionPageInfo":["RootQueryToThemeConnectionPageInfo"],"UserConnection":["RootQueryToUserConnection"],"UserConnectionPageInfo":["RootQueryToUserConnectionPageInfo"]} \ No newline at end of file diff --git a/screenshots/category-page.png b/screenshots/category-page.png new file mode 100644 index 0000000..95a3675 Binary files /dev/null and b/screenshots/category-page.png differ diff --git a/screenshots/front-page.png b/screenshots/front-page.png new file mode 100644 index 0000000..0abb837 Binary files /dev/null and b/screenshots/front-page.png differ diff --git a/screenshots/single-page.png b/screenshots/single-page.png new file mode 100644 index 0000000..ac10954 Binary files /dev/null and b/screenshots/single-page.png differ diff --git a/screenshots/single-post.png b/screenshots/single-post.png new file mode 100644 index 0000000..4064352 Binary files /dev/null and b/screenshots/single-post.png differ diff --git a/src/__generated__/gql.ts b/src/__generated__/gql.ts index 3cd0a6f..f7c608f 100644 --- a/src/__generated__/gql.ts +++ b/src/__generated__/gql.ts @@ -11,15 +11,29 @@ import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/ * 3. It does not support dead code elimination, so it will add unused operations. * * Therefore it is highly recommended to use the babel or swc plugin for production. + * Learn more about it here: https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#reducing-bundle-size */ -const documents = { +type Documents = { + "\n fragment HeaderGeneralSettingsFragment on GeneralSettings {\n title\n description\n }\n ": typeof types.HeaderGeneralSettingsFragmentFragmentDoc, + "\n fragment PrimaryMenuItemFragment on MenuItem {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n ": typeof types.PrimaryMenuItemFragmentFragmentDoc, + "\n fragment PostListFragment on Post {\n id\n title\n uri\n excerpt\n date\n featuredImage {\n node {\n sourceUrl\n altText\n }\n }\n author {\n node {\n name\n avatar {\n url\n }\n }\n }\n }\n": typeof types.PostListFragmentFragmentDoc, + "\n query GetExamplePage {\n generalSettings {\n title\n description\n }\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n": typeof types.GetExamplePageDocument, + "\n query GetHeaderMenu {\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n": typeof types.GetHeaderMenuDocument, + "\n query GetSiteData {\n generalSettings {\n title\n description\n }\n }\n": typeof types.GetSiteDataDocument, + "\n \n query GetArchive($uri: String!, $first: Int!, $after: String) {\n nodeByUri(uri: $uri) {\n archiveType: __typename\n ... on Category {\n name\n posts(first: $first, after: $after) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...PostListFragment\n }\n }\n }\n ... on Tag {\n name\n posts(first: $first, after: $after) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...PostListFragment\n }\n }\n }\n }\n }\n": typeof types.GetArchiveDocument, + "\n query GetPage($databaseId: ID!, $asPreview: Boolean = false) {\n page(id: $databaseId, idType: DATABASE_ID, asPreview: $asPreview) {\n title\n content\n }\n }\n": typeof types.GetPageDocument, + "\n query GetPost($databaseId: ID!, $asPreview: Boolean = false) {\n post(id: $databaseId, idType: DATABASE_ID, asPreview: $asPreview) {\n title\n content\n date\n author {\n node {\n name\n }\n }\n }\n }\n": typeof types.GetPostDocument, +}; +const documents: Documents = { "\n fragment HeaderGeneralSettingsFragment on GeneralSettings {\n title\n description\n }\n ": types.HeaderGeneralSettingsFragmentFragmentDoc, "\n fragment PrimaryMenuItemFragment on MenuItem {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n ": types.PrimaryMenuItemFragmentFragmentDoc, + "\n fragment PostListFragment on Post {\n id\n title\n uri\n excerpt\n date\n featuredImage {\n node {\n sourceUrl\n altText\n }\n }\n author {\n node {\n name\n avatar {\n url\n }\n }\n }\n }\n": types.PostListFragmentFragmentDoc, "\n query GetExamplePage {\n generalSettings {\n title\n description\n }\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n": types.GetExamplePageDocument, - "\n query GetArchive($uri: String!) {\n nodeByUri(uri: $uri) {\n archiveType: __typename\n ... on Category {\n name\n posts {\n nodes {\n id\n title\n uri\n }\n }\n }\n ... on Tag {\n name\n posts {\n nodes {\n id\n title\n uri\n }\n }\n }\n }\n generalSettings {\n title\n description\n }\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n": types.GetArchiveDocument, - "\n query GetHomePage {\n generalSettings {\n title\n description\n }\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n": types.GetHomePageDocument, - "\n query GetPage($databaseId: ID!, $asPreview: Boolean = false) {\n page(id: $databaseId, idType: DATABASE_ID, asPreview: $asPreview) {\n title\n content\n }\n generalSettings {\n title\n description\n }\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n": types.GetPageDocument, - "\n query GetPost($databaseId: ID!, $asPreview: Boolean = false) {\n post(id: $databaseId, idType: DATABASE_ID, asPreview: $asPreview) {\n title\n content\n date\n author {\n node {\n name\n }\n }\n }\n generalSettings {\n title\n description\n }\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n": types.GetPostDocument, + "\n query GetHeaderMenu {\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n": types.GetHeaderMenuDocument, + "\n query GetSiteData {\n generalSettings {\n title\n description\n }\n }\n": types.GetSiteDataDocument, + "\n \n query GetArchive($uri: String!, $first: Int!, $after: String) {\n nodeByUri(uri: $uri) {\n archiveType: __typename\n ... on Category {\n name\n posts(first: $first, after: $after) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...PostListFragment\n }\n }\n }\n ... on Tag {\n name\n posts(first: $first, after: $after) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...PostListFragment\n }\n }\n }\n }\n }\n": types.GetArchiveDocument, + "\n query GetPage($databaseId: ID!, $asPreview: Boolean = false) {\n page(id: $databaseId, idType: DATABASE_ID, asPreview: $asPreview) {\n title\n content\n }\n }\n": types.GetPageDocument, + "\n query GetPost($databaseId: ID!, $asPreview: Boolean = false) {\n post(id: $databaseId, idType: DATABASE_ID, asPreview: $asPreview) {\n title\n content\n date\n author {\n node {\n name\n }\n }\n }\n }\n": types.GetPostDocument, }; /** @@ -44,6 +58,10 @@ export function gql(source: "\n fragment HeaderGeneralSettingsFragment on Gen * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ export function gql(source: "\n fragment PrimaryMenuItemFragment on MenuItem {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n "): (typeof documents)["\n fragment PrimaryMenuItemFragment on MenuItem {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n "]; +/** + * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function gql(source: "\n fragment PostListFragment on Post {\n id\n title\n uri\n excerpt\n date\n featuredImage {\n node {\n sourceUrl\n altText\n }\n }\n author {\n node {\n name\n avatar {\n url\n }\n }\n }\n }\n"): (typeof documents)["\n fragment PostListFragment on Post {\n id\n title\n uri\n excerpt\n date\n featuredImage {\n node {\n sourceUrl\n altText\n }\n }\n author {\n node {\n name\n avatar {\n url\n }\n }\n }\n }\n"]; /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -51,19 +69,23 @@ export function gql(source: "\n query GetExamplePage {\n generalSettings {\n /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function gql(source: "\n query GetArchive($uri: String!) {\n nodeByUri(uri: $uri) {\n archiveType: __typename\n ... on Category {\n name\n posts {\n nodes {\n id\n title\n uri\n }\n }\n }\n ... on Tag {\n name\n posts {\n nodes {\n id\n title\n uri\n }\n }\n }\n }\n generalSettings {\n title\n description\n }\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n"): (typeof documents)["\n query GetArchive($uri: String!) {\n nodeByUri(uri: $uri) {\n archiveType: __typename\n ... on Category {\n name\n posts {\n nodes {\n id\n title\n uri\n }\n }\n }\n ... on Tag {\n name\n posts {\n nodes {\n id\n title\n uri\n }\n }\n }\n }\n generalSettings {\n title\n description\n }\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n"]; +export function gql(source: "\n query GetHeaderMenu {\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n"): (typeof documents)["\n query GetHeaderMenu {\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n"]; +/** + * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function gql(source: "\n query GetSiteData {\n generalSettings {\n title\n description\n }\n }\n"): (typeof documents)["\n query GetSiteData {\n generalSettings {\n title\n description\n }\n }\n"]; /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function gql(source: "\n query GetHomePage {\n generalSettings {\n title\n description\n }\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n"): (typeof documents)["\n query GetHomePage {\n generalSettings {\n title\n description\n }\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n"]; +export function gql(source: "\n \n query GetArchive($uri: String!, $first: Int!, $after: String) {\n nodeByUri(uri: $uri) {\n archiveType: __typename\n ... on Category {\n name\n posts(first: $first, after: $after) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...PostListFragment\n }\n }\n }\n ... on Tag {\n name\n posts(first: $first, after: $after) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...PostListFragment\n }\n }\n }\n }\n }\n"): (typeof documents)["\n \n query GetArchive($uri: String!, $first: Int!, $after: String) {\n nodeByUri(uri: $uri) {\n archiveType: __typename\n ... on Category {\n name\n posts(first: $first, after: $after) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...PostListFragment\n }\n }\n }\n ... on Tag {\n name\n posts(first: $first, after: $after) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...PostListFragment\n }\n }\n }\n }\n }\n"]; /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function gql(source: "\n query GetPage($databaseId: ID!, $asPreview: Boolean = false) {\n page(id: $databaseId, idType: DATABASE_ID, asPreview: $asPreview) {\n title\n content\n }\n generalSettings {\n title\n description\n }\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n"): (typeof documents)["\n query GetPage($databaseId: ID!, $asPreview: Boolean = false) {\n page(id: $databaseId, idType: DATABASE_ID, asPreview: $asPreview) {\n title\n content\n }\n generalSettings {\n title\n description\n }\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n"]; +export function gql(source: "\n query GetPage($databaseId: ID!, $asPreview: Boolean = false) {\n page(id: $databaseId, idType: DATABASE_ID, asPreview: $asPreview) {\n title\n content\n }\n }\n"): (typeof documents)["\n query GetPage($databaseId: ID!, $asPreview: Boolean = false) {\n page(id: $databaseId, idType: DATABASE_ID, asPreview: $asPreview) {\n title\n content\n }\n }\n"]; /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function gql(source: "\n query GetPost($databaseId: ID!, $asPreview: Boolean = false) {\n post(id: $databaseId, idType: DATABASE_ID, asPreview: $asPreview) {\n title\n content\n date\n author {\n node {\n name\n }\n }\n }\n generalSettings {\n title\n description\n }\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n"): (typeof documents)["\n query GetPost($databaseId: ID!, $asPreview: Boolean = false) {\n post(id: $databaseId, idType: DATABASE_ID, asPreview: $asPreview) {\n title\n content\n date\n author {\n node {\n name\n }\n }\n }\n generalSettings {\n title\n description\n }\n primaryMenuItems: menuItems(where: { location: PRIMARY }) {\n nodes {\n id\n uri\n path\n label\n parentId\n cssClasses\n menu {\n node {\n name\n }\n }\n }\n }\n }\n"]; +export function gql(source: "\n query GetPost($databaseId: ID!, $asPreview: Boolean = false) {\n post(id: $databaseId, idType: DATABASE_ID, asPreview: $asPreview) {\n title\n content\n date\n author {\n node {\n name\n }\n }\n }\n }\n"): (typeof documents)["\n query GetPost($databaseId: ID!, $asPreview: Boolean = false) {\n post(id: $databaseId, idType: DATABASE_ID, asPreview: $asPreview) {\n title\n content\n date\n author {\n node {\n name\n }\n }\n }\n }\n"]; export function gql(source: string) { return (documents as any)[source] ?? {}; diff --git a/src/__generated__/graphql.ts b/src/__generated__/graphql.ts index 5e9165c..7baecbf 100644 --- a/src/__generated__/graphql.ts +++ b/src/__generated__/graphql.ts @@ -14,21 +14,12 @@ export type Scalars = { Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } Float: { input: number; output: number; } - /** Generic Object Scalar Type */ - BlockAttributesObject: { input: any; output: any; } -}; - -/** The atlasContentModelerSettings setting type */ -export type AtlasContentModelerSettingsSettings = { - __typename?: 'AtlasContentModelerSettingsSettings'; - /** Opt into anonymous usage tracking to help us make Atlas Content Modeler better. */ - atlasContentModelerUsageTracking?: Maybe; }; /** Avatars are profile images for users. WordPress by default uses the Gravatar service to host and fetch avatars from. */ export type Avatar = { __typename?: 'Avatar'; - /** URL for the default image or a default type. Accepts '404' (return a 404 instead of a default image), 'retro' (8bit), 'monsterid' (monster), 'wavatar' (cartoon face), 'indenticon' (the 'quilt'), 'mystery', 'mm', or 'mysteryman' (The Oyster Man), 'blank' (transparent GIF), or 'gravatar_default' (the Gravatar logo). */ + /** TEST: URL for the default image or a default type. Accepts '404' (return a 404 instead of a default image), 'retro' (8bit), 'monsterid' (monster), 'wavatar' (cartoon face), 'indenticon' (the 'quilt'), 'mystery', 'mm', or 'mysteryman' (The Oyster Man), 'blank' (transparent GIF), or 'gravatar_default' (the Gravatar logo). */ default?: Maybe; /** HTML attributes to insert in the IMG element. Is not sanitized. */ extraAttr?: Maybe; @@ -52,7 +43,7 @@ export type Avatar = { width?: Maybe; }; -/** What rating to display avatars up to. Accepts 'G', 'PG', 'R', 'X', and are judged in that order. Default is the value of the 'avatar_rating' option */ +/** Content rating filter for user avatars. Determines the maximum maturity level of avatars to display, following standard content rating classifications (G, PG, R, X). */ export enum AvatarRatingEnum { /** Indicates a G level avatar rating level. */ G = 'G', @@ -64,13 +55,7 @@ export enum AvatarRatingEnum { X = 'X' } -/** Block that supports Anchor field */ -export type BlockWithSupportsAnchor = { - /** The anchor field for the block. */ - anchor?: Maybe; -}; - -/** The category type */ +/** A taxonomy term that classifies content. Categories support hierarchy and can be used to create a nested structure. */ export type Category = DatabaseIdentifier & HierarchicalNode & HierarchicalTermNode & MenuItemLinkable & Node & TermNode & UniformResourceIdentifiable & { __typename?: 'Category'; /** The ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ @@ -138,7 +123,7 @@ export type Category = DatabaseIdentifier & HierarchicalNode & HierarchicalTermN }; -/** The category type */ +/** A taxonomy term that classifies content. Categories support hierarchy and can be used to create a nested structure. */ export type CategoryAncestorsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -147,7 +132,7 @@ export type CategoryAncestorsArgs = { }; -/** The category type */ +/** A taxonomy term that classifies content. Categories support hierarchy and can be used to create a nested structure. */ export type CategoryChildrenArgs = { after?: InputMaybe; before?: InputMaybe; @@ -157,7 +142,7 @@ export type CategoryChildrenArgs = { }; -/** The category type */ +/** A taxonomy term that classifies content. Categories support hierarchy and can be used to create a nested structure. */ export type CategoryContentNodesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -167,7 +152,7 @@ export type CategoryContentNodesArgs = { }; -/** The category type */ +/** A taxonomy term that classifies content. Categories support hierarchy and can be used to create a nested structure. */ export type CategoryEnqueuedScriptsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -176,7 +161,7 @@ export type CategoryEnqueuedScriptsArgs = { }; -/** The category type */ +/** A taxonomy term that classifies content. Categories support hierarchy and can be used to create a nested structure. */ export type CategoryEnqueuedStylesheetsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -185,7 +170,7 @@ export type CategoryEnqueuedStylesheetsArgs = { }; -/** The category type */ +/** A taxonomy term that classifies content. Categories support hierarchy and can be used to create a nested structure. */ export type CategoryPostsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -194,7 +179,7 @@ export type CategoryPostsArgs = { where?: InputMaybe; }; -/** Connection to category Nodes */ +/** A paginated collection of category Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of category Nodes */ export type CategoryConnection = { /** A list of edges (relational context) between RootQuery and connected category Nodes */ edges: Array; @@ -204,7 +189,7 @@ export type CategoryConnection = { pageInfo: CategoryConnectionPageInfo; }; -/** Edge between a Node and a connected category */ +/** Represents a connection to a category. Contains both the category Node and metadata about the relationship. */ export type CategoryConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -212,7 +197,7 @@ export type CategoryConnectionEdge = { node: Category; }; -/** Page Info on the connected CategoryConnectionEdge */ +/** Pagination metadata specific to "CategoryConnectionEdge" collections. Provides cursors and flags for navigating through sets of "CategoryConnectionEdge" Nodes. */ export type CategoryConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -224,7 +209,7 @@ export type CategoryConnectionPageInfo = { startCursor?: Maybe; }; -/** The Type of Identifier used to fetch a single resource. Default is ID. */ +/** Identifier types for retrieving a specific Category. Determines which unique property (global ID, database ID, slug, etc.) is used to locate the Category. */ export enum CategoryIdType { /** The Database ID for the node */ DatabaseId = 'DATABASE_ID', @@ -258,7 +243,7 @@ export type CategoryToAncestorsCategoryConnectionEdge = CategoryConnectionEdge & node: Category; }; -/** Page Info on the "CategoryToAncestorsCategoryConnection" */ +/** Pagination metadata specific to "CategoryToAncestorsCategoryConnection" collections. Provides cursors and flags for navigating through sets of CategoryToAncestorsCategoryConnection Nodes. */ export type CategoryToAncestorsCategoryConnectionPageInfo = CategoryConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'CategoryToAncestorsCategoryConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -291,7 +276,7 @@ export type CategoryToCategoryConnectionEdge = CategoryConnectionEdge & Edge & { node: Category; }; -/** Page Info on the "CategoryToCategoryConnection" */ +/** Pagination metadata specific to "CategoryToCategoryConnection" collections. Provides cursors and flags for navigating through sets of CategoryToCategoryConnection Nodes. */ export type CategoryToCategoryConnectionPageInfo = CategoryConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'CategoryToCategoryConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -343,8 +328,6 @@ export type CategoryToCategoryConnectionWhereArgs = { /** Array of slugs to return term(s) for. Default empty. */ slug?: InputMaybe>>; /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; - /** Array of term taxonomy IDs, to match when querying terms. */ termTaxonomyId?: InputMaybe>>; /** Whether to prime meta caches for matched terms. Default true. */ updateTermMetaCache?: InputMaybe; @@ -370,7 +353,7 @@ export type CategoryToContentNodeConnectionEdge = ContentNodeConnectionEdge & Ed node: ContentNode; }; -/** Page Info on the "CategoryToContentNodeConnection" */ +/** Pagination metadata specific to "CategoryToContentNodeConnection" collections. Provides cursors and flags for navigating through sets of CategoryToContentNodeConnection Nodes. */ export type CategoryToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'CategoryToContentNodeConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -452,7 +435,7 @@ export type CategoryToPostConnectionEdge = Edge & PostConnectionEdge & { node: Post; }; -/** Page Info on the "CategoryToPostConnection" */ +/** Pagination metadata specific to "CategoryToPostConnection" collections. Provides cursors and flags for navigating through sets of CategoryToPostConnection Nodes. */ export type CategoryToPostConnectionPageInfo = PageInfo & PostConnectionPageInfo & WpPageInfo & { __typename?: 'CategoryToPostConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -540,7 +523,7 @@ export type CategoryToTaxonomyConnectionEdge = Edge & OneToOneConnection & Taxon node: Taxonomy; }; -/** A Comment object */ +/** A response or reaction to content submitted by users. Comments are typically associated with a specific content entry. */ export type Comment = DatabaseIdentifier & Node & UniformResourceIdentifiable & { __typename?: 'Comment'; /** User agent used to post the comment. This field is equivalent to WP_Comment->comment_agent and the value matching the "comment_agent" column in SQL. */ @@ -552,7 +535,10 @@ export type Comment = DatabaseIdentifier & Node & UniformResourceIdentifiable & approved?: Maybe; /** The author of the comment */ author?: Maybe; - /** IP address for the author. This field is equivalent to WP_Comment->comment_author_IP and the value matching the "comment_author_IP" column in SQL. */ + /** + * IP address for the author at the time of commenting. This field is equivalent to WP_Comment->comment_author_IP and the value matching the "comment_author_IP" column in SQL. + * @deprecated Use the ipAddress field on the edge between the comment and author + */ authorIp?: Maybe; /** * ID for the comment, unique among comments. @@ -607,19 +593,19 @@ export type Comment = DatabaseIdentifier & Node & UniformResourceIdentifiable & }; -/** A Comment object */ +/** A response or reaction to content submitted by users. Comments are typically associated with a specific content entry. */ export type CommentContentArgs = { format?: InputMaybe; }; -/** A Comment object */ +/** A response or reaction to content submitted by users. Comments are typically associated with a specific content entry. */ export type CommentParentArgs = { where?: InputMaybe; }; -/** A Comment object */ +/** A response or reaction to content submitted by users. Comments are typically associated with a specific content entry. */ export type CommentRepliesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -655,7 +641,7 @@ export type CommentAuthorAvatarArgs = { size?: InputMaybe; }; -/** Connection to Comment Nodes */ +/** A paginated collection of Comment Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of Comment Nodes */ export type CommentConnection = { /** A list of edges (relational context) between RootQuery and connected Comment Nodes */ edges: Array; @@ -665,7 +651,7 @@ export type CommentConnection = { pageInfo: CommentConnectionPageInfo; }; -/** Edge between a Node and a connected Comment */ +/** Represents a connection to a Comment. Contains both the Comment Node and metadata about the relationship. */ export type CommentConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -673,7 +659,7 @@ export type CommentConnectionEdge = { node: Comment; }; -/** Page Info on the connected CommentConnectionEdge */ +/** Pagination metadata specific to "CommentConnectionEdge" collections. Provides cursors and flags for navigating through sets of "CommentConnectionEdge" Nodes. */ export type CommentConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -685,7 +671,7 @@ export type CommentConnectionPageInfo = { startCursor?: Maybe; }; -/** The Type of Identifier used to fetch a single comment node. Default is "ID". To be used along with the "id" field. */ +/** Identifier types for retrieving a specific comment. Specifies which unique attribute is used to find a particular comment. */ export enum CommentNodeIdTypeEnum { /** Identify a resource by the Database ID. */ DatabaseId = 'DATABASE_ID', @@ -693,7 +679,7 @@ export enum CommentNodeIdTypeEnum { Id = 'ID' } -/** The status of the comment object. */ +/** Moderation state for user comments. Determines whether comments are publicly visible, pending approval, or marked as spam. */ export enum CommentStatusEnum { /** Comments with the Approved status */ Approve = 'APPROVE', @@ -725,7 +711,7 @@ export type CommentToCommentConnectionEdge = CommentConnectionEdge & Edge & { node: Comment; }; -/** Page Info on the "CommentToCommentConnection" */ +/** Pagination metadata specific to "CommentToCommentConnection" collections. Provides cursors and flags for navigating through sets of CommentToCommentConnection Nodes. */ export type CommentToCommentConnectionPageInfo = CommentConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'CommentToCommentConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -794,8 +780,8 @@ export type CommentToCommentConnectionWhereArgs = { parentNotIn?: InputMaybe>>; /** Search term(s) to retrieve matching comments for. */ search?: InputMaybe; - /** Comment status to limit results by. */ - status?: InputMaybe; + /** One or more Comment Statuses to limit results by */ + statusIn?: InputMaybe>>; /** Include comments for a specific user ID. */ userId?: InputMaybe; }; @@ -805,8 +791,16 @@ export type CommentToCommenterConnectionEdge = CommenterConnectionEdge & Edge & __typename?: 'CommentToCommenterConnectionEdge'; /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; + /** The email address representing the author for this particular comment */ + email?: Maybe; + /** IP address of the author at the time of making this comment. This field is equivalent to WP_Comment->comment_author_IP and the value matching the "comment_author_IP" column in SQL. */ + ipAddress?: Maybe; + /** The display name of the comment author for this particular comment */ + name?: Maybe; /** The node of the connection, without the edges */ node: Commenter; + /** The url entered for the comment author on this particular comment */ + url?: Maybe; }; /** Connection between the Comment type and the ContentNode type */ @@ -883,13 +877,13 @@ export type CommentToParentCommentConnectionWhereArgs = { parentNotIn?: InputMaybe>>; /** Search term(s) to retrieve matching comments for. */ search?: InputMaybe; - /** Comment status to limit results by. */ - status?: InputMaybe; + /** One or more Comment Statuses to limit results by */ + statusIn?: InputMaybe>>; /** Include comments for a specific user ID. */ userId?: InputMaybe; }; -/** The author of a comment */ +/** A user or guest who has submitted a comment. Provides identification and contact information for the comment author. */ export type Commenter = { /** Avatar object for user. The avatar object can be retrieved in different sizes by specifying the size argument. */ avatar?: Maybe; @@ -907,7 +901,7 @@ export type Commenter = { url?: Maybe; }; -/** Edge between a Node and a connected Commenter */ +/** Represents a connection to a Commenter. Contains both the Commenter Node and metadata about the relationship. */ export type CommenterConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -915,7 +909,7 @@ export type CommenterConnectionEdge = { node: Commenter; }; -/** Options for ordering the connection */ +/** Sorting attributes for comment collections. Specifies which comment property determines the order of results. */ export enum CommentsConnectionOrderbyEnum { /** Order by browser user agent of the commenter. */ CommentAgent = 'COMMENT_AGENT', @@ -931,23 +925,23 @@ export enum CommentsConnectionOrderbyEnum { CommentAuthorUrl = 'COMMENT_AUTHOR_URL', /** Order by the comment contents. */ CommentContent = 'COMMENT_CONTENT', - /** Order by date/time timestamp of the comment. */ + /** Chronological ordering by comment submission date. */ CommentDate = 'COMMENT_DATE', - /** Order by GMT timezone date/time timestamp of the comment. */ + /** Chronological ordering by comment date in UTC/GMT time. */ CommentDateGmt = 'COMMENT_DATE_GMT', - /** Order by the globally unique identifier for the comment object */ + /** Ordering by internal ID (typically reflects creation order). */ CommentId = 'COMMENT_ID', - /** Order by the array list of comment IDs listed in the where clause. */ + /** Preserve custom order of IDs as specified in the query. */ CommentIn = 'COMMENT_IN', /** Order by the comment karma score. */ CommentKarma = 'COMMENT_KARMA', - /** Order by the comment parent ID. */ + /** Ordering by parent comment relationship (threaded discussions). */ CommentParent = 'COMMENT_PARENT', - /** Order by the post object ID. */ + /** Ordering by associated content item ID. */ CommentPostId = 'COMMENT_POST_ID', - /** Order by the the type of comment, such as 'comment', 'pingback', or 'trackback'. */ + /** Ordering by comment classification (standard comments, pingbacks, etc.). */ CommentType = 'COMMENT_TYPE', - /** Order by the user ID. */ + /** Ordering by the user account ID associated with the comment as the comment author. */ UserId = 'USER_ID' } @@ -1066,7 +1060,7 @@ export type ConditionalTags = { isYear?: Maybe; }; -/** A plural connection from one Node Type in the Graph to another Node Type, with support for relational data via "edges". */ +/** A paginated relationship between objects. Supports cursor-based pagination with edges containing relationship metadata and nodes containing the related objects. */ export type Connection = { /** A list of edges (relational context) between connected nodes */ edges: Array; @@ -1076,7 +1070,7 @@ export type Connection = { pageInfo: PageInfo; }; -/** Nodes used to manage content */ +/** Base interface for content objects like posts, pages, and media items. Provides common fields available across these content types. */ export type ContentNode = { /** @deprecated Deprecated in favor of using Next.js pages */ conditionalTags?: Maybe; @@ -1142,7 +1136,7 @@ export type ContentNode = { }; -/** Nodes used to manage content */ +/** Base interface for content objects like posts, pages, and media items. Provides common fields available across these content types. */ export type ContentNodeEnqueuedScriptsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -1151,7 +1145,7 @@ export type ContentNodeEnqueuedScriptsArgs = { }; -/** Nodes used to manage content */ +/** Base interface for content objects like posts, pages, and media items. Provides common fields available across these content types. */ export type ContentNodeEnqueuedStylesheetsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -1159,7 +1153,7 @@ export type ContentNodeEnqueuedStylesheetsArgs = { last?: InputMaybe; }; -/** Connection to ContentNode Nodes */ +/** A paginated collection of ContentNode Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of ContentNode Nodes */ export type ContentNodeConnection = { /** A list of edges (relational context) between ContentType and connected ContentNode Nodes */ edges: Array; @@ -1169,7 +1163,7 @@ export type ContentNodeConnection = { pageInfo: ContentNodeConnectionPageInfo; }; -/** Edge between a Node and a connected ContentNode */ +/** Represents a connection to a ContentNode. Contains both the ContentNode Node and metadata about the relationship. */ export type ContentNodeConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -1177,7 +1171,7 @@ export type ContentNodeConnectionEdge = { node: ContentNode; }; -/** Page Info on the connected ContentNodeConnectionEdge */ +/** Pagination metadata specific to "ContentNodeConnectionEdge" collections. Provides cursors and flags for navigating through sets of "ContentNodeConnectionEdge" Nodes. */ export type ContentNodeConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -1189,7 +1183,7 @@ export type ContentNodeConnectionPageInfo = { startCursor?: Maybe; }; -/** The Type of Identifier used to fetch a single resource. Default is ID. */ +/** Identifier types for retrieving specific content. Determines which property (global ID, database ID, URI) is used to locate content objects. */ export enum ContentNodeIdTypeEnum { /** Identify a resource by the Database ID. */ DatabaseId = 'DATABASE_ID', @@ -1248,7 +1242,7 @@ export type ContentNodeToEnqueuedScriptConnectionEdge = Edge & EnqueuedScriptCon node: EnqueuedScript; }; -/** Page Info on the "ContentNodeToEnqueuedScriptConnection" */ +/** Pagination metadata specific to "ContentNodeToEnqueuedScriptConnection" collections. Provides cursors and flags for navigating through sets of ContentNodeToEnqueuedScriptConnection Nodes. */ export type ContentNodeToEnqueuedScriptConnectionPageInfo = EnqueuedScriptConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'ContentNodeToEnqueuedScriptConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -1281,7 +1275,7 @@ export type ContentNodeToEnqueuedStylesheetConnectionEdge = Edge & EnqueuedStyle node: EnqueuedStylesheet; }; -/** Page Info on the "ContentNodeToEnqueuedStylesheetConnection" */ +/** Pagination metadata specific to "ContentNodeToEnqueuedStylesheetConnection" collections. Provides cursors and flags for navigating through sets of ContentNodeToEnqueuedStylesheetConnection Nodes. */ export type ContentNodeToEnqueuedStylesheetConnectionPageInfo = EnqueuedStylesheetConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'ContentNodeToEnqueuedStylesheetConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -1294,7 +1288,7 @@ export type ContentNodeToEnqueuedStylesheetConnectionPageInfo = EnqueuedStyleshe startCursor?: Maybe; }; -/** The template assigned to a node of content */ +/** A layout pattern that can help inform how content might be structured and displayed. Templates can define specialized layouts for different types of content. */ export type ContentTemplate = { /** The name of the template */ templateName?: Maybe; @@ -1393,7 +1387,7 @@ export type ContentTypeContentNodesArgs = { where?: InputMaybe; }; -/** Connection to ContentType Nodes */ +/** A paginated collection of ContentType Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of ContentType Nodes */ export type ContentTypeConnection = { /** A list of edges (relational context) between RootQuery and connected ContentType Nodes */ edges: Array; @@ -1403,7 +1397,7 @@ export type ContentTypeConnection = { pageInfo: ContentTypeConnectionPageInfo; }; -/** Edge between a Node and a connected ContentType */ +/** Represents a connection to a ContentType. Contains both the ContentType Node and metadata about the relationship. */ export type ContentTypeConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -1411,7 +1405,7 @@ export type ContentTypeConnectionEdge = { node: ContentType; }; -/** Page Info on the connected ContentTypeConnectionEdge */ +/** Pagination metadata specific to "ContentTypeConnectionEdge" collections. Provides cursors and flags for navigating through sets of "ContentTypeConnectionEdge" Nodes. */ export type ContentTypeConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -1423,21 +1417,19 @@ export type ContentTypeConnectionPageInfo = { startCursor?: Maybe; }; -/** Allowed Content Types */ +/** Available content entity types that can be queried or filtered. Identifies the primary content structures available in the system. */ export enum ContentTypeEnum { /** The Type of Content object */ Attachment = 'ATTACHMENT', /** The Type of Content object */ - Page = 'PAGE', - /** The Type of Content object */ - Post = 'POST', + GraphqlDocument = 'GRAPHQL_DOCUMENT', /** The Type of Content object */ - Project = 'PROJECT', + Page = 'PAGE', /** The Type of Content object */ - Testimonial = 'TESTIMONIAL' + Post = 'POST' } -/** The Type of Identifier used to fetch a single Content Type node. To be used along with the "id" field. Default is "ID". */ +/** Identifier types for retrieving a specific content type definition. Determines whether to look up content types by ID or name. */ export enum ContentTypeIdTypeEnum { /** The globally unique ID */ Id = 'ID', @@ -1465,7 +1457,7 @@ export type ContentTypeToContentNodeConnectionEdge = ContentNodeConnectionEdge & node: ContentNode; }; -/** Page Info on the "ContentTypeToContentNodeConnection" */ +/** Pagination metadata specific to "ContentTypeToContentNodeConnection" collections. Provides cursors and flags for navigating through sets of ContentTypeToContentNodeConnection Nodes. */ export type ContentTypeToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'ContentTypeToContentNodeConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -1538,7 +1530,7 @@ export type ContentTypeToTaxonomyConnectionEdge = Edge & TaxonomyConnectionEdge node: Taxonomy; }; -/** Page Info on the "ContentTypeToTaxonomyConnection" */ +/** Pagination metadata specific to "ContentTypeToTaxonomyConnection" collections. Provides cursors and flags for navigating through sets of ContentTypeToTaxonomyConnection Nodes. */ export type ContentTypeToTaxonomyConnectionPageInfo = PageInfo & TaxonomyConnectionPageInfo & WpPageInfo & { __typename?: 'ContentTypeToTaxonomyConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -1557,6 +1549,12 @@ export enum ContentTypesOfCategoryEnum { Post = 'POST' } +/** Allowed Content Types of the GraphqlDocumentGroup taxonomy. */ +export enum ContentTypesOfGraphqlDocumentGroupEnum { + /** The Type of Content object */ + GraphqlDocument = 'GRAPHQL_DOCUMENT' +} + /** Allowed Content Types of the PostFormat taxonomy. */ export enum ContentTypesOfPostFormatEnum { /** The Type of Content object */ @@ -1569,4792 +1567,6 @@ export enum ContentTypesOfTagEnum { Post = 'POST' } -/** A block used for editing the site */ -export type CoreArchives = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreArchives'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreArchives Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreArchives Block Type */ -export type CoreArchivesAttributes = { - __typename?: 'CoreArchivesAttributes'; - /** The "align" field on the "CoreArchives" block */ - align?: Maybe; - /** The "className" field on the "CoreArchives" block */ - className?: Maybe; - /** The "displayAsDropdown" field on the "CoreArchives" block */ - displayAsDropdown?: Maybe; - /** The "fontFamily" field on the "CoreArchives" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreArchives" block */ - fontSize?: Maybe; - /** The "lock" field on the "CoreArchives" block */ - lock?: Maybe; - /** The "showLabel" field on the "CoreArchives" block */ - showLabel?: Maybe; - /** The "showPostCounts" field on the "CoreArchives" block */ - showPostCounts?: Maybe; - /** The "style" field on the "CoreArchives" block */ - style?: Maybe; - /** The "type" field on the "CoreArchives" block */ - type?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreAudio = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreAudio'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreAudio Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreAudio Block Type */ -export type CoreAudioAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreAudioAttributes'; - /** The "align" field on the "CoreAudio" block */ - align?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "autoplay" field on the "CoreAudio" block */ - autoplay?: Maybe; - /** The "caption" field on the "CoreAudio" block */ - caption?: Maybe; - /** The "className" field on the "CoreAudio" block */ - className?: Maybe; - /** The "id" field on the "CoreAudio" block */ - id?: Maybe; - /** The "lock" field on the "CoreAudio" block */ - lock?: Maybe; - /** The "loop" field on the "CoreAudio" block */ - loop?: Maybe; - /** The "preload" field on the "CoreAudio" block */ - preload?: Maybe; - /** The "src" field on the "CoreAudio" block */ - src?: Maybe; - /** The "style" field on the "CoreAudio" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreAvatar = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreAvatar'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreAvatar Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreAvatar Block Type */ -export type CoreAvatarAttributes = { - __typename?: 'CoreAvatarAttributes'; - /** The "align" field on the "CoreAvatar" block */ - align?: Maybe; - /** The "borderColor" field on the "CoreAvatar" block */ - borderColor?: Maybe; - /** The "className" field on the "CoreAvatar" block */ - className?: Maybe; - /** The "isLink" field on the "CoreAvatar" block */ - isLink?: Maybe; - /** The "linkTarget" field on the "CoreAvatar" block */ - linkTarget?: Maybe; - /** The "lock" field on the "CoreAvatar" block */ - lock?: Maybe; - /** The "size" field on the "CoreAvatar" block */ - size?: Maybe; - /** The "style" field on the "CoreAvatar" block */ - style?: Maybe; - /** The "userId" field on the "CoreAvatar" block */ - userId?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreBlock = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreBlock'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreBlock Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreBlock Block Type */ -export type CoreBlockAttributes = { - __typename?: 'CoreBlockAttributes'; - /** The "lock" field on the "CoreBlock" block */ - lock?: Maybe; - /** The "ref" field on the "CoreBlock" block */ - ref?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreButton = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreButton'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreButton Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreButton Block Type */ -export type CoreButtonAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreButtonAttributes'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CoreButton" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreButton" block */ - className?: Maybe; - /** The "cssClassName" field on the "CoreButton" block */ - cssClassName?: Maybe; - /** The "fontFamily" field on the "CoreButton" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreButton" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreButton" block */ - gradient?: Maybe; - /** The "linkClassName" field on the "CoreButton" block */ - linkClassName?: Maybe; - /** The "linkTarget" field on the "CoreButton" block */ - linkTarget?: Maybe; - /** The "lock" field on the "CoreButton" block */ - lock?: Maybe; - /** The "placeholder" field on the "CoreButton" block */ - placeholder?: Maybe; - /** The "rel" field on the "CoreButton" block */ - rel?: Maybe; - /** The "style" field on the "CoreButton" block */ - style?: Maybe; - /** The "text" field on the "CoreButton" block */ - text?: Maybe; - /** The "textAlign" field on the "CoreButton" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CoreButton" block */ - textColor?: Maybe; - /** The "title" field on the "CoreButton" block */ - title?: Maybe; - /** The "url" field on the "CoreButton" block */ - url?: Maybe; - /** The "width" field on the "CoreButton" block */ - width?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreButtons = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreButtons'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreButtons Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreButtons Block Type */ -export type CoreButtonsAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreButtonsAttributes'; - /** The "align" field on the "CoreButtons" block */ - align?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "className" field on the "CoreButtons" block */ - className?: Maybe; - /** The "cssClassName" field on the "CoreButtons" block */ - cssClassName?: Maybe; - /** The "fontFamily" field on the "CoreButtons" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreButtons" block */ - fontSize?: Maybe; - /** The "layout" field on the "CoreButtons" block */ - layout?: Maybe; - /** The "lock" field on the "CoreButtons" block */ - lock?: Maybe; - /** The "style" field on the "CoreButtons" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreCalendar = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreCalendar'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreCalendar Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreCalendar Block Type */ -export type CoreCalendarAttributes = { - __typename?: 'CoreCalendarAttributes'; - /** The "align" field on the "CoreCalendar" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CoreCalendar" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreCalendar" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreCalendar" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreCalendar" block */ - fontSize?: Maybe; - /** The "lock" field on the "CoreCalendar" block */ - lock?: Maybe; - /** The "month" field on the "CoreCalendar" block */ - month?: Maybe; - /** The "style" field on the "CoreCalendar" block */ - style?: Maybe; - /** The "textColor" field on the "CoreCalendar" block */ - textColor?: Maybe; - /** The "year" field on the "CoreCalendar" block */ - year?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreCategories = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreCategories'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreCategories Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreCategories Block Type */ -export type CoreCategoriesAttributes = { - __typename?: 'CoreCategoriesAttributes'; - /** The "align" field on the "CoreCategories" block */ - align?: Maybe; - /** The "className" field on the "CoreCategories" block */ - className?: Maybe; - /** The "displayAsDropdown" field on the "CoreCategories" block */ - displayAsDropdown?: Maybe; - /** The "fontFamily" field on the "CoreCategories" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreCategories" block */ - fontSize?: Maybe; - /** The "lock" field on the "CoreCategories" block */ - lock?: Maybe; - /** The "showEmpty" field on the "CoreCategories" block */ - showEmpty?: Maybe; - /** The "showHierarchy" field on the "CoreCategories" block */ - showHierarchy?: Maybe; - /** The "showOnlyTopLevel" field on the "CoreCategories" block */ - showOnlyTopLevel?: Maybe; - /** The "showPostCounts" field on the "CoreCategories" block */ - showPostCounts?: Maybe; - /** The "style" field on the "CoreCategories" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreCode = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreCode'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreCode Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreCode Block Type */ -export type CoreCodeAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreCodeAttributes'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CoreCode" block */ - backgroundColor?: Maybe; - /** The "borderColor" field on the "CoreCode" block */ - borderColor?: Maybe; - /** The "className" field on the "CoreCode" block */ - className?: Maybe; - /** The "content" field on the "CoreCode" block */ - content?: Maybe; - /** The "cssClassName" field on the "CoreCode" block */ - cssClassName?: Maybe; - /** The "fontFamily" field on the "CoreCode" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreCode" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreCode" block */ - gradient?: Maybe; - /** The "lock" field on the "CoreCode" block */ - lock?: Maybe; - /** The "style" field on the "CoreCode" block */ - style?: Maybe; - /** The "textColor" field on the "CoreCode" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreColumn = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreColumn'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreColumn Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreColumn Block Type */ -export type CoreColumnAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreColumnAttributes'; - /** The "allowedBlocks" field on the "CoreColumn" block */ - allowedBlocks?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CoreColumn" block */ - backgroundColor?: Maybe; - /** The "borderColor" field on the "CoreColumn" block */ - borderColor?: Maybe; - /** The "className" field on the "CoreColumn" block */ - className?: Maybe; - /** The "cssClassName" field on the "CoreColumn" block */ - cssClassName?: Maybe; - /** The "fontFamily" field on the "CoreColumn" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreColumn" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreColumn" block */ - gradient?: Maybe; - /** The "layout" field on the "CoreColumn" block */ - layout?: Maybe; - /** The "lock" field on the "CoreColumn" block */ - lock?: Maybe; - /** The "style" field on the "CoreColumn" block */ - style?: Maybe; - /** The "textColor" field on the "CoreColumn" block */ - textColor?: Maybe; - /** The "verticalAlignment" field on the "CoreColumn" block */ - verticalAlignment?: Maybe; - /** The "width" field on the "CoreColumn" block */ - width?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreColumns = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreColumns'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreColumns Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreColumns Block Type */ -export type CoreColumnsAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreColumnsAttributes'; - /** The "align" field on the "CoreColumns" block */ - align?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CoreColumns" block */ - backgroundColor?: Maybe; - /** The "borderColor" field on the "CoreColumns" block */ - borderColor?: Maybe; - /** The "className" field on the "CoreColumns" block */ - className?: Maybe; - /** The "cssClassName" field on the "CoreColumns" block */ - cssClassName?: Maybe; - /** The "fontFamily" field on the "CoreColumns" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreColumns" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreColumns" block */ - gradient?: Maybe; - /** The "isStackedOnMobile" field on the "CoreColumns" block */ - isStackedOnMobile?: Maybe; - /** The "layout" field on the "CoreColumns" block */ - layout?: Maybe; - /** The "lock" field on the "CoreColumns" block */ - lock?: Maybe; - /** The "style" field on the "CoreColumns" block */ - style?: Maybe; - /** The "textColor" field on the "CoreColumns" block */ - textColor?: Maybe; - /** The "verticalAlignment" field on the "CoreColumns" block */ - verticalAlignment?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreCommentAuthorName = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreCommentAuthorName'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreCommentAuthorName Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreCommentAuthorName Block Type */ -export type CoreCommentAuthorNameAttributes = { - __typename?: 'CoreCommentAuthorNameAttributes'; - /** The "backgroundColor" field on the "CoreCommentAuthorName" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreCommentAuthorName" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreCommentAuthorName" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreCommentAuthorName" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreCommentAuthorName" block */ - gradient?: Maybe; - /** The "isLink" field on the "CoreCommentAuthorName" block */ - isLink?: Maybe; - /** The "linkTarget" field on the "CoreCommentAuthorName" block */ - linkTarget?: Maybe; - /** The "lock" field on the "CoreCommentAuthorName" block */ - lock?: Maybe; - /** The "style" field on the "CoreCommentAuthorName" block */ - style?: Maybe; - /** The "textAlign" field on the "CoreCommentAuthorName" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CoreCommentAuthorName" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreCommentContent = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreCommentContent'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreCommentContent Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreCommentContent Block Type */ -export type CoreCommentContentAttributes = { - __typename?: 'CoreCommentContentAttributes'; - /** The "backgroundColor" field on the "CoreCommentContent" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreCommentContent" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreCommentContent" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreCommentContent" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreCommentContent" block */ - gradient?: Maybe; - /** The "lock" field on the "CoreCommentContent" block */ - lock?: Maybe; - /** The "style" field on the "CoreCommentContent" block */ - style?: Maybe; - /** The "textAlign" field on the "CoreCommentContent" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CoreCommentContent" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreCommentDate = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreCommentDate'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreCommentDate Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreCommentDate Block Type */ -export type CoreCommentDateAttributes = { - __typename?: 'CoreCommentDateAttributes'; - /** The "backgroundColor" field on the "CoreCommentDate" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreCommentDate" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreCommentDate" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreCommentDate" block */ - fontSize?: Maybe; - /** The "format" field on the "CoreCommentDate" block */ - format?: Maybe; - /** The "gradient" field on the "CoreCommentDate" block */ - gradient?: Maybe; - /** The "isLink" field on the "CoreCommentDate" block */ - isLink?: Maybe; - /** The "lock" field on the "CoreCommentDate" block */ - lock?: Maybe; - /** The "style" field on the "CoreCommentDate" block */ - style?: Maybe; - /** The "textColor" field on the "CoreCommentDate" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreCommentEditLink = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreCommentEditLink'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreCommentEditLink Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreCommentEditLink Block Type */ -export type CoreCommentEditLinkAttributes = { - __typename?: 'CoreCommentEditLinkAttributes'; - /** The "backgroundColor" field on the "CoreCommentEditLink" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreCommentEditLink" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreCommentEditLink" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreCommentEditLink" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreCommentEditLink" block */ - gradient?: Maybe; - /** The "linkTarget" field on the "CoreCommentEditLink" block */ - linkTarget?: Maybe; - /** The "lock" field on the "CoreCommentEditLink" block */ - lock?: Maybe; - /** The "style" field on the "CoreCommentEditLink" block */ - style?: Maybe; - /** The "textAlign" field on the "CoreCommentEditLink" block */ - textAlign?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreCommentReplyLink = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreCommentReplyLink'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreCommentReplyLink Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreCommentReplyLink Block Type */ -export type CoreCommentReplyLinkAttributes = { - __typename?: 'CoreCommentReplyLinkAttributes'; - /** The "backgroundColor" field on the "CoreCommentReplyLink" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreCommentReplyLink" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreCommentReplyLink" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreCommentReplyLink" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreCommentReplyLink" block */ - gradient?: Maybe; - /** The "lock" field on the "CoreCommentReplyLink" block */ - lock?: Maybe; - /** The "style" field on the "CoreCommentReplyLink" block */ - style?: Maybe; - /** The "textAlign" field on the "CoreCommentReplyLink" block */ - textAlign?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreCommentTemplate = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreCommentTemplate'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreCommentTemplate Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreCommentTemplate Block Type */ -export type CoreCommentTemplateAttributes = { - __typename?: 'CoreCommentTemplateAttributes'; - /** The "align" field on the "CoreCommentTemplate" block */ - align?: Maybe; - /** The "className" field on the "CoreCommentTemplate" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreCommentTemplate" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreCommentTemplate" block */ - fontSize?: Maybe; - /** The "lock" field on the "CoreCommentTemplate" block */ - lock?: Maybe; - /** The "style" field on the "CoreCommentTemplate" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreComments = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreComments'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreComments Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreComments Block Type */ -export type CoreCommentsAttributes = { - __typename?: 'CoreCommentsAttributes'; - /** The "align" field on the "CoreComments" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CoreComments" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreComments" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreComments" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreComments" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreComments" block */ - gradient?: Maybe; - /** The "legacy" field on the "CoreComments" block */ - legacy?: Maybe; - /** The "lock" field on the "CoreComments" block */ - lock?: Maybe; - /** The "style" field on the "CoreComments" block */ - style?: Maybe; - /** The "tagName" field on the "CoreComments" block */ - tagName?: Maybe; - /** The "textColor" field on the "CoreComments" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreCommentsPagination = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreCommentsPagination'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreCommentsPagination Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreCommentsPagination Block Type */ -export type CoreCommentsPaginationAttributes = { - __typename?: 'CoreCommentsPaginationAttributes'; - /** The "align" field on the "CoreCommentsPagination" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CoreCommentsPagination" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreCommentsPagination" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreCommentsPagination" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreCommentsPagination" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreCommentsPagination" block */ - gradient?: Maybe; - /** The "layout" field on the "CoreCommentsPagination" block */ - layout?: Maybe; - /** The "lock" field on the "CoreCommentsPagination" block */ - lock?: Maybe; - /** The "paginationArrow" field on the "CoreCommentsPagination" block */ - paginationArrow?: Maybe; - /** The "style" field on the "CoreCommentsPagination" block */ - style?: Maybe; - /** The "textColor" field on the "CoreCommentsPagination" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreCommentsPaginationNext = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreCommentsPaginationNext'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreCommentsPaginationNext Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreCommentsPaginationNext Block Type */ -export type CoreCommentsPaginationNextAttributes = { - __typename?: 'CoreCommentsPaginationNextAttributes'; - /** The "backgroundColor" field on the "CoreCommentsPaginationNext" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreCommentsPaginationNext" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreCommentsPaginationNext" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreCommentsPaginationNext" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreCommentsPaginationNext" block */ - gradient?: Maybe; - /** The "label" field on the "CoreCommentsPaginationNext" block */ - label?: Maybe; - /** The "lock" field on the "CoreCommentsPaginationNext" block */ - lock?: Maybe; - /** The "style" field on the "CoreCommentsPaginationNext" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreCommentsPaginationNumbers = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreCommentsPaginationNumbers'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreCommentsPaginationNumbers Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreCommentsPaginationNumbers Block Type */ -export type CoreCommentsPaginationNumbersAttributes = { - __typename?: 'CoreCommentsPaginationNumbersAttributes'; - /** The "backgroundColor" field on the "CoreCommentsPaginationNumbers" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreCommentsPaginationNumbers" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreCommentsPaginationNumbers" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreCommentsPaginationNumbers" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreCommentsPaginationNumbers" block */ - gradient?: Maybe; - /** The "lock" field on the "CoreCommentsPaginationNumbers" block */ - lock?: Maybe; - /** The "style" field on the "CoreCommentsPaginationNumbers" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreCommentsPaginationPrevious = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreCommentsPaginationPrevious'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreCommentsPaginationPrevious Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreCommentsPaginationPrevious Block Type */ -export type CoreCommentsPaginationPreviousAttributes = { - __typename?: 'CoreCommentsPaginationPreviousAttributes'; - /** The "backgroundColor" field on the "CoreCommentsPaginationPrevious" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreCommentsPaginationPrevious" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreCommentsPaginationPrevious" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreCommentsPaginationPrevious" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreCommentsPaginationPrevious" block */ - gradient?: Maybe; - /** The "label" field on the "CoreCommentsPaginationPrevious" block */ - label?: Maybe; - /** The "lock" field on the "CoreCommentsPaginationPrevious" block */ - lock?: Maybe; - /** The "style" field on the "CoreCommentsPaginationPrevious" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreCommentsTitle = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreCommentsTitle'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreCommentsTitle Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreCommentsTitle Block Type */ -export type CoreCommentsTitleAttributes = { - __typename?: 'CoreCommentsTitleAttributes'; - /** The "align" field on the "CoreCommentsTitle" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CoreCommentsTitle" block */ - backgroundColor?: Maybe; - /** The "borderColor" field on the "CoreCommentsTitle" block */ - borderColor?: Maybe; - /** The "className" field on the "CoreCommentsTitle" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreCommentsTitle" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreCommentsTitle" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreCommentsTitle" block */ - gradient?: Maybe; - /** The "level" field on the "CoreCommentsTitle" block */ - level?: Maybe; - /** The "lock" field on the "CoreCommentsTitle" block */ - lock?: Maybe; - /** The "showCommentsCount" field on the "CoreCommentsTitle" block */ - showCommentsCount?: Maybe; - /** The "showPostTitle" field on the "CoreCommentsTitle" block */ - showPostTitle?: Maybe; - /** The "style" field on the "CoreCommentsTitle" block */ - style?: Maybe; - /** The "textAlign" field on the "CoreCommentsTitle" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CoreCommentsTitle" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreCover = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreCover'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreCover Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreCover Block Type */ -export type CoreCoverAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreCoverAttributes'; - /** The "align" field on the "CoreCover" block */ - align?: Maybe; - /** The "allowedBlocks" field on the "CoreCover" block */ - allowedBlocks?: Maybe; - /** The "alt" field on the "CoreCover" block */ - alt?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundType" field on the "CoreCover" block */ - backgroundType?: Maybe; - /** The "className" field on the "CoreCover" block */ - className?: Maybe; - /** The "contentPosition" field on the "CoreCover" block */ - contentPosition?: Maybe; - /** The "customGradient" field on the "CoreCover" block */ - customGradient?: Maybe; - /** The "customOverlayColor" field on the "CoreCover" block */ - customOverlayColor?: Maybe; - /** The "dimRatio" field on the "CoreCover" block */ - dimRatio?: Maybe; - /** The "focalPoint" field on the "CoreCover" block */ - focalPoint?: Maybe; - /** The "fontFamily" field on the "CoreCover" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreCover" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreCover" block */ - gradient?: Maybe; - /** The "hasParallax" field on the "CoreCover" block */ - hasParallax?: Maybe; - /** The "id" field on the "CoreCover" block */ - id?: Maybe; - /** The "isDark" field on the "CoreCover" block */ - isDark?: Maybe; - /** The "isRepeated" field on the "CoreCover" block */ - isRepeated?: Maybe; - /** The "lock" field on the "CoreCover" block */ - lock?: Maybe; - /** The "minHeight" field on the "CoreCover" block */ - minHeight?: Maybe; - /** The "minHeightUnit" field on the "CoreCover" block */ - minHeightUnit?: Maybe; - /** The "overlayColor" field on the "CoreCover" block */ - overlayColor?: Maybe; - /** The "style" field on the "CoreCover" block */ - style?: Maybe; - /** The "tagName" field on the "CoreCover" block */ - tagName?: Maybe; - /** The "url" field on the "CoreCover" block */ - url?: Maybe; - /** The "useFeaturedImage" field on the "CoreCover" block */ - useFeaturedImage?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreEmbed = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreEmbed'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreEmbed Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreEmbed Block Type */ -export type CoreEmbedAttributes = { - __typename?: 'CoreEmbedAttributes'; - /** The "align" field on the "CoreEmbed" block */ - align?: Maybe; - /** The "allowResponsive" field on the "CoreEmbed" block */ - allowResponsive?: Maybe; - /** The "caption" field on the "CoreEmbed" block */ - caption?: Maybe; - /** The "className" field on the "CoreEmbed" block */ - className?: Maybe; - /** The "lock" field on the "CoreEmbed" block */ - lock?: Maybe; - /** The "previewable" field on the "CoreEmbed" block */ - previewable?: Maybe; - /** The "providerNameSlug" field on the "CoreEmbed" block */ - providerNameSlug?: Maybe; - /** The "responsive" field on the "CoreEmbed" block */ - responsive?: Maybe; - /** The "type" field on the "CoreEmbed" block */ - type?: Maybe; - /** The "url" field on the "CoreEmbed" block */ - url?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreFile = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreFile'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreFile Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreFile Block Type */ -export type CoreFileAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreFileAttributes'; - /** The "align" field on the "CoreFile" block */ - align?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "className" field on the "CoreFile" block */ - className?: Maybe; - /** The "displayPreview" field on the "CoreFile" block */ - displayPreview?: Maybe; - /** The "downloadButtonText" field on the "CoreFile" block */ - downloadButtonText?: Maybe; - /** The "fileId" field on the "CoreFile" block */ - fileId?: Maybe; - /** The "fileName" field on the "CoreFile" block */ - fileName?: Maybe; - /** The "href" field on the "CoreFile" block */ - href?: Maybe; - /** The "id" field on the "CoreFile" block */ - id?: Maybe; - /** The "lock" field on the "CoreFile" block */ - lock?: Maybe; - /** The "previewHeight" field on the "CoreFile" block */ - previewHeight?: Maybe; - /** The "showDownloadButton" field on the "CoreFile" block */ - showDownloadButton?: Maybe; - /** The "textLinkHref" field on the "CoreFile" block */ - textLinkHref?: Maybe; - /** The "textLinkTarget" field on the "CoreFile" block */ - textLinkTarget?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreFreeform = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreFreeform'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreFreeform Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreFreeform Block Type */ -export type CoreFreeformAttributes = { - __typename?: 'CoreFreeformAttributes'; - /** The "content" field on the "CoreFreeform" block */ - content?: Maybe; - /** The "lock" field on the "CoreFreeform" block */ - lock?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreGallery = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreGallery'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreGallery Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreGallery Block Type */ -export type CoreGalleryAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreGalleryAttributes'; - /** The "align" field on the "CoreGallery" block */ - align?: Maybe; - /** The "allowResize" field on the "CoreGallery" block */ - allowResize?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CoreGallery" block */ - backgroundColor?: Maybe; - /** The "caption" field on the "CoreGallery" block */ - caption?: Maybe; - /** The "className" field on the "CoreGallery" block */ - className?: Maybe; - /** The "columns" field on the "CoreGallery" block */ - columns?: Maybe; - /** The "fixedHeight" field on the "CoreGallery" block */ - fixedHeight?: Maybe; - /** The "gradient" field on the "CoreGallery" block */ - gradient?: Maybe; - /** The "ids" field on the "CoreGallery" block */ - ids?: Maybe; - /** The "imageCrop" field on the "CoreGallery" block */ - imageCrop?: Maybe; - /** The "images" field on the "CoreGallery" block */ - images?: Maybe; - /** The "layout" field on the "CoreGallery" block */ - layout?: Maybe; - /** The "linkTarget" field on the "CoreGallery" block */ - linkTarget?: Maybe; - /** The "linkTo" field on the "CoreGallery" block */ - linkTo?: Maybe; - /** The "lock" field on the "CoreGallery" block */ - lock?: Maybe; - /** The "shortCodeTransforms" field on the "CoreGallery" block */ - shortCodeTransforms?: Maybe; - /** The "sizeSlug" field on the "CoreGallery" block */ - sizeSlug?: Maybe; - /** The "style" field on the "CoreGallery" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreGroup = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreGroup'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreGroup Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreGroup Block Type */ -export type CoreGroupAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreGroupAttributes'; - /** The "align" field on the "CoreGroup" block */ - align?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CoreGroup" block */ - backgroundColor?: Maybe; - /** The "borderColor" field on the "CoreGroup" block */ - borderColor?: Maybe; - /** The "className" field on the "CoreGroup" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreGroup" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreGroup" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreGroup" block */ - gradient?: Maybe; - /** The "layout" field on the "CoreGroup" block */ - layout?: Maybe; - /** The "lock" field on the "CoreGroup" block */ - lock?: Maybe; - /** The "style" field on the "CoreGroup" block */ - style?: Maybe; - /** The "tagName" field on the "CoreGroup" block */ - tagName?: Maybe; - /** The "textColor" field on the "CoreGroup" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreHeading = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreHeading'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreHeading Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreHeading Block Type */ -export type CoreHeadingAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreHeadingAttributes'; - /** The "align" field on the "CoreHeading" block */ - align?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CoreHeading" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreHeading" block */ - className?: Maybe; - /** The "content" field on the "CoreHeading" block */ - content?: Maybe; - /** The "cssClassName" field on the "CoreHeading" block */ - cssClassName?: Maybe; - /** The "fontFamily" field on the "CoreHeading" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreHeading" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreHeading" block */ - gradient?: Maybe; - /** The "level" field on the "CoreHeading" block */ - level?: Maybe; - /** The "lock" field on the "CoreHeading" block */ - lock?: Maybe; - /** The "placeholder" field on the "CoreHeading" block */ - placeholder?: Maybe; - /** The "style" field on the "CoreHeading" block */ - style?: Maybe; - /** The "textAlign" field on the "CoreHeading" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CoreHeading" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreHomeLink = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreHomeLink'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreHomeLink Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreHomeLink Block Type */ -export type CoreHomeLinkAttributes = { - __typename?: 'CoreHomeLinkAttributes'; - /** The "className" field on the "CoreHomeLink" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreHomeLink" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreHomeLink" block */ - fontSize?: Maybe; - /** The "label" field on the "CoreHomeLink" block */ - label?: Maybe; - /** The "lock" field on the "CoreHomeLink" block */ - lock?: Maybe; - /** The "style" field on the "CoreHomeLink" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreHtml = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreHtml'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreHtml Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreHtml Block Type */ -export type CoreHtmlAttributes = { - __typename?: 'CoreHtmlAttributes'; - /** The "content" field on the "CoreHtml" block */ - content?: Maybe; - /** The "lock" field on the "CoreHtml" block */ - lock?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreImage = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreImage'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreImage Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreImage Block Type */ -export type CoreImageAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreImageAttributes'; - /** The "align" field on the "CoreImage" block */ - align?: Maybe; - /** The "alt" field on the "CoreImage" block */ - alt?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "borderColor" field on the "CoreImage" block */ - borderColor?: Maybe; - /** The "caption" field on the "CoreImage" block */ - caption?: Maybe; - /** The "className" field on the "CoreImage" block */ - className?: Maybe; - /** The "cssClassName" field on the "CoreImage" block */ - cssClassName?: Maybe; - /** The "height" field on the "CoreImage" block */ - height?: Maybe; - /** The "href" field on the "CoreImage" block */ - href?: Maybe; - /** The "id" field on the "CoreImage" block */ - id?: Maybe; - /** The "linkClass" field on the "CoreImage" block */ - linkClass?: Maybe; - /** The "linkDestination" field on the "CoreImage" block */ - linkDestination?: Maybe; - /** The "linkTarget" field on the "CoreImage" block */ - linkTarget?: Maybe; - /** The "lock" field on the "CoreImage" block */ - lock?: Maybe; - /** The "rel" field on the "CoreImage" block */ - rel?: Maybe; - /** The "sizeSlug" field on the "CoreImage" block */ - sizeSlug?: Maybe; - /** The "src" field on the "CoreImage" block */ - src?: Maybe; - /** The "style" field on the "CoreImage" block */ - style?: Maybe; - /** The "title" field on the "CoreImage" block */ - title?: Maybe; - /** The "url" field on the "CoreImage" block */ - url?: Maybe; - /** The "width" field on the "CoreImage" block */ - width?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreLatestComments = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreLatestComments'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreLatestComments Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreLatestComments Block Type */ -export type CoreLatestCommentsAttributes = { - __typename?: 'CoreLatestCommentsAttributes'; - /** The "align" field on the "CoreLatestComments" block */ - align?: Maybe; - /** The "className" field on the "CoreLatestComments" block */ - className?: Maybe; - /** The "commentsToShow" field on the "CoreLatestComments" block */ - commentsToShow?: Maybe; - /** The "displayAvatar" field on the "CoreLatestComments" block */ - displayAvatar?: Maybe; - /** The "displayDate" field on the "CoreLatestComments" block */ - displayDate?: Maybe; - /** The "displayExcerpt" field on the "CoreLatestComments" block */ - displayExcerpt?: Maybe; - /** The "lock" field on the "CoreLatestComments" block */ - lock?: Maybe; - /** The "style" field on the "CoreLatestComments" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreLatestPosts = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreLatestPosts'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreLatestPosts Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreLatestPosts Block Type */ -export type CoreLatestPostsAttributes = { - __typename?: 'CoreLatestPostsAttributes'; - /** The "addLinkToFeaturedImage" field on the "CoreLatestPosts" block */ - addLinkToFeaturedImage?: Maybe; - /** The "align" field on the "CoreLatestPosts" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CoreLatestPosts" block */ - backgroundColor?: Maybe; - /** The "categories" field on the "CoreLatestPosts" block */ - categories?: Maybe; - /** The "className" field on the "CoreLatestPosts" block */ - className?: Maybe; - /** The "columns" field on the "CoreLatestPosts" block */ - columns?: Maybe; - /** The "displayAuthor" field on the "CoreLatestPosts" block */ - displayAuthor?: Maybe; - /** The "displayFeaturedImage" field on the "CoreLatestPosts" block */ - displayFeaturedImage?: Maybe; - /** The "displayPostContent" field on the "CoreLatestPosts" block */ - displayPostContent?: Maybe; - /** The "displayPostContentRadio" field on the "CoreLatestPosts" block */ - displayPostContentRadio?: Maybe; - /** The "displayPostDate" field on the "CoreLatestPosts" block */ - displayPostDate?: Maybe; - /** The "excerptLength" field on the "CoreLatestPosts" block */ - excerptLength?: Maybe; - /** The "featuredImageAlign" field on the "CoreLatestPosts" block */ - featuredImageAlign?: Maybe; - /** The "featuredImageSizeHeight" field on the "CoreLatestPosts" block */ - featuredImageSizeHeight?: Maybe; - /** The "featuredImageSizeSlug" field on the "CoreLatestPosts" block */ - featuredImageSizeSlug?: Maybe; - /** The "featuredImageSizeWidth" field on the "CoreLatestPosts" block */ - featuredImageSizeWidth?: Maybe; - /** The "fontFamily" field on the "CoreLatestPosts" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreLatestPosts" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreLatestPosts" block */ - gradient?: Maybe; - /** The "lock" field on the "CoreLatestPosts" block */ - lock?: Maybe; - /** The "order" field on the "CoreLatestPosts" block */ - order?: Maybe; - /** The "orderBy" field on the "CoreLatestPosts" block */ - orderBy?: Maybe; - /** The "postLayout" field on the "CoreLatestPosts" block */ - postLayout?: Maybe; - /** The "postsToShow" field on the "CoreLatestPosts" block */ - postsToShow?: Maybe; - /** The "selectedAuthor" field on the "CoreLatestPosts" block */ - selectedAuthor?: Maybe; - /** The "style" field on the "CoreLatestPosts" block */ - style?: Maybe; - /** The "textColor" field on the "CoreLatestPosts" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreLegacyWidget = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreLegacyWidget'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreLegacyWidget Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreLegacyWidget Block Type */ -export type CoreLegacyWidgetAttributes = { - __typename?: 'CoreLegacyWidgetAttributes'; - /** The "id" field on the "CoreLegacyWidget" block */ - id?: Maybe; - /** The "idBase" field on the "CoreLegacyWidget" block */ - idBase?: Maybe; - /** The "instance" field on the "CoreLegacyWidget" block */ - instance?: Maybe; - /** The "lock" field on the "CoreLegacyWidget" block */ - lock?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreList = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreList'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreList Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreList Block Type */ -export type CoreListAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreListAttributes'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CoreList" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreList" block */ - className?: Maybe; - /** The "cssClassName" field on the "CoreList" block */ - cssClassName?: Maybe; - /** The "fontFamily" field on the "CoreList" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreList" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreList" block */ - gradient?: Maybe; - /** The "lock" field on the "CoreList" block */ - lock?: Maybe; - /** The "ordered" field on the "CoreList" block */ - ordered?: Maybe; - /** The "placeholder" field on the "CoreList" block */ - placeholder?: Maybe; - /** The "reversed" field on the "CoreList" block */ - reversed?: Maybe; - /** The "start" field on the "CoreList" block */ - start?: Maybe; - /** The "style" field on the "CoreList" block */ - style?: Maybe; - /** The "textColor" field on the "CoreList" block */ - textColor?: Maybe; - /** The "type" field on the "CoreList" block */ - type?: Maybe; - /** The "values" field on the "CoreList" block */ - values?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreListItem = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreListItem'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreListItem Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreListItem Block Type */ -export type CoreListItemAttributes = { - __typename?: 'CoreListItemAttributes'; - /** The "className" field on the "CoreListItem" block */ - className?: Maybe; - /** The "content" field on the "CoreListItem" block */ - content?: Maybe; - /** The "fontFamily" field on the "CoreListItem" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreListItem" block */ - fontSize?: Maybe; - /** The "lock" field on the "CoreListItem" block */ - lock?: Maybe; - /** The "placeholder" field on the "CoreListItem" block */ - placeholder?: Maybe; - /** The "style" field on the "CoreListItem" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreLoginout = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreLoginout'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreLoginout Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreLoginout Block Type */ -export type CoreLoginoutAttributes = { - __typename?: 'CoreLoginoutAttributes'; - /** The "className" field on the "CoreLoginout" block */ - className?: Maybe; - /** The "displayLoginAsForm" field on the "CoreLoginout" block */ - displayLoginAsForm?: Maybe; - /** The "lock" field on the "CoreLoginout" block */ - lock?: Maybe; - /** The "redirectToCurrent" field on the "CoreLoginout" block */ - redirectToCurrent?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreMediaText = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreMediaText'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreMediaText Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreMediaText Block Type */ -export type CoreMediaTextAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreMediaTextAttributes'; - /** The "align" field on the "CoreMediaText" block */ - align?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CoreMediaText" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreMediaText" block */ - className?: Maybe; - /** The "focalPoint" field on the "CoreMediaText" block */ - focalPoint?: Maybe; - /** The "fontFamily" field on the "CoreMediaText" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreMediaText" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreMediaText" block */ - gradient?: Maybe; - /** The "href" field on the "CoreMediaText" block */ - href?: Maybe; - /** The "imageFill" field on the "CoreMediaText" block */ - imageFill?: Maybe; - /** The "isStackedOnMobile" field on the "CoreMediaText" block */ - isStackedOnMobile?: Maybe; - /** The "linkClass" field on the "CoreMediaText" block */ - linkClass?: Maybe; - /** The "linkDestination" field on the "CoreMediaText" block */ - linkDestination?: Maybe; - /** The "linkTarget" field on the "CoreMediaText" block */ - linkTarget?: Maybe; - /** The "lock" field on the "CoreMediaText" block */ - lock?: Maybe; - /** The "mediaAlt" field on the "CoreMediaText" block */ - mediaAlt?: Maybe; - /** The "mediaId" field on the "CoreMediaText" block */ - mediaId?: Maybe; - /** The "mediaLink" field on the "CoreMediaText" block */ - mediaLink?: Maybe; - /** The "mediaPosition" field on the "CoreMediaText" block */ - mediaPosition?: Maybe; - /** The "mediaSizeSlug" field on the "CoreMediaText" block */ - mediaSizeSlug?: Maybe; - /** The "mediaType" field on the "CoreMediaText" block */ - mediaType?: Maybe; - /** The "mediaUrl" field on the "CoreMediaText" block */ - mediaUrl?: Maybe; - /** The "mediaWidth" field on the "CoreMediaText" block */ - mediaWidth?: Maybe; - /** The "rel" field on the "CoreMediaText" block */ - rel?: Maybe; - /** The "style" field on the "CoreMediaText" block */ - style?: Maybe; - /** The "textColor" field on the "CoreMediaText" block */ - textColor?: Maybe; - /** The "verticalAlignment" field on the "CoreMediaText" block */ - verticalAlignment?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreMissing = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreMissing'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreMissing Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreMissing Block Type */ -export type CoreMissingAttributes = { - __typename?: 'CoreMissingAttributes'; - /** The "lock" field on the "CoreMissing" block */ - lock?: Maybe; - /** The "originalContent" field on the "CoreMissing" block */ - originalContent?: Maybe; - /** The "originalName" field on the "CoreMissing" block */ - originalName?: Maybe; - /** The "originalUndelimitedContent" field on the "CoreMissing" block */ - originalUndelimitedContent?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreMore = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreMore'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreMore Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreMore Block Type */ -export type CoreMoreAttributes = { - __typename?: 'CoreMoreAttributes'; - /** The "customText" field on the "CoreMore" block */ - customText?: Maybe; - /** The "lock" field on the "CoreMore" block */ - lock?: Maybe; - /** The "noTeaser" field on the "CoreMore" block */ - noTeaser?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreNavigation = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreNavigation'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreNavigation Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreNavigation Block Type */ -export type CoreNavigationAttributes = { - __typename?: 'CoreNavigationAttributes'; - /** The "align" field on the "CoreNavigation" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CoreNavigation" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreNavigation" block */ - className?: Maybe; - /** The "customBackgroundColor" field on the "CoreNavigation" block */ - customBackgroundColor?: Maybe; - /** The "customOverlayBackgroundColor" field on the "CoreNavigation" block */ - customOverlayBackgroundColor?: Maybe; - /** The "customOverlayTextColor" field on the "CoreNavigation" block */ - customOverlayTextColor?: Maybe; - /** The "customTextColor" field on the "CoreNavigation" block */ - customTextColor?: Maybe; - /** The "fontFamily" field on the "CoreNavigation" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreNavigation" block */ - fontSize?: Maybe; - /** The "hasIcon" field on the "CoreNavigation" block */ - hasIcon?: Maybe; - /** The "icon" field on the "CoreNavigation" block */ - icon?: Maybe; - /** The "layout" field on the "CoreNavigation" block */ - layout?: Maybe; - /** The "lock" field on the "CoreNavigation" block */ - lock?: Maybe; - /** The "maxNestingLevel" field on the "CoreNavigation" block */ - maxNestingLevel?: Maybe; - /** The "openSubmenusOnClick" field on the "CoreNavigation" block */ - openSubmenusOnClick?: Maybe; - /** The "overlayBackgroundColor" field on the "CoreNavigation" block */ - overlayBackgroundColor?: Maybe; - /** The "overlayMenu" field on the "CoreNavigation" block */ - overlayMenu?: Maybe; - /** The "overlayTextColor" field on the "CoreNavigation" block */ - overlayTextColor?: Maybe; - /** The "ref" field on the "CoreNavigation" block */ - ref?: Maybe; - /** The "rgbBackgroundColor" field on the "CoreNavigation" block */ - rgbBackgroundColor?: Maybe; - /** The "rgbTextColor" field on the "CoreNavigation" block */ - rgbTextColor?: Maybe; - /** The "showSubmenuIcon" field on the "CoreNavigation" block */ - showSubmenuIcon?: Maybe; - /** The "style" field on the "CoreNavigation" block */ - style?: Maybe; - /** The "textColor" field on the "CoreNavigation" block */ - textColor?: Maybe; - /** The "__unstableLocation" field on the "CoreNavigation" block */ - unstableLocation?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreNavigationLink = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreNavigationLink'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreNavigationLink Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreNavigationLink Block Type */ -export type CoreNavigationLinkAttributes = { - __typename?: 'CoreNavigationLinkAttributes'; - /** The "className" field on the "CoreNavigationLink" block */ - className?: Maybe; - /** The "description" field on the "CoreNavigationLink" block */ - description?: Maybe; - /** The "fontFamily" field on the "CoreNavigationLink" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreNavigationLink" block */ - fontSize?: Maybe; - /** The "id" field on the "CoreNavigationLink" block */ - id?: Maybe; - /** The "isTopLevelLink" field on the "CoreNavigationLink" block */ - isTopLevelLink?: Maybe; - /** The "kind" field on the "CoreNavigationLink" block */ - kind?: Maybe; - /** The "label" field on the "CoreNavigationLink" block */ - label?: Maybe; - /** The "lock" field on the "CoreNavigationLink" block */ - lock?: Maybe; - /** The "opensInNewTab" field on the "CoreNavigationLink" block */ - opensInNewTab?: Maybe; - /** The "rel" field on the "CoreNavigationLink" block */ - rel?: Maybe; - /** The "style" field on the "CoreNavigationLink" block */ - style?: Maybe; - /** The "title" field on the "CoreNavigationLink" block */ - title?: Maybe; - /** The "type" field on the "CoreNavigationLink" block */ - type?: Maybe; - /** The "url" field on the "CoreNavigationLink" block */ - url?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreNavigationSubmenu = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreNavigationSubmenu'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreNavigationSubmenu Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreNavigationSubmenu Block Type */ -export type CoreNavigationSubmenuAttributes = { - __typename?: 'CoreNavigationSubmenuAttributes'; - /** The "className" field on the "CoreNavigationSubmenu" block */ - className?: Maybe; - /** The "description" field on the "CoreNavigationSubmenu" block */ - description?: Maybe; - /** The "id" field on the "CoreNavigationSubmenu" block */ - id?: Maybe; - /** The "isTopLevelItem" field on the "CoreNavigationSubmenu" block */ - isTopLevelItem?: Maybe; - /** The "kind" field on the "CoreNavigationSubmenu" block */ - kind?: Maybe; - /** The "label" field on the "CoreNavigationSubmenu" block */ - label?: Maybe; - /** The "lock" field on the "CoreNavigationSubmenu" block */ - lock?: Maybe; - /** The "opensInNewTab" field on the "CoreNavigationSubmenu" block */ - opensInNewTab?: Maybe; - /** The "rel" field on the "CoreNavigationSubmenu" block */ - rel?: Maybe; - /** The "title" field on the "CoreNavigationSubmenu" block */ - title?: Maybe; - /** The "type" field on the "CoreNavigationSubmenu" block */ - type?: Maybe; - /** The "url" field on the "CoreNavigationSubmenu" block */ - url?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreNextpage = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreNextpage'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreNextpage Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreNextpage Block Type */ -export type CoreNextpageAttributes = { - __typename?: 'CoreNextpageAttributes'; - /** The "lock" field on the "CoreNextpage" block */ - lock?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePageList = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePageList'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePageList Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePageList Block Type */ -export type CorePageListAttributes = { - __typename?: 'CorePageListAttributes'; - /** The "className" field on the "CorePageList" block */ - className?: Maybe; - /** The "fontFamily" field on the "CorePageList" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CorePageList" block */ - fontSize?: Maybe; - /** The "isNested" field on the "CorePageList" block */ - isNested?: Maybe; - /** The "lock" field on the "CorePageList" block */ - lock?: Maybe; - /** The "parentPageID" field on the "CorePageList" block */ - parentPageID?: Maybe; - /** The "style" field on the "CorePageList" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePageListItem = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePageListItem'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePageListItem Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePageListItem Block Type */ -export type CorePageListItemAttributes = { - __typename?: 'CorePageListItemAttributes'; - /** The "className" field on the "CorePageListItem" block */ - className?: Maybe; - /** The "hasChildren" field on the "CorePageListItem" block */ - hasChildren?: Maybe; - /** The "id" field on the "CorePageListItem" block */ - id?: Maybe; - /** The "label" field on the "CorePageListItem" block */ - label?: Maybe; - /** The "link" field on the "CorePageListItem" block */ - link?: Maybe; - /** The "lock" field on the "CorePageListItem" block */ - lock?: Maybe; - /** The "title" field on the "CorePageListItem" block */ - title?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreParagraph = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreParagraph'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreParagraph Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreParagraph Block Type */ -export type CoreParagraphAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreParagraphAttributes'; - /** The "align" field on the "CoreParagraph" block */ - align?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CoreParagraph" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreParagraph" block */ - className?: Maybe; - /** The "content" field on the "CoreParagraph" block */ - content?: Maybe; - /** The "cssClassName" field on the "CoreParagraph" block */ - cssClassName?: Maybe; - /** The "direction" field on the "CoreParagraph" block */ - direction?: Maybe; - /** The "dropCap" field on the "CoreParagraph" block */ - dropCap?: Maybe; - /** The "fontFamily" field on the "CoreParagraph" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreParagraph" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreParagraph" block */ - gradient?: Maybe; - /** The "lock" field on the "CoreParagraph" block */ - lock?: Maybe; - /** The "placeholder" field on the "CoreParagraph" block */ - placeholder?: Maybe; - /** The "style" field on the "CoreParagraph" block */ - style?: Maybe; - /** The "textColor" field on the "CoreParagraph" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePattern = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePattern'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePattern Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePattern Block Type */ -export type CorePatternAttributes = { - __typename?: 'CorePatternAttributes'; - /** The "className" field on the "CorePattern" block */ - className?: Maybe; - /** The "lock" field on the "CorePattern" block */ - lock?: Maybe; - /** The "slug" field on the "CorePattern" block */ - slug?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePostAuthor = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePostAuthor'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePostAuthor Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePostAuthor Block Type */ -export type CorePostAuthorAttributes = { - __typename?: 'CorePostAuthorAttributes'; - /** The "avatarSize" field on the "CorePostAuthor" block */ - avatarSize?: Maybe; - /** The "backgroundColor" field on the "CorePostAuthor" block */ - backgroundColor?: Maybe; - /** The "byline" field on the "CorePostAuthor" block */ - byline?: Maybe; - /** The "className" field on the "CorePostAuthor" block */ - className?: Maybe; - /** The "fontFamily" field on the "CorePostAuthor" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CorePostAuthor" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CorePostAuthor" block */ - gradient?: Maybe; - /** The "isLink" field on the "CorePostAuthor" block */ - isLink?: Maybe; - /** The "linkTarget" field on the "CorePostAuthor" block */ - linkTarget?: Maybe; - /** The "lock" field on the "CorePostAuthor" block */ - lock?: Maybe; - /** The "showAvatar" field on the "CorePostAuthor" block */ - showAvatar?: Maybe; - /** The "showBio" field on the "CorePostAuthor" block */ - showBio?: Maybe; - /** The "style" field on the "CorePostAuthor" block */ - style?: Maybe; - /** The "textAlign" field on the "CorePostAuthor" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CorePostAuthor" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePostAuthorBiography = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePostAuthorBiography'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePostAuthorBiography Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePostAuthorBiography Block Type */ -export type CorePostAuthorBiographyAttributes = { - __typename?: 'CorePostAuthorBiographyAttributes'; - /** The "backgroundColor" field on the "CorePostAuthorBiography" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CorePostAuthorBiography" block */ - className?: Maybe; - /** The "fontFamily" field on the "CorePostAuthorBiography" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CorePostAuthorBiography" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CorePostAuthorBiography" block */ - gradient?: Maybe; - /** The "lock" field on the "CorePostAuthorBiography" block */ - lock?: Maybe; - /** The "style" field on the "CorePostAuthorBiography" block */ - style?: Maybe; - /** The "textAlign" field on the "CorePostAuthorBiography" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CorePostAuthorBiography" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePostAuthorName = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePostAuthorName'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePostAuthorName Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePostAuthorName Block Type */ -export type CorePostAuthorNameAttributes = { - __typename?: 'CorePostAuthorNameAttributes'; - /** The "backgroundColor" field on the "CorePostAuthorName" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CorePostAuthorName" block */ - className?: Maybe; - /** The "fontFamily" field on the "CorePostAuthorName" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CorePostAuthorName" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CorePostAuthorName" block */ - gradient?: Maybe; - /** The "isLink" field on the "CorePostAuthorName" block */ - isLink?: Maybe; - /** The "linkTarget" field on the "CorePostAuthorName" block */ - linkTarget?: Maybe; - /** The "lock" field on the "CorePostAuthorName" block */ - lock?: Maybe; - /** The "style" field on the "CorePostAuthorName" block */ - style?: Maybe; - /** The "textAlign" field on the "CorePostAuthorName" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CorePostAuthorName" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePostComments = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePostComments'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePostComments Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePostComments Block Type */ -export type CorePostCommentsAttributes = { - __typename?: 'CorePostCommentsAttributes'; - /** The "align" field on the "CorePostComments" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CorePostComments" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CorePostComments" block */ - className?: Maybe; - /** The "fontSize" field on the "CorePostComments" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CorePostComments" block */ - gradient?: Maybe; - /** The "lock" field on the "CorePostComments" block */ - lock?: Maybe; - /** The "style" field on the "CorePostComments" block */ - style?: Maybe; - /** The "textAlign" field on the "CorePostComments" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CorePostComments" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePostCommentsForm = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePostCommentsForm'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePostCommentsForm Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePostCommentsForm Block Type */ -export type CorePostCommentsFormAttributes = { - __typename?: 'CorePostCommentsFormAttributes'; - /** The "backgroundColor" field on the "CorePostCommentsForm" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CorePostCommentsForm" block */ - className?: Maybe; - /** The "fontSize" field on the "CorePostCommentsForm" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CorePostCommentsForm" block */ - gradient?: Maybe; - /** The "lock" field on the "CorePostCommentsForm" block */ - lock?: Maybe; - /** The "style" field on the "CorePostCommentsForm" block */ - style?: Maybe; - /** The "textAlign" field on the "CorePostCommentsForm" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CorePostCommentsForm" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePostContent = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePostContent'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePostContent Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePostContent Block Type */ -export type CorePostContentAttributes = { - __typename?: 'CorePostContentAttributes'; - /** The "align" field on the "CorePostContent" block */ - align?: Maybe; - /** The "className" field on the "CorePostContent" block */ - className?: Maybe; - /** The "fontFamily" field on the "CorePostContent" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CorePostContent" block */ - fontSize?: Maybe; - /** The "layout" field on the "CorePostContent" block */ - layout?: Maybe; - /** The "lock" field on the "CorePostContent" block */ - lock?: Maybe; - /** The "style" field on the "CorePostContent" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePostDate = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePostDate'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePostDate Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePostDate Block Type */ -export type CorePostDateAttributes = { - __typename?: 'CorePostDateAttributes'; - /** The "backgroundColor" field on the "CorePostDate" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CorePostDate" block */ - className?: Maybe; - /** The "displayType" field on the "CorePostDate" block */ - displayType?: Maybe; - /** The "fontFamily" field on the "CorePostDate" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CorePostDate" block */ - fontSize?: Maybe; - /** The "format" field on the "CorePostDate" block */ - format?: Maybe; - /** The "gradient" field on the "CorePostDate" block */ - gradient?: Maybe; - /** The "isLink" field on the "CorePostDate" block */ - isLink?: Maybe; - /** The "lock" field on the "CorePostDate" block */ - lock?: Maybe; - /** The "style" field on the "CorePostDate" block */ - style?: Maybe; - /** The "textAlign" field on the "CorePostDate" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CorePostDate" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePostExcerpt = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePostExcerpt'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePostExcerpt Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePostExcerpt Block Type */ -export type CorePostExcerptAttributes = { - __typename?: 'CorePostExcerptAttributes'; - /** The "backgroundColor" field on the "CorePostExcerpt" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CorePostExcerpt" block */ - className?: Maybe; - /** The "fontFamily" field on the "CorePostExcerpt" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CorePostExcerpt" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CorePostExcerpt" block */ - gradient?: Maybe; - /** The "lock" field on the "CorePostExcerpt" block */ - lock?: Maybe; - /** The "moreText" field on the "CorePostExcerpt" block */ - moreText?: Maybe; - /** The "showMoreOnNewLine" field on the "CorePostExcerpt" block */ - showMoreOnNewLine?: Maybe; - /** The "style" field on the "CorePostExcerpt" block */ - style?: Maybe; - /** The "textAlign" field on the "CorePostExcerpt" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CorePostExcerpt" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePostFeaturedImage = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePostFeaturedImage'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePostFeaturedImage Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePostFeaturedImage Block Type */ -export type CorePostFeaturedImageAttributes = { - __typename?: 'CorePostFeaturedImageAttributes'; - /** The "align" field on the "CorePostFeaturedImage" block */ - align?: Maybe; - /** The "borderColor" field on the "CorePostFeaturedImage" block */ - borderColor?: Maybe; - /** The "className" field on the "CorePostFeaturedImage" block */ - className?: Maybe; - /** The "customGradient" field on the "CorePostFeaturedImage" block */ - customGradient?: Maybe; - /** The "customOverlayColor" field on the "CorePostFeaturedImage" block */ - customOverlayColor?: Maybe; - /** The "dimRatio" field on the "CorePostFeaturedImage" block */ - dimRatio?: Maybe; - /** The "gradient" field on the "CorePostFeaturedImage" block */ - gradient?: Maybe; - /** The "height" field on the "CorePostFeaturedImage" block */ - height?: Maybe; - /** The "isLink" field on the "CorePostFeaturedImage" block */ - isLink?: Maybe; - /** The "linkTarget" field on the "CorePostFeaturedImage" block */ - linkTarget?: Maybe; - /** The "lock" field on the "CorePostFeaturedImage" block */ - lock?: Maybe; - /** The "overlayColor" field on the "CorePostFeaturedImage" block */ - overlayColor?: Maybe; - /** The "rel" field on the "CorePostFeaturedImage" block */ - rel?: Maybe; - /** The "scale" field on the "CorePostFeaturedImage" block */ - scale?: Maybe; - /** The "sizeSlug" field on the "CorePostFeaturedImage" block */ - sizeSlug?: Maybe; - /** The "style" field on the "CorePostFeaturedImage" block */ - style?: Maybe; - /** The "width" field on the "CorePostFeaturedImage" block */ - width?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePostNavigationLink = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePostNavigationLink'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePostNavigationLink Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePostNavigationLink Block Type */ -export type CorePostNavigationLinkAttributes = { - __typename?: 'CorePostNavigationLinkAttributes'; - /** The "arrow" field on the "CorePostNavigationLink" block */ - arrow?: Maybe; - /** The "backgroundColor" field on the "CorePostNavigationLink" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CorePostNavigationLink" block */ - className?: Maybe; - /** The "fontFamily" field on the "CorePostNavigationLink" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CorePostNavigationLink" block */ - fontSize?: Maybe; - /** The "label" field on the "CorePostNavigationLink" block */ - label?: Maybe; - /** The "linkLabel" field on the "CorePostNavigationLink" block */ - linkLabel?: Maybe; - /** The "lock" field on the "CorePostNavigationLink" block */ - lock?: Maybe; - /** The "showTitle" field on the "CorePostNavigationLink" block */ - showTitle?: Maybe; - /** The "style" field on the "CorePostNavigationLink" block */ - style?: Maybe; - /** The "textAlign" field on the "CorePostNavigationLink" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CorePostNavigationLink" block */ - textColor?: Maybe; - /** The "type" field on the "CorePostNavigationLink" block */ - type?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePostTemplate = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePostTemplate'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePostTemplate Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePostTemplate Block Type */ -export type CorePostTemplateAttributes = { - __typename?: 'CorePostTemplateAttributes'; - /** The "align" field on the "CorePostTemplate" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CorePostTemplate" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CorePostTemplate" block */ - className?: Maybe; - /** The "fontFamily" field on the "CorePostTemplate" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CorePostTemplate" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CorePostTemplate" block */ - gradient?: Maybe; - /** The "layout" field on the "CorePostTemplate" block */ - layout?: Maybe; - /** The "lock" field on the "CorePostTemplate" block */ - lock?: Maybe; - /** The "style" field on the "CorePostTemplate" block */ - style?: Maybe; - /** The "textColor" field on the "CorePostTemplate" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePostTerms = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePostTerms'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePostTerms Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePostTerms Block Type */ -export type CorePostTermsAttributes = { - __typename?: 'CorePostTermsAttributes'; - /** The "backgroundColor" field on the "CorePostTerms" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CorePostTerms" block */ - className?: Maybe; - /** The "fontFamily" field on the "CorePostTerms" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CorePostTerms" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CorePostTerms" block */ - gradient?: Maybe; - /** The "lock" field on the "CorePostTerms" block */ - lock?: Maybe; - /** The "prefix" field on the "CorePostTerms" block */ - prefix?: Maybe; - /** The "separator" field on the "CorePostTerms" block */ - separator?: Maybe; - /** The "style" field on the "CorePostTerms" block */ - style?: Maybe; - /** The "suffix" field on the "CorePostTerms" block */ - suffix?: Maybe; - /** The "term" field on the "CorePostTerms" block */ - term?: Maybe; - /** The "textAlign" field on the "CorePostTerms" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CorePostTerms" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePostTitle = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePostTitle'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePostTitle Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePostTitle Block Type */ -export type CorePostTitleAttributes = { - __typename?: 'CorePostTitleAttributes'; - /** The "align" field on the "CorePostTitle" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CorePostTitle" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CorePostTitle" block */ - className?: Maybe; - /** The "fontFamily" field on the "CorePostTitle" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CorePostTitle" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CorePostTitle" block */ - gradient?: Maybe; - /** The "isLink" field on the "CorePostTitle" block */ - isLink?: Maybe; - /** The "level" field on the "CorePostTitle" block */ - level?: Maybe; - /** The "linkTarget" field on the "CorePostTitle" block */ - linkTarget?: Maybe; - /** The "lock" field on the "CorePostTitle" block */ - lock?: Maybe; - /** The "rel" field on the "CorePostTitle" block */ - rel?: Maybe; - /** The "style" field on the "CorePostTitle" block */ - style?: Maybe; - /** The "textAlign" field on the "CorePostTitle" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CorePostTitle" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePreformatted = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePreformatted'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePreformatted Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePreformatted Block Type */ -export type CorePreformattedAttributes = BlockWithSupportsAnchor & { - __typename?: 'CorePreformattedAttributes'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CorePreformatted" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CorePreformatted" block */ - className?: Maybe; - /** The "content" field on the "CorePreformatted" block */ - content?: Maybe; - /** The "fontFamily" field on the "CorePreformatted" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CorePreformatted" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CorePreformatted" block */ - gradient?: Maybe; - /** The "lock" field on the "CorePreformatted" block */ - lock?: Maybe; - /** The "style" field on the "CorePreformatted" block */ - style?: Maybe; - /** The "textColor" field on the "CorePreformatted" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CorePullquote = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CorePullquote'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CorePullquote Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CorePullquote Block Type */ -export type CorePullquoteAttributes = BlockWithSupportsAnchor & { - __typename?: 'CorePullquoteAttributes'; - /** The "align" field on the "CorePullquote" block */ - align?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CorePullquote" block */ - backgroundColor?: Maybe; - /** The "borderColor" field on the "CorePullquote" block */ - borderColor?: Maybe; - /** The "citation" field on the "CorePullquote" block */ - citation?: Maybe; - /** The "className" field on the "CorePullquote" block */ - className?: Maybe; - /** The "fontFamily" field on the "CorePullquote" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CorePullquote" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CorePullquote" block */ - gradient?: Maybe; - /** The "lock" field on the "CorePullquote" block */ - lock?: Maybe; - /** The "style" field on the "CorePullquote" block */ - style?: Maybe; - /** The "textAlign" field on the "CorePullquote" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CorePullquote" block */ - textColor?: Maybe; - /** The "value" field on the "CorePullquote" block */ - value?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreQuery = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreQuery'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreQuery Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreQuery Block Type */ -export type CoreQueryAttributes = { - __typename?: 'CoreQueryAttributes'; - /** The "align" field on the "CoreQuery" block */ - align?: Maybe; - /** The "className" field on the "CoreQuery" block */ - className?: Maybe; - /** The "displayLayout" field on the "CoreQuery" block */ - displayLayout?: Maybe; - /** The "layout" field on the "CoreQuery" block */ - layout?: Maybe; - /** The "lock" field on the "CoreQuery" block */ - lock?: Maybe; - /** The "namespace" field on the "CoreQuery" block */ - namespace?: Maybe; - /** The "query" field on the "CoreQuery" block */ - query?: Maybe; - /** The "queryId" field on the "CoreQuery" block */ - queryId?: Maybe; - /** The "tagName" field on the "CoreQuery" block */ - tagName?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreQueryNoResults = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreQueryNoResults'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreQueryNoResults Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreQueryNoResults Block Type */ -export type CoreQueryNoResultsAttributes = { - __typename?: 'CoreQueryNoResultsAttributes'; - /** The "align" field on the "CoreQueryNoResults" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CoreQueryNoResults" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreQueryNoResults" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreQueryNoResults" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreQueryNoResults" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreQueryNoResults" block */ - gradient?: Maybe; - /** The "lock" field on the "CoreQueryNoResults" block */ - lock?: Maybe; - /** The "style" field on the "CoreQueryNoResults" block */ - style?: Maybe; - /** The "textColor" field on the "CoreQueryNoResults" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreQueryPagination = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreQueryPagination'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreQueryPagination Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreQueryPagination Block Type */ -export type CoreQueryPaginationAttributes = { - __typename?: 'CoreQueryPaginationAttributes'; - /** The "align" field on the "CoreQueryPagination" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CoreQueryPagination" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreQueryPagination" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreQueryPagination" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreQueryPagination" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreQueryPagination" block */ - gradient?: Maybe; - /** The "layout" field on the "CoreQueryPagination" block */ - layout?: Maybe; - /** The "lock" field on the "CoreQueryPagination" block */ - lock?: Maybe; - /** The "paginationArrow" field on the "CoreQueryPagination" block */ - paginationArrow?: Maybe; - /** The "style" field on the "CoreQueryPagination" block */ - style?: Maybe; - /** The "textColor" field on the "CoreQueryPagination" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreQueryPaginationNext = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreQueryPaginationNext'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreQueryPaginationNext Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreQueryPaginationNext Block Type */ -export type CoreQueryPaginationNextAttributes = { - __typename?: 'CoreQueryPaginationNextAttributes'; - /** The "backgroundColor" field on the "CoreQueryPaginationNext" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreQueryPaginationNext" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreQueryPaginationNext" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreQueryPaginationNext" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreQueryPaginationNext" block */ - gradient?: Maybe; - /** The "label" field on the "CoreQueryPaginationNext" block */ - label?: Maybe; - /** The "lock" field on the "CoreQueryPaginationNext" block */ - lock?: Maybe; - /** The "style" field on the "CoreQueryPaginationNext" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreQueryPaginationNumbers = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreQueryPaginationNumbers'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreQueryPaginationNumbers Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreQueryPaginationNumbers Block Type */ -export type CoreQueryPaginationNumbersAttributes = { - __typename?: 'CoreQueryPaginationNumbersAttributes'; - /** The "backgroundColor" field on the "CoreQueryPaginationNumbers" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreQueryPaginationNumbers" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreQueryPaginationNumbers" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreQueryPaginationNumbers" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreQueryPaginationNumbers" block */ - gradient?: Maybe; - /** The "lock" field on the "CoreQueryPaginationNumbers" block */ - lock?: Maybe; - /** The "style" field on the "CoreQueryPaginationNumbers" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreQueryPaginationPrevious = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreQueryPaginationPrevious'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreQueryPaginationPrevious Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreQueryPaginationPrevious Block Type */ -export type CoreQueryPaginationPreviousAttributes = { - __typename?: 'CoreQueryPaginationPreviousAttributes'; - /** The "backgroundColor" field on the "CoreQueryPaginationPrevious" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreQueryPaginationPrevious" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreQueryPaginationPrevious" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreQueryPaginationPrevious" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreQueryPaginationPrevious" block */ - gradient?: Maybe; - /** The "label" field on the "CoreQueryPaginationPrevious" block */ - label?: Maybe; - /** The "lock" field on the "CoreQueryPaginationPrevious" block */ - lock?: Maybe; - /** The "style" field on the "CoreQueryPaginationPrevious" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreQueryTitle = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreQueryTitle'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreQueryTitle Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreQueryTitle Block Type */ -export type CoreQueryTitleAttributes = { - __typename?: 'CoreQueryTitleAttributes'; - /** The "align" field on the "CoreQueryTitle" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CoreQueryTitle" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreQueryTitle" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreQueryTitle" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreQueryTitle" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreQueryTitle" block */ - gradient?: Maybe; - /** The "level" field on the "CoreQueryTitle" block */ - level?: Maybe; - /** The "lock" field on the "CoreQueryTitle" block */ - lock?: Maybe; - /** The "showPrefix" field on the "CoreQueryTitle" block */ - showPrefix?: Maybe; - /** The "showSearchTerm" field on the "CoreQueryTitle" block */ - showSearchTerm?: Maybe; - /** The "style" field on the "CoreQueryTitle" block */ - style?: Maybe; - /** The "textAlign" field on the "CoreQueryTitle" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CoreQueryTitle" block */ - textColor?: Maybe; - /** The "type" field on the "CoreQueryTitle" block */ - type?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreQuote = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreQuote'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreQuote Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreQuote Block Type */ -export type CoreQuoteAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreQuoteAttributes'; - /** The "align" field on the "CoreQuote" block */ - align?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CoreQuote" block */ - backgroundColor?: Maybe; - /** The "citation" field on the "CoreQuote" block */ - citation?: Maybe; - /** The "className" field on the "CoreQuote" block */ - className?: Maybe; - /** The "cssClassName" field on the "CoreQuote" block */ - cssClassName?: Maybe; - /** The "fontFamily" field on the "CoreQuote" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreQuote" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreQuote" block */ - gradient?: Maybe; - /** The "lock" field on the "CoreQuote" block */ - lock?: Maybe; - /** The "style" field on the "CoreQuote" block */ - style?: Maybe; - /** The "textColor" field on the "CoreQuote" block */ - textColor?: Maybe; - /** The "value" field on the "CoreQuote" block */ - value?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreReadMore = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreReadMore'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreReadMore Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreReadMore Block Type */ -export type CoreReadMoreAttributes = { - __typename?: 'CoreReadMoreAttributes'; - /** The "backgroundColor" field on the "CoreReadMore" block */ - backgroundColor?: Maybe; - /** The "borderColor" field on the "CoreReadMore" block */ - borderColor?: Maybe; - /** The "className" field on the "CoreReadMore" block */ - className?: Maybe; - /** The "content" field on the "CoreReadMore" block */ - content?: Maybe; - /** The "fontFamily" field on the "CoreReadMore" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreReadMore" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreReadMore" block */ - gradient?: Maybe; - /** The "linkTarget" field on the "CoreReadMore" block */ - linkTarget?: Maybe; - /** The "lock" field on the "CoreReadMore" block */ - lock?: Maybe; - /** The "style" field on the "CoreReadMore" block */ - style?: Maybe; - /** The "textColor" field on the "CoreReadMore" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreRss = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreRss'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreRss Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreRss Block Type */ -export type CoreRssAttributes = { - __typename?: 'CoreRssAttributes'; - /** The "align" field on the "CoreRss" block */ - align?: Maybe; - /** The "blockLayout" field on the "CoreRss" block */ - blockLayout?: Maybe; - /** The "className" field on the "CoreRss" block */ - className?: Maybe; - /** The "columns" field on the "CoreRss" block */ - columns?: Maybe; - /** The "displayAuthor" field on the "CoreRss" block */ - displayAuthor?: Maybe; - /** The "displayDate" field on the "CoreRss" block */ - displayDate?: Maybe; - /** The "displayExcerpt" field on the "CoreRss" block */ - displayExcerpt?: Maybe; - /** The "excerptLength" field on the "CoreRss" block */ - excerptLength?: Maybe; - /** The "feedURL" field on the "CoreRss" block */ - feedURL?: Maybe; - /** The "itemsToShow" field on the "CoreRss" block */ - itemsToShow?: Maybe; - /** The "lock" field on the "CoreRss" block */ - lock?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreSearch = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreSearch'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreSearch Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreSearch Block Type */ -export type CoreSearchAttributes = { - __typename?: 'CoreSearchAttributes'; - /** The "align" field on the "CoreSearch" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CoreSearch" block */ - backgroundColor?: Maybe; - /** The "borderColor" field on the "CoreSearch" block */ - borderColor?: Maybe; - /** The "buttonPosition" field on the "CoreSearch" block */ - buttonPosition?: Maybe; - /** The "buttonText" field on the "CoreSearch" block */ - buttonText?: Maybe; - /** The "buttonUseIcon" field on the "CoreSearch" block */ - buttonUseIcon?: Maybe; - /** The "className" field on the "CoreSearch" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreSearch" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreSearch" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreSearch" block */ - gradient?: Maybe; - /** The "label" field on the "CoreSearch" block */ - label?: Maybe; - /** The "lock" field on the "CoreSearch" block */ - lock?: Maybe; - /** The "placeholder" field on the "CoreSearch" block */ - placeholder?: Maybe; - /** The "query" field on the "CoreSearch" block */ - query?: Maybe; - /** The "showLabel" field on the "CoreSearch" block */ - showLabel?: Maybe; - /** The "style" field on the "CoreSearch" block */ - style?: Maybe; - /** The "textColor" field on the "CoreSearch" block */ - textColor?: Maybe; - /** The "width" field on the "CoreSearch" block */ - width?: Maybe; - /** The "widthUnit" field on the "CoreSearch" block */ - widthUnit?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreSeparator = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreSeparator'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreSeparator Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreSeparator Block Type */ -export type CoreSeparatorAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreSeparatorAttributes'; - /** The "align" field on the "CoreSeparator" block */ - align?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CoreSeparator" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreSeparator" block */ - className?: Maybe; - /** The "cssClassName" field on the "CoreSeparator" block */ - cssClassName?: Maybe; - /** The "gradient" field on the "CoreSeparator" block */ - gradient?: Maybe; - /** The "lock" field on the "CoreSeparator" block */ - lock?: Maybe; - /** The "opacity" field on the "CoreSeparator" block */ - opacity?: Maybe; - /** The "style" field on the "CoreSeparator" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreShortcode = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreShortcode'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreShortcode Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreShortcode Block Type */ -export type CoreShortcodeAttributes = { - __typename?: 'CoreShortcodeAttributes'; - /** The "lock" field on the "CoreShortcode" block */ - lock?: Maybe; - /** The "text" field on the "CoreShortcode" block */ - text?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreSiteLogo = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreSiteLogo'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreSiteLogo Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreSiteLogo Block Type */ -export type CoreSiteLogoAttributes = { - __typename?: 'CoreSiteLogoAttributes'; - /** The "align" field on the "CoreSiteLogo" block */ - align?: Maybe; - /** The "className" field on the "CoreSiteLogo" block */ - className?: Maybe; - /** The "isLink" field on the "CoreSiteLogo" block */ - isLink?: Maybe; - /** The "linkTarget" field on the "CoreSiteLogo" block */ - linkTarget?: Maybe; - /** The "lock" field on the "CoreSiteLogo" block */ - lock?: Maybe; - /** The "shouldSyncIcon" field on the "CoreSiteLogo" block */ - shouldSyncIcon?: Maybe; - /** The "style" field on the "CoreSiteLogo" block */ - style?: Maybe; - /** The "width" field on the "CoreSiteLogo" block */ - width?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreSiteTagline = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreSiteTagline'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreSiteTagline Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreSiteTagline Block Type */ -export type CoreSiteTaglineAttributes = { - __typename?: 'CoreSiteTaglineAttributes'; - /** The "align" field on the "CoreSiteTagline" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CoreSiteTagline" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreSiteTagline" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreSiteTagline" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreSiteTagline" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreSiteTagline" block */ - gradient?: Maybe; - /** The "lock" field on the "CoreSiteTagline" block */ - lock?: Maybe; - /** The "style" field on the "CoreSiteTagline" block */ - style?: Maybe; - /** The "textAlign" field on the "CoreSiteTagline" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CoreSiteTagline" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreSiteTitle = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreSiteTitle'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreSiteTitle Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreSiteTitle Block Type */ -export type CoreSiteTitleAttributes = { - __typename?: 'CoreSiteTitleAttributes'; - /** The "align" field on the "CoreSiteTitle" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CoreSiteTitle" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreSiteTitle" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreSiteTitle" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreSiteTitle" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreSiteTitle" block */ - gradient?: Maybe; - /** The "isLink" field on the "CoreSiteTitle" block */ - isLink?: Maybe; - /** The "level" field on the "CoreSiteTitle" block */ - level?: Maybe; - /** The "linkTarget" field on the "CoreSiteTitle" block */ - linkTarget?: Maybe; - /** The "lock" field on the "CoreSiteTitle" block */ - lock?: Maybe; - /** The "style" field on the "CoreSiteTitle" block */ - style?: Maybe; - /** The "textAlign" field on the "CoreSiteTitle" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CoreSiteTitle" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreSocialLink = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreSocialLink'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreSocialLink Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreSocialLink Block Type */ -export type CoreSocialLinkAttributes = { - __typename?: 'CoreSocialLinkAttributes'; - /** The "className" field on the "CoreSocialLink" block */ - className?: Maybe; - /** The "label" field on the "CoreSocialLink" block */ - label?: Maybe; - /** The "lock" field on the "CoreSocialLink" block */ - lock?: Maybe; - /** The "rel" field on the "CoreSocialLink" block */ - rel?: Maybe; - /** The "service" field on the "CoreSocialLink" block */ - service?: Maybe; - /** The "url" field on the "CoreSocialLink" block */ - url?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreSocialLinks = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreSocialLinks'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreSocialLinks Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreSocialLinks Block Type */ -export type CoreSocialLinksAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreSocialLinksAttributes'; - /** The "align" field on the "CoreSocialLinks" block */ - align?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CoreSocialLinks" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreSocialLinks" block */ - className?: Maybe; - /** The "customIconBackgroundColor" field on the "CoreSocialLinks" block */ - customIconBackgroundColor?: Maybe; - /** The "customIconColor" field on the "CoreSocialLinks" block */ - customIconColor?: Maybe; - /** The "gradient" field on the "CoreSocialLinks" block */ - gradient?: Maybe; - /** The "iconBackgroundColor" field on the "CoreSocialLinks" block */ - iconBackgroundColor?: Maybe; - /** The "iconBackgroundColorValue" field on the "CoreSocialLinks" block */ - iconBackgroundColorValue?: Maybe; - /** The "iconColor" field on the "CoreSocialLinks" block */ - iconColor?: Maybe; - /** The "iconColorValue" field on the "CoreSocialLinks" block */ - iconColorValue?: Maybe; - /** The "layout" field on the "CoreSocialLinks" block */ - layout?: Maybe; - /** The "lock" field on the "CoreSocialLinks" block */ - lock?: Maybe; - /** The "openInNewTab" field on the "CoreSocialLinks" block */ - openInNewTab?: Maybe; - /** The "showLabels" field on the "CoreSocialLinks" block */ - showLabels?: Maybe; - /** The "size" field on the "CoreSocialLinks" block */ - size?: Maybe; - /** The "style" field on the "CoreSocialLinks" block */ - style?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreSpacer = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreSpacer'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreSpacer Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreSpacer Block Type */ -export type CoreSpacerAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreSpacerAttributes'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "className" field on the "CoreSpacer" block */ - className?: Maybe; - /** The "height" field on the "CoreSpacer" block */ - height?: Maybe; - /** The "lock" field on the "CoreSpacer" block */ - lock?: Maybe; - /** The "style" field on the "CoreSpacer" block */ - style?: Maybe; - /** The "width" field on the "CoreSpacer" block */ - width?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreTable = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreTable'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreTable Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreTable Block Type */ -export type CoreTableAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreTableAttributes'; - /** The "align" field on the "CoreTable" block */ - align?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CoreTable" block */ - backgroundColor?: Maybe; - /** The "body" field on the "CoreTable" block */ - body?: Maybe; - /** The "borderColor" field on the "CoreTable" block */ - borderColor?: Maybe; - /** The "caption" field on the "CoreTable" block */ - caption?: Maybe; - /** The "className" field on the "CoreTable" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreTable" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreTable" block */ - fontSize?: Maybe; - /** The "foot" field on the "CoreTable" block */ - foot?: Maybe; - /** The "gradient" field on the "CoreTable" block */ - gradient?: Maybe; - /** The "hasFixedLayout" field on the "CoreTable" block */ - hasFixedLayout?: Maybe; - /** The "head" field on the "CoreTable" block */ - head?: Maybe; - /** The "lock" field on the "CoreTable" block */ - lock?: Maybe; - /** The "style" field on the "CoreTable" block */ - style?: Maybe; - /** The "textColor" field on the "CoreTable" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreTagCloud = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreTagCloud'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreTagCloud Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreTagCloud Block Type */ -export type CoreTagCloudAttributes = { - __typename?: 'CoreTagCloudAttributes'; - /** The "align" field on the "CoreTagCloud" block */ - align?: Maybe; - /** The "className" field on the "CoreTagCloud" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreTagCloud" block */ - fontFamily?: Maybe; - /** The "largestFontSize" field on the "CoreTagCloud" block */ - largestFontSize?: Maybe; - /** The "lock" field on the "CoreTagCloud" block */ - lock?: Maybe; - /** The "numberOfTags" field on the "CoreTagCloud" block */ - numberOfTags?: Maybe; - /** The "showTagCounts" field on the "CoreTagCloud" block */ - showTagCounts?: Maybe; - /** The "smallestFontSize" field on the "CoreTagCloud" block */ - smallestFontSize?: Maybe; - /** The "style" field on the "CoreTagCloud" block */ - style?: Maybe; - /** The "taxonomy" field on the "CoreTagCloud" block */ - taxonomy?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreTemplatePart = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreTemplatePart'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreTemplatePart Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreTemplatePart Block Type */ -export type CoreTemplatePartAttributes = { - __typename?: 'CoreTemplatePartAttributes'; - /** The "align" field on the "CoreTemplatePart" block */ - align?: Maybe; - /** The "area" field on the "CoreTemplatePart" block */ - area?: Maybe; - /** The "className" field on the "CoreTemplatePart" block */ - className?: Maybe; - /** The "lock" field on the "CoreTemplatePart" block */ - lock?: Maybe; - /** The "slug" field on the "CoreTemplatePart" block */ - slug?: Maybe; - /** The "tagName" field on the "CoreTemplatePart" block */ - tagName?: Maybe; - /** The "theme" field on the "CoreTemplatePart" block */ - theme?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreTermDescription = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreTermDescription'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreTermDescription Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreTermDescription Block Type */ -export type CoreTermDescriptionAttributes = { - __typename?: 'CoreTermDescriptionAttributes'; - /** The "align" field on the "CoreTermDescription" block */ - align?: Maybe; - /** The "backgroundColor" field on the "CoreTermDescription" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreTermDescription" block */ - className?: Maybe; - /** The "fontFamily" field on the "CoreTermDescription" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreTermDescription" block */ - fontSize?: Maybe; - /** The "lock" field on the "CoreTermDescription" block */ - lock?: Maybe; - /** The "style" field on the "CoreTermDescription" block */ - style?: Maybe; - /** The "textAlign" field on the "CoreTermDescription" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CoreTermDescription" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreTextColumns = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreTextColumns'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreTextColumns Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreTextColumns Block Type */ -export type CoreTextColumnsAttributes = { - __typename?: 'CoreTextColumnsAttributes'; - /** The "className" field on the "CoreTextColumns" block */ - className?: Maybe; - /** The "columns" field on the "CoreTextColumns" block */ - columns?: Maybe; - /** The "content" field on the "CoreTextColumns" block */ - content?: Maybe; - /** The "lock" field on the "CoreTextColumns" block */ - lock?: Maybe; - /** The "width" field on the "CoreTextColumns" block */ - width?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreVerse = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreVerse'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreVerse Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreVerse Block Type */ -export type CoreVerseAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreVerseAttributes'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "backgroundColor" field on the "CoreVerse" block */ - backgroundColor?: Maybe; - /** The "className" field on the "CoreVerse" block */ - className?: Maybe; - /** The "content" field on the "CoreVerse" block */ - content?: Maybe; - /** The "fontFamily" field on the "CoreVerse" block */ - fontFamily?: Maybe; - /** The "fontSize" field on the "CoreVerse" block */ - fontSize?: Maybe; - /** The "gradient" field on the "CoreVerse" block */ - gradient?: Maybe; - /** The "lock" field on the "CoreVerse" block */ - lock?: Maybe; - /** The "style" field on the "CoreVerse" block */ - style?: Maybe; - /** The "textAlign" field on the "CoreVerse" block */ - textAlign?: Maybe; - /** The "textColor" field on the "CoreVerse" block */ - textColor?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreVideo = BlockWithSupportsAnchor & EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreVideo'; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreVideo Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreVideo Block Type */ -export type CoreVideoAttributes = BlockWithSupportsAnchor & { - __typename?: 'CoreVideoAttributes'; - /** The "align" field on the "CoreVideo" block */ - align?: Maybe; - /** The anchor field for the block. */ - anchor?: Maybe; - /** The "autoplay" field on the "CoreVideo" block */ - autoplay?: Maybe; - /** The "caption" field on the "CoreVideo" block */ - caption?: Maybe; - /** The "className" field on the "CoreVideo" block */ - className?: Maybe; - /** The "controls" field on the "CoreVideo" block */ - controls?: Maybe; - /** The "id" field on the "CoreVideo" block */ - id?: Maybe; - /** The "lock" field on the "CoreVideo" block */ - lock?: Maybe; - /** The "loop" field on the "CoreVideo" block */ - loop?: Maybe; - /** The "muted" field on the "CoreVideo" block */ - muted?: Maybe; - /** The "playsInline" field on the "CoreVideo" block */ - playsInline?: Maybe; - /** The "poster" field on the "CoreVideo" block */ - poster?: Maybe; - /** The "preload" field on the "CoreVideo" block */ - preload?: Maybe; - /** The "src" field on the "CoreVideo" block */ - src?: Maybe; - /** The "style" field on the "CoreVideo" block */ - style?: Maybe; - /** The "tracks" field on the "CoreVideo" block */ - tracks?: Maybe; -}; - -/** A block used for editing the site */ -export type CoreWidgetGroup = EditorBlock & PageEditorBlock & PostEditorBlock & { - __typename?: 'CoreWidgetGroup'; - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** Attributes of the CoreWidgetGroup Block Type */ - attributes?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Attributes of the CoreWidgetGroup Block Type */ -export type CoreWidgetGroupAttributes = { - __typename?: 'CoreWidgetGroupAttributes'; - /** The "className" field on the "CoreWidgetGroup" block */ - className?: Maybe; - /** The "lock" field on the "CoreWidgetGroup" block */ - lock?: Maybe; - /** The "title" field on the "CoreWidgetGroup" block */ - title?: Maybe; -}; - /** Input for the createCategory mutation. */ export type CreateCategoryInput = { /** The slug that the category will be an alias of */ @@ -6365,7 +1577,9 @@ export type CreateCategoryInput = { description?: InputMaybe; /** The name of the category object to mutate */ name: Scalars['String']['input']; - /** The ID of the category that should be set as the parent */ + /** The database ID of the category that should be set as the parent. This field cannot be used in conjunction with parentId */ + parentDatabaseId?: InputMaybe; + /** The ID of the category that should be set as the parent. This field cannot be used in conjunction with parentDatabaseId */ parentId?: InputMaybe; /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ slug?: InputMaybe; @@ -6382,8 +1596,6 @@ export type CreateCategoryPayload = { /** Input for the createComment mutation. */ export type CreateCommentInput = { - /** The approval status of the comment. */ - approved?: InputMaybe; /** The name of the comment's author. */ author?: InputMaybe; /** The email of the comment's author. */ @@ -6417,6 +1629,68 @@ export type CreateCommentPayload = { success?: Maybe; }; +/** Input for the createGraphqlDocumentGroup mutation. */ +export type CreateGraphqlDocumentGroupInput = { + /** The slug that the graphql_document_group will be an alias of */ + aliasOf?: InputMaybe; + /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: InputMaybe; + /** The description of the graphql_document_group object */ + description?: InputMaybe; + /** The name of the graphql_document_group object to mutate */ + name: Scalars['String']['input']; + /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ + slug?: InputMaybe; +}; + +/** The payload for the createGraphqlDocumentGroup mutation. */ +export type CreateGraphqlDocumentGroupPayload = { + __typename?: 'CreateGraphqlDocumentGroupPayload'; + /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: Maybe; + /** The created graphql_document_group */ + graphqlDocumentGroup?: Maybe; +}; + +/** Input for the createGraphqlDocument mutation. */ +export type CreateGraphqlDocumentInput = { + /** Alias names for saved GraphQL query documents */ + alias?: InputMaybe>; + /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: InputMaybe; + /** The content of the object */ + content?: InputMaybe; + /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ + date?: InputMaybe; + /** Description for the saved GraphQL document */ + description?: InputMaybe; + /** Allow, deny or default access grant for specific query */ + grant?: InputMaybe; + /** Set connections between the graphqlDocument and graphqlDocumentGroups */ + graphqlDocumentGroups?: InputMaybe; + /** HTTP Cache-Control max-age directive for a saved GraphQL document */ + maxAgeHeader?: InputMaybe; + /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ + menuOrder?: InputMaybe; + /** The password used to protect the content of the object */ + password?: InputMaybe; + /** The slug of the object */ + slug?: InputMaybe; + /** The status of the object */ + status?: InputMaybe; + /** The title of the object */ + title?: InputMaybe; +}; + +/** The payload for the createGraphqlDocument mutation. */ +export type CreateGraphqlDocumentPayload = { + __typename?: 'CreateGraphqlDocumentPayload'; + /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: Maybe; + /** The Post object mutation type. */ + graphqlDocument?: Maybe; +}; + /** Input for the createMediaItem mutation. */ export type CreateMediaItemInput = { /** Alternative text to display when mediaItem is not displayed */ @@ -6565,40 +1839,6 @@ export type CreatePostPayload = { post?: Maybe; }; -/** Input for the createProject mutation. */ -export type CreateProjectInput = { - /** The userId to assign as the author of the object */ - authorId?: InputMaybe; - /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; - /** Project Content Area */ - contentArea?: InputMaybe; - /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; - /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; - /** The password used to protect the content of the object */ - password?: InputMaybe; - /** Project Title */ - projectTitle: Scalars['String']['input']; - /** The slug of the object */ - slug?: InputMaybe; - /** The status of the object */ - status?: InputMaybe; - summary?: InputMaybe; - /** The title of the object */ - title?: InputMaybe; -}; - -/** The payload for the createProject mutation. */ -export type CreateProjectPayload = { - __typename?: 'CreateProjectPayload'; - /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; - /** The Post object mutation type. */ - project?: Maybe; -}; - /** Input for the createTag mutation. */ export type CreateTagInput = { /** The slug that the post_tag will be an alias of */ @@ -6622,37 +1862,6 @@ export type CreateTagPayload = { tag?: Maybe; }; -/** Input for the createTestimonial mutation. */ -export type CreateTestimonialInput = { - /** The userId to assign as the author of the object */ - authorId?: InputMaybe; - /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; - /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; - /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; - /** The password used to protect the content of the object */ - password?: InputMaybe; - /** The slug of the object */ - slug?: InputMaybe; - /** The status of the object */ - status?: InputMaybe; - testimonialAuthor?: InputMaybe; - testimonialContent?: InputMaybe; - /** The title of the object */ - title?: InputMaybe; -}; - -/** The payload for the createTestimonial mutation. */ -export type CreateTestimonialPayload = { - __typename?: 'CreateTestimonialPayload'; - /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; - /** The Post object mutation type. */ - testimonial?: Maybe; -}; - /** Input for the createUser mutation. */ export type CreateUserInput = { /** User's AOL IM account. */ @@ -6665,7 +1874,7 @@ export type CreateUserInput = { displayName?: InputMaybe; /** A string containing the user's email address. */ email?: InputMaybe; - /** The user's first name. */ + /** The user's first name. */ firstName?: InputMaybe; /** User's Jabber account. */ jabber?: InputMaybe; @@ -6702,7 +1911,7 @@ export type CreateUserPayload = { user?: Maybe; }; -/** Object that can be identified with a Database ID */ +/** An object that has a unique numeric identifier in the database. Provides consistent access to the database ID across different object types. */ export type DatabaseIdentifier = { /** The unique identifier stored in the database */ databaseId: Scalars['Int']['output']; @@ -6795,6 +2004,48 @@ export type DeleteCommentPayload = { deletedId?: Maybe; }; +/** Input for the deleteGraphqlDocumentGroup mutation. */ +export type DeleteGraphqlDocumentGroupInput = { + /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: InputMaybe; + /** The ID of the graphqlDocumentGroup to delete */ + id: Scalars['ID']['input']; +}; + +/** The payload for the deleteGraphqlDocumentGroup mutation. */ +export type DeleteGraphqlDocumentGroupPayload = { + __typename?: 'DeleteGraphqlDocumentGroupPayload'; + /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: Maybe; + /** The ID of the deleted object */ + deletedId?: Maybe; + /** The deleted term object */ + graphqlDocumentGroup?: Maybe; +}; + +/** Input for the deleteGraphqlDocument mutation. */ +export type DeleteGraphqlDocumentInput = { + /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: InputMaybe; + /** Whether the object should be force deleted instead of being moved to the trash */ + forceDelete?: InputMaybe; + /** The ID of the graphqlDocument to delete */ + id: Scalars['ID']['input']; + /** Override the edit lock when another user is editing the post */ + ignoreEditLock?: InputMaybe; +}; + +/** The payload for the deleteGraphqlDocument mutation. */ +export type DeleteGraphqlDocumentPayload = { + __typename?: 'DeleteGraphqlDocumentPayload'; + /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: Maybe; + /** The ID of the deleted object */ + deletedId?: Maybe; + /** The object before it was deleted */ + graphqlDocument?: Maybe; +}; + /** Input for the deleteMediaItem mutation. */ export type DeleteMediaItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ @@ -6881,29 +2132,6 @@ export type DeletePostPayload = { post?: Maybe; }; -/** Input for the deleteProject mutation. */ -export type DeleteProjectInput = { - /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; - /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; - /** The ID of the project to delete */ - id: Scalars['ID']['input']; - /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; - -/** The payload for the deleteProject mutation. */ -export type DeleteProjectPayload = { - __typename?: 'DeleteProjectPayload'; - /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; - /** The ID of the deleted object */ - deletedId?: Maybe; - /** The object before it was deleted */ - project?: Maybe; -}; - /** Input for the deleteTag mutation. */ export type DeleteTagInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ @@ -6923,29 +2151,6 @@ export type DeleteTagPayload = { tag?: Maybe; }; -/** Input for the deleteTestimonial mutation. */ -export type DeleteTestimonialInput = { - /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; - /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; - /** The ID of the testimonial to delete */ - id: Scalars['ID']['input']; - /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; - -/** The payload for the deleteTestimonial mutation. */ -export type DeleteTestimonialPayload = { - __typename?: 'DeleteTestimonialPayload'; - /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; - /** The ID of the deleted object */ - deletedId?: Maybe; - /** The object before it was deleted */ - testimonial?: Maybe; -}; - /** Input for the deleteUser mutation. */ export type DeleteUserInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ @@ -6976,7 +2181,7 @@ export type DiscussionSettings = { defaultPingStatus?: Maybe; }; -/** Relational context between connected nodes */ +/** Represents a connection between two objects. Contains both the related object (node) and metadata about the relationship (cursor). */ export type Edge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -6984,29 +2189,7 @@ export type Edge = { node: Node; }; -/** Blocks that can be edited to create content and layouts */ -export type EditorBlock = { - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the Block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** Asset enqueued by the CMS */ +/** A script or stylesheet resource that should be loaded by the client. Contains information about the resource's location, dependencies, and loading behavior. */ export type EnqueuedAsset = { /** The inline code to be run after the asset is loaded. */ after?: Maybe>>; @@ -7026,6 +2209,8 @@ export type EnqueuedAsset = { * @deprecated Use `EnqueuedScript.extraData` instead. */ extra?: Maybe; + /** The loading group to which this asset belongs. */ + group?: Maybe; /** The handle of the enqueued asset */ handle?: Maybe; /** The ID of the enqueued asset */ @@ -7059,6 +2244,10 @@ export type EnqueuedScript = EnqueuedAsset & Node & { extra?: Maybe; /** Extra data supplied to the enqueued script */ extraData?: Maybe; + /** The loading group to which this asset belongs. */ + group?: Maybe; + /** The location where this script should be loaded */ + groupLocation?: Maybe; /** The handle of the enqueued asset */ handle?: Maybe; /** The global ID of the enqueued script */ @@ -7071,7 +2260,7 @@ export type EnqueuedScript = EnqueuedAsset & Node & { version?: Maybe; }; -/** Connection to EnqueuedScript Nodes */ +/** A paginated collection of EnqueuedScript Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of EnqueuedScript Nodes */ export type EnqueuedScriptConnection = { /** A list of edges (relational context) between ContentNode and connected EnqueuedScript Nodes */ edges: Array; @@ -7081,89 +2270,837 @@ export type EnqueuedScriptConnection = { pageInfo: EnqueuedScriptConnectionPageInfo; }; -/** Edge between a Node and a connected EnqueuedScript */ -export type EnqueuedScriptConnectionEdge = { +/** Represents a connection to a EnqueuedScript. Contains both the EnqueuedScript Node and metadata about the relationship. */ +export type EnqueuedScriptConnectionEdge = { + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe; + /** The connected EnqueuedScript Node */ + node: EnqueuedScript; +}; + +/** Pagination metadata specific to "EnqueuedScriptConnectionEdge" collections. Provides cursors and flags for navigating through sets of "EnqueuedScriptConnectionEdge" Nodes. */ +export type EnqueuedScriptConnectionPageInfo = { + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe; + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output']; + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output']; + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe; +}; + +/** Stylesheet enqueued by the CMS */ +export type EnqueuedStylesheet = EnqueuedAsset & Node & { + __typename?: 'EnqueuedStylesheet'; + /** The inline code to be run after the asset is loaded. */ + after?: Maybe>>; + /** + * Deprecated + * @deprecated Use `EnqueuedAsset.media` instead. + */ + args?: Maybe; + /** The inline code to be run before the asset is loaded. */ + before?: Maybe>>; + /** The HTML conditional comment for the enqueued asset. E.g. IE 6, lte IE 7, etc */ + conditional?: Maybe; + /** Dependencies needed to use this asset */ + dependencies?: Maybe>>; + /** + * Extra information needed for the script + * @deprecated Use `EnqueuedScript.extraData` instead. + */ + extra?: Maybe; + /** The loading group to which this asset belongs. */ + group?: Maybe; + /** The handle of the enqueued asset */ + handle?: Maybe; + /** The global ID of the enqueued stylesheet */ + id: Scalars['ID']['output']; + /** Whether the enqueued style is RTL or not */ + isRtl?: Maybe; + /** The media attribute to use for the link */ + media?: Maybe; + /** The absolute path to the enqueued style. Set when the stylesheet is meant to load inline. */ + path?: Maybe; + /** The `rel` attribute to use for the link */ + rel?: Maybe; + /** The source of the asset */ + src?: Maybe; + /** Optional suffix, used in combination with RTL */ + suffix?: Maybe; + /** The title of the enqueued style. Used for preferred/alternate stylesheets. */ + title?: Maybe; + /** The version of the enqueued style */ + version?: Maybe; +}; + +/** A paginated collection of EnqueuedStylesheet Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of EnqueuedStylesheet Nodes */ +export type EnqueuedStylesheetConnection = { + /** A list of edges (relational context) between ContentNode and connected EnqueuedStylesheet Nodes */ + edges: Array; + /** A list of connected EnqueuedStylesheet Nodes */ + nodes: Array; + /** Information about pagination in a connection. */ + pageInfo: EnqueuedStylesheetConnectionPageInfo; +}; + +/** Represents a connection to a EnqueuedStylesheet. Contains both the EnqueuedStylesheet Node and metadata about the relationship. */ +export type EnqueuedStylesheetConnectionEdge = { + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe; + /** The connected EnqueuedStylesheet Node */ + node: EnqueuedStylesheet; +}; + +/** Pagination metadata specific to "EnqueuedStylesheetConnectionEdge" collections. Provides cursors and flags for navigating through sets of "EnqueuedStylesheetConnectionEdge" Nodes. */ +export type EnqueuedStylesheetConnectionPageInfo = { + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe; + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output']; + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output']; + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe; +}; + +/** The general setting type */ +export type GeneralSettings = { + __typename?: 'GeneralSettings'; + /** A date format for all date strings. */ + dateFormat?: Maybe; + /** Site tagline. */ + description?: Maybe; + /** This address is used for admin purposes, like new user notification. */ + email?: Maybe; + /** WordPress locale code. */ + language?: Maybe; + /** A day number of the week that the week should start on. */ + startOfWeek?: Maybe; + /** A time format for all time strings. */ + timeFormat?: Maybe; + /** A city in the same timezone as you. */ + timezone?: Maybe; + /** Site title. */ + title?: Maybe; + /** Site URL. */ + url?: Maybe; +}; + +/** Input for the generateAuthorizationCode mutation. */ +export type GenerateAuthorizationCodeInput = { + /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: InputMaybe; + /** Email for WordPress user */ + email?: InputMaybe; + /** Password for WordPress user */ + password?: InputMaybe; + /** Username for WordPress user */ + username?: InputMaybe; +}; + +/** The payload for the generateAuthorizationCode mutation. */ +export type GenerateAuthorizationCodePayload = { + __typename?: 'GenerateAuthorizationCodePayload'; + /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: Maybe; + /** Authorization code used for requesting refresh/access tokens */ + code?: Maybe; + /** Error encountered during user authentication, if any */ + error?: Maybe; +}; + +/** Types of styles to load */ +export enum GlobalStylesheetTypesEnum { + BaseLayoutStyles = 'BASE_LAYOUT_STYLES', + Presets = 'PRESETS', + Styles = 'STYLES', + Variables = 'VARIABLES' +} + +/** Saved GraphQL Documents */ +export type GraphqlDocument = ContentNode & DatabaseIdentifier & Node & NodeWithContentEditor & NodeWithTemplate & NodeWithTitle & UniformResourceIdentifiable & { + __typename?: 'GraphqlDocument'; + /** Alias names for saved GraphQL query documents */ + alias?: Maybe>; + /** + * The ancestors of the content node. + * @deprecated This content type is not hierarchical and typically will not have ancestors + */ + ancestors?: Maybe; + /** @deprecated Deprecated in favor of using Next.js pages */ + conditionalTags?: Maybe; + /** The content of the post. */ + content?: Maybe; + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe; + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output']; + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output']; + /** Post publishing date. */ + date?: Maybe; + /** The publishing date set in GMT. */ + dateGmt?: Maybe; + /** Description for the saved GraphQL document */ + description?: Maybe; + /** The desired slug of the post */ + desiredSlug?: Maybe; + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe; + /** The RSS enclosure for the object */ + enclosure?: Maybe; + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe; + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe; + /** Allow, deny or default access grant for specific query */ + grant?: Maybe; + /** Connection between the GraphqlDocument type and the graphqlDocumentGroup type */ + graphqlDocumentGroups?: Maybe; + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + graphqlDocumentId: Scalars['Int']['output']; + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe; + /** Whether the graphql_document object is password protected. */ + hasPassword?: Maybe; + /** The globally unique identifier of the graphql_document object. */ + id: Scalars['ID']['output']; + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output']; + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output']; + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output']; + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output']; + /** Whether the object is a node in the preview state */ + isPreview?: Maybe; + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe; + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output']; + /** The user that most recently edited the node */ + lastEditedBy?: Maybe; + /** The permalink of the post */ + link?: Maybe; + /** HTTP Cache-Control max-age directive for a saved GraphQL document */ + maxAgeHeader?: Maybe; + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe; + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe; + /** + * The parent of the content node. + * @deprecated This content type is not hierarchical and typically will not have a parent + */ + parent?: Maybe; + /** The password for the graphql_document object. */ + password?: Maybe; + /** + * Connection between the GraphqlDocument type and the graphqlDocument type + * @deprecated The "GraphqlDocument" Type is not publicly queryable and does not support previews. This field will be removed in the future. + */ + preview?: Maybe; + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe; + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe; + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe; + /** The current status of the object */ + status?: Maybe; + /** The template assigned to the node */ + template?: Maybe; + templates?: Maybe>>; + /** Connection between the GraphqlDocument type and the TermNode type */ + terms?: Maybe; + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe; + /** The unique resource identifier path */ + uri?: Maybe; +}; + + +/** Saved GraphQL Documents */ +export type GraphqlDocumentAncestorsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Saved GraphQL Documents */ +export type GraphqlDocumentContentArgs = { + format?: InputMaybe; +}; + + +/** Saved GraphQL Documents */ +export type GraphqlDocumentEnqueuedScriptsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Saved GraphQL Documents */ +export type GraphqlDocumentEnqueuedStylesheetsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Saved GraphQL Documents */ +export type GraphqlDocumentGraphqlDocumentGroupsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + where?: InputMaybe; +}; + + +/** Saved GraphQL Documents */ +export type GraphqlDocumentTermsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + where?: InputMaybe; +}; + + +/** Saved GraphQL Documents */ +export type GraphqlDocumentTitleArgs = { + format?: InputMaybe; +}; + +/** A paginated collection of graphqlDocument Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of graphqlDocument Nodes */ +export type GraphqlDocumentConnection = { + /** A list of edges (relational context) between RootQuery and connected graphqlDocument Nodes */ + edges: Array; + /** A list of connected graphqlDocument Nodes */ + nodes: Array; + /** Information about pagination in a connection. */ + pageInfo: GraphqlDocumentConnectionPageInfo; +}; + +/** Represents a connection to a graphqlDocument. Contains both the graphqlDocument Node and metadata about the relationship. */ +export type GraphqlDocumentConnectionEdge = { + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe; + /** The connected graphqlDocument Node */ + node: GraphqlDocument; +}; + +/** Pagination metadata specific to "GraphqlDocumentConnectionEdge" collections. Provides cursors and flags for navigating through sets of "GraphqlDocumentConnectionEdge" Nodes. */ +export type GraphqlDocumentConnectionPageInfo = { + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe; + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output']; + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output']; + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe; +}; + +/** Set relationships between the graphqlDocument to graphqlDocumentGroups */ +export type GraphqlDocumentGraphqlDocumentGroupsInput = { + /** If true, this will append the graphqlDocumentGroup to existing related graphqlDocumentGroups. If false, this will replace existing relationships. Default true. */ + append?: InputMaybe; + /** The input list of items to set. */ + nodes?: InputMaybe>>; +}; + +/** List of graphqlDocumentGroups to connect the graphqlDocument to. If an ID is set, it will be used to create the connection. If not, it will look for a slug. If neither are valid existing terms, and the site is configured to allow terms to be created during post mutations, a term will be created using the Name if it exists in the input, then fallback to the slug if it exists. */ +export type GraphqlDocumentGraphqlDocumentGroupsNodeInput = { + /** The description of the graphqlDocumentGroup. This field is used to set a description of the graphqlDocumentGroup if a new one is created during the mutation. */ + description?: InputMaybe; + /** The ID of the graphqlDocumentGroup. If present, this will be used to connect to the graphqlDocument. If no existing graphqlDocumentGroup exists with this ID, no connection will be made. */ + id?: InputMaybe; + /** The name of the graphqlDocumentGroup. This field is used to create a new term, if term creation is enabled in nested mutations, and if one does not already exist with the provided slug or ID or if a slug or ID is not provided. If no name is included and a term is created, the creation will fallback to the slug field. */ + name?: InputMaybe; + /** The slug of the graphqlDocumentGroup. If no ID is present, this field will be used to make a connection. If no existing term exists with this slug, this field will be used as a fallback to the Name field when creating a new term to connect to, if term creation is enabled as a nested mutation. */ + slug?: InputMaybe; +}; + +/** Tag the saved query document with other queries as a "group". */ +export type GraphqlDocumentGroup = DatabaseIdentifier & Node & TermNode & UniformResourceIdentifiable & { + __typename?: 'GraphqlDocumentGroup'; + /** @deprecated Deprecated in favor of using Next.js pages */ + conditionalTags?: Maybe; + /** Connection between the GraphqlDocumentGroup type and the ContentNode type */ + contentNodes?: Maybe; + /** The number of objects connected to the object */ + count?: Maybe; + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output']; + /** The description of the object */ + description?: Maybe; + /** Connection between the TermNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe; + /** Connection between the TermNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe; + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of databaseId + */ + graphqlDocumentGroupId?: Maybe; + /** Connection between the GraphqlDocumentGroup type and the graphqlDocument type */ + graphqlDocuments?: Maybe; + /** The globally unique ID for the object */ + id: Scalars['ID']['output']; + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output']; + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output']; + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output']; + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output']; + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe; + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output']; + /** The link to the term */ + link?: Maybe; + /** The human friendly name of the object. */ + name?: Maybe; + /** An alphanumeric identifier for the object unique to its type. */ + slug?: Maybe; + /** Connection between the GraphqlDocumentGroup type and the Taxonomy type */ + taxonomy?: Maybe; + /** The name of the taxonomy that the object is associated with */ + taxonomyName?: Maybe; + templates?: Maybe>>; + /** The ID of the term group that this term object belongs to */ + termGroupId?: Maybe; + /** The taxonomy ID that the object is associated with */ + termTaxonomyId?: Maybe; + /** The unique resource identifier path */ + uri?: Maybe; +}; + + +/** Tag the saved query document with other queries as a "group". */ +export type GraphqlDocumentGroupContentNodesArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + where?: InputMaybe; +}; + + +/** Tag the saved query document with other queries as a "group". */ +export type GraphqlDocumentGroupEnqueuedScriptsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Tag the saved query document with other queries as a "group". */ +export type GraphqlDocumentGroupEnqueuedStylesheetsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** Tag the saved query document with other queries as a "group". */ +export type GraphqlDocumentGroupGraphqlDocumentsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + where?: InputMaybe; +}; + +/** A paginated collection of graphqlDocumentGroup Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of graphqlDocumentGroup Nodes */ +export type GraphqlDocumentGroupConnection = { + /** A list of edges (relational context) between RootQuery and connected graphqlDocumentGroup Nodes */ + edges: Array; + /** A list of connected graphqlDocumentGroup Nodes */ + nodes: Array; + /** Information about pagination in a connection. */ + pageInfo: GraphqlDocumentGroupConnectionPageInfo; +}; + +/** Represents a connection to a graphqlDocumentGroup. Contains both the graphqlDocumentGroup Node and metadata about the relationship. */ +export type GraphqlDocumentGroupConnectionEdge = { + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe; + /** The connected graphqlDocumentGroup Node */ + node: GraphqlDocumentGroup; +}; + +/** Pagination metadata specific to "GraphqlDocumentGroupConnectionEdge" collections. Provides cursors and flags for navigating through sets of "GraphqlDocumentGroupConnectionEdge" Nodes. */ +export type GraphqlDocumentGroupConnectionPageInfo = { + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe; + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output']; + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output']; + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe; +}; + +/** Identifier types for retrieving a specific GraphqlDocumentGroup. Determines which unique property (global ID, database ID, slug, etc.) is used to locate the GraphqlDocumentGroup. */ +export enum GraphqlDocumentGroupIdType { + /** The Database ID for the node */ + DatabaseId = 'DATABASE_ID', + /** The hashed Global ID */ + Id = 'ID', + /** The name of the node */ + Name = 'NAME', + /** Url friendly name of the node */ + Slug = 'SLUG', + /** The URI for the node */ + Uri = 'URI' +} + +/** Connection between the GraphqlDocumentGroup type and the ContentNode type */ +export type GraphqlDocumentGroupToContentNodeConnection = Connection & ContentNodeConnection & { + __typename?: 'GraphqlDocumentGroupToContentNodeConnection'; + /** Edges for the GraphqlDocumentGroupToContentNodeConnection connection */ + edges: Array; + /** The nodes of the connection, without the edges */ + nodes: Array; + /** Information about pagination in a connection. */ + pageInfo: GraphqlDocumentGroupToContentNodeConnectionPageInfo; +}; + +/** An edge in a connection */ +export type GraphqlDocumentGroupToContentNodeConnectionEdge = ContentNodeConnectionEdge & Edge & { + __typename?: 'GraphqlDocumentGroupToContentNodeConnectionEdge'; + /** A cursor for use in pagination */ + cursor?: Maybe; + /** The item at the end of the edge */ + node: ContentNode; +}; + +/** Pagination metadata specific to "GraphqlDocumentGroupToContentNodeConnection" collections. Provides cursors and flags for navigating through sets of GraphqlDocumentGroupToContentNodeConnection Nodes. */ +export type GraphqlDocumentGroupToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { + __typename?: 'GraphqlDocumentGroupToContentNodeConnectionPageInfo'; + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe; + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output']; + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output']; + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe; +}; + +/** Arguments for filtering the GraphqlDocumentGroupToContentNodeConnection connection */ +export type GraphqlDocumentGroupToContentNodeConnectionWhereArgs = { + /** The Types of content to filter */ + contentTypes?: InputMaybe>>; + /** Filter the connection based on dates */ + dateQuery?: InputMaybe; + /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ + hasPassword?: InputMaybe; + /** Specific database ID of the object */ + id?: InputMaybe; + /** Array of IDs for the objects to retrieve */ + in?: InputMaybe>>; + /** Get objects with a specific mimeType property */ + mimeType?: InputMaybe; + /** Slug / post_name of the object */ + name?: InputMaybe; + /** Specify objects to retrieve. Use slugs */ + nameIn?: InputMaybe>>; + /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ + notIn?: InputMaybe>>; + /** What parameter to use to order the objects by. */ + orderby?: InputMaybe>>; + /** Use ID to return only children. Use 0 to return only top-level items */ + parent?: InputMaybe; + /** Specify objects whose parent is in an array */ + parentIn?: InputMaybe>>; + /** Specify posts whose parent is not in an array */ + parentNotIn?: InputMaybe>>; + /** Show posts with a specific password. */ + password?: InputMaybe; + /** Show Posts based on a keyword search */ + search?: InputMaybe; + /** Retrieve posts where post status is in an array. */ + stati?: InputMaybe>>; + /** Show posts with a specific status. */ + status?: InputMaybe; + /** Title of the object */ + title?: InputMaybe; +}; + +/** Connection between the GraphqlDocumentGroup type and the graphqlDocument type */ +export type GraphqlDocumentGroupToGraphqlDocumentConnection = Connection & GraphqlDocumentConnection & { + __typename?: 'GraphqlDocumentGroupToGraphqlDocumentConnection'; + /** Edges for the GraphqlDocumentGroupToGraphqlDocumentConnection connection */ + edges: Array; + /** The nodes of the connection, without the edges */ + nodes: Array; + /** Information about pagination in a connection. */ + pageInfo: GraphqlDocumentGroupToGraphqlDocumentConnectionPageInfo; +}; + +/** An edge in a connection */ +export type GraphqlDocumentGroupToGraphqlDocumentConnectionEdge = Edge & GraphqlDocumentConnectionEdge & { + __typename?: 'GraphqlDocumentGroupToGraphqlDocumentConnectionEdge'; + /** A cursor for use in pagination */ + cursor?: Maybe; + /** The item at the end of the edge */ + node: GraphqlDocument; +}; + +/** Pagination metadata specific to "GraphqlDocumentGroupToGraphqlDocumentConnection" collections. Provides cursors and flags for navigating through sets of GraphqlDocumentGroupToGraphqlDocumentConnection Nodes. */ +export type GraphqlDocumentGroupToGraphqlDocumentConnectionPageInfo = GraphqlDocumentConnectionPageInfo & PageInfo & WpPageInfo & { + __typename?: 'GraphqlDocumentGroupToGraphqlDocumentConnectionPageInfo'; + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe; + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output']; + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output']; + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe; +}; + +/** Arguments for filtering the GraphqlDocumentGroupToGraphqlDocumentConnection connection */ +export type GraphqlDocumentGroupToGraphqlDocumentConnectionWhereArgs = { + /** Filter the connection based on dates */ + dateQuery?: InputMaybe; + /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ + hasPassword?: InputMaybe; + /** Specific database ID of the object */ + id?: InputMaybe; + /** Array of IDs for the objects to retrieve */ + in?: InputMaybe>>; + /** Get objects with a specific mimeType property */ + mimeType?: InputMaybe; + /** Slug / post_name of the object */ + name?: InputMaybe; + /** Specify objects to retrieve. Use slugs */ + nameIn?: InputMaybe>>; + /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ + notIn?: InputMaybe>>; + /** What parameter to use to order the objects by. */ + orderby?: InputMaybe>>; + /** Use ID to return only children. Use 0 to return only top-level items */ + parent?: InputMaybe; + /** Specify objects whose parent is in an array */ + parentIn?: InputMaybe>>; + /** Specify posts whose parent is not in an array */ + parentNotIn?: InputMaybe>>; + /** Show posts with a specific password. */ + password?: InputMaybe; + /** Show Posts based on a keyword search */ + search?: InputMaybe; + /** Retrieve posts where post status is in an array. */ + stati?: InputMaybe>>; + /** Show posts with a specific status. */ + status?: InputMaybe; + /** Title of the object */ + title?: InputMaybe; +}; + +/** Connection between the GraphqlDocumentGroup type and the Taxonomy type */ +export type GraphqlDocumentGroupToTaxonomyConnectionEdge = Edge & OneToOneConnection & TaxonomyConnectionEdge & { + __typename?: 'GraphqlDocumentGroupToTaxonomyConnectionEdge'; + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe; + /** The node of the connection, without the edges */ + node: Taxonomy; +}; + +/** Identifier types for retrieving a specific GraphqlDocument. Specifies which unique attribute is used to find an exact GraphqlDocument. */ +export enum GraphqlDocumentIdType { + /** Identify a resource by the Database ID. */ + DatabaseId = 'DATABASE_ID', + /** Identify a resource by the (hashed) Global ID. */ + Id = 'ID', + /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ + Slug = 'SLUG', + /** Identify a resource by the URI. */ + Uri = 'URI' +} + +/** Connection between the GraphqlDocument type and the graphqlDocument type */ +export type GraphqlDocumentToGraphqlDocumentConnection = Connection & GraphqlDocumentConnection & { + __typename?: 'GraphqlDocumentToGraphqlDocumentConnection'; + /** Edges for the GraphqlDocumentToGraphqlDocumentConnection connection */ + edges: Array; + /** The nodes of the connection, without the edges */ + nodes: Array; + /** Information about pagination in a connection. */ + pageInfo: GraphqlDocumentToGraphqlDocumentConnectionPageInfo; +}; + +/** An edge in a connection */ +export type GraphqlDocumentToGraphqlDocumentConnectionEdge = Edge & GraphqlDocumentConnectionEdge & { + __typename?: 'GraphqlDocumentToGraphqlDocumentConnectionEdge'; + /** + * A cursor for use in pagination + * @deprecated This content type is not hierarchical and typically will not have ancestors + */ + cursor?: Maybe; + /** + * The item at the end of the edge + * @deprecated This content type is not hierarchical and typically will not have ancestors + */ + node: GraphqlDocument; +}; + +/** Pagination metadata specific to "GraphqlDocumentToGraphqlDocumentConnection" collections. Provides cursors and flags for navigating through sets of GraphqlDocumentToGraphqlDocumentConnection Nodes. */ +export type GraphqlDocumentToGraphqlDocumentConnectionPageInfo = GraphqlDocumentConnectionPageInfo & PageInfo & WpPageInfo & { + __typename?: 'GraphqlDocumentToGraphqlDocumentConnectionPageInfo'; + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe; + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output']; + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output']; + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe; +}; + +/** Connection between the GraphqlDocument type and the graphqlDocumentGroup type */ +export type GraphqlDocumentToGraphqlDocumentGroupConnection = Connection & GraphqlDocumentGroupConnection & { + __typename?: 'GraphqlDocumentToGraphqlDocumentGroupConnection'; + /** Edges for the GraphqlDocumentToGraphqlDocumentGroupConnection connection */ + edges: Array; + /** The nodes of the connection, without the edges */ + nodes: Array; + /** Information about pagination in a connection. */ + pageInfo: GraphqlDocumentToGraphqlDocumentGroupConnectionPageInfo; +}; + +/** An edge in a connection */ +export type GraphqlDocumentToGraphqlDocumentGroupConnectionEdge = Edge & GraphqlDocumentGroupConnectionEdge & { + __typename?: 'GraphqlDocumentToGraphqlDocumentGroupConnectionEdge'; + /** A cursor for use in pagination */ + cursor?: Maybe; + /** The item at the end of the edge */ + node: GraphqlDocumentGroup; +}; + +/** Pagination metadata specific to "GraphqlDocumentToGraphqlDocumentGroupConnection" collections. Provides cursors and flags for navigating through sets of GraphqlDocumentToGraphqlDocumentGroupConnection Nodes. */ +export type GraphqlDocumentToGraphqlDocumentGroupConnectionPageInfo = GraphqlDocumentGroupConnectionPageInfo & PageInfo & WpPageInfo & { + __typename?: 'GraphqlDocumentToGraphqlDocumentGroupConnectionPageInfo'; + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe; + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output']; + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output']; + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe; +}; + +/** Arguments for filtering the GraphqlDocumentToGraphqlDocumentGroupConnection connection */ +export type GraphqlDocumentToGraphqlDocumentGroupConnectionWhereArgs = { + /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ + cacheDomain?: InputMaybe; + /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ + childOf?: InputMaybe; + /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ + childless?: InputMaybe; + /** Retrieve terms where the description is LIKE the input value. Default empty. */ + descriptionLike?: InputMaybe; + /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ + exclude?: InputMaybe>>; + /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ + excludeTree?: InputMaybe>>; + /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ + hideEmpty?: InputMaybe; + /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ + hierarchical?: InputMaybe; + /** Array of term ids to include. Default empty array. */ + include?: InputMaybe>>; + /** Array of names to return term(s) for. Default empty. */ + name?: InputMaybe>>; + /** Retrieve terms where the name is LIKE the input value. Default empty. */ + nameLike?: InputMaybe; + /** Array of object IDs. Results will be limited to terms associated with these objects. */ + objectIds?: InputMaybe>>; + /** Direction the connection should be ordered in */ + order?: InputMaybe; + /** Field(s) to order terms by. Defaults to 'name'. */ + orderby?: InputMaybe; + /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ + padCounts?: InputMaybe; + /** Parent term ID to retrieve direct-child terms of. Default empty. */ + parent?: InputMaybe; + /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ + search?: InputMaybe; + /** Array of slugs to return term(s) for. Default empty. */ + slug?: InputMaybe>>; + /** Array of term taxonomy IDs, to match when querying terms. */ + termTaxonomyId?: InputMaybe>>; + /** Whether to prime meta caches for matched terms. Default true. */ + updateTermMetaCache?: InputMaybe; +}; + +/** Connection between the GraphqlDocument type and the graphqlDocument type */ +export type GraphqlDocumentToParentConnectionEdge = Edge & GraphqlDocumentConnectionEdge & OneToOneConnection & { + __typename?: 'GraphqlDocumentToParentConnectionEdge'; /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; - /** The connected EnqueuedScript Node */ - node: EnqueuedScript; -}; - -/** Page Info on the connected EnqueuedScriptConnectionEdge */ -export type EnqueuedScriptConnectionPageInfo = { - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; - -/** Stylesheet enqueued by the CMS */ -export type EnqueuedStylesheet = EnqueuedAsset & Node & { - __typename?: 'EnqueuedStylesheet'; - /** The inline code to be run after the asset is loaded. */ - after?: Maybe>>; /** - * Deprecated - * @deprecated Use `EnqueuedAsset.media` instead. + * The node of the connection, without the edges + * @deprecated This content type is not hierarchical and typically will not have a parent */ - args?: Maybe; - /** The inline code to be run before the asset is loaded. */ - before?: Maybe>>; - /** The HTML conditional comment for the enqueued asset. E.g. IE 6, lte IE 7, etc */ - conditional?: Maybe; - /** Dependencies needed to use this asset */ - dependencies?: Maybe>>; + node: GraphqlDocument; +}; + +/** Connection between the GraphqlDocument type and the graphqlDocument type */ +export type GraphqlDocumentToPreviewConnectionEdge = Edge & GraphqlDocumentConnectionEdge & OneToOneConnection & { + __typename?: 'GraphqlDocumentToPreviewConnectionEdge'; + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe; /** - * Extra information needed for the script - * @deprecated Use `EnqueuedScript.extraData` instead. + * The node of the connection, without the edges + * @deprecated The "GraphqlDocument" Type is not publicly queryable and does not support previews. This field will be removed in the future. */ - extra?: Maybe; - /** The handle of the enqueued asset */ - handle?: Maybe; - /** The global ID of the enqueued stylesheet */ - id: Scalars['ID']['output']; - /** Whether the enqueued style is RTL or not */ - isRtl?: Maybe; - /** The media attribute to use for the link */ - media?: Maybe; - /** The absolute path to the enqueued style. Set when the stylesheet is meant to load inline. */ - path?: Maybe; - /** The `rel` attribute to use for the link */ - rel?: Maybe; - /** The source of the asset */ - src?: Maybe; - /** Optional suffix, used in combination with RTL */ - suffix?: Maybe; - /** The title of the enqueued style. Used for preferred/alternate stylesheets. */ - title?: Maybe; - /** The version of the enqueued style */ - version?: Maybe; + node: GraphqlDocument; }; -/** Connection to EnqueuedStylesheet Nodes */ -export type EnqueuedStylesheetConnection = { - /** A list of edges (relational context) between ContentNode and connected EnqueuedStylesheet Nodes */ - edges: Array; - /** A list of connected EnqueuedStylesheet Nodes */ - nodes: Array; +/** Connection between the GraphqlDocument type and the TermNode type */ +export type GraphqlDocumentToTermNodeConnection = Connection & TermNodeConnection & { + __typename?: 'GraphqlDocumentToTermNodeConnection'; + /** Edges for the GraphqlDocumentToTermNodeConnection connection */ + edges: Array; + /** The nodes of the connection, without the edges */ + nodes: Array; /** Information about pagination in a connection. */ - pageInfo: EnqueuedStylesheetConnectionPageInfo; + pageInfo: GraphqlDocumentToTermNodeConnectionPageInfo; }; -/** Edge between a Node and a connected EnqueuedStylesheet */ -export type EnqueuedStylesheetConnectionEdge = { - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ +/** An edge in a connection */ +export type GraphqlDocumentToTermNodeConnectionEdge = Edge & TermNodeConnectionEdge & { + __typename?: 'GraphqlDocumentToTermNodeConnectionEdge'; + /** A cursor for use in pagination */ cursor?: Maybe; - /** The connected EnqueuedStylesheet Node */ - node: EnqueuedStylesheet; + /** The item at the end of the edge */ + node: TermNode; }; -/** Page Info on the connected EnqueuedStylesheetConnectionEdge */ -export type EnqueuedStylesheetConnectionPageInfo = { +/** Pagination metadata specific to "GraphqlDocumentToTermNodeConnection" collections. Provides cursors and flags for navigating through sets of GraphqlDocumentToTermNodeConnection Nodes. */ +export type GraphqlDocumentToTermNodeConnectionPageInfo = PageInfo & TermNodeConnectionPageInfo & WpPageInfo & { + __typename?: 'GraphqlDocumentToTermNodeConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; /** When paginating forwards, are there more items? */ @@ -7174,61 +3111,53 @@ export type EnqueuedStylesheetConnectionPageInfo = { startCursor?: Maybe; }; -/** The general setting type */ -export type GeneralSettings = { - __typename?: 'GeneralSettings'; - /** A date format for all date strings. */ - dateFormat?: Maybe; - /** Site tagline. */ - description?: Maybe; - /** This address is used for admin purposes, like new user notification. */ - email?: Maybe; - /** WordPress locale code. */ - language?: Maybe; - /** A day number of the week that the week should start on. */ - startOfWeek?: Maybe; - /** A time format for all time strings. */ - timeFormat?: Maybe; - /** A city in the same timezone as you. */ - timezone?: Maybe; - /** Site title. */ - title?: Maybe; - /** Site URL. */ - url?: Maybe; -}; - -/** Input for the generateAuthorizationCode mutation. */ -export type GenerateAuthorizationCodeInput = { - /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; - /** Email for WordPress user */ - email?: InputMaybe; - /** Password for WordPress user */ - password?: InputMaybe; - /** Username for WordPress user */ - username?: InputMaybe; -}; - -/** The payload for the generateAuthorizationCode mutation. */ -export type GenerateAuthorizationCodePayload = { - __typename?: 'GenerateAuthorizationCodePayload'; - /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; - /** Authorization code used for requesting refresh/access tokens */ - code?: Maybe; - /** Error encountered during user authentication, if any */ - error?: Maybe; +/** Arguments for filtering the GraphqlDocumentToTermNodeConnection connection */ +export type GraphqlDocumentToTermNodeConnectionWhereArgs = { + /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ + cacheDomain?: InputMaybe; + /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ + childOf?: InputMaybe; + /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ + childless?: InputMaybe; + /** Retrieve terms where the description is LIKE the input value. Default empty. */ + descriptionLike?: InputMaybe; + /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ + exclude?: InputMaybe>>; + /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ + excludeTree?: InputMaybe>>; + /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ + hideEmpty?: InputMaybe; + /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ + hierarchical?: InputMaybe; + /** Array of term ids to include. Default empty array. */ + include?: InputMaybe>>; + /** Array of names to return term(s) for. Default empty. */ + name?: InputMaybe>>; + /** Retrieve terms where the name is LIKE the input value. Default empty. */ + nameLike?: InputMaybe; + /** Array of object IDs. Results will be limited to terms associated with these objects. */ + objectIds?: InputMaybe>>; + /** Direction the connection should be ordered in */ + order?: InputMaybe; + /** Field(s) to order terms by. Defaults to 'name'. */ + orderby?: InputMaybe; + /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ + padCounts?: InputMaybe; + /** Parent term ID to retrieve direct-child terms of. Default empty. */ + parent?: InputMaybe; + /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ + search?: InputMaybe; + /** Array of slugs to return term(s) for. Default empty. */ + slug?: InputMaybe>>; + /** The Taxonomy to filter terms by */ + taxonomies?: InputMaybe>>; + /** Array of term taxonomy IDs, to match when querying terms. */ + termTaxonomyId?: InputMaybe>>; + /** Whether to prime meta caches for matched terms. Default true. */ + updateTermMetaCache?: InputMaybe; }; -/** Types of styles to load */ -export enum GlobalStylesheetTypesEnum { - BaseLayoutStyles = 'BASE_LAYOUT_STYLES', - Presets = 'PRESETS', - Styles = 'STYLES', - Variables = 'VARIABLES' -} - -/** Content node with hierarchical (parent/child) relationships */ +/** Content that can be organized in a parent-child structure. Provides fields for navigating up and down the hierarchy and maintaining structured relationships. */ export type HierarchicalContentNode = { /** Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ ancestors?: Maybe; @@ -7304,7 +3233,7 @@ export type HierarchicalContentNode = { }; -/** Content node with hierarchical (parent/child) relationships */ +/** Content that can be organized in a parent-child structure. Provides fields for navigating up and down the hierarchy and maintaining structured relationships. */ export type HierarchicalContentNodeAncestorsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -7314,7 +3243,7 @@ export type HierarchicalContentNodeAncestorsArgs = { }; -/** Content node with hierarchical (parent/child) relationships */ +/** Content that can be organized in a parent-child structure. Provides fields for navigating up and down the hierarchy and maintaining structured relationships. */ export type HierarchicalContentNodeChildrenArgs = { after?: InputMaybe; before?: InputMaybe; @@ -7324,7 +3253,7 @@ export type HierarchicalContentNodeChildrenArgs = { }; -/** Content node with hierarchical (parent/child) relationships */ +/** Content that can be organized in a parent-child structure. Provides fields for navigating up and down the hierarchy and maintaining structured relationships. */ export type HierarchicalContentNodeEnqueuedScriptsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -7333,7 +3262,7 @@ export type HierarchicalContentNodeEnqueuedScriptsArgs = { }; -/** Content node with hierarchical (parent/child) relationships */ +/** Content that can be organized in a parent-child structure. Provides fields for navigating up and down the hierarchy and maintaining structured relationships. */ export type HierarchicalContentNodeEnqueuedStylesheetsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -7361,7 +3290,7 @@ export type HierarchicalContentNodeToContentNodeAncestorsConnectionEdge = Conten node: ContentNode; }; -/** Page Info on the "HierarchicalContentNodeToContentNodeAncestorsConnection" */ +/** Pagination metadata specific to "HierarchicalContentNodeToContentNodeAncestorsConnection" collections. Provides cursors and flags for navigating through sets of HierarchicalContentNodeToContentNodeAncestorsConnection Nodes. */ export type HierarchicalContentNodeToContentNodeAncestorsConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'HierarchicalContentNodeToContentNodeAncestorsConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -7434,7 +3363,7 @@ export type HierarchicalContentNodeToContentNodeChildrenConnectionEdge = Content node: ContentNode; }; -/** Page Info on the "HierarchicalContentNodeToContentNodeChildrenConnection" */ +/** Pagination metadata specific to "HierarchicalContentNodeToContentNodeChildrenConnection" collections. Provides cursors and flags for navigating through sets of HierarchicalContentNodeToContentNodeChildrenConnection Nodes. */ export type HierarchicalContentNodeToContentNodeChildrenConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'HierarchicalContentNodeToContentNodeChildrenConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -7496,7 +3425,7 @@ export type HierarchicalContentNodeToParentContentNodeConnectionEdge = ContentNo node: ContentNode; }; -/** Node with hierarchical (parent/child) relationships */ +/** Content that can exist in a parent-child structure. Provides fields for navigating up (parent) and down (children) through the hierarchy. */ export type HierarchicalNode = { /** The unique identifier stored in the database */ databaseId: Scalars['Int']['output']; @@ -7580,6 +3509,8 @@ export type MediaDetails = { __typename?: 'MediaDetails'; /** The filename of the mediaItem */ file?: Maybe; + /** The path to the mediaItem relative to the uploads directory */ + filePath?: Maybe; /** The height of the mediaItem */ height?: Maybe; /** Meta information associated with the mediaItem */ @@ -7597,7 +3528,7 @@ export type MediaDetailsSizesArgs = { include?: InputMaybe>>; }; -/** The mediaItem type */ +/** Represents uploaded media, including images, videos, documents, and audio files. */ export type MediaItem = ContentNode & DatabaseIdentifier & HierarchicalContentNode & HierarchicalNode & Node & NodeWithAuthor & NodeWithComments & NodeWithTemplate & NodeWithTitle & UniformResourceIdentifiable & { __typename?: 'MediaItem'; /** Alternative text to display when resource is not displayed */ @@ -7644,6 +3575,10 @@ export type MediaItem = ContentNode & DatabaseIdentifier & HierarchicalContentNo enqueuedScripts?: Maybe; /** Connection between the ContentNode type and the EnqueuedStylesheet type */ enqueuedStylesheets?: Maybe; + /** The filename of the mediaItem for the specified size (default size is full) */ + file?: Maybe; + /** The path to the original file relative to the uploads directory */ + filePath?: Maybe; /** The filesize in bytes of the resource */ fileSize?: Maybe; /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ @@ -7719,7 +3654,7 @@ export type MediaItem = ContentNode & DatabaseIdentifier & HierarchicalContentNo }; -/** The mediaItem type */ +/** Represents uploaded media, including images, videos, documents, and audio files. */ export type MediaItemAncestorsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -7729,13 +3664,13 @@ export type MediaItemAncestorsArgs = { }; -/** The mediaItem type */ +/** Represents uploaded media, including images, videos, documents, and audio files. */ export type MediaItemCaptionArgs = { format?: InputMaybe; }; -/** The mediaItem type */ +/** Represents uploaded media, including images, videos, documents, and audio files. */ export type MediaItemChildrenArgs = { after?: InputMaybe; before?: InputMaybe; @@ -7745,7 +3680,7 @@ export type MediaItemChildrenArgs = { }; -/** The mediaItem type */ +/** Represents uploaded media, including images, videos, documents, and audio files. */ export type MediaItemCommentsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -7755,13 +3690,13 @@ export type MediaItemCommentsArgs = { }; -/** The mediaItem type */ +/** Represents uploaded media, including images, videos, documents, and audio files. */ export type MediaItemDescriptionArgs = { format?: InputMaybe; }; -/** The mediaItem type */ +/** Represents uploaded media, including images, videos, documents, and audio files. */ export type MediaItemEnqueuedScriptsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -7770,7 +3705,7 @@ export type MediaItemEnqueuedScriptsArgs = { }; -/** The mediaItem type */ +/** Represents uploaded media, including images, videos, documents, and audio files. */ export type MediaItemEnqueuedStylesheetsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -7779,36 +3714,48 @@ export type MediaItemEnqueuedStylesheetsArgs = { }; -/** The mediaItem type */ +/** Represents uploaded media, including images, videos, documents, and audio files. */ +export type MediaItemFileArgs = { + size?: InputMaybe; +}; + + +/** Represents uploaded media, including images, videos, documents, and audio files. */ +export type MediaItemFilePathArgs = { + size?: InputMaybe; +}; + + +/** Represents uploaded media, including images, videos, documents, and audio files. */ export type MediaItemFileSizeArgs = { size?: InputMaybe; }; -/** The mediaItem type */ +/** Represents uploaded media, including images, videos, documents, and audio files. */ export type MediaItemSizesArgs = { size?: InputMaybe; }; -/** The mediaItem type */ +/** Represents uploaded media, including images, videos, documents, and audio files. */ export type MediaItemSourceUrlArgs = { size?: InputMaybe; }; -/** The mediaItem type */ +/** Represents uploaded media, including images, videos, documents, and audio files. */ export type MediaItemSrcSetArgs = { size?: InputMaybe; }; -/** The mediaItem type */ +/** Represents uploaded media, including images, videos, documents, and audio files. */ export type MediaItemTitleArgs = { format?: InputMaybe; }; -/** Connection to mediaItem Nodes */ +/** A paginated collection of mediaItem Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of mediaItem Nodes */ export type MediaItemConnection = { /** A list of edges (relational context) between RootQuery and connected mediaItem Nodes */ edges: Array; @@ -7818,7 +3765,7 @@ export type MediaItemConnection = { pageInfo: MediaItemConnectionPageInfo; }; -/** Edge between a Node and a connected mediaItem */ +/** Represents a connection to a mediaItem. Contains both the mediaItem Node and metadata about the relationship. */ export type MediaItemConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -7826,7 +3773,7 @@ export type MediaItemConnectionEdge = { node: MediaItem; }; -/** Page Info on the connected MediaItemConnectionEdge */ +/** Pagination metadata specific to "MediaItemConnectionEdge" collections. Provides cursors and flags for navigating through sets of "MediaItemConnectionEdge" Nodes. */ export type MediaItemConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -7838,7 +3785,7 @@ export type MediaItemConnectionPageInfo = { startCursor?: Maybe; }; -/** The Type of Identifier used to fetch a single resource. Default is ID. */ +/** Identifier types for retrieving a specific MediaItem. Specifies which unique attribute is used to find an exact MediaItem. */ export enum MediaItemIdType { /** Identify a resource by the Database ID. */ DatabaseId = 'DATABASE_ID', @@ -7881,31 +3828,31 @@ export type MediaItemMeta = { title?: Maybe; }; -/** The size of the media item object. */ +/** Predefined image size variations. Represents the standard image dimensions available for media assets. */ export enum MediaItemSizeEnum { - /** MediaItem with the large size */ + /** Large image preview suitable for detail views. (1024x1024) */ Large = 'LARGE', - /** MediaItem with the medium size */ + /** Medium image preview typically suitable for listings and detail views. (300x300) */ Medium = 'MEDIUM', - /** MediaItem with the medium_large size */ + /** Medium-to-large image preview suitable for listings and detail views. (768x0) */ MediumLarge = 'MEDIUM_LARGE', - /** MediaItem with the thumbnail size */ + /** Small image preview suitable for thumbnails and listings. (150x150) */ Thumbnail = 'THUMBNAIL', - /** MediaItem with the 1536x1536 size */ + /** Custom Image Size. (1536x1536) */ '1536X1536' = '_1536X1536', - /** MediaItem with the 2048x2048 size */ + /** Custom Image Size. (2048x2048) */ '2048X2048' = '_2048X2048' } -/** The status of the media item object. */ +/** Publication status for media items. Controls whether media is publicly accessible, private, or in another state. */ export enum MediaItemStatusEnum { - /** Objects with the auto-draft status */ + /** Automatically created media that has not been finalized */ AutoDraft = 'AUTO_DRAFT', - /** Objects with the inherit status */ + /** Media that inherits its publication status from the parent content */ Inherit = 'INHERIT', - /** Objects with the private status */ + /** Media visible only to users with appropriate permissions */ Private = 'PRIVATE', - /** Objects with the trash status */ + /** Media marked for deletion but still recoverable */ Trash = 'TRASH' } @@ -7929,7 +3876,7 @@ export type MediaItemToCommentConnectionEdge = CommentConnectionEdge & Edge & { node: Comment; }; -/** Page Info on the "MediaItemToCommentConnection" */ +/** Pagination metadata specific to "MediaItemToCommentConnection" collections. Provides cursors and flags for navigating through sets of MediaItemToCommentConnection Nodes. */ export type MediaItemToCommentConnectionPageInfo = CommentConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'MediaItemToCommentConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -7998,8 +3945,8 @@ export type MediaItemToCommentConnectionWhereArgs = { parentNotIn?: InputMaybe>>; /** Search term(s) to retrieve matching comments for. */ search?: InputMaybe; - /** Comment status to limit results by. */ - status?: InputMaybe; + /** One or more Comment Statuses to limit results by */ + statusIn?: InputMaybe>>; /** Include comments for a specific user ID. */ userId?: InputMaybe; }; @@ -8009,6 +3956,8 @@ export type MediaSize = { __typename?: 'MediaSize'; /** The filename of the referenced size */ file?: Maybe; + /** The path of the file for the referenced size (default size is full) */ + filePath?: Maybe; /** The filesize of the resource */ fileSize?: Maybe; /** The height of the referenced size */ @@ -8023,7 +3972,7 @@ export type MediaSize = { width?: Maybe; }; -/** Menus are the containers for navigation items. Menus can be assigned to menu locations, which are typically registered by the active theme. */ +/** Collections of navigation links. Menus can be assigned to designated locations and used to build site navigation structures. */ export type Menu = DatabaseIdentifier & Node & { __typename?: 'Menu'; /** The number of items in the menu */ @@ -8050,7 +3999,7 @@ export type Menu = DatabaseIdentifier & Node & { }; -/** Menus are the containers for navigation items. Menus can be assigned to menu locations, which are typically registered by the active theme. */ +/** Collections of navigation links. Menus can be assigned to designated locations and used to build site navigation structures. */ export type MenuMenuItemsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -8059,7 +4008,7 @@ export type MenuMenuItemsArgs = { where?: InputMaybe; }; -/** Connection to Menu Nodes */ +/** A paginated collection of Menu Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of Menu Nodes */ export type MenuConnection = { /** A list of edges (relational context) between RootQuery and connected Menu Nodes */ edges: Array; @@ -8069,7 +4018,7 @@ export type MenuConnection = { pageInfo: MenuConnectionPageInfo; }; -/** Edge between a Node and a connected Menu */ +/** Represents a connection to a Menu. Contains both the Menu Node and metadata about the relationship. */ export type MenuConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -8077,7 +4026,7 @@ export type MenuConnectionEdge = { node: Menu; }; -/** Page Info on the connected MenuConnectionEdge */ +/** Pagination metadata specific to "MenuConnectionEdge" collections. Provides cursors and flags for navigating through sets of "MenuConnectionEdge" Nodes. */ export type MenuConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -8152,7 +4101,7 @@ export type MenuItemChildItemsArgs = { where?: InputMaybe; }; -/** Connection to MenuItem Nodes */ +/** A paginated collection of MenuItem Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of MenuItem Nodes */ export type MenuItemConnection = { /** A list of edges (relational context) between RootQuery and connected MenuItem Nodes */ edges: Array; @@ -8162,7 +4111,7 @@ export type MenuItemConnection = { pageInfo: MenuItemConnectionPageInfo; }; -/** Edge between a Node and a connected MenuItem */ +/** Represents a connection to a MenuItem. Contains both the MenuItem Node and metadata about the relationship. */ export type MenuItemConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -8170,7 +4119,7 @@ export type MenuItemConnectionEdge = { node: MenuItem; }; -/** Page Info on the connected MenuItemConnectionEdge */ +/** Pagination metadata specific to "MenuItemConnectionEdge" collections. Provides cursors and flags for navigating through sets of "MenuItemConnectionEdge" Nodes. */ export type MenuItemConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -8182,7 +4131,7 @@ export type MenuItemConnectionPageInfo = { startCursor?: Maybe; }; -/** Nodes that can be linked to as Menu Items */ +/** Content that can be referenced by navigation menu items. Provides the essential fields needed to create links within navigation structures. */ export type MenuItemLinkable = { /** @deprecated Deprecated in favor of using Next.js pages */ conditionalTags?: Maybe; @@ -8205,7 +4154,7 @@ export type MenuItemLinkable = { uri?: Maybe; }; -/** Edge between a Node and a connected MenuItemLinkable */ +/** Represents a connection to a MenuItemLinkable. Contains both the MenuItemLinkable Node and metadata about the relationship. */ export type MenuItemLinkableConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -8213,7 +4162,7 @@ export type MenuItemLinkableConnectionEdge = { node: MenuItemLinkable; }; -/** The Type of Identifier used to fetch a single node. Default is "ID". To be used along with the "id" field. */ +/** Identifier types for retrieving a specific menu item. Determines whether to look up menu items by global ID or database ID. */ export enum MenuItemNodeIdTypeEnum { /** Identify a resource by the Database ID. */ DatabaseId = 'DATABASE_ID', @@ -8253,7 +4202,7 @@ export type MenuItemToMenuItemConnectionEdge = Edge & MenuItemConnectionEdge & { node: MenuItem; }; -/** Page Info on the "MenuItemToMenuItemConnection" */ +/** Pagination metadata specific to "MenuItemToMenuItemConnection" collections. Provides cursors and flags for navigating through sets of MenuItemToMenuItemConnection Nodes. */ export type MenuItemToMenuItemConnectionPageInfo = MenuItemConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'MenuItemToMenuItemConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -8287,7 +4236,7 @@ export type MenuItemToMenuItemLinkableConnectionEdge = Edge & MenuItemLinkableCo node: MenuItemLinkable; }; -/** Registered menu locations */ +/** Designated areas where navigation menus can be displayed. Represents the named regions in the interface where menus can be assigned. */ export enum MenuLocationEnum { /** Put the menu in the footer location */ Footer = 'FOOTER', @@ -8295,7 +4244,7 @@ export enum MenuLocationEnum { Primary = 'PRIMARY' } -/** The Type of Identifier used to fetch a single node. Default is "ID". To be used along with the "id" field. */ +/** Identifier types for retrieving a specific navigation menu. Specifies which property (ID, name, location) is used to locate a particular menu. */ export enum MenuNodeIdTypeEnum { /** Identify a menu node by the Database ID. */ DatabaseId = 'DATABASE_ID', @@ -8329,7 +4278,7 @@ export type MenuToMenuItemConnectionEdge = Edge & MenuItemConnectionEdge & { node: MenuItem; }; -/** Page Info on the "MenuToMenuItemConnection" */ +/** Pagination metadata specific to "MenuToMenuItemConnection" collections. Provides cursors and flags for navigating through sets of MenuToMenuItemConnection Nodes. */ export type MenuToMenuItemConnectionPageInfo = MenuItemConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'MenuToMenuItemConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -8354,7 +4303,7 @@ export type MenuToMenuItemConnectionWhereArgs = { parentId?: InputMaybe; }; -/** The MimeType of the object */ +/** Media file type classification based on MIME standards. Used to identify and filter media items by their format and content type. */ export enum MimeTypeEnum { /** application/java mime type. */ ApplicationJava = 'APPLICATION_JAVA', @@ -8474,12 +4423,20 @@ export enum MimeTypeEnum { AudioXMsWma = 'AUDIO_X_MS_WMA', /** audio/x-realaudio mime type. */ AudioXRealaudio = 'AUDIO_X_REALAUDIO', + /** image/avif mime type. */ + ImageAvif = 'IMAGE_AVIF', /** image/bmp mime type. */ ImageBmp = 'IMAGE_BMP', /** image/gif mime type. */ ImageGif = 'IMAGE_GIF', /** image/heic mime type. */ ImageHeic = 'IMAGE_HEIC', + /** image/heic-sequence mime type. */ + ImageHeicSequence = 'IMAGE_HEIC_SEQUENCE', + /** image/heif mime type. */ + ImageHeif = 'IMAGE_HEIF', + /** image/heif-sequence mime type. */ + ImageHeifSequence = 'IMAGE_HEIF_SEQUENCE', /** image/jpeg mime type. */ ImageJpeg = 'IMAGE_JPEG', /** image/png mime type. */ @@ -8536,13 +4493,13 @@ export enum MimeTypeEnum { VideoXMsWmx = 'VIDEO_X_MS_WMX' } -/** An object with an ID */ +/** An object with a globally unique identifier. All objects that can be identified by a unique ID implement this interface. */ export type Node = { /** The globally unique ID for the object */ id: Scalars['ID']['output']; }; -/** A node that can have an author assigned to it */ +/** Content that can be attributed to a specific user. Provides fields for accessing the author's information and establishing content ownership. */ export type NodeWithAuthor = { /** Connection between the NodeWithAuthor type and the User type */ author?: Maybe; @@ -8563,7 +4520,7 @@ export type NodeWithAuthorToUserConnectionEdge = Edge & OneToOneConnection & Use node: User; }; -/** A node that can have comments associated with it */ +/** Content that can receive and display user-submitted comments. Provides fields for accessing comment counts and managing comment status. */ export type NodeWithComments = { /** The number of comments. Even though WPGraphQL denotes this field as an integer, in WordPress this field should be saved as a numeric string for compatibility. */ commentCount?: Maybe; @@ -8573,7 +4530,7 @@ export type NodeWithComments = { id: Scalars['ID']['output']; }; -/** A node that supports the content editor */ +/** Content that has a main body field which can contain formatted text and media. Provides access to both raw (with appropriate permissions) and rendered versions of the content. */ export type NodeWithContentEditor = { /** The content of the post. */ content?: Maybe; @@ -8582,24 +4539,12 @@ export type NodeWithContentEditor = { }; -/** A node that supports the content editor */ +/** Content that has a main body field which can contain formatted text and media. Provides access to both raw (with appropriate permissions) and rendered versions of the content. */ export type NodeWithContentEditorContentArgs = { format?: InputMaybe; }; -/** Node that has content blocks associated with it */ -export type NodeWithEditorBlocks = { - /** List of editor blocks */ - editorBlocks?: Maybe>>; -}; - - -/** Node that has content blocks associated with it */ -export type NodeWithEditorBlocksEditorBlocksArgs = { - flat?: InputMaybe; -}; - -/** A node that can have an excerpt */ +/** A node which provides an excerpt field, which is a condensed summary of the main content. Excerpts can be manually created or automatically generated and are often used in content listings and search results. */ export type NodeWithExcerpt = { /** The excerpt of the post. */ excerpt?: Maybe; @@ -8608,12 +4553,12 @@ export type NodeWithExcerpt = { }; -/** A node that can have an excerpt */ +/** A node which provides an excerpt field, which is a condensed summary of the main content. Excerpts can be manually created or automatically generated and are often used in content listings and search results. */ export type NodeWithExcerptExcerptArgs = { format?: InputMaybe; }; -/** A node that can have a featured image set */ +/** Content that can have a primary image attached. This image is typically used for thumbnails, social sharing, and prominent display in the presentation layer. */ export type NodeWithFeaturedImage = { /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ featuredImage?: Maybe; @@ -8634,7 +4579,7 @@ export type NodeWithFeaturedImageToMediaItemConnectionEdge = Edge & MediaItemCon node: MediaItem; }; -/** A node that can have page attributes */ +/** Content that supports ordering metadata. Includes a menu order field which can be used for custom sorting in navigation menus and other ordered collections. */ export type NodeWithPageAttributes = { /** The globally unique ID for the object */ id: Scalars['ID']['output']; @@ -8642,31 +4587,7 @@ export type NodeWithPageAttributes = { menuOrder?: Maybe; }; -/** Node that has Page content blocks associated with it */ -export type NodeWithPageEditorBlocks = { - /** List of Page editor blocks */ - editorBlocks?: Maybe>>; -}; - - -/** Node that has Page content blocks associated with it */ -export type NodeWithPageEditorBlocksEditorBlocksArgs = { - flat?: InputMaybe; -}; - -/** Node that has Post content blocks associated with it */ -export type NodeWithPostEditorBlocks = { - /** List of Post editor blocks */ - editorBlocks?: Maybe>>; -}; - - -/** Node that has Post content blocks associated with it */ -export type NodeWithPostEditorBlocksEditorBlocksArgs = { - flat?: InputMaybe; -}; - -/** A node that can have revisions */ +/** Content that maintains a history of changes. Provides access to previous versions of the content and the ability to restore earlier revisions. */ export type NodeWithRevisions = { /** The globally unique ID for the object */ id: Scalars['ID']['output']; @@ -8685,7 +4606,7 @@ export type NodeWithRevisionsToContentNodeConnectionEdge = ContentNodeConnection node: ContentNode; }; -/** A node that can have a template associated with it */ +/** Content that provides template metadata. The template can help inform how the content is might be structured, styled, and presented to the user. */ export type NodeWithTemplate = { /** The globally unique ID for the object */ id: Scalars['ID']['output']; @@ -8693,7 +4614,7 @@ export type NodeWithTemplate = { template?: Maybe; }; -/** A node that NodeWith a title */ +/** Content with a dedicated title field. The title typically serves as the main heading and identifier for the content. */ export type NodeWithTitle = { /** The globally unique ID for the object */ id: Scalars['ID']['output']; @@ -8702,12 +4623,12 @@ export type NodeWithTitle = { }; -/** A node that NodeWith a title */ +/** Content with a dedicated title field. The title typically serves as the main heading and identifier for the content. */ export type NodeWithTitleTitleArgs = { format?: InputMaybe; }; -/** A node that can have trackbacks and pingbacks */ +/** Content that supports cross-site notifications when linked to by other sites. Includes fields for pingback status and linked URLs. */ export type NodeWithTrackbacks = { /** The globally unique ID for the object */ id: Scalars['ID']['output']; @@ -8719,7 +4640,7 @@ export type NodeWithTrackbacks = { toPing?: Maybe>>; }; -/** A singular connection from one Node to another, with support for relational data on the "edge" of the connection. */ +/** A direct one-to-one relationship between objects. Unlike plural connections, this represents a single related object rather than a collection. */ export type OneToOneConnection = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -8727,16 +4648,16 @@ export type OneToOneConnection = { node: Node; }; -/** The cardinality of the connection order */ +/** Sort direction for ordered results. Determines whether items are returned in ascending or descending order. */ export enum OrderEnum { - /** Sort the query result set in an ascending order */ + /** Results ordered from lowest to highest values (i.e. A-Z, oldest-newest) */ Asc = 'ASC', - /** Sort the query result set in a descending order */ + /** Results ordered from highest to lowest values (i.e. Z-A, newest-oldest) */ Desc = 'DESC' } -/** The page type */ -export type Page = ContentNode & DatabaseIdentifier & HierarchicalContentNode & HierarchicalNode & MenuItemLinkable & Node & NodeWithAuthor & NodeWithComments & NodeWithContentEditor & NodeWithEditorBlocks & NodeWithFeaturedImage & NodeWithPageAttributes & NodeWithPageEditorBlocks & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & { +/** A standalone content entry generally used for static, non-chronological content such as "About Us" or "Contact" pages. */ +export type Page = ContentNode & DatabaseIdentifier & HierarchicalContentNode & HierarchicalNode & MenuItemLinkable & Node & NodeWithAuthor & NodeWithComments & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithPageAttributes & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & { __typename?: 'Page'; /** Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ ancestors?: Maybe; @@ -8772,8 +4693,6 @@ export type Page = ContentNode & DatabaseIdentifier & HierarchicalContentNode & desiredSlug?: Maybe; /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ editingLockedBy?: Maybe; - /** List of Page editor blocks */ - editorBlocks?: Maybe>>; /** The RSS enclosure for the object */ enclosure?: Maybe; /** Connection between the ContentNode type and the EnqueuedScript type */ @@ -8857,7 +4776,7 @@ export type Page = ContentNode & DatabaseIdentifier & HierarchicalContentNode & }; -/** The page type */ +/** A standalone content entry generally used for static, non-chronological content such as "About Us" or "Contact" pages. */ export type PageAncestorsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -8867,7 +4786,7 @@ export type PageAncestorsArgs = { }; -/** The page type */ +/** A standalone content entry generally used for static, non-chronological content such as "About Us" or "Contact" pages. */ export type PageChildrenArgs = { after?: InputMaybe; before?: InputMaybe; @@ -8877,7 +4796,7 @@ export type PageChildrenArgs = { }; -/** The page type */ +/** A standalone content entry generally used for static, non-chronological content such as "About Us" or "Contact" pages. */ export type PageCommentsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -8887,19 +4806,13 @@ export type PageCommentsArgs = { }; -/** The page type */ +/** A standalone content entry generally used for static, non-chronological content such as "About Us" or "Contact" pages. */ export type PageContentArgs = { format?: InputMaybe; }; -/** The page type */ -export type PageEditorBlocksArgs = { - flat?: InputMaybe; -}; - - -/** The page type */ +/** A standalone content entry generally used for static, non-chronological content such as "About Us" or "Contact" pages. */ export type PageEnqueuedScriptsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -8908,7 +4821,7 @@ export type PageEnqueuedScriptsArgs = { }; -/** The page type */ +/** A standalone content entry generally used for static, non-chronological content such as "About Us" or "Contact" pages. */ export type PageEnqueuedStylesheetsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -8917,7 +4830,7 @@ export type PageEnqueuedStylesheetsArgs = { }; -/** The page type */ +/** A standalone content entry generally used for static, non-chronological content such as "About Us" or "Contact" pages. */ export type PageRevisionsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -8927,12 +4840,12 @@ export type PageRevisionsArgs = { }; -/** The page type */ +/** A standalone content entry generally used for static, non-chronological content such as "About Us" or "Contact" pages. */ export type PageTitleArgs = { format?: InputMaybe; }; -/** Connection to page Nodes */ +/** A paginated collection of page Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of page Nodes */ export type PageConnection = { /** A list of edges (relational context) between RootQuery and connected page Nodes */ edges: Array; @@ -8942,7 +4855,7 @@ export type PageConnection = { pageInfo: PageConnectionPageInfo; }; -/** Edge between a Node and a connected page */ +/** Represents a connection to a page. Contains both the page Node and metadata about the relationship. */ export type PageConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -8950,7 +4863,7 @@ export type PageConnectionEdge = { node: Page; }; -/** Page Info on the connected PageConnectionEdge */ +/** Pagination metadata specific to "PageConnectionEdge" collections. Provides cursors and flags for navigating through sets of "PageConnectionEdge" Nodes. */ export type PageConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -8962,29 +4875,7 @@ export type PageConnectionPageInfo = { startCursor?: Maybe; }; -/** EditorBlock Interface for Page Block Type */ -export type PageEditorBlock = { - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the Block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** The Type of Identifier used to fetch a single resource. Default is ID. */ +/** Identifier types for retrieving a specific Page. Specifies which unique attribute is used to find an exact Page. */ export enum PageIdType { /** Identify a resource by the Database ID. */ DatabaseId = 'DATABASE_ID', @@ -8994,7 +4885,7 @@ export enum PageIdType { Uri = 'URI' } -/** Information about pagination in a connection. */ +/** Metadata for cursor-based pagination. Provides cursors for continuing pagination and boolean flags indicating if more items exist in either direction. */ export type PageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -9026,7 +4917,7 @@ export type PageToCommentConnectionEdge = CommentConnectionEdge & Edge & { node: Comment; }; -/** Page Info on the "PageToCommentConnection" */ +/** Pagination metadata specific to "PageToCommentConnection" collections. Provides cursors and flags for navigating through sets of PageToCommentConnection Nodes. */ export type PageToCommentConnectionPageInfo = CommentConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'PageToCommentConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -9095,8 +4986,8 @@ export type PageToCommentConnectionWhereArgs = { parentNotIn?: InputMaybe>>; /** Search term(s) to retrieve matching comments for. */ search?: InputMaybe; - /** Comment status to limit results by. */ - status?: InputMaybe; + /** One or more Comment Statuses to limit results by */ + statusIn?: InputMaybe>>; /** Include comments for a specific user ID. */ userId?: InputMaybe; }; @@ -9130,7 +5021,7 @@ export type PageToRevisionConnectionEdge = Edge & PageConnectionEdge & { node: Page; }; -/** Page Info on the "PageToRevisionConnection" */ +/** Pagination metadata specific to "PageToRevisionConnection" collections. Provides cursors and flags for navigating through sets of PageToRevisionConnection Nodes. */ export type PageToRevisionConnectionPageInfo = PageConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'PageToRevisionConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -9212,7 +5103,7 @@ export type Plugin = Node & { version?: Maybe; }; -/** Connection to Plugin Nodes */ +/** A paginated collection of Plugin Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of Plugin Nodes */ export type PluginConnection = { /** A list of edges (relational context) between RootQuery and connected Plugin Nodes */ edges: Array; @@ -9222,7 +5113,7 @@ export type PluginConnection = { pageInfo: PluginConnectionPageInfo; }; -/** Edge between a Node and a connected Plugin */ +/** Represents a connection to a Plugin. Contains both the Plugin Node and metadata about the relationship. */ export type PluginConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -9230,7 +5121,7 @@ export type PluginConnectionEdge = { node: Plugin; }; -/** Page Info on the connected PluginConnectionEdge */ +/** Pagination metadata specific to "PluginConnectionEdge" collections. Provides cursors and flags for navigating through sets of "PluginConnectionEdge" Nodes. */ export type PluginConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -9242,7 +5133,7 @@ export type PluginConnectionPageInfo = { startCursor?: Maybe; }; -/** The status of the WordPress plugin. */ +/** Operational status of a plugin. Indicates whether a plugin is active, inactive, or in another state that affects its functionality. */ export enum PluginStatusEnum { /** The plugin is currently active. */ Active = 'ACTIVE', @@ -9260,9 +5151,14 @@ export enum PluginStatusEnum { Upgrade = 'UPGRADE' } -/** The post type */ -export type Post = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithAuthor & NodeWithComments & NodeWithContentEditor & NodeWithEditorBlocks & NodeWithExcerpt & NodeWithFeaturedImage & NodeWithPostEditorBlocks & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & NodeWithTrackbacks & Previewable & UniformResourceIdentifiable & { +/** A chronological content entry typically used for blog posts, news articles, or similar date-based content. */ +export type Post = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithAuthor & NodeWithComments & NodeWithContentEditor & NodeWithExcerpt & NodeWithFeaturedImage & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & NodeWithTrackbacks & Previewable & UniformResourceIdentifiable & { __typename?: 'Post'; + /** + * The ancestors of the content node. + * @deprecated This content type is not hierarchical and typically will not have ancestors + */ + ancestors?: Maybe; /** Connection between the NodeWithAuthor type and the User type */ author?: Maybe; /** The database identifier of the author of the node */ @@ -9295,8 +5191,6 @@ export type Post = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & desiredSlug?: Maybe; /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ editingLockedBy?: Maybe; - /** List of Post editor blocks */ - editorBlocks?: Maybe>>; /** The RSS enclosure for the object */ enclosure?: Maybe; /** Connection between the ContentNode type and the EnqueuedScript type */ @@ -9343,6 +5237,11 @@ export type Post = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & modified?: Maybe; /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ modifiedGmt?: Maybe; + /** + * The parent of the content node. + * @deprecated This content type is not hierarchical and typically will not have a parent + */ + parent?: Maybe; /** The password for the post object. */ password?: Maybe; /** Whether the pings are open or closed for this particular post. */ @@ -9386,7 +5285,16 @@ export type Post = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & }; -/** The post type */ +/** A chronological content entry typically used for blog posts, news articles, or similar date-based content. */ +export type PostAncestorsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; +}; + + +/** A chronological content entry typically used for blog posts, news articles, or similar date-based content. */ export type PostCategoriesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -9396,7 +5304,7 @@ export type PostCategoriesArgs = { }; -/** The post type */ +/** A chronological content entry typically used for blog posts, news articles, or similar date-based content. */ export type PostCommentsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -9406,19 +5314,13 @@ export type PostCommentsArgs = { }; -/** The post type */ +/** A chronological content entry typically used for blog posts, news articles, or similar date-based content. */ export type PostContentArgs = { format?: InputMaybe; }; -/** The post type */ -export type PostEditorBlocksArgs = { - flat?: InputMaybe; -}; - - -/** The post type */ +/** A chronological content entry typically used for blog posts, news articles, or similar date-based content. */ export type PostEnqueuedScriptsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -9427,7 +5329,7 @@ export type PostEnqueuedScriptsArgs = { }; -/** The post type */ +/** A chronological content entry typically used for blog posts, news articles, or similar date-based content. */ export type PostEnqueuedStylesheetsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -9436,13 +5338,13 @@ export type PostEnqueuedStylesheetsArgs = { }; -/** The post type */ +/** A chronological content entry typically used for blog posts, news articles, or similar date-based content. */ export type PostExcerptArgs = { format?: InputMaybe; }; -/** The post type */ +/** A chronological content entry typically used for blog posts, news articles, or similar date-based content. */ export type PostPostFormatsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -9452,7 +5354,7 @@ export type PostPostFormatsArgs = { }; -/** The post type */ +/** A chronological content entry typically used for blog posts, news articles, or similar date-based content. */ export type PostRevisionsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -9462,7 +5364,7 @@ export type PostRevisionsArgs = { }; -/** The post type */ +/** A chronological content entry typically used for blog posts, news articles, or similar date-based content. */ export type PostTagsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -9472,7 +5374,7 @@ export type PostTagsArgs = { }; -/** The post type */ +/** A chronological content entry typically used for blog posts, news articles, or similar date-based content. */ export type PostTermsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -9482,7 +5384,7 @@ export type PostTermsArgs = { }; -/** The post type */ +/** A chronological content entry typically used for blog posts, news articles, or similar date-based content. */ export type PostTitleArgs = { format?: InputMaybe; }; @@ -9507,7 +5409,7 @@ export type PostCategoriesNodeInput = { slug?: InputMaybe; }; -/** Connection to post Nodes */ +/** A paginated collection of post Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of post Nodes */ export type PostConnection = { /** A list of edges (relational context) between RootQuery and connected post Nodes */ edges: Array; @@ -9517,7 +5419,7 @@ export type PostConnection = { pageInfo: PostConnectionPageInfo; }; -/** Edge between a Node and a connected post */ +/** Represents a connection to a post. Contains both the post Node and metadata about the relationship. */ export type PostConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -9525,7 +5427,7 @@ export type PostConnectionEdge = { node: Post; }; -/** Page Info on the connected PostConnectionEdge */ +/** Pagination metadata specific to "PostConnectionEdge" collections. Provides cursors and flags for navigating through sets of "PostConnectionEdge" Nodes. */ export type PostConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -9537,29 +5439,7 @@ export type PostConnectionPageInfo = { startCursor?: Maybe; }; -/** EditorBlock Interface for Post Block Type */ -export type PostEditorBlock = { - /** The API version of the Gutenberg Block */ - apiVersion?: Maybe; - /** The name of the category the Block belongs to */ - blockEditorCategoryName?: Maybe; - /** The id of the Block */ - clientId?: Maybe; - /** CSS Classnames to apply to the block */ - cssClassNames?: Maybe>>; - /** The inner blocks of the Block */ - innerBlocks?: Maybe>>; - /** Whether the block is Dynamic (server rendered) */ - isDynamic: Scalars['Boolean']['output']; - /** The name of the Block */ - name?: Maybe; - /** The parent id of the Block */ - parentClientId?: Maybe; - /** The rendered HTML for the block */ - renderedHtml?: Maybe; -}; - -/** The postFormat type */ +/** A standardized classification system for content presentation styles. These formats can be used to display content differently based on type, such as "standard", "gallery", "video", etc. */ export type PostFormat = DatabaseIdentifier & Node & TermNode & UniformResourceIdentifiable & { __typename?: 'PostFormat'; /** @deprecated Deprecated in favor of using Next.js pages */ @@ -9617,7 +5497,7 @@ export type PostFormat = DatabaseIdentifier & Node & TermNode & UniformResourceI }; -/** The postFormat type */ +/** A standardized classification system for content presentation styles. These formats can be used to display content differently based on type, such as "standard", "gallery", "video", etc. */ export type PostFormatContentNodesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -9627,7 +5507,7 @@ export type PostFormatContentNodesArgs = { }; -/** The postFormat type */ +/** A standardized classification system for content presentation styles. These formats can be used to display content differently based on type, such as "standard", "gallery", "video", etc. */ export type PostFormatEnqueuedScriptsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -9636,7 +5516,7 @@ export type PostFormatEnqueuedScriptsArgs = { }; -/** The postFormat type */ +/** A standardized classification system for content presentation styles. These formats can be used to display content differently based on type, such as "standard", "gallery", "video", etc. */ export type PostFormatEnqueuedStylesheetsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -9645,7 +5525,7 @@ export type PostFormatEnqueuedStylesheetsArgs = { }; -/** The postFormat type */ +/** A standardized classification system for content presentation styles. These formats can be used to display content differently based on type, such as "standard", "gallery", "video", etc. */ export type PostFormatPostsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -9654,7 +5534,7 @@ export type PostFormatPostsArgs = { where?: InputMaybe; }; -/** Connection to postFormat Nodes */ +/** A paginated collection of postFormat Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of postFormat Nodes */ export type PostFormatConnection = { /** A list of edges (relational context) between RootQuery and connected postFormat Nodes */ edges: Array; @@ -9664,7 +5544,7 @@ export type PostFormatConnection = { pageInfo: PostFormatConnectionPageInfo; }; -/** Edge between a Node and a connected postFormat */ +/** Represents a connection to a postFormat. Contains both the postFormat Node and metadata about the relationship. */ export type PostFormatConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -9672,7 +5552,7 @@ export type PostFormatConnectionEdge = { node: PostFormat; }; -/** Page Info on the connected PostFormatConnectionEdge */ +/** Pagination metadata specific to "PostFormatConnectionEdge" collections. Provides cursors and flags for navigating through sets of "PostFormatConnectionEdge" Nodes. */ export type PostFormatConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -9684,7 +5564,7 @@ export type PostFormatConnectionPageInfo = { startCursor?: Maybe; }; -/** The Type of Identifier used to fetch a single resource. Default is ID. */ +/** Identifier types for retrieving a specific PostFormat. Determines which unique property (global ID, database ID, slug, etc.) is used to locate the PostFormat. */ export enum PostFormatIdType { /** The Database ID for the node */ DatabaseId = 'DATABASE_ID', @@ -9718,7 +5598,7 @@ export type PostFormatToContentNodeConnectionEdge = ContentNodeConnectionEdge & node: ContentNode; }; -/** Page Info on the "PostFormatToContentNodeConnection" */ +/** Pagination metadata specific to "PostFormatToContentNodeConnection" collections. Provides cursors and flags for navigating through sets of PostFormatToContentNodeConnection Nodes. */ export type PostFormatToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'PostFormatToContentNodeConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -9791,7 +5671,7 @@ export type PostFormatToPostConnectionEdge = Edge & PostConnectionEdge & { node: Post; }; -/** Page Info on the "PostFormatToPostConnection" */ +/** Pagination metadata specific to "PostFormatToPostConnection" collections. Provides cursors and flags for navigating through sets of PostFormatToPostConnection Nodes. */ export type PostFormatToPostConnectionPageInfo = PageInfo & PostConnectionPageInfo & WpPageInfo & { __typename?: 'PostFormatToPostConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -9879,7 +5759,7 @@ export type PostFormatToTaxonomyConnectionEdge = Edge & OneToOneConnection & Tax node: Taxonomy; }; -/** The Type of Identifier used to fetch a single resource. Default is ID. */ +/** Identifier types for retrieving a specific Post. Specifies which unique attribute is used to find an exact Post. */ export enum PostIdType { /** Identify a resource by the Database ID. */ DatabaseId = 'DATABASE_ID', @@ -9891,15 +5771,15 @@ export enum PostIdType { Uri = 'URI' } -/** The format of post field data. */ +/** Content field rendering options. Determines whether content fields are returned as raw data or with applied formatting and transformations. Default is RENDERED. */ export enum PostObjectFieldFormatEnum { - /** Provide the field value directly from database. Null on unauthenticated requests. */ + /** Unprocessed content exactly as stored in the database, requires appropriate permissions. */ Raw = 'RAW', - /** Provide the field value as rendered by WordPress. Default. */ + /** Content with all formatting and transformations applied, ready for display. */ Rendered = 'RENDERED' } -/** The column to use when filtering by date */ +/** Date field selectors for content filtering. Specifies which date attribute (creation date, modification date) should be used for date-based queries. */ export enum PostObjectsConnectionDateColumnEnum { /** The date the comment was created in local time. */ Date = 'DATE', @@ -9907,27 +5787,27 @@ export enum PostObjectsConnectionDateColumnEnum { Modified = 'MODIFIED' } -/** Field to order the connection by */ +/** Content sorting attributes for post-type objects. Identifies which content property should be used to determine result order. */ export enum PostObjectsConnectionOrderbyEnum { - /** Order by author */ + /** Ordering by content author (typically by author name). */ Author = 'AUTHOR', - /** Order by the number of comments it has acquired */ + /** Ordering by popularity based on number of comments. */ CommentCount = 'COMMENT_COUNT', - /** Order by publish date */ + /** Chronological ordering by publication date. */ Date = 'DATE', - /** Preserve the ID order given in the IN array */ + /** Maintain custom order of IDs exactly as specified in the query with the IN field. */ In = 'IN', - /** Order by the menu order value */ + /** Ordering by manually defined sort position. */ MenuOrder = 'MENU_ORDER', - /** Order by last modified date */ + /** Chronological ordering by modified date. */ Modified = 'MODIFIED', - /** Preserve slug order given in the NAME_IN array */ + /** Maintain custom order of IDs exactly as specified in the query with the NAME_IN field. */ NameIn = 'NAME_IN', - /** Order by parent ID */ + /** Ordering by parent-child relationship in hierarchical content. */ Parent = 'PARENT', - /** Order by slug */ + /** Alphabetical ordering by URL-friendly name. */ Slug = 'SLUG', - /** Order by title */ + /** Alphabetical ordering by content title */ Title = 'TITLE' } @@ -9959,23 +5839,23 @@ export type PostPostFormatsNodeInput = { slug?: InputMaybe; }; -/** The status of the object. */ +/** Publishing status that controls the visibility and editorial state of content. Determines whether content is published, pending review, in draft state, or private. */ export enum PostStatusEnum { - /** Objects with the auto-draft status */ + /** Automatically saved content that has not been manually saved */ AutoDraft = 'AUTO_DRAFT', /** Objects with the dp-rewrite-republish status */ DpRewriteRepublish = 'DP_REWRITE_REPUBLISH', - /** Objects with the draft status */ + /** Content that is saved but not yet published or visible to the public */ Draft = 'DRAFT', /** Objects with the future status */ Future = 'FUTURE', - /** Objects with the inherit status */ + /** Content that inherits its status from a parent object */ Inherit = 'INHERIT', - /** Objects with the pending status */ + /** Content awaiting review before publication */ Pending = 'PENDING', - /** Objects with the private status */ + /** Content only visible to authorized users with appropriate permissions */ Private = 'PRIVATE', - /** Objects with the publish status */ + /** Content that is publicly visible to all visitors */ Publish = 'PUBLISH', /** Objects with the request-completed status */ RequestCompleted = 'REQUEST_COMPLETED', @@ -9985,7 +5865,7 @@ export enum PostStatusEnum { RequestFailed = 'REQUEST_FAILED', /** Objects with the request-pending status */ RequestPending = 'REQUEST_PENDING', - /** Objects with the trash status */ + /** Content marked for deletion but still recoverable */ Trash = 'TRASH' } @@ -10029,7 +5909,7 @@ export type PostToCategoryConnectionEdge = CategoryConnectionEdge & Edge & { node: Category; }; -/** Page Info on the "PostToCategoryConnection" */ +/** Pagination metadata specific to "PostToCategoryConnection" collections. Provides cursors and flags for navigating through sets of PostToCategoryConnection Nodes. */ export type PostToCategoryConnectionPageInfo = CategoryConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'PostToCategoryConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -10081,8 +5961,6 @@ export type PostToCategoryConnectionWhereArgs = { /** Array of slugs to return term(s) for. Default empty. */ slug?: InputMaybe>>; /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; - /** Array of term taxonomy IDs, to match when querying terms. */ termTaxonomyId?: InputMaybe>>; /** Whether to prime meta caches for matched terms. Default true. */ updateTermMetaCache?: InputMaybe; @@ -10108,7 +5986,7 @@ export type PostToCommentConnectionEdge = CommentConnectionEdge & Edge & { node: Comment; }; -/** Page Info on the "PostToCommentConnection" */ +/** Pagination metadata specific to "PostToCommentConnection" collections. Provides cursors and flags for navigating through sets of PostToCommentConnection Nodes. */ export type PostToCommentConnectionPageInfo = CommentConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'PostToCommentConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -10177,12 +6055,63 @@ export type PostToCommentConnectionWhereArgs = { parentNotIn?: InputMaybe>>; /** Search term(s) to retrieve matching comments for. */ search?: InputMaybe; - /** Comment status to limit results by. */ - status?: InputMaybe; + /** One or more Comment Statuses to limit results by */ + statusIn?: InputMaybe>>; /** Include comments for a specific user ID. */ userId?: InputMaybe; }; +/** Connection between the Post type and the post type */ +export type PostToParentConnectionEdge = Edge & OneToOneConnection & PostConnectionEdge & { + __typename?: 'PostToParentConnectionEdge'; + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe; + /** + * The node of the connection, without the edges + * @deprecated This content type is not hierarchical and typically will not have a parent + */ + node: Post; +}; + +/** Connection between the Post type and the post type */ +export type PostToPostConnection = Connection & PostConnection & { + __typename?: 'PostToPostConnection'; + /** Edges for the PostToPostConnection connection */ + edges: Array; + /** The nodes of the connection, without the edges */ + nodes: Array; + /** Information about pagination in a connection. */ + pageInfo: PostToPostConnectionPageInfo; +}; + +/** An edge in a connection */ +export type PostToPostConnectionEdge = Edge & PostConnectionEdge & { + __typename?: 'PostToPostConnectionEdge'; + /** + * A cursor for use in pagination + * @deprecated This content type is not hierarchical and typically will not have ancestors + */ + cursor?: Maybe; + /** + * The item at the end of the edge + * @deprecated This content type is not hierarchical and typically will not have ancestors + */ + node: Post; +}; + +/** Pagination metadata specific to "PostToPostConnection" collections. Provides cursors and flags for navigating through sets of PostToPostConnection Nodes. */ +export type PostToPostConnectionPageInfo = PageInfo & PostConnectionPageInfo & WpPageInfo & { + __typename?: 'PostToPostConnectionPageInfo'; + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe; + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output']; + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output']; + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe; +}; + /** Connection between the Post type and the postFormat type */ export type PostToPostFormatConnection = Connection & PostFormatConnection & { __typename?: 'PostToPostFormatConnection'; @@ -10203,7 +6132,7 @@ export type PostToPostFormatConnectionEdge = Edge & PostFormatConnectionEdge & { node: PostFormat; }; -/** Page Info on the "PostToPostFormatConnection" */ +/** Pagination metadata specific to "PostToPostFormatConnection" collections. Provides cursors and flags for navigating through sets of PostToPostFormatConnection Nodes. */ export type PostToPostFormatConnectionPageInfo = PageInfo & PostFormatConnectionPageInfo & WpPageInfo & { __typename?: 'PostToPostFormatConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -10255,8 +6184,6 @@ export type PostToPostFormatConnectionWhereArgs = { /** Array of slugs to return term(s) for. Default empty. */ slug?: InputMaybe>>; /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; - /** Array of term taxonomy IDs, to match when querying terms. */ termTaxonomyId?: InputMaybe>>; /** Whether to prime meta caches for matched terms. Default true. */ updateTermMetaCache?: InputMaybe; @@ -10291,7 +6218,7 @@ export type PostToRevisionConnectionEdge = Edge & PostConnectionEdge & { node: Post; }; -/** Page Info on the "PostToRevisionConnection" */ +/** Pagination metadata specific to "PostToRevisionConnection" collections. Provides cursors and flags for navigating through sets of PostToRevisionConnection Nodes. */ export type PostToRevisionConnectionPageInfo = PageInfo & PostConnectionPageInfo & WpPageInfo & { __typename?: 'PostToRevisionConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -10390,7 +6317,7 @@ export type PostToTagConnectionEdge = Edge & TagConnectionEdge & { node: Tag; }; -/** Page Info on the "PostToTagConnection" */ +/** Pagination metadata specific to "PostToTagConnection" collections. Provides cursors and flags for navigating through sets of PostToTagConnection Nodes. */ export type PostToTagConnectionPageInfo = PageInfo & TagConnectionPageInfo & WpPageInfo & { __typename?: 'PostToTagConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -10442,8 +6369,6 @@ export type PostToTagConnectionWhereArgs = { /** Array of slugs to return term(s) for. Default empty. */ slug?: InputMaybe>>; /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; - /** Array of term taxonomy IDs, to match when querying terms. */ termTaxonomyId?: InputMaybe>>; /** Whether to prime meta caches for matched terms. Default true. */ updateTermMetaCache?: InputMaybe; @@ -10469,7 +6394,7 @@ export type PostToTermNodeConnectionEdge = Edge & TermNodeConnectionEdge & { node: TermNode; }; -/** Page Info on the "PostToTermNodeConnection" */ +/** Pagination metadata specific to "PostToTermNodeConnection" collections. Provides cursors and flags for navigating through sets of PostToTermNodeConnection Nodes. */ export type PostToTermNodeConnectionPageInfo = PageInfo & TermNodeConnectionPageInfo & WpPageInfo & { __typename?: 'PostToTermNodeConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -10523,8 +6448,6 @@ export type PostToTermNodeConnectionWhereArgs = { /** The Taxonomy to filter terms by */ taxonomies?: InputMaybe>>; /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; - /** Array of term taxonomy IDs, to match when querying terms. */ termTaxonomyId?: InputMaybe>>; /** Whether to prime meta caches for matched terms. Default true. */ updateTermMetaCache?: InputMaybe; @@ -10585,7 +6508,7 @@ export type PostTypeLabelDetails = { viewItems?: Maybe; }; -/** Nodes that can be seen in a preview (unpublished) state. */ +/** Content that supports a draft preview mode. Allows viewing unpublished changes before they are made publicly available. Previewing unpublished changes requires appropriate permissions. */ export type Previewable = { /** Whether the object is a node in the preview state */ isPreview?: Maybe; @@ -10595,179 +6518,6 @@ export type Previewable = { previewRevisionId?: Maybe; }; -/** The project type */ -export type Project = ContentNode & DatabaseIdentifier & Node & NodeWithAuthor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & { - __typename?: 'Project'; - /** Connection between the NodeWithAuthor type and the User type */ - author?: Maybe; - /** The database identifier of the author of the node */ - authorDatabaseId?: Maybe; - /** The globally unique identifier of the author of the node */ - authorId?: Maybe; - /** @deprecated Deprecated in favor of using Next.js pages */ - conditionalTags?: Maybe; - /** Project Content Area */ - contentArea?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the project object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the project object. */ - id: Scalars['ID']['output']; - /** Project Featured Image */ - image?: Maybe; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the project object. */ - password?: Maybe; - /** Connection between the Project type and the project type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - projectId: Scalars['Int']['output']; - /** Project Title */ - projectTitle?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - summary?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - templates?: Maybe>>; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** The unique resource identifier path */ - uri?: Maybe; -}; - - -/** The project type */ -export type ProjectEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - - -/** The project type */ -export type ProjectEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - - -/** The project type */ -export type ProjectTitleArgs = { - format?: InputMaybe; -}; - -/** Connection to project Nodes */ -export type ProjectConnection = { - /** A list of edges (relational context) between RootQuery and connected project Nodes */ - edges: Array; - /** A list of connected project Nodes */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: ProjectConnectionPageInfo; -}; - -/** Edge between a Node and a connected project */ -export type ProjectConnectionEdge = { - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The connected project Node */ - node: Project; -}; - -/** Page Info on the connected ProjectConnectionEdge */ -export type ProjectConnectionPageInfo = { - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; - -/** The Type of Identifier used to fetch a single resource. Default is ID. */ -export enum ProjectIdType { - /** Identify a resource by the Database ID. */ - DatabaseId = 'DATABASE_ID', - /** Identify a resource by the (hashed) Global ID. */ - Id = 'ID', - /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ - Slug = 'SLUG', - /** Identify a resource by the URI. */ - Uri = 'URI' -} - -/** Connection between the Project type and the project type */ -export type ProjectToPreviewConnectionEdge = Edge & OneToOneConnection & ProjectConnectionEdge & { - __typename?: 'ProjectToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Project; -}; - /** The reading setting type */ export type ReadingSettings = { __typename?: 'ReadingSettings'; @@ -10793,7 +6543,7 @@ export type RegisterUserInput = { displayName?: InputMaybe; /** A string containing the user's email address. */ email?: InputMaybe; - /** The user's first name. */ + /** The user's first name. */ firstName?: InputMaybe; /** User's Jabber account. */ jabber?: InputMaybe; @@ -10828,11 +6578,11 @@ export type RegisterUserPayload = { user?: Maybe; }; -/** The logical relation between each item in the array when there are more than one. */ +/** Logical operators for filter conditions. Determines whether multiple filtering criteria should be combined with AND (all must match) or OR (any can match). */ export enum RelationEnum { - /** The logical AND condition returns true if both operands are true, otherwise, it returns false. */ + /** All conditions must match (more restrictive filtering) */ And = 'AND', - /** The logical OR condition returns false if both operands are false, otherwise, it returns true. */ + /** Any condition can match (more inclusive filtering) */ Or = 'OR' } @@ -10883,6 +6633,10 @@ export type RootMutation = { createCategory?: Maybe; /** The createComment mutation */ createComment?: Maybe; + /** The createGraphqlDocument mutation */ + createGraphqlDocument?: Maybe; + /** The createGraphqlDocumentGroup mutation */ + createGraphqlDocumentGroup?: Maybe; /** The createMediaItem mutation */ createMediaItem?: Maybe; /** The createPage mutation */ @@ -10891,18 +6645,18 @@ export type RootMutation = { createPost?: Maybe; /** The createPostFormat mutation */ createPostFormat?: Maybe; - /** The createProject mutation */ - createProject?: Maybe; /** The createTag mutation */ createTag?: Maybe; - /** The createTestimonial mutation */ - createTestimonial?: Maybe; /** The createUser mutation */ createUser?: Maybe; /** The deleteCategory mutation */ deleteCategory?: Maybe; /** The deleteComment mutation */ deleteComment?: Maybe; + /** The deleteGraphqlDocument mutation */ + deleteGraphqlDocument?: Maybe; + /** The deleteGraphqlDocumentGroup mutation */ + deleteGraphqlDocumentGroup?: Maybe; /** The deleteMediaItem mutation */ deleteMediaItem?: Maybe; /** The deletePage mutation */ @@ -10911,12 +6665,8 @@ export type RootMutation = { deletePost?: Maybe; /** The deletePostFormat mutation */ deletePostFormat?: Maybe; - /** The deleteProject mutation */ - deleteProject?: Maybe; /** The deleteTag mutation */ deleteTag?: Maybe; - /** The deleteTestimonial mutation */ - deleteTestimonial?: Maybe; /** The deleteUser mutation */ deleteUser?: Maybe; /** The generateAuthorizationCode mutation */ @@ -10935,6 +6685,10 @@ export type RootMutation = { updateCategory?: Maybe; /** The updateComment mutation */ updateComment?: Maybe; + /** The updateGraphqlDocument mutation */ + updateGraphqlDocument?: Maybe; + /** The updateGraphqlDocumentGroup mutation */ + updateGraphqlDocumentGroup?: Maybe; /** The updateMediaItem mutation */ updateMediaItem?: Maybe; /** The updatePage mutation */ @@ -10943,14 +6697,10 @@ export type RootMutation = { updatePost?: Maybe; /** The updatePostFormat mutation */ updatePostFormat?: Maybe; - /** The updateProject mutation */ - updateProject?: Maybe; /** The updateSettings mutation */ updateSettings?: Maybe; /** The updateTag mutation */ updateTag?: Maybe; - /** The updateTestimonial mutation */ - updateTestimonial?: Maybe; /** The updateUser mutation */ updateUser?: Maybe; }; @@ -10968,6 +6718,18 @@ export type RootMutationCreateCommentArgs = { }; +/** The root mutation */ +export type RootMutationCreateGraphqlDocumentArgs = { + input: CreateGraphqlDocumentInput; +}; + + +/** The root mutation */ +export type RootMutationCreateGraphqlDocumentGroupArgs = { + input: CreateGraphqlDocumentGroupInput; +}; + + /** The root mutation */ export type RootMutationCreateMediaItemArgs = { input: CreateMediaItemInput; @@ -10992,24 +6754,12 @@ export type RootMutationCreatePostFormatArgs = { }; -/** The root mutation */ -export type RootMutationCreateProjectArgs = { - input: CreateProjectInput; -}; - - /** The root mutation */ export type RootMutationCreateTagArgs = { input: CreateTagInput; }; -/** The root mutation */ -export type RootMutationCreateTestimonialArgs = { - input: CreateTestimonialInput; -}; - - /** The root mutation */ export type RootMutationCreateUserArgs = { input: CreateUserInput; @@ -11028,6 +6778,18 @@ export type RootMutationDeleteCommentArgs = { }; +/** The root mutation */ +export type RootMutationDeleteGraphqlDocumentArgs = { + input: DeleteGraphqlDocumentInput; +}; + + +/** The root mutation */ +export type RootMutationDeleteGraphqlDocumentGroupArgs = { + input: DeleteGraphqlDocumentGroupInput; +}; + + /** The root mutation */ export type RootMutationDeleteMediaItemArgs = { input: DeleteMediaItemInput; @@ -11052,24 +6814,12 @@ export type RootMutationDeletePostFormatArgs = { }; -/** The root mutation */ -export type RootMutationDeleteProjectArgs = { - input: DeleteProjectInput; -}; - - /** The root mutation */ export type RootMutationDeleteTagArgs = { input: DeleteTagInput; }; -/** The root mutation */ -export type RootMutationDeleteTestimonialArgs = { - input: DeleteTestimonialInput; -}; - - /** The root mutation */ export type RootMutationDeleteUserArgs = { input: DeleteUserInput; @@ -11124,6 +6874,18 @@ export type RootMutationUpdateCommentArgs = { }; +/** The root mutation */ +export type RootMutationUpdateGraphqlDocumentArgs = { + input: UpdateGraphqlDocumentInput; +}; + + +/** The root mutation */ +export type RootMutationUpdateGraphqlDocumentGroupArgs = { + input: UpdateGraphqlDocumentGroupInput; +}; + + /** The root mutation */ export type RootMutationUpdateMediaItemArgs = { input: UpdateMediaItemInput; @@ -11148,12 +6910,6 @@ export type RootMutationUpdatePostFormatArgs = { }; -/** The root mutation */ -export type RootMutationUpdateProjectArgs = { - input: UpdateProjectInput; -}; - - /** The root mutation */ export type RootMutationUpdateSettingsArgs = { input: UpdateSettingsInput; @@ -11166,12 +6922,6 @@ export type RootMutationUpdateTagArgs = { }; -/** The root mutation */ -export type RootMutationUpdateTestimonialArgs = { - input: UpdateTestimonialInput; -}; - - /** The root mutation */ export type RootMutationUpdateUserArgs = { input: UpdateUserInput; @@ -11182,8 +6932,6 @@ export type RootQuery = { __typename?: 'RootQuery'; /** Entry point to get all settings for the site */ allSettings?: Maybe; - /** Fields of the 'AtlasContentModelerSettingsSettings' settings group */ - atlasContentModelerSettingsSettings?: Maybe; /** Connection between the RootQuery type and the category type */ categories?: Maybe; /** A 0bject */ @@ -11206,6 +6954,19 @@ export type RootQuery = { generalSettings?: Maybe; /** Returns the stylesheet resulting of merging core, theme, and user data. */ globalStylesheet?: Maybe; + /** An object of the graphqlDocument Type. Saved GraphQL Documents */ + graphqlDocument?: Maybe; + /** + * A graphqlDocument object + * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") + */ + graphqlDocumentBy?: Maybe; + /** A 0bject */ + graphqlDocumentGroup?: Maybe; + /** Connection between the RootQuery type and the graphqlDocumentGroup type */ + graphqlDocumentGroups?: Maybe; + /** Connection between the RootQuery type and the graphqlDocument type */ + graphqlDocuments?: Maybe; /** An object of the mediaItem Type. */ mediaItem?: Maybe; /** @@ -11253,15 +7014,6 @@ export type RootQuery = { postFormats?: Maybe; /** Connection between the RootQuery type and the post type */ posts?: Maybe; - /** An object of the project Type. Project Content Model */ - project?: Maybe; - /** - * A project object - * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") - */ - projectBy?: Maybe; - /** Connection between the RootQuery type and the project type */ - projects?: Maybe; /** Fields of the 'ReadingSettings' settings group */ readingSettings?: Maybe; /** Connection between the RootQuery type and the EnqueuedScript type */ @@ -11282,15 +7034,6 @@ export type RootQuery = { termNode?: Maybe; /** Connection between the RootQuery type and the TermNode type */ terms?: Maybe; - /** An object of the testimonial Type. Testimonial content model for the testimonials carousel */ - testimonial?: Maybe; - /** - * A testimonial object - * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") - */ - testimonialBy?: Maybe; - /** Connection between the RootQuery type and the testimonial type */ - testimonials?: Maybe; /** A Theme object */ theme?: Maybe; /** Connection between the RootQuery type and the Theme type */ @@ -11385,6 +7128,50 @@ export type RootQueryGlobalStylesheetArgs = { }; +/** The root entry point into the Graph */ +export type RootQueryGraphqlDocumentArgs = { + asPreview?: InputMaybe; + id: Scalars['ID']['input']; + idType?: InputMaybe; +}; + + +/** The root entry point into the Graph */ +export type RootQueryGraphqlDocumentByArgs = { + graphqlDocumentId?: InputMaybe; + id?: InputMaybe; + slug?: InputMaybe; + uri?: InputMaybe; +}; + + +/** The root entry point into the Graph */ +export type RootQueryGraphqlDocumentGroupArgs = { + id: Scalars['ID']['input']; + idType?: InputMaybe; +}; + + +/** The root entry point into the Graph */ +export type RootQueryGraphqlDocumentGroupsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + where?: InputMaybe; +}; + + +/** The root entry point into the Graph */ +export type RootQueryGraphqlDocumentsArgs = { + after?: InputMaybe; + before?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + where?: InputMaybe; +}; + + /** The root entry point into the Graph */ export type RootQueryMediaItemArgs = { asPreview?: InputMaybe; @@ -11535,39 +7322,12 @@ export type RootQueryPostFormatsArgs = { /** The root entry point into the Graph */ -export type RootQueryPostsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - - -/** The root entry point into the Graph */ -export type RootQueryProjectArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - - -/** The root entry point into the Graph */ -export type RootQueryProjectByArgs = { - id?: InputMaybe; - projectId?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - - -/** The root entry point into the Graph */ -export type RootQueryProjectsArgs = { +export type RootQueryPostsArgs = { after?: InputMaybe; before?: InputMaybe; first?: InputMaybe; last?: InputMaybe; - where?: InputMaybe; + where?: InputMaybe; }; @@ -11650,33 +7410,6 @@ export type RootQueryTermsArgs = { }; -/** The root entry point into the Graph */ -export type RootQueryTestimonialArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - - -/** The root entry point into the Graph */ -export type RootQueryTestimonialByArgs = { - id?: InputMaybe; - slug?: InputMaybe; - testimonialId?: InputMaybe; - uri?: InputMaybe; -}; - - -/** The root entry point into the Graph */ -export type RootQueryTestimonialsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - - /** The root entry point into the Graph */ export type RootQueryThemeArgs = { id: Scalars['ID']['input']; @@ -11743,7 +7476,7 @@ export type RootQueryToCategoryConnectionEdge = CategoryConnectionEdge & Edge & node: Category; }; -/** Page Info on the "RootQueryToCategoryConnection" */ +/** Pagination metadata specific to "RootQueryToCategoryConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToCategoryConnection Nodes. */ export type RootQueryToCategoryConnectionPageInfo = CategoryConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'RootQueryToCategoryConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -11795,8 +7528,6 @@ export type RootQueryToCategoryConnectionWhereArgs = { /** Array of slugs to return term(s) for. Default empty. */ slug?: InputMaybe>>; /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; - /** Array of term taxonomy IDs, to match when querying terms. */ termTaxonomyId?: InputMaybe>>; /** Whether to prime meta caches for matched terms. Default true. */ updateTermMetaCache?: InputMaybe; @@ -11822,7 +7553,7 @@ export type RootQueryToCommentConnectionEdge = CommentConnectionEdge & Edge & { node: Comment; }; -/** Page Info on the "RootQueryToCommentConnection" */ +/** Pagination metadata specific to "RootQueryToCommentConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToCommentConnection Nodes. */ export type RootQueryToCommentConnectionPageInfo = CommentConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'RootQueryToCommentConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -11891,8 +7622,8 @@ export type RootQueryToCommentConnectionWhereArgs = { parentNotIn?: InputMaybe>>; /** Search term(s) to retrieve matching comments for. */ search?: InputMaybe; - /** Comment status to limit results by. */ - status?: InputMaybe; + /** One or more Comment Statuses to limit results by */ + statusIn?: InputMaybe>>; /** Include comments for a specific user ID. */ userId?: InputMaybe; }; @@ -11917,7 +7648,7 @@ export type RootQueryToContentNodeConnectionEdge = ContentNodeConnectionEdge & E node: ContentNode; }; -/** Page Info on the "RootQueryToContentNodeConnection" */ +/** Pagination metadata specific to "RootQueryToContentNodeConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToContentNodeConnection Nodes. */ export type RootQueryToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'RootQueryToContentNodeConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -11990,7 +7721,7 @@ export type RootQueryToContentTypeConnectionEdge = ContentTypeConnectionEdge & E node: ContentType; }; -/** Page Info on the "RootQueryToContentTypeConnection" */ +/** Pagination metadata specific to "RootQueryToContentTypeConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToContentTypeConnection Nodes. */ export type RootQueryToContentTypeConnectionPageInfo = ContentTypeConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'RootQueryToContentTypeConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -12023,7 +7754,7 @@ export type RootQueryToEnqueuedScriptConnectionEdge = Edge & EnqueuedScriptConne node: EnqueuedScript; }; -/** Page Info on the "RootQueryToEnqueuedScriptConnection" */ +/** Pagination metadata specific to "RootQueryToEnqueuedScriptConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToEnqueuedScriptConnection Nodes. */ export type RootQueryToEnqueuedScriptConnectionPageInfo = EnqueuedScriptConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'RootQueryToEnqueuedScriptConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -12056,7 +7787,7 @@ export type RootQueryToEnqueuedStylesheetConnectionEdge = Edge & EnqueuedStylesh node: EnqueuedStylesheet; }; -/** Page Info on the "RootQueryToEnqueuedStylesheetConnection" */ +/** Pagination metadata specific to "RootQueryToEnqueuedStylesheetConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToEnqueuedStylesheetConnection Nodes. */ export type RootQueryToEnqueuedStylesheetConnectionPageInfo = EnqueuedStylesheetConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'RootQueryToEnqueuedStylesheetConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -12069,6 +7800,154 @@ export type RootQueryToEnqueuedStylesheetConnectionPageInfo = EnqueuedStylesheet startCursor?: Maybe; }; +/** Connection between the RootQuery type and the graphqlDocument type */ +export type RootQueryToGraphqlDocumentConnection = Connection & GraphqlDocumentConnection & { + __typename?: 'RootQueryToGraphqlDocumentConnection'; + /** Edges for the RootQueryToGraphqlDocumentConnection connection */ + edges: Array; + /** The nodes of the connection, without the edges */ + nodes: Array; + /** Information about pagination in a connection. */ + pageInfo: RootQueryToGraphqlDocumentConnectionPageInfo; +}; + +/** An edge in a connection */ +export type RootQueryToGraphqlDocumentConnectionEdge = Edge & GraphqlDocumentConnectionEdge & { + __typename?: 'RootQueryToGraphqlDocumentConnectionEdge'; + /** A cursor for use in pagination */ + cursor?: Maybe; + /** The item at the end of the edge */ + node: GraphqlDocument; +}; + +/** Pagination metadata specific to "RootQueryToGraphqlDocumentConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToGraphqlDocumentConnection Nodes. */ +export type RootQueryToGraphqlDocumentConnectionPageInfo = GraphqlDocumentConnectionPageInfo & PageInfo & WpPageInfo & { + __typename?: 'RootQueryToGraphqlDocumentConnectionPageInfo'; + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe; + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output']; + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output']; + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe; +}; + +/** Arguments for filtering the RootQueryToGraphqlDocumentConnection connection */ +export type RootQueryToGraphqlDocumentConnectionWhereArgs = { + /** Filter the connection based on dates */ + dateQuery?: InputMaybe; + /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ + hasPassword?: InputMaybe; + /** Specific database ID of the object */ + id?: InputMaybe; + /** Array of IDs for the objects to retrieve */ + in?: InputMaybe>>; + /** Get objects with a specific mimeType property */ + mimeType?: InputMaybe; + /** Slug / post_name of the object */ + name?: InputMaybe; + /** Specify objects to retrieve. Use slugs */ + nameIn?: InputMaybe>>; + /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ + notIn?: InputMaybe>>; + /** What parameter to use to order the objects by. */ + orderby?: InputMaybe>>; + /** Use ID to return only children. Use 0 to return only top-level items */ + parent?: InputMaybe; + /** Specify objects whose parent is in an array */ + parentIn?: InputMaybe>>; + /** Specify posts whose parent is not in an array */ + parentNotIn?: InputMaybe>>; + /** Show posts with a specific password. */ + password?: InputMaybe; + /** Show Posts based on a keyword search */ + search?: InputMaybe; + /** Retrieve posts where post status is in an array. */ + stati?: InputMaybe>>; + /** Show posts with a specific status. */ + status?: InputMaybe; + /** Title of the object */ + title?: InputMaybe; +}; + +/** Connection between the RootQuery type and the graphqlDocumentGroup type */ +export type RootQueryToGraphqlDocumentGroupConnection = Connection & GraphqlDocumentGroupConnection & { + __typename?: 'RootQueryToGraphqlDocumentGroupConnection'; + /** Edges for the RootQueryToGraphqlDocumentGroupConnection connection */ + edges: Array; + /** The nodes of the connection, without the edges */ + nodes: Array; + /** Information about pagination in a connection. */ + pageInfo: RootQueryToGraphqlDocumentGroupConnectionPageInfo; +}; + +/** An edge in a connection */ +export type RootQueryToGraphqlDocumentGroupConnectionEdge = Edge & GraphqlDocumentGroupConnectionEdge & { + __typename?: 'RootQueryToGraphqlDocumentGroupConnectionEdge'; + /** A cursor for use in pagination */ + cursor?: Maybe; + /** The item at the end of the edge */ + node: GraphqlDocumentGroup; +}; + +/** Pagination metadata specific to "RootQueryToGraphqlDocumentGroupConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToGraphqlDocumentGroupConnection Nodes. */ +export type RootQueryToGraphqlDocumentGroupConnectionPageInfo = GraphqlDocumentGroupConnectionPageInfo & PageInfo & WpPageInfo & { + __typename?: 'RootQueryToGraphqlDocumentGroupConnectionPageInfo'; + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe; + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output']; + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output']; + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe; +}; + +/** Arguments for filtering the RootQueryToGraphqlDocumentGroupConnection connection */ +export type RootQueryToGraphqlDocumentGroupConnectionWhereArgs = { + /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ + cacheDomain?: InputMaybe; + /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ + childOf?: InputMaybe; + /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ + childless?: InputMaybe; + /** Retrieve terms where the description is LIKE the input value. Default empty. */ + descriptionLike?: InputMaybe; + /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ + exclude?: InputMaybe>>; + /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ + excludeTree?: InputMaybe>>; + /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ + hideEmpty?: InputMaybe; + /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ + hierarchical?: InputMaybe; + /** Array of term ids to include. Default empty array. */ + include?: InputMaybe>>; + /** Array of names to return term(s) for. Default empty. */ + name?: InputMaybe>>; + /** Retrieve terms where the name is LIKE the input value. Default empty. */ + nameLike?: InputMaybe; + /** Array of object IDs. Results will be limited to terms associated with these objects. */ + objectIds?: InputMaybe>>; + /** Direction the connection should be ordered in */ + order?: InputMaybe; + /** Field(s) to order terms by. Defaults to 'name'. */ + orderby?: InputMaybe; + /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ + padCounts?: InputMaybe; + /** Parent term ID to retrieve direct-child terms of. Default empty. */ + parent?: InputMaybe; + /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ + search?: InputMaybe; + /** Array of slugs to return term(s) for. Default empty. */ + slug?: InputMaybe>>; + /** Array of term taxonomy IDs, to match when querying terms. */ + termTaxonomyId?: InputMaybe>>; + /** Whether to prime meta caches for matched terms. Default true. */ + updateTermMetaCache?: InputMaybe; +}; + /** Connection between the RootQuery type and the mediaItem type */ export type RootQueryToMediaItemConnection = Connection & MediaItemConnection & { __typename?: 'RootQueryToMediaItemConnection'; @@ -12089,7 +7968,7 @@ export type RootQueryToMediaItemConnectionEdge = Edge & MediaItemConnectionEdge node: MediaItem; }; -/** Page Info on the "RootQueryToMediaItemConnection" */ +/** Pagination metadata specific to "RootQueryToMediaItemConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToMediaItemConnection Nodes. */ export type RootQueryToMediaItemConnectionPageInfo = MediaItemConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'RootQueryToMediaItemConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -12168,7 +8047,7 @@ export type RootQueryToMenuConnectionEdge = Edge & MenuConnectionEdge & { node: Menu; }; -/** Page Info on the "RootQueryToMenuConnection" */ +/** Pagination metadata specific to "RootQueryToMenuConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToMenuConnection Nodes. */ export type RootQueryToMenuConnectionPageInfo = MenuConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'RootQueryToMenuConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -12211,7 +8090,7 @@ export type RootQueryToMenuItemConnectionEdge = Edge & MenuItemConnectionEdge & node: MenuItem; }; -/** Page Info on the "RootQueryToMenuItemConnection" */ +/** Pagination metadata specific to "RootQueryToMenuItemConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToMenuItemConnection Nodes. */ export type RootQueryToMenuItemConnectionPageInfo = MenuItemConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'RootQueryToMenuItemConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -12256,7 +8135,7 @@ export type RootQueryToPageConnectionEdge = Edge & PageConnectionEdge & { node: Page; }; -/** Page Info on the "RootQueryToPageConnection" */ +/** Pagination metadata specific to "RootQueryToPageConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToPageConnection Nodes. */ export type RootQueryToPageConnectionPageInfo = PageConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'RootQueryToPageConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -12335,7 +8214,7 @@ export type RootQueryToPluginConnectionEdge = Edge & PluginConnectionEdge & { node: Plugin; }; -/** Page Info on the "RootQueryToPluginConnection" */ +/** Pagination metadata specific to "RootQueryToPluginConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToPluginConnection Nodes. */ export type RootQueryToPluginConnectionPageInfo = PageInfo & PluginConnectionPageInfo & WpPageInfo & { __typename?: 'RootQueryToPluginConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -12378,7 +8257,7 @@ export type RootQueryToPostConnectionEdge = Edge & PostConnectionEdge & { node: Post; }; -/** Page Info on the "RootQueryToPostConnection" */ +/** Pagination metadata specific to "RootQueryToPostConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToPostConnection Nodes. */ export type RootQueryToPostConnectionPageInfo = PageInfo & PostConnectionPageInfo & WpPageInfo & { __typename?: 'RootQueryToPostConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -12475,144 +8354,63 @@ export type RootQueryToPostFormatConnectionEdge = Edge & PostFormatConnectionEdg cursor?: Maybe; /** The item at the end of the edge */ node: PostFormat; -}; - -/** Page Info on the "RootQueryToPostFormatConnection" */ -export type RootQueryToPostFormatConnectionPageInfo = PageInfo & PostFormatConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToPostFormatConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; - -/** Arguments for filtering the RootQueryToPostFormatConnection connection */ -export type RootQueryToPostFormatConnectionWhereArgs = { - /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; - /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; - /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; - /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; - /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; - /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; - /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; - /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; - /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; - /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; - /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; - /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; - /** Direction the connection should be ordered in */ - order?: InputMaybe; - /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; - /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; - /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; - /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; - /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; - /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; - /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; - /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; - -/** Connection between the RootQuery type and the project type */ -export type RootQueryToProjectConnection = Connection & ProjectConnection & { - __typename?: 'RootQueryToProjectConnection'; - /** Edges for the RootQueryToProjectConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToProjectConnectionPageInfo; -}; - -/** An edge in a connection */ -export type RootQueryToProjectConnectionEdge = Edge & ProjectConnectionEdge & { - __typename?: 'RootQueryToProjectConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Project; -}; - -/** Page Info on the "RootQueryToProjectConnection" */ -export type RootQueryToProjectConnectionPageInfo = PageInfo & ProjectConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToProjectConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; - -/** Arguments for filtering the RootQueryToProjectConnection connection */ -export type RootQueryToProjectConnectionWhereArgs = { - /** The user that's connected as the author of the object. Use the userId for the author object. */ - author?: InputMaybe; - /** Find objects connected to author(s) in the array of author's userIds */ - authorIn?: InputMaybe>>; - /** Find objects connected to the author by the author's nicename */ - authorName?: InputMaybe; - /** Find objects NOT connected to author(s) in the array of author's userIds */ - authorNotIn?: InputMaybe>>; - /** Filter the connection based on dates */ - dateQuery?: InputMaybe; - /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; - /** Specific database ID of the object */ - id?: InputMaybe; - /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; - /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; - /** Slug / post_name of the object */ - name?: InputMaybe; - /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; - /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; - /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; - /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; - /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; - /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; - /** Show posts with a specific password. */ - password?: InputMaybe; - /** Show Posts based on a keyword search */ +}; + +/** Pagination metadata specific to "RootQueryToPostFormatConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToPostFormatConnection Nodes. */ +export type RootQueryToPostFormatConnectionPageInfo = PageInfo & PostFormatConnectionPageInfo & WpPageInfo & { + __typename?: 'RootQueryToPostFormatConnectionPageInfo'; + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe; + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output']; + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output']; + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe; +}; + +/** Arguments for filtering the RootQueryToPostFormatConnection connection */ +export type RootQueryToPostFormatConnectionWhereArgs = { + /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ + cacheDomain?: InputMaybe; + /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ + childOf?: InputMaybe; + /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ + childless?: InputMaybe; + /** Retrieve terms where the description is LIKE the input value. Default empty. */ + descriptionLike?: InputMaybe; + /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ + exclude?: InputMaybe>>; + /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ + excludeTree?: InputMaybe>>; + /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ + hideEmpty?: InputMaybe; + /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ + hierarchical?: InputMaybe; + /** Array of term ids to include. Default empty array. */ + include?: InputMaybe>>; + /** Array of names to return term(s) for. Default empty. */ + name?: InputMaybe>>; + /** Retrieve terms where the name is LIKE the input value. Default empty. */ + nameLike?: InputMaybe; + /** Array of object IDs. Results will be limited to terms associated with these objects. */ + objectIds?: InputMaybe>>; + /** Direction the connection should be ordered in */ + order?: InputMaybe; + /** Field(s) to order terms by. Defaults to 'name'. */ + orderby?: InputMaybe; + /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ + padCounts?: InputMaybe; + /** Parent term ID to retrieve direct-child terms of. Default empty. */ + parent?: InputMaybe; + /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ search?: InputMaybe; - /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; - /** Show posts with a specific status. */ - status?: InputMaybe; - /** Title of the object */ - title?: InputMaybe; + /** Array of slugs to return term(s) for. Default empty. */ + slug?: InputMaybe>>; + /** Array of term taxonomy IDs, to match when querying terms. */ + termTaxonomyId?: InputMaybe>>; + /** Whether to prime meta caches for matched terms. Default true. */ + updateTermMetaCache?: InputMaybe; }; /** Connection between the RootQuery type and the ContentNode type */ @@ -12635,7 +8433,7 @@ export type RootQueryToRevisionsConnectionEdge = ContentNodeConnectionEdge & Edg node: ContentNode; }; -/** Page Info on the "RootQueryToRevisionsConnection" */ +/** Pagination metadata specific to "RootQueryToRevisionsConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToRevisionsConnection Nodes. */ export type RootQueryToRevisionsConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'RootQueryToRevisionsConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -12708,7 +8506,7 @@ export type RootQueryToTagConnectionEdge = Edge & TagConnectionEdge & { node: Tag; }; -/** Page Info on the "RootQueryToTagConnection" */ +/** Pagination metadata specific to "RootQueryToTagConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToTagConnection Nodes. */ export type RootQueryToTagConnectionPageInfo = PageInfo & TagConnectionPageInfo & WpPageInfo & { __typename?: 'RootQueryToTagConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -12760,8 +8558,6 @@ export type RootQueryToTagConnectionWhereArgs = { /** Array of slugs to return term(s) for. Default empty. */ slug?: InputMaybe>>; /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; - /** Array of term taxonomy IDs, to match when querying terms. */ termTaxonomyId?: InputMaybe>>; /** Whether to prime meta caches for matched terms. Default true. */ updateTermMetaCache?: InputMaybe; @@ -12787,7 +8583,7 @@ export type RootQueryToTaxonomyConnectionEdge = Edge & TaxonomyConnectionEdge & node: Taxonomy; }; -/** Page Info on the "RootQueryToTaxonomyConnection" */ +/** Pagination metadata specific to "RootQueryToTaxonomyConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToTaxonomyConnection Nodes. */ export type RootQueryToTaxonomyConnectionPageInfo = PageInfo & TaxonomyConnectionPageInfo & WpPageInfo & { __typename?: 'RootQueryToTaxonomyConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -12820,7 +8616,7 @@ export type RootQueryToTermNodeConnectionEdge = Edge & TermNodeConnectionEdge & node: TermNode; }; -/** Page Info on the "RootQueryToTermNodeConnection" */ +/** Pagination metadata specific to "RootQueryToTermNodeConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToTermNodeConnection Nodes. */ export type RootQueryToTermNodeConnectionPageInfo = PageInfo & TermNodeConnectionPageInfo & WpPageInfo & { __typename?: 'RootQueryToTermNodeConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -12874,92 +8670,11 @@ export type RootQueryToTermNodeConnectionWhereArgs = { /** The Taxonomy to filter terms by */ taxonomies?: InputMaybe>>; /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; - /** Array of term taxonomy IDs, to match when querying terms. */ termTaxonomyId?: InputMaybe>>; /** Whether to prime meta caches for matched terms. Default true. */ updateTermMetaCache?: InputMaybe; }; -/** Connection between the RootQuery type and the testimonial type */ -export type RootQueryToTestimonialConnection = Connection & TestimonialConnection & { - __typename?: 'RootQueryToTestimonialConnection'; - /** Edges for the RootQueryToTestimonialConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToTestimonialConnectionPageInfo; -}; - -/** An edge in a connection */ -export type RootQueryToTestimonialConnectionEdge = Edge & TestimonialConnectionEdge & { - __typename?: 'RootQueryToTestimonialConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Testimonial; -}; - -/** Page Info on the "RootQueryToTestimonialConnection" */ -export type RootQueryToTestimonialConnectionPageInfo = PageInfo & TestimonialConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToTestimonialConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; - -/** Arguments for filtering the RootQueryToTestimonialConnection connection */ -export type RootQueryToTestimonialConnectionWhereArgs = { - /** The user that's connected as the author of the object. Use the userId for the author object. */ - author?: InputMaybe; - /** Find objects connected to author(s) in the array of author's userIds */ - authorIn?: InputMaybe>>; - /** Find objects connected to the author by the author's nicename */ - authorName?: InputMaybe; - /** Find objects NOT connected to author(s) in the array of author's userIds */ - authorNotIn?: InputMaybe>>; - /** Filter the connection based on dates */ - dateQuery?: InputMaybe; - /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; - /** Specific database ID of the object */ - id?: InputMaybe; - /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; - /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; - /** Slug / post_name of the object */ - name?: InputMaybe; - /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; - /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; - /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; - /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; - /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; - /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; - /** Show posts with a specific password. */ - password?: InputMaybe; - /** Show Posts based on a keyword search */ - search?: InputMaybe; - /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; - /** Show posts with a specific status. */ - status?: InputMaybe; - /** Title of the object */ - title?: InputMaybe; -}; - /** Connection between the RootQuery type and the Theme type */ export type RootQueryToThemeConnection = Connection & ThemeConnection & { __typename?: 'RootQueryToThemeConnection'; @@ -12980,7 +8695,7 @@ export type RootQueryToThemeConnectionEdge = Edge & ThemeConnectionEdge & { node: Theme; }; -/** Page Info on the "RootQueryToThemeConnection" */ +/** Pagination metadata specific to "RootQueryToThemeConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToThemeConnection Nodes. */ export type RootQueryToThemeConnectionPageInfo = PageInfo & ThemeConnectionPageInfo & WpPageInfo & { __typename?: 'RootQueryToThemeConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -13013,7 +8728,7 @@ export type RootQueryToUserConnectionEdge = Edge & UserConnectionEdge & { node: User; }; -/** Page Info on the "RootQueryToUserConnection" */ +/** Pagination metadata specific to "RootQueryToUserConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToUserConnection Nodes. */ export type RootQueryToUserConnectionPageInfo = PageInfo & UserConnectionPageInfo & WpPageInfo & { __typename?: 'RootQueryToUserConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -13080,7 +8795,7 @@ export type RootQueryToUserRoleConnectionEdge = Edge & UserRoleConnectionEdge & node: UserRole; }; -/** Page Info on the "RootQueryToUserRoleConnection" */ +/** Pagination metadata specific to "RootQueryToUserRoleConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToUserRoleConnection Nodes. */ export type RootQueryToUserRoleConnectionPageInfo = PageInfo & UserRoleConnectionPageInfo & WpPageInfo & { __typename?: 'RootQueryToUserRoleConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -13093,11 +8808,19 @@ export type RootQueryToUserRoleConnectionPageInfo = PageInfo & UserRoleConnectio startCursor?: Maybe; }; -/** The strategy to use when loading the script */ +/** Script insertion positions in the document structure. Determines whether scripts are placed in the document head or before the closing body tag. */ +export enum ScriptLoadingGroupLocationEnum { + /** Delayed loading at end of document, right before the closing `` tag. (allows content to render first) */ + Footer = 'FOOTER', + /** Early loading in document `` tag. (executes before page content renders) */ + Header = 'HEADER' +} + +/** Script loading optimization attributes. Controls browser behavior for script loading to improve page performance (async or defer). */ export enum ScriptLoadingStrategyEnum { - /** Use the script `async` attribute */ + /** Load script in parallel with page rendering, executing as soon as downloaded */ Async = 'ASYNC', - /** Use the script `defer` attribute */ + /** Download script in parallel but defer execution until page is fully parsed */ Defer = 'DEFER' } @@ -13127,8 +8850,6 @@ export type SendPasswordResetEmailPayload = { export type Settings = { __typename?: 'Settings'; /** Settings of the the string Settings Group */ - atlasContentModelerSettingsSettingsAtlasContentModelerUsageTracking?: Maybe; - /** Settings of the the string Settings Group */ discussionSettingsDefaultCommentStatus?: Maybe; /** Settings of the the string Settings Group */ discussionSettingsDefaultPingStatus?: Maybe; @@ -13166,7 +8887,7 @@ export type Settings = { writingSettingsUseSmilies?: Maybe; }; -/** The tag type */ +/** A taxonomy term used to organize and classify content. Tags do not have a hierarchy and are generally used for more specific classifications. */ export type Tag = DatabaseIdentifier & MenuItemLinkable & Node & TermNode & UniformResourceIdentifiable & { __typename?: 'Tag'; /** @deprecated Deprecated in favor of using Next.js pages */ @@ -13224,7 +8945,7 @@ export type Tag = DatabaseIdentifier & MenuItemLinkable & Node & TermNode & Unif }; -/** The tag type */ +/** A taxonomy term used to organize and classify content. Tags do not have a hierarchy and are generally used for more specific classifications. */ export type TagContentNodesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -13234,7 +8955,7 @@ export type TagContentNodesArgs = { }; -/** The tag type */ +/** A taxonomy term used to organize and classify content. Tags do not have a hierarchy and are generally used for more specific classifications. */ export type TagEnqueuedScriptsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -13243,7 +8964,7 @@ export type TagEnqueuedScriptsArgs = { }; -/** The tag type */ +/** A taxonomy term used to organize and classify content. Tags do not have a hierarchy and are generally used for more specific classifications. */ export type TagEnqueuedStylesheetsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -13252,7 +8973,7 @@ export type TagEnqueuedStylesheetsArgs = { }; -/** The tag type */ +/** A taxonomy term used to organize and classify content. Tags do not have a hierarchy and are generally used for more specific classifications. */ export type TagPostsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -13261,7 +8982,7 @@ export type TagPostsArgs = { where?: InputMaybe; }; -/** Connection to tag Nodes */ +/** A paginated collection of tag Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of tag Nodes */ export type TagConnection = { /** A list of edges (relational context) between RootQuery and connected tag Nodes */ edges: Array; @@ -13271,7 +8992,7 @@ export type TagConnection = { pageInfo: TagConnectionPageInfo; }; -/** Edge between a Node and a connected tag */ +/** Represents a connection to a tag. Contains both the tag Node and metadata about the relationship. */ export type TagConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -13279,7 +9000,7 @@ export type TagConnectionEdge = { node: Tag; }; -/** Page Info on the connected TagConnectionEdge */ +/** Pagination metadata specific to "TagConnectionEdge" collections. Provides cursors and flags for navigating through sets of "TagConnectionEdge" Nodes. */ export type TagConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -13291,7 +9012,7 @@ export type TagConnectionPageInfo = { startCursor?: Maybe; }; -/** The Type of Identifier used to fetch a single resource. Default is ID. */ +/** Identifier types for retrieving a specific Tag. Determines which unique property (global ID, database ID, slug, etc.) is used to locate the Tag. */ export enum TagIdType { /** The Database ID for the node */ DatabaseId = 'DATABASE_ID', @@ -13325,7 +9046,7 @@ export type TagToContentNodeConnectionEdge = ContentNodeConnectionEdge & Edge & node: ContentNode; }; -/** Page Info on the "TagToContentNodeConnection" */ +/** Pagination metadata specific to "TagToContentNodeConnection" collections. Provides cursors and flags for navigating through sets of TagToContentNodeConnection Nodes. */ export type TagToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'TagToContentNodeConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -13398,7 +9119,7 @@ export type TagToPostConnectionEdge = Edge & PostConnectionEdge & { node: Post; }; -/** Page Info on the "TagToPostConnection" */ +/** Pagination metadata specific to "TagToPostConnection" collections. Provides cursors and flags for navigating through sets of TagToPostConnection Nodes. */ export type TagToPostConnectionPageInfo = PageInfo & PostConnectionPageInfo & WpPageInfo & { __typename?: 'TagToPostConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -13551,7 +9272,7 @@ export type TaxonomyConnectedTermsArgs = { last?: InputMaybe; }; -/** Connection to Taxonomy Nodes */ +/** A paginated collection of Taxonomy Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of Taxonomy Nodes */ export type TaxonomyConnection = { /** A list of edges (relational context) between RootQuery and connected Taxonomy Nodes */ edges: Array; @@ -13561,7 +9282,7 @@ export type TaxonomyConnection = { pageInfo: TaxonomyConnectionPageInfo; }; -/** Edge between a Node and a connected Taxonomy */ +/** Represents a connection to a Taxonomy. Contains both the Taxonomy Node and metadata about the relationship. */ export type TaxonomyConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -13569,7 +9290,7 @@ export type TaxonomyConnectionEdge = { node: Taxonomy; }; -/** Page Info on the connected TaxonomyConnectionEdge */ +/** Pagination metadata specific to "TaxonomyConnectionEdge" collections. Provides cursors and flags for navigating through sets of "TaxonomyConnectionEdge" Nodes. */ export type TaxonomyConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -13581,17 +9302,19 @@ export type TaxonomyConnectionPageInfo = { startCursor?: Maybe; }; -/** Allowed taxonomies */ +/** Available classification systems for organizing content. Identifies the different taxonomy types that can be used for content categorization. */ export enum TaxonomyEnum { /** Taxonomy enum category */ Category = 'CATEGORY', + /** Taxonomy enum graphql_document_group */ + Graphqldocumentgroup = 'GRAPHQLDOCUMENTGROUP', /** Taxonomy enum post_format */ Postformat = 'POSTFORMAT', /** Taxonomy enum post_tag */ Tag = 'TAG' } -/** The Type of Identifier used to fetch a single Taxonomy node. To be used along with the "id" field. Default is "ID". */ +/** Identifier types for retrieving a taxonomy definition. Determines whether to look up taxonomies by ID or name. */ export enum TaxonomyIdTypeEnum { /** The globally unique ID */ Id = 'ID', @@ -13619,7 +9342,7 @@ export type TaxonomyToContentTypeConnectionEdge = ContentTypeConnectionEdge & Ed node: ContentType; }; -/** Page Info on the "TaxonomyToContentTypeConnection" */ +/** Pagination metadata specific to "TaxonomyToContentTypeConnection" collections. Provides cursors and flags for navigating through sets of TaxonomyToContentTypeConnection Nodes. */ export type TaxonomyToContentTypeConnectionPageInfo = ContentTypeConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'TaxonomyToContentTypeConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -13652,7 +9375,7 @@ export type TaxonomyToTermNodeConnectionEdge = Edge & TermNodeConnectionEdge & { node: TermNode; }; -/** Page Info on the "TaxonomyToTermNodeConnection" */ +/** Pagination metadata specific to "TaxonomyToTermNodeConnection" collections. Provides cursors and flags for navigating through sets of TaxonomyToTermNodeConnection Nodes. */ export type TaxonomyToTermNodeConnectionPageInfo = PageInfo & TermNodeConnectionPageInfo & WpPageInfo & { __typename?: 'TaxonomyToTermNodeConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -13679,7 +9402,7 @@ export type Template_BlogAlternative = ContentTemplate & { templateName?: Maybe; }; -/** Terms are nodes within a Taxonomy, used to group and relate other nodes. */ +/** Base interface for taxonomy terms such as categories and tags. Terms are used to organize and classify content. */ export type TermNode = { /** @deprecated Deprecated in favor of using Next.js pages */ conditionalTags?: Maybe; @@ -13725,7 +9448,7 @@ export type TermNode = { }; -/** Terms are nodes within a Taxonomy, used to group and relate other nodes. */ +/** Base interface for taxonomy terms such as categories and tags. Terms are used to organize and classify content. */ export type TermNodeEnqueuedScriptsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -13734,7 +9457,7 @@ export type TermNodeEnqueuedScriptsArgs = { }; -/** Terms are nodes within a Taxonomy, used to group and relate other nodes. */ +/** Base interface for taxonomy terms such as categories and tags. Terms are used to organize and classify content. */ export type TermNodeEnqueuedStylesheetsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -13742,7 +9465,7 @@ export type TermNodeEnqueuedStylesheetsArgs = { last?: InputMaybe; }; -/** Connection to TermNode Nodes */ +/** A paginated collection of TermNode Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of TermNode Nodes */ export type TermNodeConnection = { /** A list of edges (relational context) between RootQuery and connected TermNode Nodes */ edges: Array; @@ -13752,7 +9475,7 @@ export type TermNodeConnection = { pageInfo: TermNodeConnectionPageInfo; }; -/** Edge between a Node and a connected TermNode */ +/** Represents a connection to a TermNode. Contains both the TermNode Node and metadata about the relationship. */ export type TermNodeConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -13760,7 +9483,7 @@ export type TermNodeConnectionEdge = { node: TermNode; }; -/** Page Info on the connected TermNodeConnectionEdge */ +/** Pagination metadata specific to "TermNodeConnectionEdge" collections. Provides cursors and flags for navigating through sets of "TermNodeConnectionEdge" Nodes. */ export type TermNodeConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -13806,7 +9529,7 @@ export type TermNodeToEnqueuedScriptConnectionEdge = Edge & EnqueuedScriptConnec node: EnqueuedScript; }; -/** Page Info on the "TermNodeToEnqueuedScriptConnection" */ +/** Pagination metadata specific to "TermNodeToEnqueuedScriptConnection" collections. Provides cursors and flags for navigating through sets of TermNodeToEnqueuedScriptConnection Nodes. */ export type TermNodeToEnqueuedScriptConnectionPageInfo = EnqueuedScriptConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'TermNodeToEnqueuedScriptConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -13839,7 +9562,7 @@ export type TermNodeToEnqueuedStylesheetConnectionEdge = Edge & EnqueuedStyleshe node: EnqueuedStylesheet; }; -/** Page Info on the "TermNodeToEnqueuedStylesheetConnection" */ +/** Pagination metadata specific to "TermNodeToEnqueuedStylesheetConnection" collections. Provides cursors and flags for navigating through sets of TermNodeToEnqueuedStylesheetConnection Nodes. */ export type TermNodeToEnqueuedStylesheetConnectionPageInfo = EnqueuedStylesheetConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'TermNodeToEnqueuedStylesheetConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -13852,186 +9575,24 @@ export type TermNodeToEnqueuedStylesheetConnectionPageInfo = EnqueuedStylesheetC startCursor?: Maybe; }; -/** Options for ordering the connection by */ +/** Sorting attributes for taxonomy term collections. Determines which property of taxonomy terms is used for ordering results. */ export enum TermObjectsConnectionOrderbyEnum { - /** Order the connection by item count. */ + /** Ordering by number of associated content items. */ Count = 'COUNT', - /** Order the connection by description. */ + /** Alphabetical ordering by term description text. */ Description = 'DESCRIPTION', - /** Order the connection by name. */ + /** Alphabetical ordering by term name. */ Name = 'NAME', - /** Order the connection by slug. */ - Slug = 'SLUG', - /** Order the connection by term group. */ - TermGroup = 'TERM_GROUP', - /** Order the connection by term id. */ - TermId = 'TERM_ID', - /** Order the connection by term order. */ - TermOrder = 'TERM_ORDER' -} - -/** The testimonial type */ -export type Testimonial = ContentNode & DatabaseIdentifier & Node & NodeWithAuthor & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & { - __typename?: 'Testimonial'; - /** Connection between the NodeWithAuthor type and the User type */ - author?: Maybe; - /** The database identifier of the author of the node */ - authorDatabaseId?: Maybe; - /** The globally unique identifier of the author of the node */ - authorId?: Maybe; - /** @deprecated Deprecated in favor of using Next.js pages */ - conditionalTags?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the testimonial object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the testimonial object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the testimonial object. */ - password?: Maybe; - /** Connection between the Testimonial type and the testimonial type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - templates?: Maybe>>; - testimonialAuthor?: Maybe; - testimonialContent?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - testimonialId: Scalars['Int']['output']; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** The unique resource identifier path */ - uri?: Maybe; -}; - - -/** The testimonial type */ -export type TestimonialEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - - -/** The testimonial type */ -export type TestimonialEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - - -/** The testimonial type */ -export type TestimonialTitleArgs = { - format?: InputMaybe; -}; - -/** Connection to testimonial Nodes */ -export type TestimonialConnection = { - /** A list of edges (relational context) between RootQuery and connected testimonial Nodes */ - edges: Array; - /** A list of connected testimonial Nodes */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: TestimonialConnectionPageInfo; -}; - -/** Edge between a Node and a connected testimonial */ -export type TestimonialConnectionEdge = { - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The connected testimonial Node */ - node: Testimonial; -}; - -/** Page Info on the connected TestimonialConnectionEdge */ -export type TestimonialConnectionPageInfo = { - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; - -/** The Type of Identifier used to fetch a single resource. Default is ID. */ -export enum TestimonialIdType { - /** Identify a resource by the Database ID. */ - DatabaseId = 'DATABASE_ID', - /** Identify a resource by the (hashed) Global ID. */ - Id = 'ID', - /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ - Slug = 'SLUG', - /** Identify a resource by the URI. */ - Uri = 'URI' + /** Alphabetical ordering by URL-friendly name. */ + Slug = 'SLUG', + /** Ordering by assigned term grouping value. */ + TermGroup = 'TERM_GROUP', + /** Ordering by internal identifier. */ + TermId = 'TERM_ID', + /** Ordering by manually defined sort position. */ + TermOrder = 'TERM_ORDER' } -/** Connection between the Testimonial type and the testimonial type */ -export type TestimonialToPreviewConnectionEdge = Edge & OneToOneConnection & TestimonialConnectionEdge & { - __typename?: 'TestimonialToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Testimonial; -}; - /** A theme object */ export type Theme = Node & { __typename?: 'Theme'; @@ -14059,7 +9620,7 @@ export type Theme = Node & { version?: Maybe; }; -/** Connection to Theme Nodes */ +/** A paginated collection of Theme Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of Theme Nodes */ export type ThemeConnection = { /** A list of edges (relational context) between RootQuery and connected Theme Nodes */ edges: Array; @@ -14069,7 +9630,7 @@ export type ThemeConnection = { pageInfo: ThemeConnectionPageInfo; }; -/** Edge between a Node and a connected Theme */ +/** Represents a connection to a Theme. Contains both the Theme Node and metadata about the relationship. */ export type ThemeConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -14077,7 +9638,7 @@ export type ThemeConnectionEdge = { node: Theme; }; -/** Page Info on the connected ThemeConnectionEdge */ +/** Pagination metadata specific to "ThemeConnectionEdge" collections. Provides cursors and flags for navigating through sets of "ThemeConnectionEdge" Nodes. */ export type ThemeConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -14089,7 +9650,7 @@ export type ThemeConnectionPageInfo = { startCursor?: Maybe; }; -/** Any node that has a URI */ +/** An interface for content that can be accessed via a unique URI/URL path. Implemented by content types that have their own permalinks. */ export type UniformResourceIdentifiable = { /** @deprecated Deprecated in favor of using Next.js pages */ conditionalTags?: Maybe; @@ -14122,7 +9683,9 @@ export type UpdateCategoryInput = { id: Scalars['ID']['input']; /** The name of the category object to mutate */ name?: InputMaybe; - /** The ID of the category that should be set as the parent */ + /** The database ID of the category that should be set as the parent. This field cannot be used in conjunction with parentId */ + parentDatabaseId?: InputMaybe; + /** The ID of the category that should be set as the parent. This field cannot be used in conjunction with parentDatabaseId */ parentId?: InputMaybe; /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ slug?: InputMaybe; @@ -14139,8 +9702,6 @@ export type UpdateCategoryPayload = { /** Input for the updateComment mutation. */ export type UpdateCommentInput = { - /** The approval status of the comment. */ - approved?: InputMaybe; /** The name of the comment's author. */ author?: InputMaybe; /** The email of the comment's author. */ @@ -14176,6 +9737,74 @@ export type UpdateCommentPayload = { success?: Maybe; }; +/** Input for the updateGraphqlDocumentGroup mutation. */ +export type UpdateGraphqlDocumentGroupInput = { + /** The slug that the graphql_document_group will be an alias of */ + aliasOf?: InputMaybe; + /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: InputMaybe; + /** The description of the graphql_document_group object */ + description?: InputMaybe; + /** The ID of the graphqlDocumentGroup object to update */ + id: Scalars['ID']['input']; + /** The name of the graphql_document_group object to mutate */ + name?: InputMaybe; + /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ + slug?: InputMaybe; +}; + +/** The payload for the updateGraphqlDocumentGroup mutation. */ +export type UpdateGraphqlDocumentGroupPayload = { + __typename?: 'UpdateGraphqlDocumentGroupPayload'; + /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: Maybe; + /** The created graphql_document_group */ + graphqlDocumentGroup?: Maybe; +}; + +/** Input for the updateGraphqlDocument mutation. */ +export type UpdateGraphqlDocumentInput = { + /** Alias names for saved GraphQL query documents */ + alias?: InputMaybe>; + /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: InputMaybe; + /** The content of the object */ + content?: InputMaybe; + /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ + date?: InputMaybe; + /** Description for the saved GraphQL document */ + description?: InputMaybe; + /** Allow, deny or default access grant for specific query */ + grant?: InputMaybe; + /** Set connections between the graphqlDocument and graphqlDocumentGroups */ + graphqlDocumentGroups?: InputMaybe; + /** The ID of the graphqlDocument object */ + id: Scalars['ID']['input']; + /** Override the edit lock when another user is editing the post */ + ignoreEditLock?: InputMaybe; + /** HTTP Cache-Control max-age directive for a saved GraphQL document */ + maxAgeHeader?: InputMaybe; + /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ + menuOrder?: InputMaybe; + /** The password used to protect the content of the object */ + password?: InputMaybe; + /** The slug of the object */ + slug?: InputMaybe; + /** The status of the object */ + status?: InputMaybe; + /** The title of the object */ + title?: InputMaybe; +}; + +/** The payload for the updateGraphqlDocument mutation. */ +export type UpdateGraphqlDocumentPayload = { + __typename?: 'UpdateGraphqlDocumentPayload'; + /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: Maybe; + /** The Post object mutation type. */ + graphqlDocument?: Maybe; +}; + /** Input for the updateMediaItem mutation. */ export type UpdateMediaItemInput = { /** Alternative text to display when mediaItem is not displayed */ @@ -14336,48 +9965,8 @@ export type UpdatePostPayload = { post?: Maybe; }; -/** Input for the updateProject mutation. */ -export type UpdateProjectInput = { - /** The userId to assign as the author of the object */ - authorId?: InputMaybe; - /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; - /** Project Content Area */ - contentArea?: InputMaybe; - /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; - /** The ID of the project object */ - id: Scalars['ID']['input']; - /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; - /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; - /** The password used to protect the content of the object */ - password?: InputMaybe; - /** Project Title */ - projectTitle?: InputMaybe; - /** The slug of the object */ - slug?: InputMaybe; - /** The status of the object */ - status?: InputMaybe; - summary?: InputMaybe; - /** The title of the object */ - title?: InputMaybe; -}; - -/** The payload for the updateProject mutation. */ -export type UpdateProjectPayload = { - __typename?: 'UpdateProjectPayload'; - /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; - /** The Post object mutation type. */ - project?: Maybe; -}; - /** Input for the updateSettings mutation. */ export type UpdateSettingsInput = { - /** Opt into anonymous usage tracking to help us make Atlas Content Modeler better. */ - atlasContentModelerSettingsSettingsAtlasContentModelerUsageTracking?: InputMaybe; /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ clientMutationId?: InputMaybe; /** Allow people to submit comments on new posts. */ @@ -14423,8 +10012,6 @@ export type UpdateSettingsPayload = { __typename?: 'UpdateSettingsPayload'; /** Update all settings. */ allSettings?: Maybe; - /** Update the AtlasContentModelerSettingsSettings setting. */ - atlasContentModelerSettingsSettings?: Maybe; /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ clientMutationId?: Maybe; /** Update the DiscussionSettings setting. */ @@ -14462,41 +10049,6 @@ export type UpdateTagPayload = { tag?: Maybe; }; -/** Input for the updateTestimonial mutation. */ -export type UpdateTestimonialInput = { - /** The userId to assign as the author of the object */ - authorId?: InputMaybe; - /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; - /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; - /** The ID of the testimonial object */ - id: Scalars['ID']['input']; - /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; - /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; - /** The password used to protect the content of the object */ - password?: InputMaybe; - /** The slug of the object */ - slug?: InputMaybe; - /** The status of the object */ - status?: InputMaybe; - testimonialAuthor?: InputMaybe; - testimonialContent?: InputMaybe; - /** The title of the object */ - title?: InputMaybe; -}; - -/** The payload for the updateTestimonial mutation. */ -export type UpdateTestimonialPayload = { - __typename?: 'UpdateTestimonialPayload'; - /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; - /** The Post object mutation type. */ - testimonial?: Maybe; -}; - /** Input for the updateUser mutation. */ export type UpdateUserInput = { /** User's AOL IM account. */ @@ -14509,7 +10061,7 @@ export type UpdateUserInput = { displayName?: InputMaybe; /** A string containing the user's email address. */ email?: InputMaybe; - /** The user's first name. */ + /** The user's first name. */ firstName?: InputMaybe; /** The ID of the user */ id: Scalars['ID']['input']; @@ -14546,7 +10098,7 @@ export type UpdateUserPayload = { user?: Maybe; }; -/** A User object */ +/** A registered user account. Users can be assigned roles, author content, and have various capabilities within the site. */ export type User = Commenter & DatabaseIdentifier & Node & UniformResourceIdentifiable & { __typename?: 'User'; /** Avatar object for user. The avatar object can be retrieved in different sizes by specifying the size argument. */ @@ -14603,8 +10155,6 @@ export type User = Commenter & DatabaseIdentifier & Node & UniformResourceIdenti pages?: Maybe; /** Connection between the User type and the post type */ posts?: Maybe; - /** Connection between the User type and the project type */ - projects?: Maybe; /** The date the user registered or was created. The field follows a full ISO8601 date string format. */ registeredDate?: Maybe; /** Connection between the User and Revisions authored by the user */ @@ -14617,8 +10167,6 @@ export type User = Commenter & DatabaseIdentifier & Node & UniformResourceIdenti /** The slug for the user. This field is equivalent to WP_User->user_nicename */ slug?: Maybe; templates?: Maybe>>; - /** Connection between the User type and the testimonial type */ - testimonials?: Maybe; /** The unique resource identifier path */ uri?: Maybe; /** A website url that is associated with the user. */ @@ -14633,7 +10181,7 @@ export type User = Commenter & DatabaseIdentifier & Node & UniformResourceIdenti }; -/** A User object */ +/** A registered user account. Users can be assigned roles, author content, and have various capabilities within the site. */ export type UserAvatarArgs = { forceDefault?: InputMaybe; rating?: InputMaybe; @@ -14641,7 +10189,7 @@ export type UserAvatarArgs = { }; -/** A User object */ +/** A registered user account. Users can be assigned roles, author content, and have various capabilities within the site. */ export type UserCommentsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14651,7 +10199,7 @@ export type UserCommentsArgs = { }; -/** A User object */ +/** A registered user account. Users can be assigned roles, author content, and have various capabilities within the site. */ export type UserEnqueuedScriptsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14660,7 +10208,7 @@ export type UserEnqueuedScriptsArgs = { }; -/** A User object */ +/** A registered user account. Users can be assigned roles, author content, and have various capabilities within the site. */ export type UserEnqueuedStylesheetsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14669,7 +10217,7 @@ export type UserEnqueuedStylesheetsArgs = { }; -/** A User object */ +/** A registered user account. Users can be assigned roles, author content, and have various capabilities within the site. */ export type UserMediaItemsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14679,7 +10227,7 @@ export type UserMediaItemsArgs = { }; -/** A User object */ +/** A registered user account. Users can be assigned roles, author content, and have various capabilities within the site. */ export type UserPagesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14689,7 +10237,7 @@ export type UserPagesArgs = { }; -/** A User object */ +/** A registered user account. Users can be assigned roles, author content, and have various capabilities within the site. */ export type UserPostsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14699,17 +10247,7 @@ export type UserPostsArgs = { }; -/** A User object */ -export type UserProjectsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - - -/** A User object */ +/** A registered user account. Users can be assigned roles, author content, and have various capabilities within the site. */ export type UserRevisionsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14719,7 +10257,7 @@ export type UserRevisionsArgs = { }; -/** A User object */ +/** A registered user account. Users can be assigned roles, author content, and have various capabilities within the site. */ export type UserRolesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14727,17 +10265,7 @@ export type UserRolesArgs = { last?: InputMaybe; }; - -/** A User object */ -export type UserTestimonialsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - -/** Connection to User Nodes */ +/** A paginated collection of User Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of User Nodes */ export type UserConnection = { /** A list of edges (relational context) between RootQuery and connected User Nodes */ edges: Array; @@ -14747,7 +10275,7 @@ export type UserConnection = { pageInfo: UserConnectionPageInfo; }; -/** Edge between a Node and a connected User */ +/** Represents a connection to a User. Contains both the User Node and metadata about the relationship. */ export type UserConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -14755,7 +10283,7 @@ export type UserConnectionEdge = { node: User; }; -/** Page Info on the connected UserConnectionEdge */ +/** Pagination metadata specific to "UserConnectionEdge" collections. Provides cursors and flags for navigating through sets of "UserConnectionEdge" Nodes. */ export type UserConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -14767,7 +10295,7 @@ export type UserConnectionPageInfo = { startCursor?: Maybe; }; -/** The Type of Identifier used to fetch a single User node. To be used along with the "id" field. Default is "ID". */ +/** Identifier types for retrieving a specific user. Determines whether to look up users by ID, email, username, or other unique properties. */ export enum UserNodeIdTypeEnum { /** The Database ID for the node */ DatabaseId = 'DATABASE_ID', @@ -14798,7 +10326,7 @@ export type UserRole = Node & { name?: Maybe; }; -/** Connection to UserRole Nodes */ +/** A paginated collection of UserRole Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of UserRole Nodes */ export type UserRoleConnection = { /** A list of edges (relational context) between RootQuery and connected UserRole Nodes */ edges: Array; @@ -14808,7 +10336,7 @@ export type UserRoleConnection = { pageInfo: UserRoleConnectionPageInfo; }; -/** Edge between a Node and a connected UserRole */ +/** Represents a connection to a UserRole. Contains both the UserRole Node and metadata about the relationship. */ export type UserRoleConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ cursor?: Maybe; @@ -14816,7 +10344,7 @@ export type UserRoleConnectionEdge = { node: UserRole; }; -/** Page Info on the connected UserRoleConnectionEdge */ +/** Pagination metadata specific to "UserRoleConnectionEdge" collections. Provides cursors and flags for navigating through sets of "UserRoleConnectionEdge" Nodes. */ export type UserRoleConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -14828,7 +10356,7 @@ export type UserRoleConnectionPageInfo = { startCursor?: Maybe; }; -/** Names of available user roles */ +/** Permission levels for user accounts. Defines the standard access levels that control what actions users can perform within the system. */ export enum UserRoleEnum { /** User role with specific capabilities */ Administrator = 'ADMINISTRATOR', @@ -14862,7 +10390,7 @@ export type UserToCommentConnectionEdge = CommentConnectionEdge & Edge & { node: Comment; }; -/** Page Info on the "UserToCommentConnection" */ +/** Pagination metadata specific to "UserToCommentConnection" collections. Provides cursors and flags for navigating through sets of UserToCommentConnection Nodes. */ export type UserToCommentConnectionPageInfo = CommentConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'UserToCommentConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -14931,8 +10459,8 @@ export type UserToCommentConnectionWhereArgs = { parentNotIn?: InputMaybe>>; /** Search term(s) to retrieve matching comments for. */ search?: InputMaybe; - /** Comment status to limit results by. */ - status?: InputMaybe; + /** One or more Comment Statuses to limit results by */ + statusIn?: InputMaybe>>; /** Include comments for a specific user ID. */ userId?: InputMaybe; }; @@ -14957,7 +10485,7 @@ export type UserToEnqueuedScriptConnectionEdge = Edge & EnqueuedScriptConnection node: EnqueuedScript; }; -/** Page Info on the "UserToEnqueuedScriptConnection" */ +/** Pagination metadata specific to "UserToEnqueuedScriptConnection" collections. Provides cursors and flags for navigating through sets of UserToEnqueuedScriptConnection Nodes. */ export type UserToEnqueuedScriptConnectionPageInfo = EnqueuedScriptConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'UserToEnqueuedScriptConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -14990,7 +10518,7 @@ export type UserToEnqueuedStylesheetConnectionEdge = Edge & EnqueuedStylesheetCo node: EnqueuedStylesheet; }; -/** Page Info on the "UserToEnqueuedStylesheetConnection" */ +/** Pagination metadata specific to "UserToEnqueuedStylesheetConnection" collections. Provides cursors and flags for navigating through sets of UserToEnqueuedStylesheetConnection Nodes. */ export type UserToEnqueuedStylesheetConnectionPageInfo = EnqueuedStylesheetConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'UserToEnqueuedStylesheetConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -15023,7 +10551,7 @@ export type UserToMediaItemConnectionEdge = Edge & MediaItemConnectionEdge & { node: MediaItem; }; -/** Page Info on the "UserToMediaItemConnection" */ +/** Pagination metadata specific to "UserToMediaItemConnection" collections. Provides cursors and flags for navigating through sets of UserToMediaItemConnection Nodes. */ export type UserToMediaItemConnectionPageInfo = MediaItemConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'UserToMediaItemConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -15102,7 +10630,7 @@ export type UserToPageConnectionEdge = Edge & PageConnectionEdge & { node: Page; }; -/** Page Info on the "UserToPageConnection" */ +/** Pagination metadata specific to "UserToPageConnection" collections. Provides cursors and flags for navigating through sets of UserToPageConnection Nodes. */ export type UserToPageConnectionPageInfo = PageConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'UserToPageConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -15181,7 +10709,7 @@ export type UserToPostConnectionEdge = Edge & PostConnectionEdge & { node: Post; }; -/** Page Info on the "UserToPostConnection" */ +/** Pagination metadata specific to "UserToPostConnection" collections. Provides cursors and flags for navigating through sets of UserToPostConnection Nodes. */ export type UserToPostConnectionPageInfo = PageInfo & PostConnectionPageInfo & WpPageInfo & { __typename?: 'UserToPostConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -15260,85 +10788,6 @@ export type UserToPostConnectionWhereArgs = { title?: InputMaybe; }; -/** Connection between the User type and the project type */ -export type UserToProjectConnection = Connection & ProjectConnection & { - __typename?: 'UserToProjectConnection'; - /** Edges for the UserToProjectConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: UserToProjectConnectionPageInfo; -}; - -/** An edge in a connection */ -export type UserToProjectConnectionEdge = Edge & ProjectConnectionEdge & { - __typename?: 'UserToProjectConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Project; -}; - -/** Page Info on the "UserToProjectConnection" */ -export type UserToProjectConnectionPageInfo = PageInfo & ProjectConnectionPageInfo & WpPageInfo & { - __typename?: 'UserToProjectConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; - -/** Arguments for filtering the UserToProjectConnection connection */ -export type UserToProjectConnectionWhereArgs = { - /** The user that's connected as the author of the object. Use the userId for the author object. */ - author?: InputMaybe; - /** Find objects connected to author(s) in the array of author's userIds */ - authorIn?: InputMaybe>>; - /** Find objects connected to the author by the author's nicename */ - authorName?: InputMaybe; - /** Find objects NOT connected to author(s) in the array of author's userIds */ - authorNotIn?: InputMaybe>>; - /** Filter the connection based on dates */ - dateQuery?: InputMaybe; - /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; - /** Specific database ID of the object */ - id?: InputMaybe; - /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; - /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; - /** Slug / post_name of the object */ - name?: InputMaybe; - /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; - /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; - /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; - /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; - /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; - /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; - /** Show posts with a specific password. */ - password?: InputMaybe; - /** Show Posts based on a keyword search */ - search?: InputMaybe; - /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; - /** Show posts with a specific status. */ - status?: InputMaybe; - /** Title of the object */ - title?: InputMaybe; -}; - /** Connection between the User type and the ContentNode type */ export type UserToRevisionsConnection = Connection & ContentNodeConnection & { __typename?: 'UserToRevisionsConnection'; @@ -15359,7 +10808,7 @@ export type UserToRevisionsConnectionEdge = ContentNodeConnectionEdge & Edge & { node: ContentNode; }; -/** Page Info on the "UserToRevisionsConnection" */ +/** Pagination metadata specific to "UserToRevisionsConnection" collections. Provides cursors and flags for navigating through sets of UserToRevisionsConnection Nodes. */ export type UserToRevisionsConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { __typename?: 'UserToRevisionsConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -15412,85 +10861,6 @@ export type UserToRevisionsConnectionWhereArgs = { title?: InputMaybe; }; -/** Connection between the User type and the testimonial type */ -export type UserToTestimonialConnection = Connection & TestimonialConnection & { - __typename?: 'UserToTestimonialConnection'; - /** Edges for the UserToTestimonialConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: UserToTestimonialConnectionPageInfo; -}; - -/** An edge in a connection */ -export type UserToTestimonialConnectionEdge = Edge & TestimonialConnectionEdge & { - __typename?: 'UserToTestimonialConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Testimonial; -}; - -/** Page Info on the "UserToTestimonialConnection" */ -export type UserToTestimonialConnectionPageInfo = PageInfo & TestimonialConnectionPageInfo & WpPageInfo & { - __typename?: 'UserToTestimonialConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; - -/** Arguments for filtering the UserToTestimonialConnection connection */ -export type UserToTestimonialConnectionWhereArgs = { - /** The user that's connected as the author of the object. Use the userId for the author object. */ - author?: InputMaybe; - /** Find objects connected to author(s) in the array of author's userIds */ - authorIn?: InputMaybe>>; - /** Find objects connected to the author by the author's nicename */ - authorName?: InputMaybe; - /** Find objects NOT connected to author(s) in the array of author's userIds */ - authorNotIn?: InputMaybe>>; - /** Filter the connection based on dates */ - dateQuery?: InputMaybe; - /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; - /** Specific database ID of the object */ - id?: InputMaybe; - /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; - /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; - /** Slug / post_name of the object */ - name?: InputMaybe; - /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; - /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; - /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; - /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; - /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; - /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; - /** Show posts with a specific password. */ - password?: InputMaybe; - /** Show Posts based on a keyword search */ - search?: InputMaybe; - /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; - /** Show posts with a specific status. */ - status?: InputMaybe; - /** Title of the object */ - title?: InputMaybe; -}; - /** Connection between the User type and the UserRole type */ export type UserToUserRoleConnection = Connection & UserRoleConnection & { __typename?: 'UserToUserRoleConnection'; @@ -15511,7 +10881,7 @@ export type UserToUserRoleConnectionEdge = Edge & UserRoleConnectionEdge & { node: UserRole; }; -/** Page Info on the "UserToUserRoleConnection" */ +/** Pagination metadata specific to "UserToUserRoleConnection" collections. Provides cursors and flags for navigating through sets of UserToUserRoleConnection Nodes. */ export type UserToUserRoleConnectionPageInfo = PageInfo & UserRoleConnectionPageInfo & WpPageInfo & { __typename?: 'UserToUserRoleConnectionPageInfo'; /** When paginating forwards, the cursor to continue. */ @@ -15524,7 +10894,7 @@ export type UserToUserRoleConnectionPageInfo = PageInfo & UserRoleConnectionPage startCursor?: Maybe; }; -/** Field to order the connection by */ +/** User attribute sorting options. Determines which property of user accounts is used for ordering user listings. */ export enum UsersConnectionOrderbyEnum { /** Order by display name */ DisplayName = 'DISPLAY_NAME', @@ -15552,7 +10922,7 @@ export type UsersConnectionOrderbyInput = { order?: InputMaybe; }; -/** Column used for searching for users. */ +/** User properties that can be targeted in search operations. Defines which user attributes can be searched when looking for specific users. */ export enum UsersConnectionSearchColumnEnum { /** The user's email address. */ Email = 'EMAIL', @@ -15566,7 +10936,7 @@ export enum UsersConnectionSearchColumnEnum { Url = 'URL' } -/** Information about pagination in a connection. */ +/** Metadata for cursor-based pagination. Provides cursors for continuing pagination and boolean flags indicating if more items exist in either direction. */ export type WpPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; @@ -15593,22 +10963,37 @@ export type HeaderGeneralSettingsFragmentFragment = { __typename?: 'GeneralSetti export type PrimaryMenuItemFragmentFragment = { __typename?: 'MenuItem', id: string, uri?: string | null, path?: string | null, label?: string | null, parentId?: string | null, cssClasses?: Array | null, menu?: { __typename?: 'MenuItemToMenuConnectionEdge', node: { __typename?: 'Menu', name?: string | null } } | null } & { ' $fragmentName'?: 'PrimaryMenuItemFragmentFragment' }; +export type PostListFragmentFragment = { __typename?: 'Post', id: string, title?: string | null, uri?: string | null, excerpt?: string | null, date?: string | null, featuredImage?: { __typename?: 'NodeWithFeaturedImageToMediaItemConnectionEdge', node: { __typename?: 'MediaItem', sourceUrl?: string | null, altText?: string | null } } | null, author?: { __typename?: 'NodeWithAuthorToUserConnectionEdge', node: { __typename?: 'User', name?: string | null, avatar?: { __typename?: 'Avatar', url?: string | null } | null } } | null } & { ' $fragmentName'?: 'PostListFragmentFragment' }; + export type GetExamplePageQueryVariables = Exact<{ [key: string]: never; }>; export type GetExamplePageQuery = { __typename?: 'RootQuery', generalSettings?: { __typename?: 'GeneralSettings', title?: string | null, description?: string | null } | null, primaryMenuItems?: { __typename?: 'RootQueryToMenuItemConnection', nodes: Array<{ __typename?: 'MenuItem', id: string, uri?: string | null, path?: string | null, label?: string | null, parentId?: string | null, cssClasses?: Array | null, menu?: { __typename?: 'MenuItemToMenuConnectionEdge', node: { __typename?: 'Menu', name?: string | null } } | null }> } | null }; -export type GetArchiveQueryVariables = Exact<{ - uri: Scalars['String']['input']; -}>; +export type GetHeaderMenuQueryVariables = Exact<{ [key: string]: never; }>; + + +export type GetHeaderMenuQuery = { __typename?: 'RootQuery', primaryMenuItems?: { __typename?: 'RootQueryToMenuItemConnection', nodes: Array<{ __typename?: 'MenuItem', id: string, uri?: string | null, path?: string | null, label?: string | null, parentId?: string | null, cssClasses?: Array | null, menu?: { __typename?: 'MenuItemToMenuConnectionEdge', node: { __typename?: 'Menu', name?: string | null } } | null }> } | null }; + +export type GetSiteDataQueryVariables = Exact<{ [key: string]: never; }>; -export type GetArchiveQuery = { __typename?: 'RootQuery', nodeByUri?: { __typename?: 'Category', name?: string | null, archiveType: 'Category', posts?: { __typename?: 'CategoryToPostConnection', nodes: Array<{ __typename?: 'Post', id: string, title?: string | null, uri?: string | null }> } | null } | { __typename?: 'Comment', archiveType: 'Comment' } | { __typename?: 'ContentType', archiveType: 'ContentType' } | { __typename?: 'MediaItem', archiveType: 'MediaItem' } | { __typename?: 'Page', archiveType: 'Page' } | { __typename?: 'Post', archiveType: 'Post' } | { __typename?: 'PostFormat', archiveType: 'PostFormat' } | { __typename?: 'Project', archiveType: 'Project' } | { __typename?: 'Tag', name?: string | null, archiveType: 'Tag', posts?: { __typename?: 'TagToPostConnection', nodes: Array<{ __typename?: 'Post', id: string, title?: string | null, uri?: string | null }> } | null } | { __typename?: 'Testimonial', archiveType: 'Testimonial' } | { __typename?: 'User', archiveType: 'User' } | null, generalSettings?: { __typename?: 'GeneralSettings', title?: string | null, description?: string | null } | null, primaryMenuItems?: { __typename?: 'RootQueryToMenuItemConnection', nodes: Array<{ __typename?: 'MenuItem', id: string, uri?: string | null, path?: string | null, label?: string | null, parentId?: string | null, cssClasses?: Array | null, menu?: { __typename?: 'MenuItemToMenuConnectionEdge', node: { __typename?: 'Menu', name?: string | null } } | null }> } | null }; +export type GetSiteDataQuery = { __typename?: 'RootQuery', generalSettings?: { __typename?: 'GeneralSettings', title?: string | null, description?: string | null } | null }; -export type GetHomePageQueryVariables = Exact<{ [key: string]: never; }>; +export type GetArchiveQueryVariables = Exact<{ + uri: Scalars['String']['input']; + first: Scalars['Int']['input']; + after?: InputMaybe; +}>; -export type GetHomePageQuery = { __typename?: 'RootQuery', generalSettings?: { __typename?: 'GeneralSettings', title?: string | null, description?: string | null } | null, primaryMenuItems?: { __typename?: 'RootQueryToMenuItemConnection', nodes: Array<{ __typename?: 'MenuItem', id: string, uri?: string | null, path?: string | null, label?: string | null, parentId?: string | null, cssClasses?: Array | null, menu?: { __typename?: 'MenuItemToMenuConnectionEdge', node: { __typename?: 'Menu', name?: string | null } } | null }> } | null }; +export type GetArchiveQuery = { __typename?: 'RootQuery', nodeByUri?: { __typename?: 'Category', name?: string | null, archiveType: 'Category', posts?: { __typename?: 'CategoryToPostConnection', pageInfo: { __typename?: 'CategoryToPostConnectionPageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<( + { __typename?: 'Post' } + & { ' $fragmentRefs'?: { 'PostListFragmentFragment': PostListFragmentFragment } } + )> } | null } | { __typename?: 'Comment', archiveType: 'Comment' } | { __typename?: 'ContentType', archiveType: 'ContentType' } | { __typename?: 'GraphqlDocument', archiveType: 'GraphqlDocument' } | { __typename?: 'GraphqlDocumentGroup', archiveType: 'GraphqlDocumentGroup' } | { __typename?: 'MediaItem', archiveType: 'MediaItem' } | { __typename?: 'Page', archiveType: 'Page' } | { __typename?: 'Post', archiveType: 'Post' } | { __typename?: 'PostFormat', archiveType: 'PostFormat' } | { __typename?: 'Tag', name?: string | null, archiveType: 'Tag', posts?: { __typename?: 'TagToPostConnection', pageInfo: { __typename?: 'TagToPostConnectionPageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<( + { __typename?: 'Post' } + & { ' $fragmentRefs'?: { 'PostListFragmentFragment': PostListFragmentFragment } } + )> } | null } | { __typename?: 'User', archiveType: 'User' } | null }; export type GetPageQueryVariables = Exact<{ databaseId: Scalars['ID']['input']; @@ -15616,7 +11001,7 @@ export type GetPageQueryVariables = Exact<{ }>; -export type GetPageQuery = { __typename?: 'RootQuery', page?: { __typename?: 'Page', title?: string | null, content?: string | null } | null, generalSettings?: { __typename?: 'GeneralSettings', title?: string | null, description?: string | null } | null, primaryMenuItems?: { __typename?: 'RootQueryToMenuItemConnection', nodes: Array<{ __typename?: 'MenuItem', id: string, uri?: string | null, path?: string | null, label?: string | null, parentId?: string | null, cssClasses?: Array | null, menu?: { __typename?: 'MenuItemToMenuConnectionEdge', node: { __typename?: 'Menu', name?: string | null } } | null }> } | null }; +export type GetPageQuery = { __typename?: 'RootQuery', page?: { __typename?: 'Page', title?: string | null, content?: string | null } | null }; export type GetPostQueryVariables = Exact<{ databaseId: Scalars['ID']['input']; @@ -15624,12 +11009,14 @@ export type GetPostQueryVariables = Exact<{ }>; -export type GetPostQuery = { __typename?: 'RootQuery', post?: { __typename?: 'Post', title?: string | null, content?: string | null, date?: string | null, author?: { __typename?: 'NodeWithAuthorToUserConnectionEdge', node: { __typename?: 'User', name?: string | null } } | null } | null, generalSettings?: { __typename?: 'GeneralSettings', title?: string | null, description?: string | null } | null, primaryMenuItems?: { __typename?: 'RootQueryToMenuItemConnection', nodes: Array<{ __typename?: 'MenuItem', id: string, uri?: string | null, path?: string | null, label?: string | null, parentId?: string | null, cssClasses?: Array | null, menu?: { __typename?: 'MenuItemToMenuConnectionEdge', node: { __typename?: 'Menu', name?: string | null } } | null }> } | null }; +export type GetPostQuery = { __typename?: 'RootQuery', post?: { __typename?: 'Post', title?: string | null, content?: string | null, date?: string | null, author?: { __typename?: 'NodeWithAuthorToUserConnectionEdge', node: { __typename?: 'User', name?: string | null } } | null } | null }; export const HeaderGeneralSettingsFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HeaderGeneralSettingsFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GeneralSettings"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}}]} as unknown as DocumentNode; export const PrimaryMenuItemFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PrimaryMenuItemFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MenuItem"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"parentId"}},{"kind":"Field","name":{"kind":"Name","value":"cssClasses"}},{"kind":"Field","name":{"kind":"Name","value":"menu"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode; +export const PostListFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PostListFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Post"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sourceUrl"}},{"kind":"Field","name":{"kind":"Name","value":"altText"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"author"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"avatar"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const GetExamplePageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetExamplePage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"generalSettings"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"primaryMenuItems"},"name":{"kind":"Name","value":"menuItems"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"location"},"value":{"kind":"EnumValue","value":"PRIMARY"}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"parentId"}},{"kind":"Field","name":{"kind":"Name","value":"cssClasses"}},{"kind":"Field","name":{"kind":"Name","value":"menu"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; -export const GetArchiveDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetArchive"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uri"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodeByUri"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"uri"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uri"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"archiveType"},"name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Category"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"posts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Tag"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"posts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"generalSettings"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"primaryMenuItems"},"name":{"kind":"Name","value":"menuItems"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"location"},"value":{"kind":"EnumValue","value":"PRIMARY"}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"parentId"}},{"kind":"Field","name":{"kind":"Name","value":"cssClasses"}},{"kind":"Field","name":{"kind":"Name","value":"menu"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; -export const GetHomePageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetHomePage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"generalSettings"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"primaryMenuItems"},"name":{"kind":"Name","value":"menuItems"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"location"},"value":{"kind":"EnumValue","value":"PRIMARY"}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"parentId"}},{"kind":"Field","name":{"kind":"Name","value":"cssClasses"}},{"kind":"Field","name":{"kind":"Name","value":"menu"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; -export const GetPageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetPage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"databaseId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"asPreview"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}},"defaultValue":{"kind":"BooleanValue","value":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"page"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"databaseId"}}},{"kind":"Argument","name":{"kind":"Name","value":"idType"},"value":{"kind":"EnumValue","value":"DATABASE_ID"}},{"kind":"Argument","name":{"kind":"Name","value":"asPreview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"asPreview"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"content"}}]}},{"kind":"Field","name":{"kind":"Name","value":"generalSettings"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"primaryMenuItems"},"name":{"kind":"Name","value":"menuItems"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"location"},"value":{"kind":"EnumValue","value":"PRIMARY"}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"parentId"}},{"kind":"Field","name":{"kind":"Name","value":"cssClasses"}},{"kind":"Field","name":{"kind":"Name","value":"menu"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; -export const GetPostDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetPost"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"databaseId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"asPreview"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}},"defaultValue":{"kind":"BooleanValue","value":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"post"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"databaseId"}}},{"kind":"Argument","name":{"kind":"Name","value":"idType"},"value":{"kind":"EnumValue","value":"DATABASE_ID"}},{"kind":"Argument","name":{"kind":"Name","value":"asPreview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"asPreview"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"content"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"author"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"generalSettings"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"primaryMenuItems"},"name":{"kind":"Name","value":"menuItems"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"location"},"value":{"kind":"EnumValue","value":"PRIMARY"}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"parentId"}},{"kind":"Field","name":{"kind":"Name","value":"cssClasses"}},{"kind":"Field","name":{"kind":"Name","value":"menu"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; \ No newline at end of file +export const GetHeaderMenuDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetHeaderMenu"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"primaryMenuItems"},"name":{"kind":"Name","value":"menuItems"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"location"},"value":{"kind":"EnumValue","value":"PRIMARY"}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"parentId"}},{"kind":"Field","name":{"kind":"Name","value":"cssClasses"}},{"kind":"Field","name":{"kind":"Name","value":"menu"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const GetSiteDataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetSiteData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"generalSettings"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}}]}}]} as unknown as DocumentNode; +export const GetArchiveDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetArchive"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uri"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"first"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"after"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodeByUri"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"uri"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uri"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"archiveType"},"name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Category"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"posts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"first"},"value":{"kind":"Variable","name":{"kind":"Name","value":"first"}}},{"kind":"Argument","name":{"kind":"Name","value":"after"},"value":{"kind":"Variable","name":{"kind":"Name","value":"after"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pageInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"hasNextPage"}},{"kind":"Field","name":{"kind":"Name","value":"endCursor"}}]}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PostListFragment"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Tag"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"posts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"first"},"value":{"kind":"Variable","name":{"kind":"Name","value":"first"}}},{"kind":"Argument","name":{"kind":"Name","value":"after"},"value":{"kind":"Variable","name":{"kind":"Name","value":"after"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pageInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"hasNextPage"}},{"kind":"Field","name":{"kind":"Name","value":"endCursor"}}]}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PostListFragment"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PostListFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Post"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sourceUrl"}},{"kind":"Field","name":{"kind":"Name","value":"altText"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"author"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"avatar"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const GetPageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetPage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"databaseId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"asPreview"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}},"defaultValue":{"kind":"BooleanValue","value":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"page"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"databaseId"}}},{"kind":"Argument","name":{"kind":"Name","value":"idType"},"value":{"kind":"EnumValue","value":"DATABASE_ID"}},{"kind":"Argument","name":{"kind":"Name","value":"asPreview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"asPreview"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"content"}}]}}]}}]} as unknown as DocumentNode; +export const GetPostDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetPost"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"databaseId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"asPreview"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}},"defaultValue":{"kind":"BooleanValue","value":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"post"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"databaseId"}}},{"kind":"Argument","name":{"kind":"Name","value":"idType"},"value":{"kind":"EnumValue","value":"DATABASE_ID"}},{"kind":"Argument","name":{"kind":"Name","value":"asPreview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"asPreview"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"content"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"author"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]}}]} as unknown as DocumentNode; \ No newline at end of file diff --git a/src/components/entry-header.tsx b/src/components/EntryHeader.tsx similarity index 89% rename from src/components/entry-header.tsx rename to src/components/EntryHeader.tsx index 4029f5f..62ed01d 100644 --- a/src/components/entry-header.tsx +++ b/src/components/EntryHeader.tsx @@ -1,4 +1,4 @@ -import style from "./entry-header.module.css"; +import style from "../styles/entry-header.module.css"; type EntryHeaderProps = { title: string; diff --git a/src/components/FeaturedImage.tsx b/src/components/FeaturedImage.tsx new file mode 100644 index 0000000..3b1e2f4 --- /dev/null +++ b/src/components/FeaturedImage.tsx @@ -0,0 +1,46 @@ +import Link from "next/link"; +import Image from "next/image"; +import styles from "../styles/featured-image.module.css"; +import { Post } from "../__generated__/graphql"; + +interface FeaturedImageProps { + post: Partial; + classNames?: string; + uri?: string | null; + title?: string; +} + +export function FeaturedImage({ + post, + classNames = "h-48 my-9 relative", + uri = null, + title = "", +}: FeaturedImageProps) { + if (!post.featuredImage?.node?.sourceUrl) { + return ""; + } + + return ( +
+ {typeof uri === "string" && uri.trim() !== "" ? ( + + {post.featuredImage.node.altText + + ) : ( + {post.featuredImage.node.altText + )} +
+ ); +} diff --git a/src/components/footer.tsx b/src/components/Footer.tsx similarity index 69% rename from src/components/footer.tsx rename to src/components/Footer.tsx index 5e8ebf8..527246f 100644 --- a/src/components/footer.tsx +++ b/src/components/Footer.tsx @@ -1,4 +1,4 @@ -import styles from "./footer.module.css"; +import styles from "../styles/footer.module.css"; export default function Footer() { return ( @@ -7,6 +7,7 @@ export default function Footer() { WP Engine + © {new Date().getFullYear()} ); } diff --git a/src/components/header.tsx b/src/components/Header.tsx similarity index 88% rename from src/components/header.tsx rename to src/components/Header.tsx index 2ade868..999c5e4 100644 --- a/src/components/header.tsx +++ b/src/components/Header.tsx @@ -1,6 +1,6 @@ import { gql } from "../__generated__"; import Link from "next/link"; -import style from "./header.module.css"; +import style from "../styles/header.module.css"; import { HeaderGeneralSettingsFragmentFragment, PrimaryMenuItemFragmentFragment, @@ -19,7 +19,7 @@ export default function Header({ }: HeaderProps) { return (
-
+

{siteTitle}

{siteDescription}

@@ -27,7 +27,7 @@ export default function Header({