diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 000000000000..45b0aa614d5f --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,11 @@ +{ + "root": true, + "env": { + "es2020": true, + "node": true + }, + "parser": "@typescript-eslint/parser", + "plugins": ["@typescript-eslint"], + "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"], + "ignorePatterns": ["*.graphql", "**/generated/**"] +} diff --git a/.gitignore b/.gitignore index e80ccf254c03..fb2efd35cb78 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +<<<<<<< HEAD ### macOS ### # General .DS_Store @@ -157,10 +158,20 @@ extensions/**/*.zip # Raycast raycast-env.d.ts .build +======= +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules + +# Raycast specific files +raycast-env.d.ts +>>>>>>> 0644b3cac (Initial commit) .raycast-swift-build .swiftpm compiled_raycast_swift +<<<<<<< HEAD # VSCode .vscode @@ -168,3 +179,7 @@ compiled_raycast_swift /package-lock.json /pnpm-lock.yaml /yarn.lock +======= +# misc +.DS_Store +>>>>>>> 0644b3cac (Initial commit) diff --git a/.graphqlrc.yml b/.graphqlrc.yml new file mode 100644 index 000000000000..5b386bd829dd --- /dev/null +++ b/.graphqlrc.yml @@ -0,0 +1,2 @@ +schema: "schema.graphql" +documents: "src/**/*.graphql" diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 000000000000..cb7f896ade74 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,2 @@ +schema.graphql +generated/ diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 000000000000..fc0f5030683f --- /dev/null +++ b/.prettierrc @@ -0,0 +1,4 @@ +{ + "printWidth": 120, + "singleQuote": false +} diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000000..bb9ee88628fa --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# Buildkite Changelog + +## [Fix potentially undefined data] - 2023-12-12 + +- Fixes GraphQL data that is potentially undefined +- Refactors GraphQL queries to use codegen + +## [Fixes and Updates] - 2022-03-25 + +- Added extension metadata +- Updated to the new Raycast API + +## [Initial Version] - 2021-10-22 + +Add Buildkite Extension. diff --git a/README.md b/README.md index c17ea0056ff4..c3d70e01175f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +<<<<<<< HEAD

Raycast Extensions

@@ -29,3 +30,35 @@ Raycast wouldn't be where it is without the feedback from our community, so we w ## Community Join our [Slack community](https://raycast.com/community) to share your extension, debug nasty bugs or simply get to know like-minded folks. +======= +# Buildkite + +Extension to view your Buildkite pipelines and builds. + +## Configuration + +### Creating an access token + +This extension requires a Buildkite access token with GraphQL API access. To create a new token, follow these steps: + +1. Go to https://buildkite.com/user/api-access-tokens +1. Click **New API Access Token** +1. Enter a name for your token in the **Description** field +1. Select the organization you wish to grant access to +1. Check the **Enable GraphQL API Access** checkbox +1. Click **Create New API Access Token** + +### Enter your organization slug + +This extension currently only works with a single Buildkite organization. In the organization slug field, enter the name of the organization you wish to use. This value is case sensitive. + +## Showcases + +### Search pipelines + +![pipelines](https://user-images.githubusercontent.com/25914066/148241640-c40a4d96-a2af-4ed4-aabf-a4dbea2e220c.png) + +### My builds + +![builds](https://user-images.githubusercontent.com/25914066/148241638-40e45595-e4da-4db2-ad1e-a4261147e558.png) +>>>>>>> 0644b3cac (Initial commit) diff --git a/assets/buildkite.png b/assets/buildkite.png new file mode 100644 index 000000000000..9c3778fdfa11 Binary files /dev/null and b/assets/buildkite.png differ diff --git a/assets/buildkite@dark.png b/assets/buildkite@dark.png new file mode 100644 index 000000000000..ea65ac5bfe23 Binary files /dev/null and b/assets/buildkite@dark.png differ diff --git a/codegen.ts b/codegen.ts new file mode 100644 index 000000000000..f11a09a60ec9 --- /dev/null +++ b/codegen.ts @@ -0,0 +1,22 @@ +import { CodegenConfig } from "@graphql-codegen/cli" + +const config: CodegenConfig = { + documents: ["src/**/*.graphql"], + generates: { + "./src/generated/graphql.ts": { + config: { + avoidOptionals: true, + enumsAsTypes: true, + skipTypename: true, + }, + plugins: [ + "typescript", + "typescript-operations", + "typescript-graphql-request", + ], + }, + }, + schema: "schema.graphql", +} + +export default config diff --git a/metadata/screenshot-01.png b/metadata/screenshot-01.png new file mode 100644 index 000000000000..dac8d663fcc7 Binary files /dev/null and b/metadata/screenshot-01.png differ diff --git a/metadata/screenshot-02.png b/metadata/screenshot-02.png new file mode 100644 index 000000000000..2ca744fe79b7 Binary files /dev/null and b/metadata/screenshot-02.png differ diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 000000000000..d61efcdf080e --- /dev/null +++ b/package-lock.json @@ -0,0 +1,16139 @@ +{ + "name": "buildkite", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "buildkite", + "license": "MIT", + "dependencies": { + "@raycast/api": "^1.38.2", + "@raycast/utils": "^1.4.8" + }, + "devDependencies": { + "@graphql-codegen/cli": "^5.0.0", + "@graphql-codegen/typescript": "^4.0.1", + "@graphql-codegen/typescript-graphql-request": "^6.0.1", + "@graphql-codegen/typescript-operations": "^4.0.1", + "@types/node": "^18.0.6", + "@types/react": "^18.0.15", + "@typescript-eslint/eslint-plugin": "^5.30.7", + "@typescript-eslint/parser": "^5.30.7", + "concurrently": "^8.2.2", + "eslint": "^7.32.0", + "eslint-config-prettier": "^8.5.0", + "prettier": "^3.1.1", + "react-devtools": "^4.25.0", + "typescript": "^4.7.4" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@ardatan/relay-compiler": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-12.0.0.tgz", + "integrity": "sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==", + "dev": true, + "dependencies": { + "@babel/core": "^7.14.0", + "@babel/generator": "^7.14.0", + "@babel/parser": "^7.14.0", + "@babel/runtime": "^7.0.0", + "@babel/traverse": "^7.14.0", + "@babel/types": "^7.0.0", + "babel-preset-fbjs": "^3.4.0", + "chalk": "^4.0.0", + "fb-watchman": "^2.0.0", + "fbjs": "^3.0.0", + "glob": "^7.1.1", + "immutable": "~3.7.6", + "invariant": "^2.2.4", + "nullthrows": "^1.1.1", + "relay-runtime": "12.0.0", + "signedsource": "^1.0.0", + "yargs": "^15.3.1" + }, + "bin": { + "relay-compiler": "bin/relay-compiler" + }, + "peerDependencies": { + "graphql": "*" + } + }, + "node_modules/@ardatan/relay-compiler/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@ardatan/relay-compiler/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/@ardatan/relay-compiler/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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@ardatan/relay-compiler/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==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@ardatan/relay-compiler/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "node_modules/@ardatan/relay-compiler/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@ardatan/relay-compiler/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "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.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", + "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.6.tgz", + "integrity": "sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.23.6", + "@babel/parser": "^7.23.6", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.6", + "@babel/types": "^7.23.6", + "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/core/node_modules/@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/core/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/core/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/core/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/core/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/@babel/core/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/core/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/@babel/core/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/generator": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.23.6", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/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/@babel/helper-compilation-targets/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/@babel/helper-compilation-targets/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/@babel/helper-create-class-features-plugin": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.6.tgz", + "integrity": "sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-member-expression-to-functions": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/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/@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", + "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", + "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.6.tgz", + "integrity": "sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.6", + "@babel/types": "^7.23.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/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/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz", + "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.23.3.tgz", + "integrity": "sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz", + "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz", + "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz", + "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz", + "integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.5.tgz", + "integrity": "sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-split-export-declaration": "^7.22.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes/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/@babel/plugin-transform-computed-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz", + "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", + "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.23.3.tgz", + "integrity": "sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-flow": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz", + "integrity": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz", + "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz", + "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz", + "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", + "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz", + "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", + "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz", + "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz", + "integrity": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz", + "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/types": "^7.23.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", + "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz", + "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz", + "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.6.tgz", + "integrity": "sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template/node_modules/@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/template/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/template/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/template/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/template/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/@babel/template/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/template/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/traverse": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.6.tgz", + "integrity": "sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.6", + "@babel/types": "^7.23.6", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/traverse/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/traverse/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/traverse/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/traverse/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/@babel/traverse/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/@babel/traverse/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/traverse/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/types": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz", + "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@electron/get": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@electron/get/-/get-1.13.0.tgz", + "integrity": "sha512-+SjZhRuRo+STTO1Fdhzqnv9D2ZhjxXP6egsJ9kiO8dtP68cDx7dFCwWi64dlMQV7sWcfW1OYCW4wviEBzmRsfQ==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "env-paths": "^2.2.0", + "fs-extra": "^8.1.0", + "got": "^9.6.0", + "progress": "^2.0.3", + "semver": "^6.2.0", + "sumchecker": "^3.0.1" + }, + "engines": { + "node": ">=8.6" + }, + "optionalDependencies": { + "global-agent": "^2.0.2", + "global-tunnel-ng": "^2.7.1" + } + }, + "node_modules/@electron/get/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/@eslint/eslintrc/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/@graphql-codegen/cli": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/cli/-/cli-5.0.0.tgz", + "integrity": "sha512-A7J7+be/a6e+/ul2KI5sfJlpoqeqwX8EzktaKCeduyVKgOLA6W5t+NUGf6QumBDXU8PEOqXk3o3F+RAwCWOiqA==", + "dev": true, + "dependencies": { + "@babel/generator": "^7.18.13", + "@babel/template": "^7.18.10", + "@babel/types": "^7.18.13", + "@graphql-codegen/core": "^4.0.0", + "@graphql-codegen/plugin-helpers": "^5.0.1", + "@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.8.0", + "chalk": "^4.1.0", + "cosmiconfig": "^8.1.3", + "debounce": "^1.2.0", + "detect-indent": "^6.0.0", + "graphql-config": "^5.0.2", + "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" + }, + "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/cli/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/@graphql-codegen/cli/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/@graphql-codegen/cli/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/@graphql-codegen/cli/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-codegen/cli/node_modules/typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "dev": true, + "optional": true, + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/@graphql-codegen/core": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-4.0.0.tgz", + "integrity": "sha512-JAGRn49lEtSsZVxeIlFVIRxts2lWObR+OQo7V2LHDJ7ohYYw3ilv7nJ8pf8P4GTg/w6ptcYdSdVVdkI8kUHB/Q==", + "dev": true, + "dependencies": { + "@graphql-codegen/plugin-helpers": "^5.0.0", + "@graphql-tools/schema": "^10.0.0", + "@graphql-tools/utils": "^10.0.0", + "tslib": "~2.5.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/core/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==", + "dev": true + }, + "node_modules/@graphql-codegen/plugin-helpers": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-5.0.1.tgz", + "integrity": "sha512-6L5sb9D8wptZhnhLLBcheSPU7Tg//DGWgc5tQBWX46KYTOTQHGqDpv50FxAJJOyFVJrveN9otWk9UT9/yfY4ww==", + "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.5.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/plugin-helpers/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==", + "dev": true + }, + "node_modules/@graphql-codegen/schema-ast": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-4.0.0.tgz", + "integrity": "sha512-WIzkJFa9Gz28FITAPILbt+7A8+yzOyd1NxgwFh7ie+EmO9a5zQK6UQ3U/BviirguXCYnn+AR4dXsoDrSrtRA1g==", + "dev": true, + "dependencies": { + "@graphql-codegen/plugin-helpers": "^5.0.0", + "@graphql-tools/utils": "^10.0.0", + "tslib": "~2.5.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/schema-ast/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==", + "dev": true + }, + "node_modules/@graphql-codegen/typescript": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-4.0.1.tgz", + "integrity": "sha512-3YziQ21dCVdnHb+Us1uDb3pA6eG5Chjv0uTK+bt9dXeMlwYBU8MbtzvQTo4qvzWVC1AxSOKj0rgfNu1xCXqJyA==", + "dev": true, + "dependencies": { + "@graphql-codegen/plugin-helpers": "^5.0.0", + "@graphql-codegen/schema-ast": "^4.0.0", + "@graphql-codegen/visitor-plugin-common": "4.0.1", + "auto-bind": "~4.0.0", + "tslib": "~2.5.0" + }, + "peerDependencies": { + "graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@graphql-codegen/typescript-graphql-request": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-graphql-request/-/typescript-graphql-request-6.0.1.tgz", + "integrity": "sha512-aScw7ICyscW7bYLh2HyjQU3geCAjvFy6sRIlzgdkeFvcKBdjCil69upkyZAyntnSno2C4ZoUv7sHOpyQ9hQmFQ==", + "dev": true, + "dependencies": { + "@graphql-codegen/plugin-helpers": "^3.0.0", + "@graphql-codegen/visitor-plugin-common": "2.13.1", + "auto-bind": "~4.0.0", + "tslib": "~2.6.0" + }, + "engines": { + "node": ">= 16.0.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", + "graphql-request": "^6.0.0", + "graphql-tag": "^2.0.0" + } + }, + "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-codegen/plugin-helpers": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz", + "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==", + "dev": true, + "dependencies": { + "@graphql-tools/utils": "^9.0.0", + "change-case-all": "1.0.15", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "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-graphql-request/node_modules/@graphql-codegen/plugin-helpers/node_modules/tslib": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", + "dev": true + }, + "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-codegen/visitor-plugin-common": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.1.tgz", + "integrity": "sha512-mD9ufZhDGhyrSaWQGrU1Q1c5f01TeWtSWy/cDwXYjJcHIj1Y/DG2x0tOflEfCvh5WcnmHNIw4lzDsg1W7iFJEg==", + "dev": true, + "dependencies": { + "@graphql-codegen/plugin-helpers": "^2.7.2", + "@graphql-tools/optimize": "^1.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.5.0", + "@graphql-tools/utils": "^8.8.0", + "auto-bind": "~4.0.0", + "change-case-all": "1.0.14", + "dependency-graph": "^0.11.0", + "graphql-tag": "^2.11.0", + "parse-filepath": "^1.0.2", + "tslib": "~2.4.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/typescript-graphql-request/node_modules/@graphql-codegen/visitor-plugin-common/node_modules/@graphql-codegen/plugin-helpers": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.7.2.tgz", + "integrity": "sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==", + "dev": true, + "dependencies": { + "@graphql-tools/utils": "^8.8.0", + "change-case-all": "1.0.14", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.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/typescript-graphql-request/node_modules/@graphql-codegen/visitor-plugin-common/node_modules/@graphql-tools/utils": { + "version": "8.13.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.13.1.tgz", + "integrity": "sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==", + "dev": true, + "dependencies": { + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-codegen/visitor-plugin-common/node_modules/change-case-all": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.14.tgz", + "integrity": "sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==", + "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/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-codegen/visitor-plugin-common/node_modules/tslib": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", + "dev": true + }, + "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-tools/optimize": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", + "dev": true, + "dependencies": { + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-tools/relay-operation-optimizer": { + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", + "dev": true, + "dependencies": { + "@ardatan/relay-compiler": "12.0.0", + "@graphql-tools/utils": "^9.2.1", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-tools/utils": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", + "dev": true, + "dependencies": { + "@graphql-typed-document-node/core": "^3.1.1", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-codegen/typescript-operations": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-4.0.1.tgz", + "integrity": "sha512-GpUWWdBVUec/Zqo23aFLBMrXYxN2irypHqDcKjN78JclDPdreasAEPcIpMfqf4MClvpmvDLy4ql+djVAwmkjbw==", + "dev": true, + "dependencies": { + "@graphql-codegen/plugin-helpers": "^5.0.0", + "@graphql-codegen/typescript": "^4.0.1", + "@graphql-codegen/visitor-plugin-common": "4.0.1", + "auto-bind": "~4.0.0", + "tslib": "~2.5.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/typescript-operations/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==", + "dev": true + }, + "node_modules/@graphql-codegen/typescript/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==", + "dev": true + }, + "node_modules/@graphql-codegen/visitor-plugin-common": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-4.0.1.tgz", + "integrity": "sha512-Bi/1z0nHg4QMsAqAJhds+ForyLtk7A3HQOlkrZNm3xEkY7lcBzPtiOTLBtvziwopBsXUxqeSwVjOOFPLS5Yw1Q==", + "dev": true, + "dependencies": { + "@graphql-codegen/plugin-helpers": "^5.0.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.5.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/visitor-plugin-common/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==", + "dev": true + }, + "node_modules/@graphql-tools/apollo-engine-loader": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.0.tgz", + "integrity": "sha512-axQTbN5+Yxs1rJ6cWQBOfw3AEeC+fvIuZSfJLPLLvFJLj4pUm9fhxey/g6oQZAAQJqKPfw+tLDUQvnfvRK8Kmg==", + "dev": true, + "dependencies": { + "@ardatan/sync-fetch": "^0.0.1", + "@graphql-tools/utils": "^10.0.0", + "@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/events": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", + "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", + "dev": true, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@graphql-tools/apollo-engine-loader/node_modules/@whatwg-node/fetch": { + "version": "0.9.14", + "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.14.tgz", + "integrity": "sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w==", + "dev": true, + "dependencies": { + "@whatwg-node/node-fetch": "^0.5.0", + "urlpattern-polyfill": "^9.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@graphql-tools/apollo-engine-loader/node_modules/@whatwg-node/node-fetch": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.2.tgz", + "integrity": "sha512-uVYCnmWoCiGbv5AtnSx5nZ1kQJ+U8f269/yHB62y7wXPdjYx6o4sBSefnfwUI8HNf4rf16VbvGR/AzuABhDD5g==", + "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/apollo-engine-loader/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/apollo-engine-loader/node_modules/urlpattern-polyfill": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-9.0.0.tgz", + "integrity": "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==", + "dev": true + }, + "node_modules/@graphql-tools/batch-execute": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-9.0.2.tgz", + "integrity": "sha512-Y2uwdZI6ZnatopD/SYfZ1eGuQFI7OU2KGZ2/B/7G9ISmgMl5K+ZZWz/PfIEXeiHirIDhyk54s4uka5rj2xwKqQ==", + "dev": true, + "dependencies": { + "@graphql-tools/utils": "^10.0.5", + "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/batch-execute/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/code-file-loader": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.0.3.tgz", + "integrity": "sha512-gVnnlWs0Ua+5FkuHHEriFUOI3OIbHv6DS1utxf28n6NkfGMJldC4j0xlJRY0LS6dWK34IGYgD4HelKYz2l8KiA==", + "dev": true, + "dependencies": { + "@graphql-tools/graphql-tag-pluck": "8.1.0", + "@graphql-tools/utils": "^10.0.0", + "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/code-file-loader/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/delegate": { + "version": "10.0.3", + "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-10.0.3.tgz", + "integrity": "sha512-Jor9oazZ07zuWkykD3OOhT/2XD74Zm6Ar0ENZMk75MDD51wB2UWUIMljtHxbJhV5A6UBC2v8x6iY0xdCGiIlyw==", + "dev": true, + "dependencies": { + "@graphql-tools/batch-execute": "^9.0.1", + "@graphql-tools/executor": "^1.0.0", + "@graphql-tools/schema": "^10.0.0", + "@graphql-tools/utils": "^10.0.5", + "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/delegate/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/executor": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.2.0.tgz", + "integrity": "sha512-SKlIcMA71Dha5JnEWlw4XxcaJ+YupuXg0QCZgl2TOLFz4SkGCwU/geAsJvUJFwK2RbVLpQv/UMq67lOaBuwDtg==", + "dev": true, + "dependencies": { + "@graphql-tools/utils": "^10.0.0", + "@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.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-1.1.0.tgz", + "integrity": "sha512-yM67SzwE8rYRpm4z4AuGtABlOp9mXXVy6sxXnTJRoYIdZrmDbKVfIY+CpZUJCqS0FX3xf2+GoHlsj7Qswaxgcg==", + "dev": true, + "dependencies": { + "@graphql-tools/utils": "^10.0.2", + "@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-graphql-ws/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/executor-graphql-ws/node_modules/ws": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.15.0.tgz", + "integrity": "sha512-H/Z3H55mrcrgjFwI+5jKavgXvwQLtfPCUEp6pi35VhoB0pfcHnSoyuTzkBEZpzq49g1193CUEwIvmsjcotenYw==", + "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/@graphql-tools/executor-http": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-1.0.5.tgz", + "integrity": "sha512-roQyDLOAywyaCTPOhwXiT/WDr0bfuVhqOXjECsnrIl/1TMPDUYjiT2sW6Gz6pqnYMmokdhyvlV6D5d7WtIrKsA==", + "dev": true, + "dependencies": { + "@graphql-tools/utils": "^10.0.2", + "@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/events": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", + "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", + "dev": true, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@graphql-tools/executor-http/node_modules/@whatwg-node/fetch": { + "version": "0.9.14", + "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.14.tgz", + "integrity": "sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w==", + "dev": true, + "dependencies": { + "@whatwg-node/node-fetch": "^0.5.0", + "urlpattern-polyfill": "^9.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@graphql-tools/executor-http/node_modules/@whatwg-node/node-fetch": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.2.tgz", + "integrity": "sha512-uVYCnmWoCiGbv5AtnSx5nZ1kQJ+U8f269/yHB62y7wXPdjYx6o4sBSefnfwUI8HNf4rf16VbvGR/AzuABhDD5g==", + "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/executor-http/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/executor-http/node_modules/urlpattern-polyfill": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-9.0.0.tgz", + "integrity": "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==", + "dev": true + }, + "node_modules/@graphql-tools/executor-legacy-ws": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.0.5.tgz", + "integrity": "sha512-w54AZ7zkNuvpyV09FH+eGHnnAmaxhBVHg4Yh2ICcsMfRg0brkLt77PlbjBuxZ4HY8XZnKJaYWf+tKazQZtkQtg==", + "dev": true, + "dependencies": { + "@graphql-tools/utils": "^10.0.0", + "@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/executor-legacy-ws/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/executor-legacy-ws/node_modules/ws": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.15.0.tgz", + "integrity": "sha512-H/Z3H55mrcrgjFwI+5jKavgXvwQLtfPCUEp6pi35VhoB0pfcHnSoyuTzkBEZpzq49g1193CUEwIvmsjcotenYw==", + "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/@graphql-tools/executor/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/git-loader": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-8.0.3.tgz", + "integrity": "sha512-Iz9KbRUAkuOe8JGTS0qssyJ+D5Snle17W+z9anwWrLFrkBhHrRFUy5AdjZqgJuhls0x30QkZBnnCtnHDBdQ4nA==", + "dev": true, + "dependencies": { + "@graphql-tools/graphql-tag-pluck": "8.1.0", + "@graphql-tools/utils": "^10.0.0", + "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/git-loader/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/github-loader": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-8.0.0.tgz", + "integrity": "sha512-VuroArWKcG4yaOWzV0r19ElVIV6iH6UKDQn1MXemND0xu5TzrFme0kf3U9o0YwNo0kUYEk9CyFM0BYg4he17FA==", + "dev": true, + "dependencies": { + "@ardatan/sync-fetch": "^0.0.1", + "@graphql-tools/executor-http": "^1.0.0", + "@graphql-tools/graphql-tag-pluck": "^8.0.0", + "@graphql-tools/utils": "^10.0.0", + "@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/events": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", + "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", + "dev": true, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@graphql-tools/github-loader/node_modules/@whatwg-node/fetch": { + "version": "0.9.14", + "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.14.tgz", + "integrity": "sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w==", + "dev": true, + "dependencies": { + "@whatwg-node/node-fetch": "^0.5.0", + "urlpattern-polyfill": "^9.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@graphql-tools/github-loader/node_modules/@whatwg-node/node-fetch": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.2.tgz", + "integrity": "sha512-uVYCnmWoCiGbv5AtnSx5nZ1kQJ+U8f269/yHB62y7wXPdjYx6o4sBSefnfwUI8HNf4rf16VbvGR/AzuABhDD5g==", + "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/github-loader/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/github-loader/node_modules/urlpattern-polyfill": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-9.0.0.tgz", + "integrity": "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==", + "dev": true + }, + "node_modules/@graphql-tools/graphql-file-loader": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.0.0.tgz", + "integrity": "sha512-wRXj9Z1IFL3+zJG1HWEY0S4TXal7+s1vVhbZva96MSp0kbb/3JBF7j0cnJ44Eq0ClccMgGCDFqPFXty4JlpaPg==", + "dev": true, + "dependencies": { + "@graphql-tools/import": "7.0.0", + "@graphql-tools/utils": "^10.0.0", + "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-file-loader/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/graphql-tag-pluck": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.1.0.tgz", + "integrity": "sha512-kt5l6H/7QxQcIaewInTcune6NpATojdFEW98/8xWcgmy7dgXx5vU9e0AicFZIH+ewGyZzTpwFqO2RI03roxj2w==", + "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.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/graphql-tag-pluck/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/import": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-7.0.0.tgz", + "integrity": "sha512-NVZiTO8o1GZs6OXzNfjB+5CtQtqsZZpQOq+Uu0w57kdUkT4RlQKlwhT8T81arEsbV55KpzkpFsOZP7J1wdmhBw==", + "dev": true, + "dependencies": { + "@graphql-tools/utils": "^10.0.0", + "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/import/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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@graphql-tools/import/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/json-file-loader": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.0.tgz", + "integrity": "sha512-ki6EF/mobBWJjAAC84xNrFMhNfnUFD6Y0rQMGXekrUgY0NdeYXHU0ZUgHzC9O5+55FslqUmAUHABePDHTyZsLg==", + "dev": true, + "dependencies": { + "@graphql-tools/utils": "^10.0.0", + "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/json-file-loader/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/load": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-8.0.1.tgz", + "integrity": "sha512-qSMsKngJhDqRbuWyo3NvakEFqFL6+eSjy8ooJ1o5qYD26N7dqXkKzIMycQsX7rBK19hOuINAUSaRcVWH6hTccw==", + "dev": true, + "dependencies": { + "@graphql-tools/schema": "^10.0.0", + "@graphql-tools/utils": "^10.0.11", + "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/load/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/merge": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.0.1.tgz", + "integrity": "sha512-hIEExWO9fjA6vzsVjJ3s0cCQ+Q/BEeMVJZtMXd7nbaVefVy0YDyYlEkeoYYNV3NVVvu1G9lr6DM1Qd0DGo9Caw==", + "dev": true, + "dependencies": { + "@graphql-tools/utils": "^10.0.10", + "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/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "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, + "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/optimize/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/prisma-loader": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/prisma-loader/-/prisma-loader-8.0.2.tgz", + "integrity": "sha512-8d28bIB0bZ9Bj0UOz9sHagVPW+6AHeqvGljjERtwCnWl8OCQw2c2pNboYXISLYUG5ub76r4lDciLLTU+Ks7Q0w==", + "dev": true, + "dependencies": { + "@graphql-tools/url-loader": "^8.0.0", + "@graphql-tools/utils": "^10.0.8", + "@types/js-yaml": "^4.0.0", + "@types/json-stable-stringify": "^1.0.32", + "@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", + "json-stable-stringify": "^1.0.1", + "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/events": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", + "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", + "dev": true, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@graphql-tools/prisma-loader/node_modules/@whatwg-node/fetch": { + "version": "0.9.14", + "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.14.tgz", + "integrity": "sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w==", + "dev": true, + "dependencies": { + "@whatwg-node/node-fetch": "^0.5.0", + "urlpattern-polyfill": "^9.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@graphql-tools/prisma-loader/node_modules/@whatwg-node/node-fetch": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.2.tgz", + "integrity": "sha512-uVYCnmWoCiGbv5AtnSx5nZ1kQJ+U8f269/yHB62y7wXPdjYx6o4sBSefnfwUI8HNf4rf16VbvGR/AzuABhDD5g==", + "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/prisma-loader/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/@graphql-tools/prisma-loader/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/@graphql-tools/prisma-loader/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/prisma-loader/node_modules/urlpattern-polyfill": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-9.0.0.tgz", + "integrity": "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==", + "dev": true + }, + "node_modules/@graphql-tools/relay-operation-optimizer": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.0.0.tgz", + "integrity": "sha512-UNlJi5y3JylhVWU4MBpL0Hun4Q7IoJwv9xYtmAz+CgRa066szzY7dcuPfxrA7cIGgG/Q6TVsKsYaiF4OHPs1Fw==", + "dev": true, + "dependencies": { + "@ardatan/relay-compiler": "12.0.0", + "@graphql-tools/utils": "^10.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/relay-operation-optimizer/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/schema": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.2.tgz", + "integrity": "sha512-TbPsIZnWyDCLhgPGnDjt4hosiNU2mF/rNtSk5BVaXWnZqvKJ6gzJV4fcHcvhRIwtscDMW2/YTnK6dLVnk8pc4w==", + "dev": true, + "dependencies": { + "@graphql-tools/merge": "^9.0.1", + "@graphql-tools/utils": "^10.0.10", + "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/schema/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/url-loader": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-8.0.1.tgz", + "integrity": "sha512-B2k8KQEkEQmfV1zhurT5GLoXo8jbXP+YQHUayhCSxKYlRV7j/1Fhp1b21PDM8LXIDGlDRXaZ0FbWKOs7eYXDuQ==", + "dev": true, + "dependencies": { + "@ardatan/sync-fetch": "^0.0.1", + "@graphql-tools/delegate": "^10.0.0", + "@graphql-tools/executor-graphql-ws": "^1.0.0", + "@graphql-tools/executor-http": "^1.0.5", + "@graphql-tools/executor-legacy-ws": "^1.0.0", + "@graphql-tools/utils": "^10.0.0", + "@graphql-tools/wrap": "^10.0.0", + "@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/events": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", + "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", + "dev": true, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@graphql-tools/url-loader/node_modules/@whatwg-node/fetch": { + "version": "0.9.14", + "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.14.tgz", + "integrity": "sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w==", + "dev": true, + "dependencies": { + "@whatwg-node/node-fetch": "^0.5.0", + "urlpattern-polyfill": "^9.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@graphql-tools/url-loader/node_modules/@whatwg-node/node-fetch": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.2.tgz", + "integrity": "sha512-uVYCnmWoCiGbv5AtnSx5nZ1kQJ+U8f269/yHB62y7wXPdjYx6o4sBSefnfwUI8HNf4rf16VbvGR/AzuABhDD5g==", + "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/url-loader/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/url-loader/node_modules/urlpattern-polyfill": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-9.0.0.tgz", + "integrity": "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==", + "dev": true + }, + "node_modules/@graphql-tools/url-loader/node_modules/ws": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.15.0.tgz", + "integrity": "sha512-H/Z3H55mrcrgjFwI+5jKavgXvwQLtfPCUEp6pi35VhoB0pfcHnSoyuTzkBEZpzq49g1193CUEwIvmsjcotenYw==", + "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/@graphql-tools/utils": { + "version": "10.0.11", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.0.11.tgz", + "integrity": "sha512-vVjXgKn6zjXIlYBd7yJxCVMYGb5j18gE3hx3Qw3mNsSEsYQXbJbPdlwb7Fc9FogsJei5AaqiQerqH4kAosp1nQ==", + "dev": true, + "dependencies": { + "@graphql-typed-document-node/core": "^3.1.1", + "cross-inspect": "1.0.0", + "dset": "^3.1.2", + "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/utils/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@graphql-tools/wrap": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-10.0.1.tgz", + "integrity": "sha512-Cw6hVrKGM2OKBXeuAGltgy4tzuqQE0Nt7t/uAqnuokSXZhMHXJUb124Bnvxc2gPZn5chfJSDafDe4Cp8ZAVJgg==", + "dev": true, + "dependencies": { + "@graphql-tools/delegate": "^10.0.3", + "@graphql-tools/schema": "^10.0.0", + "@graphql-tools/utils": "^10.0.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/wrap/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "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==", + "dev": true, + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz", + "integrity": "sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==", + "dev": true + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "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==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "dev": true, + "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/@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/@peculiar/asn1-schema": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.3.8.tgz", + "integrity": "sha512-ULB1XqHKx1WBU/tTFIA+uARuRoBVZ4pNdOA878RDrRbBfBGcSzi5HBkdScC6ZbHn8z7L8gmKCgPC1LHRrP46tA==", + "dev": true, + "dependencies": { + "asn1js": "^3.0.5", + "pvtsutils": "^1.3.5", + "tslib": "^2.6.2" + } + }, + "node_modules/@peculiar/asn1-schema/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@peculiar/json-schema": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/@peculiar/json-schema/-/json-schema-1.1.12.tgz", + "integrity": "sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==", + "dev": true, + "dependencies": { + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@peculiar/json-schema/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@peculiar/webcrypto": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.4.3.tgz", + "integrity": "sha512-VtaY4spKTdN5LjJ04im/d/joXuvLbQdgy5Z4DXF4MFZhQ+MTrejbNMkfZBp1Bs3O5+bFqnJgyGdPuZQflvIa5A==", + "dev": true, + "dependencies": { + "@peculiar/asn1-schema": "^2.3.6", + "@peculiar/json-schema": "^1.1.12", + "pvtsutils": "^1.3.2", + "tslib": "^2.5.0", + "webcrypto-core": "^1.7.7" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/@peculiar/webcrypto/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@raycast/api": { + "version": "1.40.1", + "resolved": "https://registry.npmjs.org/@raycast/api/-/api-1.40.1.tgz", + "integrity": "sha512-qlyaLmIelKfOCHqqeAiDrWrNaUusaWMj2JQGq0Q+4erP1/68UCcad8JVCl5OKA3a5jJfE72TKeMCcBaz7RReMg==", + "hasInstallScript": true, + "dependencies": { + "@types/node": "16.10.3", + "@types/react": "18.0.9", + "react": "18.1.0", + "react-reconciler": "0.28.0" + }, + "bin": { + "ray": "bin/ray" + }, + "peerDependencies": { + "@types/node": "16.10.3", + "@types/react": "18.0.9" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@raycast/api/node_modules/@types/node": { + "version": "16.10.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.10.3.tgz", + "integrity": "sha512-ho3Ruq+fFnBrZhUYI46n/bV2GjwzSkwuT4dTf0GkuNFmnb8nq4ny2z9JEVemFi6bdEJanHLlYfy9c6FN9B9McQ==" + }, + "node_modules/@raycast/api/node_modules/@types/react": { + "version": "18.0.9", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.9.tgz", + "integrity": "sha512-9bjbg1hJHUm4De19L1cHiW0Jvx3geel6Qczhjd0qY5VKVE2X5+x77YxAepuCwVh4vrgZJdgEJw48zrhRIeF4Nw==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@raycast/utils": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/@raycast/utils/-/utils-1.4.8.tgz", + "integrity": "sha512-pqU7qKVuZMWlfFZDOJA+IZqmNl5XPQKKaNM1kN9968MxFFZb6Rr7Mcj7E6ZWg1iE5Sw4YhM2pS9NqWkzMTutxQ==", + "dependencies": { + "content-type": "^1.0.4", + "cross-fetch": "^3.1.5", + "dequal": "^2.0.3", + "media-typer": "^1.1.0", + "object-hash": "^3.0.0", + "signal-exit": "^3.0.7" + }, + "peerDependencies": { + "@raycast/api": ">=1.39.2" + } + }, + "node_modules/@repeaterjs/repeater": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@repeaterjs/repeater/-/repeater-3.0.5.tgz", + "integrity": "sha512-l3YHBLAol6d/IKnB9LhpD0cEZWAoe3eFKUyTYWmFmCO2Q/WOckxLQAUyMZWwZV2M/m3+4vgRoaolFqaII82/TA==", + "dev": true + }, + "node_modules/@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "dev": true, + "dependencies": { + "defer-to-connect": "^1.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "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.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true + }, + "node_modules/@types/json-stable-stringify": { + "version": "1.0.36", + "resolved": "https://registry.npmjs.org/@types/json-stable-stringify/-/json-stable-stringify-1.0.36.tgz", + "integrity": "sha512-b7bq23s4fgBB76n34m2b3RBf6M369B0Z9uRR8aHTMd8kZISRkmDEpPD8hhpYvDFzr3bJCPES96cm3Q6qRNDbQw==", + "dev": true + }, + "node_modules/@types/node": { + "version": "18.0.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.6.tgz", + "integrity": "sha512-/xUq6H2aQm261exT6iZTMifUySEt4GR5KX8eYyY+C4MSNPqSh9oNIP7tz2GLKTlFaiBbgZNxffoR3CVRG+cljw==", + "dev": true + }, + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "node_modules/@types/react": { + "version": "18.0.15", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.15.tgz", + "integrity": "sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==", + "dev": true, + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + }, + "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/@typescript-eslint/eslint-plugin": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.7.tgz", + "integrity": "sha512-l4L6Do+tfeM2OK0GJsU7TUcM/1oN/N25xHm3Jb4z3OiDU4Lj8dIuxX9LpVMS9riSXQs42D1ieX7b85/r16H9Fw==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "5.30.7", + "@typescript-eslint/type-utils": "5.30.7", + "@typescript-eslint/utils": "5.30.7", + "debug": "^4.3.4", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.2.0", + "regexpp": "^3.2.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.30.7.tgz", + "integrity": "sha512-Rg5xwznHWWSy7v2o0cdho6n+xLhK2gntImp0rJroVVFkcYFYQ8C8UJTSuTw/3CnExBmPjycjmUJkxVmjXsld6A==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "5.30.7", + "@typescript-eslint/types": "5.30.7", + "@typescript-eslint/typescript-estree": "5.30.7", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.30.7.tgz", + "integrity": "sha512-7BM1bwvdF1UUvt+b9smhqdc/eniOnCKxQT/kj3oXtj3LqnTWCAM0qHRHfyzCzhEfWX0zrW7KqXXeE4DlchZBKw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.30.7", + "@typescript-eslint/visitor-keys": "5.30.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.30.7.tgz", + "integrity": "sha512-nD5qAE2aJX/YLyKMvOU5jvJyku4QN5XBVsoTynFrjQZaDgDV6i7QHFiYCx10wvn7hFvfuqIRNBtsgaLe0DbWhw==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "5.30.7", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.30.7.tgz", + "integrity": "sha512-ocVkETUs82+U+HowkovV6uxf1AnVRKCmDRNUBUUo46/5SQv1owC/EBFkiu4MOHeZqhKz2ktZ3kvJJ1uFqQ8QPg==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.7.tgz", + "integrity": "sha512-tNslqXI1ZdmXXrHER83TJ8OTYl4epUzJC0aj2i4DMDT4iU+UqLT3EJeGQvJ17BMbm31x5scSwo3hPM0nqQ1AEA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.30.7", + "@typescript-eslint/visitor-keys": "5.30.7", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.7.tgz", + "integrity": "sha512-Z3pHdbFw+ftZiGUnm1GZhkJgVqsDL5CYW2yj+TB2mfXDFOMqtbzQi2dNJIyPqPbx9mv2kUxS1gU+r2gKlKi1rQ==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.30.7", + "@typescript-eslint/types": "5.30.7", + "@typescript-eslint/typescript-estree": "5.30.7", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.7.tgz", + "integrity": "sha512-KrRXf8nnjvcpxDFOKej4xkD7657+PClJs5cJVSG7NNoCNnjEdc46juNAQt7AyuWctuCgs6mVRc1xGctEqrjxWw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.30.7", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@whatwg-node/events": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.0.3.tgz", + "integrity": "sha512-IqnKIDWfXBJkvy/k6tzskWTc2NK3LcqHlb+KHGCrjOCH4jfQckRX0NAiIcC/vIqQkzLYw2r2CTSwAxcrtcD6lA==", + "dev": true + }, + "node_modules/@whatwg-node/fetch": { + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.8.8.tgz", + "integrity": "sha512-CdcjGC2vdKhc13KKxgsc6/616BQ7ooDIgPeTuAiE8qfCnS0mGzcfCOoZXypQSz73nxI+GWc7ZReIAVhxoE1KCg==", + "dev": true, + "dependencies": { + "@peculiar/webcrypto": "^1.4.0", + "@whatwg-node/node-fetch": "^0.3.6", + "busboy": "^1.6.0", + "urlpattern-polyfill": "^8.0.0", + "web-streams-polyfill": "^3.2.1" + } + }, + "node_modules/@whatwg-node/node-fetch": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.3.6.tgz", + "integrity": "sha512-w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA==", + "dev": true, + "dependencies": { + "@whatwg-node/events": "^0.0.3", + "busboy": "^1.6.0", + "fast-querystring": "^1.1.1", + "fast-url-parser": "^1.1.3", + "tslib": "^2.3.1" + } + }, + "node_modules/@whatwg-node/node-fetch/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "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==", + "dev": 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/ansi-align": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz", + "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=", + "dev": true, + "dependencies": { + "string-width": "^2.0.0" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "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-escapes/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/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "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==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "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 + }, + "node_modules/asn1js": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/asn1js/-/asn1js-3.0.5.tgz", + "integrity": "sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==", + "dev": true, + "dependencies": { + "pvtsutils": "^1.3.2", + "pvutils": "^1.1.3", + "tslib": "^2.4.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/asn1js/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "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/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, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-plugin-syntax-trailing-function-commas": { + "version": "7.0.0-beta.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz", + "integrity": "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==", + "dev": true + }, + "node_modules/babel-preset-fbjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz", + "integrity": "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==", + "dev": true, + "dependencies": { + "@babel/plugin-proposal-class-properties": "^7.0.0", + "@babel/plugin-proposal-object-rest-spread": "^7.0.0", + "@babel/plugin-syntax-class-properties": "^7.0.0", + "@babel/plugin-syntax-flow": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.0.0", + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "@babel/plugin-transform-arrow-functions": "^7.0.0", + "@babel/plugin-transform-block-scoped-functions": "^7.0.0", + "@babel/plugin-transform-block-scoping": "^7.0.0", + "@babel/plugin-transform-classes": "^7.0.0", + "@babel/plugin-transform-computed-properties": "^7.0.0", + "@babel/plugin-transform-destructuring": "^7.0.0", + "@babel/plugin-transform-flow-strip-types": "^7.0.0", + "@babel/plugin-transform-for-of": "^7.0.0", + "@babel/plugin-transform-function-name": "^7.0.0", + "@babel/plugin-transform-literals": "^7.0.0", + "@babel/plugin-transform-member-expression-literals": "^7.0.0", + "@babel/plugin-transform-modules-commonjs": "^7.0.0", + "@babel/plugin-transform-object-super": "^7.0.0", + "@babel/plugin-transform-parameters": "^7.0.0", + "@babel/plugin-transform-property-literals": "^7.0.0", + "@babel/plugin-transform-react-display-name": "^7.0.0", + "@babel/plugin-transform-react-jsx": "^7.0.0", + "@babel/plugin-transform-shorthand-properties": "^7.0.0", + "@babel/plugin-transform-spread": "^7.0.0", + "@babel/plugin-transform-template-literals": "^7.0.0", + "babel-plugin-syntax-trailing-function-commas": "^7.0.0-beta.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "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==", + "dev": 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/bl/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==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/boolean": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.1.4.tgz", + "integrity": "sha512-3hx0kwU3uzG6ReQ3pnaFQPSktpBw6RHN3/ivDKEuU8g1XSfafowyvDnadjv1xp8IZqhtSukxlwv9bF6FhX8m0w==", + "dev": true, + "optional": true + }, + "node_modules/boxen": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz", + "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==", + "dev": true, + "dependencies": { + "ansi-align": "^2.0.0", + "camelcase": "^4.0.0", + "chalk": "^2.0.1", + "cli-boxes": "^1.0.0", + "string-width": "^2.0.0", + "term-size": "^1.2.0", + "widest-line": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/boxen/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/boxen/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/boxen/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/boxen/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/boxen/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/boxen/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/boxen/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "dev": true, + "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.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "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, + "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": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", + "dev": true, + "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==", + "dev": true + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dev": true, + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "dev": true, + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cacheable-request/node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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/camel-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001568", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001568.tgz", + "integrity": "sha512-vSUkH84HontZJ88MiNrOau1EBrCqEQYgkC5gIySiDlpsm8sGVrhU7Kx4V6h0tnqaHzIHZv08HlJIwPbL4XL9+A==", + "dev": true, + "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/capital-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/capture-stack-trace": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz", + "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "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/change-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "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/ci-info": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", + "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", + "dev": true + }, + "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-boxes": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz", + "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "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-truncate/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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-truncate/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/cli-truncate/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==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "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/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/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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/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==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "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-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.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==", + "dev": true, + "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==", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": 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/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/concurrently": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-8.2.2.tgz", + "integrity": "sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.2", + "date-fns": "^2.30.0", + "lodash": "^4.17.21", + "rxjs": "^7.8.1", + "shell-quote": "^1.8.1", + "spawn-command": "0.0.2", + "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": "^14.13.0 || >=16.0.0" + }, + "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/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dev": true, + "optional": true, + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/configstore": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.5.tgz", + "integrity": "sha512-nlOhI4+fdzoK5xmJ+NY+1gZK56bwEaWZr8fYuXohZ9Vkc1o3a4T/R3M+yE/w7x/ZVJ1zF8c+oaOvF0dztdUgmA==", + "dev": true, + "dependencies": { + "dot-prop": "^4.2.1", + "graceful-fs": "^4.1.2", + "make-dir": "^1.0.0", + "unique-string": "^1.0.0", + "write-file-atomic": "^2.0.0", + "xdg-basedir": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "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/constant-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "engines": { + "node": ">= 0.6" + } + }, + "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/core-js": { + "version": "3.18.3", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.18.3.tgz", + "integrity": "sha512-tReEhtMReZaPFVw7dajMx0vlsz3oOb8ajgPoHVYGxr8ErnZ6PcYEvvmjGmXlfpnxpkYSdOQttjB+MvVbCGfvLw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "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==", + "dev": true + }, + "node_modules/create-error-class": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", + "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", + "dev": true, + "dependencies": { + "capture-stack-trace": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cross-fetch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", + "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "dependencies": { + "node-fetch": "2.6.7" + } + }, + "node_modules/cross-inspect": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/cross-inspect/-/cross-inspect-1.0.0.tgz", + "integrity": "sha512-4PFfn4b5ZN6FMNGSZlyb7wUhuN8wvj8t/VQHZdM4JsDcruGJ8L2kf9zao98QIrBPFCpdk27qst/AGTl7pL3ypQ==", + "dev": true, + "dependencies": { + "tslib": "^2.4.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/cross-inspect/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", + "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.0.tgz", + "integrity": "sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==" + }, + "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/date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.21.0" + }, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, + "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.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "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/defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", + "dev": true + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "optional": true, + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, + "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, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } + }, + "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-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true, + "optional": true + }, + "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/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "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/dot-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/dot-prop": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.1.tgz", + "integrity": "sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ==", + "dev": true, + "dependencies": { + "is-obj": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/dotenv": { + "version": "16.3.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", + "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/motdotla/dotenv?sponsor=1" + } + }, + "node_modules/dset": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/dset/-/dset-3.1.3.tgz", + "integrity": "sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", + "dev": true + }, + "node_modules/electron": { + "version": "11.5.0", + "resolved": "https://registry.npmjs.org/electron/-/electron-11.5.0.tgz", + "integrity": "sha512-WjNDd6lGpxyiNjE3LhnFCAk/D9GIj1rU3GSDealVShhkkkPR3Vh4q8ErXGDl1OAO/faomVa10KoFPUN/pLbNxg==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@electron/get": "^1.0.1", + "@types/node": "^12.0.12", + "extract-zip": "^1.0.3" + }, + "bin": { + "electron": "cli.js" + }, + "engines": { + "node": ">= 8.6" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.609", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.609.tgz", + "integrity": "sha512-ihiCP7PJmjoGNuLpl7TjNA8pCQWu09vGyjlPYw1Rqww4gvNuCcmvl+44G+2QyJ6S2K4o+wbTS++Xz0YN8Q9ERw==", + "dev": true + }, + "node_modules/electron/node_modules/@types/node": { + "version": "12.20.55", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", + "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==", + "dev": true + }, + "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==", + "dev": true + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true, + "optional": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "dependencies": { + "ansi-colors": "^4.1.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "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/es6-error": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", + "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", + "dev": true, + "optional": true + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-prettier": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", + "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.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==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint/node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "dependencies": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esquery/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.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==", + "dev": 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==", + "dev": 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==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "dev": true, + "dependencies": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/execa/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/execa/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/execa/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/execa/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/execa/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + }, + "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/extract-zip": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", + "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", + "dev": true, + "dependencies": { + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + } + }, + "node_modules/extract-zip/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/extract-zip/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "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==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "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==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": 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-url-parser": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz", + "integrity": "sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==", + "dev": true, + "dependencies": { + "punycode": "^1.3.2" + } + }, + "node_modules/fast-url-parser/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "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, + "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, + "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 + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", + "dev": true, + "dependencies": { + "pend": "~1.2.0" + } + }, + "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/figures/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/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "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==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz", + "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==", + "dev": true + }, + "node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "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==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "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/get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "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/global-agent": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-2.2.0.tgz", + "integrity": "sha512-+20KpaW6DDLqhG7JDiJpD1JvNvb8ts+TNl7BPOYcURqCrXqnN1Vf+XVOrkKJAFPqfX+oEhsdzOj1hLWkBTdNJg==", + "dev": true, + "optional": true, + "dependencies": { + "boolean": "^3.0.1", + "core-js": "^3.6.5", + "es6-error": "^4.1.1", + "matcher": "^3.0.0", + "roarr": "^2.15.3", + "semver": "^7.3.2", + "serialize-error": "^7.0.1" + }, + "engines": { + "node": ">=10.0" + } + }, + "node_modules/global-dirs": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", + "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", + "dev": true, + "dependencies": { + "ini": "^1.3.4" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/global-tunnel-ng": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/global-tunnel-ng/-/global-tunnel-ng-2.7.1.tgz", + "integrity": "sha512-4s+DyciWBV0eK148wqXxcmVAbFVPqtc3sEtUE/GTQfuU80rySLcMhUmHKSHI7/LDj8q0gDYI1lIhRRB7ieRAqg==", + "dev": true, + "optional": true, + "dependencies": { + "encodeurl": "^1.0.2", + "lodash": "^4.17.10", + "npm-conf": "^1.1.3", + "tunnel": "^0.0.6" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/globals": { + "version": "13.11.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz", + "integrity": "sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.2.tgz", + "integrity": "sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ==", + "dev": true, + "optional": true, + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/got": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "dev": true, + "dependencies": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "dev": true + }, + "node_modules/graphql": { + "version": "16.8.1", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.8.1.tgz", + "integrity": "sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==", + "dev": true, + "peer": true, + "engines": { + "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" + } + }, + "node_modules/graphql-config": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-5.0.3.tgz", + "integrity": "sha512-BNGZaoxIBkv9yy6Y7omvsaBUHOzfFcII3UN++tpH8MGOKFPFkCPZuwx09ggANMt8FgyWP1Od8SWPmrUEZca4NQ==", + "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": "^1.18.2", + "minimatch": "^4.2.3", + "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/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/graphql-config/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/graphql-config/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/graphql-config/node_modules/minimatch": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.3.tgz", + "integrity": "sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/graphql-config/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/graphql-config/node_modules/typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "dev": true, + "optional": true, + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "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-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==", + "dev": true, + "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-tag/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/graphql-ws": { + "version": "5.14.2", + "resolved": "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.14.2.tgz", + "integrity": "sha512-LycmCwhZ+Op2GlHz4BZDsUYHKRiiUz+3r9wbhBATMETNlORQJAaFlAgTFoeRh6xQoQegwYwIylVD1Qns9/DA3w==", + "dev": 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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "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/header-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", + "dev": true + }, + "node_modules/http-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "dev": true, + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/https-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "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.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "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, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "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-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-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "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": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "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==", + "dev": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "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/inquirer/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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/inquirer/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==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "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, + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "dev": true + }, + "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, + "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-ci": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", + "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", + "dev": true, + "dependencies": { + "ci-info": "^1.5.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "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-installed-globally": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz", + "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=", + "dev": true, + "dependencies": { + "global-dirs": "^0.1.0", + "is-path-inside": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "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-lower-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/is-npm": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", + "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "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-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-inside": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", + "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", + "dev": true, + "dependencies": { + "path-is-inside": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-redirect": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", + "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=", + "dev": true, + "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, + "dependencies": { + "is-unc-path": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true, + "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, + "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-upper-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "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, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "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/jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/jose": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/jose/-/jose-5.1.3.tgz", + "integrity": "sha512-GPExOkcMsCLBTi1YetY2LmkoY559fss0+0KVa6kOfb2YFe84nAM7Nm/XzuZozah4iHgmBGrCOHL5/cy670SBRw==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/panva" + } + }, + "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": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", + "dev": true + }, + "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==", + "dev": true + }, + "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==", + "dev": true + }, + "node_modules/json-stable-stringify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.0.tgz", + "integrity": "sha512-zfA+5SuwYN2VWqN1/5HZaDzQKLJHaBVMZIIM+wuYjdptkaQsqzDdqjqf+lZZJUuJq1aanHiY8LhH8LmH+qBYJA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "isarray": "^2.0.5", + "jsonify": "^0.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "node_modules/json-stable-stringify/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true, + "optional": 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": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", + "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.0" + } + }, + "node_modules/latest-version": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz", + "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=", + "dev": true, + "dependencies": { + "package-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.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/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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/listr2/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==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "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/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "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==", + "dev": true + }, + "node_modules/lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", + "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/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/lower-case-first/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/lower-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "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, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matcher": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", + "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", + "dev": true, + "optional": true, + "dependencies": { + "escape-string-regexp": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/media-typer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", + "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==", + "engines": { + "node": ">= 0.8" + } + }, + "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.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.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/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "node_modules/mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "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/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": 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/no-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "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 + }, + "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==", + "dev": true + }, + "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/normalize-url": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", + "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "dev": true, + "optional": true, + "dependencies": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "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 + }, + "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==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "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/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "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-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "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==", + "dev": true, + "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==", + "dev": true, + "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==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/package-json": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz", + "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=", + "dev": true, + "dependencies": { + "got": "^6.7.1", + "registry-auth-token": "^3.0.1", + "registry-url": "^3.0.3", + "semver": "^5.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/package-json/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/package-json/node_modules/got": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", + "integrity": "sha512-Y/K3EDuiQN9rTZhBvPRWMLXIKdeD1Rj0nzunfoi0Yyn5WBEbzxXKU9Ub2X41oZBagVWOBU3MuDonFMgPWQFnwg==", + "dev": true, + "dependencies": { + "create-error-class": "^3.0.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-redirect": "^1.0.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "lowercase-keys": "^1.0.0", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "unzip-response": "^2.0.1", + "url-parse-lax": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/package-json/node_modules/prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/package-json/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/package-json/node_modules/url-parse-lax": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", + "integrity": "sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==", + "dev": true, + "dependencies": { + "prepend-http": "^1.0.1" + }, + "engines": { + "node": ">=0.10.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/param-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "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, + "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/pascal-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "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-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true + }, + "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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "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, + "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, + "engines": { + "node": ">=0.10.0" + } + }, + "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/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "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/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/prettier": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.1.tgz", + "integrity": "sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==", + "dev": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "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==", + "dev": true + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "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, + "dependencies": { + "asap": "~2.0.3" + } + }, + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=", + "dev": true, + "optional": true + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pvtsutils": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.5.tgz", + "integrity": "sha512-ARvb14YB9Nm2Xi6nBq1ZX6dAM0FsJnuk+31aUp4TrcZEdKUlSqOqsxJHUPJDNE3qiIp+iUPEIeR6Je/tgV7zsA==", + "dev": true, + "dependencies": { + "tslib": "^2.6.1" + } + }, + "node_modules/pvtsutils/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/pvutils": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/pvutils/-/pvutils-1.1.3.tgz", + "integrity": "sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "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/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.1.0.tgz", + "integrity": "sha512-4oL8ivCz5ZEPyclFQXaNksK3adutVS8l2xzZU0cqEFrE9Sb7fC0EFK5uEk74wIreL1DERyjvsU915j1pcT2uEQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-devtools": { + "version": "4.25.0", + "resolved": "https://registry.npmjs.org/react-devtools/-/react-devtools-4.25.0.tgz", + "integrity": "sha512-b6BEjWP0BOF1umqKDAVeSi4sm+crIQJ9WlwPTAxT4T73mKYMqFOr4nf5JwnQK0Vt2U/+kKlLSQqrTKPa2feq+Q==", + "dev": true, + "dependencies": { + "cross-spawn": "^5.0.1", + "electron": "^11.1.0", + "ip": "^1.1.4", + "minimist": "^1.2.3", + "react-devtools-core": "4.25.0", + "update-notifier": "^2.1.0" + }, + "bin": { + "react-devtools": "bin.js" + } + }, + "node_modules/react-devtools-core": { + "version": "4.25.0", + "resolved": "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.25.0.tgz", + "integrity": "sha512-iewRrnu0ZnmfL+jJayKphXj04CFh6i3ezVnpCtcnZbTPSQgN09XqHAzXbKbqNDl7aTg9QLNkQRP6M3DvdrinWA==", + "dev": true, + "dependencies": { + "shell-quote": "^1.6.1", + "ws": "^7" + } + }, + "node_modules/react-devtools/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/react-devtools/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/react-devtools/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-devtools/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-devtools/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/react-devtools/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + }, + "node_modules/react-reconciler": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/react-reconciler/-/react-reconciler-0.28.0.tgz", + "integrity": "sha512-sGIHDOpgVjRYgsi8NgosDnbkDvvkYFFSF900ZUhUw0+lSBEA5n76TcKFaVkfYMIuYm+7W6mT8Q673DLBfuTxcQ==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.22.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "react": "^18.1.0" + } + }, + "node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "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/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "dev": true + }, + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/registry-auth-token": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz", + "integrity": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==", + "dev": true, + "dependencies": { + "rc": "^1.1.6", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/registry-url": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", + "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=", + "dev": true, + "dependencies": { + "rc": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "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, + "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/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "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/responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "dev": true, + "dependencies": { + "lowercase-keys": "^1.0.0" + } + }, + "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.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "dev": true + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/roarr": { + "version": "2.15.4", + "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz", + "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==", + "dev": true, + "optional": true, + "dependencies": { + "boolean": "^3.0.1", + "detect-node": "^2.0.4", + "globalthis": "^1.0.1", + "json-stringify-safe": "^5.0.1", + "semver-compare": "^1.0.0", + "sprintf-js": "^1.1.2" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/roarr/node_modules/sprintf-js": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", + "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==", + "dev": true, + "optional": 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/rxjs/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "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==", + "dev": true + }, + "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.22.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.22.0.tgz", + "integrity": "sha512-6QAm1BgQI88NPYymgGQLCZgvep4FyePDWFpXVK+zNSUgHwlqpJy8VEh8Et0KxTACS4VWwMousBElAZOH9nkkoQ==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "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": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", + "dev": true, + "optional": true + }, + "node_modules/semver-diff": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", + "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", + "dev": true, + "dependencies": { + "semver": "^5.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/semver-diff/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "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/sentence-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/serialize-error": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", + "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", + "dev": true, + "optional": true, + "dependencies": { + "type-fest": "^0.13.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/serialize-error/node_modules/type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "node_modules/set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "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 + }, + "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==", + "dev": true, + "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==", + "dev": true, + "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==" + }, + "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 + }, + "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": "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/slice-ansi/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==", + "dev": true, + "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/snake-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/spawn-command": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2.tgz", + "integrity": "sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==", + "dev": true + }, + "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/sponge-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "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==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.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": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dev": true, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "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==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/sumchecker": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", + "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==", + "dev": true, + "dependencies": { + "debug": "^4.1.0" + }, + "engines": { + "node": ">= 8.0" + } + }, + "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==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "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/swap-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/table": { + "version": "6.7.2", + "resolved": "https://registry.npmjs.org/table/-/table-6.7.2.tgz", + "integrity": "sha512-UFZK67uvyNivLeQbVtkiUs8Uuuxv24aSL4/Vil2PJVtMgU8Lx0CYkP12uCGa3kjyQzOSgV1+z9Wkb82fCGsO0g==", + "dev": true, + "dependencies": { + "ajv": "^8.0.1", + "lodash.clonedeep": "^4.5.0", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/table/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/table/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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/table/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/table/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==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/term-size": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz", + "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=", + "dev": true, + "dependencies": { + "execa": "^0.7.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "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/timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "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/title-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "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-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "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-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": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tunnel": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", + "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.6.11 <=0.7.0 || >=0.7.3" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, + "node_modules/typescript": { + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/ua-parser-js": { + "version": "1.0.37", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.37.tgz", + "integrity": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==", + "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" + } + ], + "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, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unique-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", + "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", + "dev": true, + "dependencies": { + "crypto-random-string": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.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/unzip-response": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz", + "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "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.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/update-notifier": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz", + "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==", + "dev": true, + "dependencies": { + "boxen": "^1.2.1", + "chalk": "^2.0.1", + "configstore": "^3.0.0", + "import-lazy": "^2.1.0", + "is-ci": "^1.0.10", + "is-installed-globally": "^0.1.0", + "is-npm": "^1.0.0", + "latest-version": "^3.0.0", + "semver-diff": "^2.0.0", + "xdg-basedir": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/update-notifier/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/update-notifier/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/update-notifier/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/update-notifier/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/update-notifier/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/update-notifier/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/update-notifier/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "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/upper-case-first/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/upper-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", + "dev": true, + "dependencies": { + "prepend-http": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/urlpattern-polyfill": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz", + "integrity": "sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==", + "dev": true + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "node_modules/v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "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/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/web-streams-polyfill": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", + "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/webcrypto-core": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/webcrypto-core/-/webcrypto-core-1.7.7.tgz", + "integrity": "sha512-7FjigXNsBfopEj+5DV2nhNpfic2vumtjjgPmeDKk45z+MJwXKKfhPB7118Pfzrmh4jqOMST6Ch37iPAHoImg5g==", + "dev": true, + "dependencies": { + "@peculiar/asn1-schema": "^2.3.6", + "@peculiar/json-schema": "^1.1.12", + "asn1js": "^3.0.1", + "pvtsutils": "^1.3.2", + "tslib": "^2.4.0" + } + }, + "node_modules/webcrypto-core/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "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/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==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "dev": true + }, + "node_modules/widest-line": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz", + "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==", + "dev": true, + "dependencies": { + "string-width": "^2.1.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "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/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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/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==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "dev": true, + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xdg-basedir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", + "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "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": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "dev": true, + "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/yargs/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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/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==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", + "dev": true, + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "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" + } + } + }, + "dependencies": { + "@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@ardatan/relay-compiler": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-12.0.0.tgz", + "integrity": "sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==", + "dev": true, + "requires": { + "@babel/core": "^7.14.0", + "@babel/generator": "^7.14.0", + "@babel/parser": "^7.14.0", + "@babel/runtime": "^7.0.0", + "@babel/traverse": "^7.14.0", + "@babel/types": "^7.0.0", + "babel-preset-fbjs": "^3.4.0", + "chalk": "^4.0.0", + "fb-watchman": "^2.0.0", + "fbjs": "^3.0.0", + "glob": "^7.1.1", + "immutable": "~3.7.6", + "invariant": "^2.2.4", + "nullthrows": "^1.1.1", + "relay-runtime": "12.0.0", + "signedsource": "^1.0.0", + "yargs": "^15.3.1" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "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==", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "@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, + "requires": { + "node-fetch": "^2.6.1" + } + }, + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/compat-data": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", + "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", + "dev": true + }, + "@babel/core": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.6.tgz", + "integrity": "sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.23.6", + "@babel/parser": "^7.23.6", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.6", + "@babel/types": "^7.23.6", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dev": true, + "requires": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + } + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "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 + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/generator": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "dev": true, + "requires": { + "@babel/types": "^7.23.6", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "dependencies": { + "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, + "requires": { + "yallist": "^3.0.2" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.6.tgz", + "integrity": "sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-member-expression-to-functions": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true + }, + "@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "dev": true, + "requires": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", + "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "dev": true, + "requires": { + "@babel/types": "^7.23.0" + } + }, + "@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dev": true, + "requires": { + "@babel/types": "^7.22.15" + } + }, + "@babel/helper-module-transforms": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true + }, + "@babel/helper-replace-supers": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", + "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5" + } + }, + "@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "dev": true + }, + "@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "dev": true + }, + "@babel/helpers": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.6.tgz", + "integrity": "sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==", + "dev": true, + "requires": { + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.6", + "@babel/types": "^7.23.6" + } + }, + "@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "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 + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/parser": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz", + "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==", + "dev": true + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-flow": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.23.3.tgz", + "integrity": "sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-import-assertions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz", + "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz", + "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz", + "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz", + "integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.5.tgz", + "integrity": "sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-split-export-declaration": "^7.22.6", + "globals": "^11.1.0" + }, + "dependencies": { + "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 + } + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz", + "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.15" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", + "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-flow-strip-types": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.23.3.tgz", + "integrity": "sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-flow": "^7.23.3" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz", + "integrity": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz", + "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz", + "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz", + "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", + "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz", + "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", + "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz", + "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz", + "integrity": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz", + "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/types": "^7.23.4" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", + "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz", + "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz", + "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/runtime": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.6.tgz", + "integrity": "sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "@babel/template": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dev": true, + "requires": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + } + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "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 + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/traverse": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.6.tgz", + "integrity": "sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.6", + "@babel/types": "^7.23.6", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dev": true, + "requires": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + } + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "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 + }, + "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 + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/types": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz", + "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + } + }, + "@electron/get": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@electron/get/-/get-1.13.0.tgz", + "integrity": "sha512-+SjZhRuRo+STTO1Fdhzqnv9D2ZhjxXP6egsJ9kiO8dtP68cDx7dFCwWi64dlMQV7sWcfW1OYCW4wviEBzmRsfQ==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "env-paths": "^2.2.0", + "fs-extra": "^8.1.0", + "global-agent": "^2.0.2", + "global-tunnel-ng": "^2.7.1", + "got": "^9.6.0", + "progress": "^2.0.3", + "semver": "^6.2.0", + "sumchecker": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + } + } + }, + "@graphql-codegen/cli": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/cli/-/cli-5.0.0.tgz", + "integrity": "sha512-A7J7+be/a6e+/ul2KI5sfJlpoqeqwX8EzktaKCeduyVKgOLA6W5t+NUGf6QumBDXU8PEOqXk3o3F+RAwCWOiqA==", + "dev": true, + "requires": { + "@babel/generator": "^7.18.13", + "@babel/template": "^7.18.10", + "@babel/types": "^7.18.13", + "@graphql-codegen/core": "^4.0.0", + "@graphql-codegen/plugin-helpers": "^5.0.1", + "@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.8.0", + "chalk": "^4.1.0", + "cosmiconfig": "^8.1.3", + "debounce": "^1.2.0", + "detect-indent": "^6.0.0", + "graphql-config": "^5.0.2", + "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" + }, + "dependencies": { + "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 + }, + "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, + "requires": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + } + }, + "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, + "requires": { + "argparse": "^2.0.1" + } + }, + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "dev": true, + "optional": true, + "peer": true + } + } + }, + "@graphql-codegen/core": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-4.0.0.tgz", + "integrity": "sha512-JAGRn49lEtSsZVxeIlFVIRxts2lWObR+OQo7V2LHDJ7ohYYw3ilv7nJ8pf8P4GTg/w6ptcYdSdVVdkI8kUHB/Q==", + "dev": true, + "requires": { + "@graphql-codegen/plugin-helpers": "^5.0.0", + "@graphql-tools/schema": "^10.0.0", + "@graphql-tools/utils": "^10.0.0", + "tslib": "~2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==", + "dev": true + } + } + }, + "@graphql-codegen/plugin-helpers": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-5.0.1.tgz", + "integrity": "sha512-6L5sb9D8wptZhnhLLBcheSPU7Tg//DGWgc5tQBWX46KYTOTQHGqDpv50FxAJJOyFVJrveN9otWk9UT9/yfY4ww==", + "dev": true, + "requires": { + "@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.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==", + "dev": true + } + } + }, + "@graphql-codegen/schema-ast": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-4.0.0.tgz", + "integrity": "sha512-WIzkJFa9Gz28FITAPILbt+7A8+yzOyd1NxgwFh7ie+EmO9a5zQK6UQ3U/BviirguXCYnn+AR4dXsoDrSrtRA1g==", + "dev": true, + "requires": { + "@graphql-codegen/plugin-helpers": "^5.0.0", + "@graphql-tools/utils": "^10.0.0", + "tslib": "~2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==", + "dev": true + } + } + }, + "@graphql-codegen/typescript": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-4.0.1.tgz", + "integrity": "sha512-3YziQ21dCVdnHb+Us1uDb3pA6eG5Chjv0uTK+bt9dXeMlwYBU8MbtzvQTo4qvzWVC1AxSOKj0rgfNu1xCXqJyA==", + "dev": true, + "requires": { + "@graphql-codegen/plugin-helpers": "^5.0.0", + "@graphql-codegen/schema-ast": "^4.0.0", + "@graphql-codegen/visitor-plugin-common": "4.0.1", + "auto-bind": "~4.0.0", + "tslib": "~2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==", + "dev": true + } + } + }, + "@graphql-codegen/typescript-graphql-request": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-graphql-request/-/typescript-graphql-request-6.0.1.tgz", + "integrity": "sha512-aScw7ICyscW7bYLh2HyjQU3geCAjvFy6sRIlzgdkeFvcKBdjCil69upkyZAyntnSno2C4ZoUv7sHOpyQ9hQmFQ==", + "dev": true, + "requires": { + "@graphql-codegen/plugin-helpers": "^3.0.0", + "@graphql-codegen/visitor-plugin-common": "2.13.1", + "auto-bind": "~4.0.0", + "tslib": "~2.6.0" + }, + "dependencies": { + "@graphql-codegen/plugin-helpers": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz", + "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^9.0.0", + "change-case-all": "1.0.15", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + }, + "dependencies": { + "tslib": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", + "dev": true + } + } + }, + "@graphql-codegen/visitor-plugin-common": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.1.tgz", + "integrity": "sha512-mD9ufZhDGhyrSaWQGrU1Q1c5f01TeWtSWy/cDwXYjJcHIj1Y/DG2x0tOflEfCvh5WcnmHNIw4lzDsg1W7iFJEg==", + "dev": true, + "requires": { + "@graphql-codegen/plugin-helpers": "^2.7.2", + "@graphql-tools/optimize": "^1.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.5.0", + "@graphql-tools/utils": "^8.8.0", + "auto-bind": "~4.0.0", + "change-case-all": "1.0.14", + "dependency-graph": "^0.11.0", + "graphql-tag": "^2.11.0", + "parse-filepath": "^1.0.2", + "tslib": "~2.4.0" + }, + "dependencies": { + "@graphql-codegen/plugin-helpers": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.7.2.tgz", + "integrity": "sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^8.8.0", + "change-case-all": "1.0.14", + "common-tags": "1.8.2", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.4.0" + } + }, + "@graphql-tools/utils": { + "version": "8.13.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.13.1.tgz", + "integrity": "sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==", + "dev": true, + "requires": { + "tslib": "^2.4.0" + } + }, + "change-case-all": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.14.tgz", + "integrity": "sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==", + "dev": true, + "requires": { + "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" + } + }, + "tslib": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", + "dev": true + } + } + }, + "@graphql-tools/optimize": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", + "dev": true, + "requires": { + "tslib": "^2.4.0" + } + }, + "@graphql-tools/relay-operation-optimizer": { + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", + "dev": true, + "requires": { + "@ardatan/relay-compiler": "12.0.0", + "@graphql-tools/utils": "^9.2.1", + "tslib": "^2.4.0" + } + }, + "@graphql-tools/utils": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", + "dev": true, + "requires": { + "@graphql-typed-document-node/core": "^3.1.1", + "tslib": "^2.4.0" + } + }, + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@graphql-codegen/typescript-operations": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-4.0.1.tgz", + "integrity": "sha512-GpUWWdBVUec/Zqo23aFLBMrXYxN2irypHqDcKjN78JclDPdreasAEPcIpMfqf4MClvpmvDLy4ql+djVAwmkjbw==", + "dev": true, + "requires": { + "@graphql-codegen/plugin-helpers": "^5.0.0", + "@graphql-codegen/typescript": "^4.0.1", + "@graphql-codegen/visitor-plugin-common": "4.0.1", + "auto-bind": "~4.0.0", + "tslib": "~2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==", + "dev": true + } + } + }, + "@graphql-codegen/visitor-plugin-common": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-4.0.1.tgz", + "integrity": "sha512-Bi/1z0nHg4QMsAqAJhds+ForyLtk7A3HQOlkrZNm3xEkY7lcBzPtiOTLBtvziwopBsXUxqeSwVjOOFPLS5Yw1Q==", + "dev": true, + "requires": { + "@graphql-codegen/plugin-helpers": "^5.0.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.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==", + "dev": true + } + } + }, + "@graphql-tools/apollo-engine-loader": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.0.tgz", + "integrity": "sha512-axQTbN5+Yxs1rJ6cWQBOfw3AEeC+fvIuZSfJLPLLvFJLj4pUm9fhxey/g6oQZAAQJqKPfw+tLDUQvnfvRK8Kmg==", + "dev": true, + "requires": { + "@ardatan/sync-fetch": "^0.0.1", + "@graphql-tools/utils": "^10.0.0", + "@whatwg-node/fetch": "^0.9.0", + "tslib": "^2.4.0" + }, + "dependencies": { + "@whatwg-node/events": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", + "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", + "dev": true + }, + "@whatwg-node/fetch": { + "version": "0.9.14", + "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.14.tgz", + "integrity": "sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w==", + "dev": true, + "requires": { + "@whatwg-node/node-fetch": "^0.5.0", + "urlpattern-polyfill": "^9.0.0" + } + }, + "@whatwg-node/node-fetch": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.2.tgz", + "integrity": "sha512-uVYCnmWoCiGbv5AtnSx5nZ1kQJ+U8f269/yHB62y7wXPdjYx6o4sBSefnfwUI8HNf4rf16VbvGR/AzuABhDD5g==", + "dev": true, + "requires": { + "@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" + } + }, + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "urlpattern-polyfill": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-9.0.0.tgz", + "integrity": "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==", + "dev": true + } + } + }, + "@graphql-tools/batch-execute": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-9.0.2.tgz", + "integrity": "sha512-Y2uwdZI6ZnatopD/SYfZ1eGuQFI7OU2KGZ2/B/7G9ISmgMl5K+ZZWz/PfIEXeiHirIDhyk54s4uka5rj2xwKqQ==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^10.0.5", + "dataloader": "^2.2.2", + "tslib": "^2.4.0", + "value-or-promise": "^1.0.12" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@graphql-tools/code-file-loader": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.0.3.tgz", + "integrity": "sha512-gVnnlWs0Ua+5FkuHHEriFUOI3OIbHv6DS1utxf28n6NkfGMJldC4j0xlJRY0LS6dWK34IGYgD4HelKYz2l8KiA==", + "dev": true, + "requires": { + "@graphql-tools/graphql-tag-pluck": "8.1.0", + "@graphql-tools/utils": "^10.0.0", + "globby": "^11.0.3", + "tslib": "^2.4.0", + "unixify": "^1.0.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@graphql-tools/delegate": { + "version": "10.0.3", + "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-10.0.3.tgz", + "integrity": "sha512-Jor9oazZ07zuWkykD3OOhT/2XD74Zm6Ar0ENZMk75MDD51wB2UWUIMljtHxbJhV5A6UBC2v8x6iY0xdCGiIlyw==", + "dev": true, + "requires": { + "@graphql-tools/batch-execute": "^9.0.1", + "@graphql-tools/executor": "^1.0.0", + "@graphql-tools/schema": "^10.0.0", + "@graphql-tools/utils": "^10.0.5", + "dataloader": "^2.2.2", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@graphql-tools/executor": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.2.0.tgz", + "integrity": "sha512-SKlIcMA71Dha5JnEWlw4XxcaJ+YupuXg0QCZgl2TOLFz4SkGCwU/geAsJvUJFwK2RbVLpQv/UMq67lOaBuwDtg==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^10.0.0", + "@graphql-typed-document-node/core": "3.2.0", + "@repeaterjs/repeater": "^3.0.4", + "tslib": "^2.4.0", + "value-or-promise": "^1.0.12" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@graphql-tools/executor-graphql-ws": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-1.1.0.tgz", + "integrity": "sha512-yM67SzwE8rYRpm4z4AuGtABlOp9mXXVy6sxXnTJRoYIdZrmDbKVfIY+CpZUJCqS0FX3xf2+GoHlsj7Qswaxgcg==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^10.0.2", + "@types/ws": "^8.0.0", + "graphql-ws": "^5.14.0", + "isomorphic-ws": "^5.0.0", + "tslib": "^2.4.0", + "ws": "^8.13.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "ws": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.15.0.tgz", + "integrity": "sha512-H/Z3H55mrcrgjFwI+5jKavgXvwQLtfPCUEp6pi35VhoB0pfcHnSoyuTzkBEZpzq49g1193CUEwIvmsjcotenYw==", + "dev": true, + "requires": {} + } + } + }, + "@graphql-tools/executor-http": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-1.0.5.tgz", + "integrity": "sha512-roQyDLOAywyaCTPOhwXiT/WDr0bfuVhqOXjECsnrIl/1TMPDUYjiT2sW6Gz6pqnYMmokdhyvlV6D5d7WtIrKsA==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^10.0.2", + "@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" + }, + "dependencies": { + "@whatwg-node/events": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", + "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", + "dev": true + }, + "@whatwg-node/fetch": { + "version": "0.9.14", + "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.14.tgz", + "integrity": "sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w==", + "dev": true, + "requires": { + "@whatwg-node/node-fetch": "^0.5.0", + "urlpattern-polyfill": "^9.0.0" + } + }, + "@whatwg-node/node-fetch": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.2.tgz", + "integrity": "sha512-uVYCnmWoCiGbv5AtnSx5nZ1kQJ+U8f269/yHB62y7wXPdjYx6o4sBSefnfwUI8HNf4rf16VbvGR/AzuABhDD5g==", + "dev": true, + "requires": { + "@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" + } + }, + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "urlpattern-polyfill": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-9.0.0.tgz", + "integrity": "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==", + "dev": true + } + } + }, + "@graphql-tools/executor-legacy-ws": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.0.5.tgz", + "integrity": "sha512-w54AZ7zkNuvpyV09FH+eGHnnAmaxhBVHg4Yh2ICcsMfRg0brkLt77PlbjBuxZ4HY8XZnKJaYWf+tKazQZtkQtg==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^10.0.0", + "@types/ws": "^8.0.0", + "isomorphic-ws": "^5.0.0", + "tslib": "^2.4.0", + "ws": "^8.15.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "ws": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.15.0.tgz", + "integrity": "sha512-H/Z3H55mrcrgjFwI+5jKavgXvwQLtfPCUEp6pi35VhoB0pfcHnSoyuTzkBEZpzq49g1193CUEwIvmsjcotenYw==", + "dev": true, + "requires": {} + } + } + }, + "@graphql-tools/git-loader": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-8.0.3.tgz", + "integrity": "sha512-Iz9KbRUAkuOe8JGTS0qssyJ+D5Snle17W+z9anwWrLFrkBhHrRFUy5AdjZqgJuhls0x30QkZBnnCtnHDBdQ4nA==", + "dev": true, + "requires": { + "@graphql-tools/graphql-tag-pluck": "8.1.0", + "@graphql-tools/utils": "^10.0.0", + "is-glob": "4.0.3", + "micromatch": "^4.0.4", + "tslib": "^2.4.0", + "unixify": "^1.0.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@graphql-tools/github-loader": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-8.0.0.tgz", + "integrity": "sha512-VuroArWKcG4yaOWzV0r19ElVIV6iH6UKDQn1MXemND0xu5TzrFme0kf3U9o0YwNo0kUYEk9CyFM0BYg4he17FA==", + "dev": true, + "requires": { + "@ardatan/sync-fetch": "^0.0.1", + "@graphql-tools/executor-http": "^1.0.0", + "@graphql-tools/graphql-tag-pluck": "^8.0.0", + "@graphql-tools/utils": "^10.0.0", + "@whatwg-node/fetch": "^0.9.0", + "tslib": "^2.4.0", + "value-or-promise": "^1.0.12" + }, + "dependencies": { + "@whatwg-node/events": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", + "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", + "dev": true + }, + "@whatwg-node/fetch": { + "version": "0.9.14", + "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.14.tgz", + "integrity": "sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w==", + "dev": true, + "requires": { + "@whatwg-node/node-fetch": "^0.5.0", + "urlpattern-polyfill": "^9.0.0" + } + }, + "@whatwg-node/node-fetch": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.2.tgz", + "integrity": "sha512-uVYCnmWoCiGbv5AtnSx5nZ1kQJ+U8f269/yHB62y7wXPdjYx6o4sBSefnfwUI8HNf4rf16VbvGR/AzuABhDD5g==", + "dev": true, + "requires": { + "@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" + } + }, + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "urlpattern-polyfill": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-9.0.0.tgz", + "integrity": "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==", + "dev": true + } + } + }, + "@graphql-tools/graphql-file-loader": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.0.0.tgz", + "integrity": "sha512-wRXj9Z1IFL3+zJG1HWEY0S4TXal7+s1vVhbZva96MSp0kbb/3JBF7j0cnJ44Eq0ClccMgGCDFqPFXty4JlpaPg==", + "dev": true, + "requires": { + "@graphql-tools/import": "7.0.0", + "@graphql-tools/utils": "^10.0.0", + "globby": "^11.0.3", + "tslib": "^2.4.0", + "unixify": "^1.0.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@graphql-tools/graphql-tag-pluck": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.1.0.tgz", + "integrity": "sha512-kt5l6H/7QxQcIaewInTcune6NpATojdFEW98/8xWcgmy7dgXx5vU9e0AicFZIH+ewGyZzTpwFqO2RI03roxj2w==", + "dev": true, + "requires": { + "@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.0", + "tslib": "^2.4.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@graphql-tools/import": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-7.0.0.tgz", + "integrity": "sha512-NVZiTO8o1GZs6OXzNfjB+5CtQtqsZZpQOq+Uu0w57kdUkT4RlQKlwhT8T81arEsbV55KpzkpFsOZP7J1wdmhBw==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^10.0.0", + "resolve-from": "5.0.0", + "tslib": "^2.4.0" + }, + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + }, + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@graphql-tools/json-file-loader": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.0.tgz", + "integrity": "sha512-ki6EF/mobBWJjAAC84xNrFMhNfnUFD6Y0rQMGXekrUgY0NdeYXHU0ZUgHzC9O5+55FslqUmAUHABePDHTyZsLg==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^10.0.0", + "globby": "^11.0.3", + "tslib": "^2.4.0", + "unixify": "^1.0.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@graphql-tools/load": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-8.0.1.tgz", + "integrity": "sha512-qSMsKngJhDqRbuWyo3NvakEFqFL6+eSjy8ooJ1o5qYD26N7dqXkKzIMycQsX7rBK19hOuINAUSaRcVWH6hTccw==", + "dev": true, + "requires": { + "@graphql-tools/schema": "^10.0.0", + "@graphql-tools/utils": "^10.0.11", + "p-limit": "3.1.0", + "tslib": "^2.4.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@graphql-tools/merge": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.0.1.tgz", + "integrity": "sha512-hIEExWO9fjA6vzsVjJ3s0cCQ+Q/BEeMVJZtMXd7nbaVefVy0YDyYlEkeoYYNV3NVVvu1G9lr6DM1Qd0DGo9Caw==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^10.0.10", + "tslib": "^2.4.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@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, + "requires": { + "tslib": "^2.4.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@graphql-tools/prisma-loader": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/prisma-loader/-/prisma-loader-8.0.2.tgz", + "integrity": "sha512-8d28bIB0bZ9Bj0UOz9sHagVPW+6AHeqvGljjERtwCnWl8OCQw2c2pNboYXISLYUG5ub76r4lDciLLTU+Ks7Q0w==", + "dev": true, + "requires": { + "@graphql-tools/url-loader": "^8.0.0", + "@graphql-tools/utils": "^10.0.8", + "@types/js-yaml": "^4.0.0", + "@types/json-stable-stringify": "^1.0.32", + "@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", + "json-stable-stringify": "^1.0.1", + "lodash": "^4.17.20", + "scuid": "^1.1.0", + "tslib": "^2.4.0", + "yaml-ast-parser": "^0.0.43" + }, + "dependencies": { + "@whatwg-node/events": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", + "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", + "dev": true + }, + "@whatwg-node/fetch": { + "version": "0.9.14", + "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.14.tgz", + "integrity": "sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w==", + "dev": true, + "requires": { + "@whatwg-node/node-fetch": "^0.5.0", + "urlpattern-polyfill": "^9.0.0" + } + }, + "@whatwg-node/node-fetch": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.2.tgz", + "integrity": "sha512-uVYCnmWoCiGbv5AtnSx5nZ1kQJ+U8f269/yHB62y7wXPdjYx6o4sBSefnfwUI8HNf4rf16VbvGR/AzuABhDD5g==", + "dev": true, + "requires": { + "@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" + } + }, + "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 + }, + "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, + "requires": { + "argparse": "^2.0.1" + } + }, + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "urlpattern-polyfill": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-9.0.0.tgz", + "integrity": "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==", + "dev": true + } + } + }, + "@graphql-tools/relay-operation-optimizer": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.0.0.tgz", + "integrity": "sha512-UNlJi5y3JylhVWU4MBpL0Hun4Q7IoJwv9xYtmAz+CgRa066szzY7dcuPfxrA7cIGgG/Q6TVsKsYaiF4OHPs1Fw==", + "dev": true, + "requires": { + "@ardatan/relay-compiler": "12.0.0", + "@graphql-tools/utils": "^10.0.0", + "tslib": "^2.4.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@graphql-tools/schema": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.2.tgz", + "integrity": "sha512-TbPsIZnWyDCLhgPGnDjt4hosiNU2mF/rNtSk5BVaXWnZqvKJ6gzJV4fcHcvhRIwtscDMW2/YTnK6dLVnk8pc4w==", + "dev": true, + "requires": { + "@graphql-tools/merge": "^9.0.1", + "@graphql-tools/utils": "^10.0.10", + "tslib": "^2.4.0", + "value-or-promise": "^1.0.12" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@graphql-tools/url-loader": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-8.0.1.tgz", + "integrity": "sha512-B2k8KQEkEQmfV1zhurT5GLoXo8jbXP+YQHUayhCSxKYlRV7j/1Fhp1b21PDM8LXIDGlDRXaZ0FbWKOs7eYXDuQ==", + "dev": true, + "requires": { + "@ardatan/sync-fetch": "^0.0.1", + "@graphql-tools/delegate": "^10.0.0", + "@graphql-tools/executor-graphql-ws": "^1.0.0", + "@graphql-tools/executor-http": "^1.0.5", + "@graphql-tools/executor-legacy-ws": "^1.0.0", + "@graphql-tools/utils": "^10.0.0", + "@graphql-tools/wrap": "^10.0.0", + "@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" + }, + "dependencies": { + "@whatwg-node/events": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz", + "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==", + "dev": true + }, + "@whatwg-node/fetch": { + "version": "0.9.14", + "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.14.tgz", + "integrity": "sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w==", + "dev": true, + "requires": { + "@whatwg-node/node-fetch": "^0.5.0", + "urlpattern-polyfill": "^9.0.0" + } + }, + "@whatwg-node/node-fetch": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.2.tgz", + "integrity": "sha512-uVYCnmWoCiGbv5AtnSx5nZ1kQJ+U8f269/yHB62y7wXPdjYx6o4sBSefnfwUI8HNf4rf16VbvGR/AzuABhDD5g==", + "dev": true, + "requires": { + "@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" + } + }, + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "urlpattern-polyfill": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-9.0.0.tgz", + "integrity": "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==", + "dev": true + }, + "ws": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.15.0.tgz", + "integrity": "sha512-H/Z3H55mrcrgjFwI+5jKavgXvwQLtfPCUEp6pi35VhoB0pfcHnSoyuTzkBEZpzq49g1193CUEwIvmsjcotenYw==", + "dev": true, + "requires": {} + } + } + }, + "@graphql-tools/utils": { + "version": "10.0.11", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.0.11.tgz", + "integrity": "sha512-vVjXgKn6zjXIlYBd7yJxCVMYGb5j18gE3hx3Qw3mNsSEsYQXbJbPdlwb7Fc9FogsJei5AaqiQerqH4kAosp1nQ==", + "dev": true, + "requires": { + "@graphql-typed-document-node/core": "^3.1.1", + "cross-inspect": "1.0.0", + "dset": "^3.1.2", + "tslib": "^2.4.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@graphql-tools/wrap": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-10.0.1.tgz", + "integrity": "sha512-Cw6hVrKGM2OKBXeuAGltgy4tzuqQE0Nt7t/uAqnuokSXZhMHXJUb124Bnvxc2gPZn5chfJSDafDe4Cp8ZAVJgg==", + "dev": true, + "requires": { + "@graphql-tools/delegate": "^10.0.3", + "@graphql-tools/schema": "^10.0.0", + "@graphql-tools/utils": "^10.0.0", + "tslib": "^2.4.0", + "value-or-promise": "^1.0.12" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@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==", + "dev": true, + "requires": {} + }, + "@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + } + }, + "@humanwhocodes/object-schema": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz", + "integrity": "sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==", + "dev": true + }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, + "@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==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "@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 + }, + "@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, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@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 + }, + "@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, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@peculiar/asn1-schema": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.3.8.tgz", + "integrity": "sha512-ULB1XqHKx1WBU/tTFIA+uARuRoBVZ4pNdOA878RDrRbBfBGcSzi5HBkdScC6ZbHn8z7L8gmKCgPC1LHRrP46tA==", + "dev": true, + "requires": { + "asn1js": "^3.0.5", + "pvtsutils": "^1.3.5", + "tslib": "^2.6.2" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@peculiar/json-schema": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/@peculiar/json-schema/-/json-schema-1.1.12.tgz", + "integrity": "sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==", + "dev": true, + "requires": { + "tslib": "^2.0.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@peculiar/webcrypto": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.4.3.tgz", + "integrity": "sha512-VtaY4spKTdN5LjJ04im/d/joXuvLbQdgy5Z4DXF4MFZhQ+MTrejbNMkfZBp1Bs3O5+bFqnJgyGdPuZQflvIa5A==", + "dev": true, + "requires": { + "@peculiar/asn1-schema": "^2.3.6", + "@peculiar/json-schema": "^1.1.12", + "pvtsutils": "^1.3.2", + "tslib": "^2.5.0", + "webcrypto-core": "^1.7.7" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "@raycast/api": { + "version": "1.40.1", + "resolved": "https://registry.npmjs.org/@raycast/api/-/api-1.40.1.tgz", + "integrity": "sha512-qlyaLmIelKfOCHqqeAiDrWrNaUusaWMj2JQGq0Q+4erP1/68UCcad8JVCl5OKA3a5jJfE72TKeMCcBaz7RReMg==", + "requires": { + "@types/node": "16.10.3", + "@types/react": "18.0.9", + "react": "18.1.0", + "react-reconciler": "0.28.0" + }, + "dependencies": { + "@types/node": { + "version": "16.10.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.10.3.tgz", + "integrity": "sha512-ho3Ruq+fFnBrZhUYI46n/bV2GjwzSkwuT4dTf0GkuNFmnb8nq4ny2z9JEVemFi6bdEJanHLlYfy9c6FN9B9McQ==" + }, + "@types/react": { + "version": "18.0.9", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.9.tgz", + "integrity": "sha512-9bjbg1hJHUm4De19L1cHiW0Jvx3geel6Qczhjd0qY5VKVE2X5+x77YxAepuCwVh4vrgZJdgEJw48zrhRIeF4Nw==", + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + } + } + }, + "@raycast/utils": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/@raycast/utils/-/utils-1.4.8.tgz", + "integrity": "sha512-pqU7qKVuZMWlfFZDOJA+IZqmNl5XPQKKaNM1kN9968MxFFZb6Rr7Mcj7E6ZWg1iE5Sw4YhM2pS9NqWkzMTutxQ==", + "requires": { + "content-type": "^1.0.4", + "cross-fetch": "^3.1.5", + "dequal": "^2.0.3", + "media-typer": "^1.1.0", + "object-hash": "^3.0.0", + "signal-exit": "^3.0.7" + } + }, + "@repeaterjs/repeater": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@repeaterjs/repeater/-/repeater-3.0.5.tgz", + "integrity": "sha512-l3YHBLAol6d/IKnB9LhpD0cEZWAoe3eFKUyTYWmFmCO2Q/WOckxLQAUyMZWwZV2M/m3+4vgRoaolFqaII82/TA==", + "dev": true + }, + "@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", + "dev": true + }, + "@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "dev": true, + "requires": { + "defer-to-connect": "^1.0.1" + } + }, + "@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 + }, + "@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true + }, + "@types/json-stable-stringify": { + "version": "1.0.36", + "resolved": "https://registry.npmjs.org/@types/json-stable-stringify/-/json-stable-stringify-1.0.36.tgz", + "integrity": "sha512-b7bq23s4fgBB76n34m2b3RBf6M369B0Z9uRR8aHTMd8kZISRkmDEpPD8hhpYvDFzr3bJCPES96cm3Q6qRNDbQw==", + "dev": true + }, + "@types/node": { + "version": "18.0.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.6.tgz", + "integrity": "sha512-/xUq6H2aQm261exT6iZTMifUySEt4GR5KX8eYyY+C4MSNPqSh9oNIP7tz2GLKTlFaiBbgZNxffoR3CVRG+cljw==", + "dev": true + }, + "@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "@types/react": { + "version": "18.0.15", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.15.tgz", + "integrity": "sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==", + "dev": true, + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "@types/scheduler": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + }, + "@types/ws": { + "version": "8.5.10", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", + "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@typescript-eslint/eslint-plugin": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.7.tgz", + "integrity": "sha512-l4L6Do+tfeM2OK0GJsU7TUcM/1oN/N25xHm3Jb4z3OiDU4Lj8dIuxX9LpVMS9riSXQs42D1ieX7b85/r16H9Fw==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "5.30.7", + "@typescript-eslint/type-utils": "5.30.7", + "@typescript-eslint/utils": "5.30.7", + "debug": "^4.3.4", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.2.0", + "regexpp": "^3.2.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/parser": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.30.7.tgz", + "integrity": "sha512-Rg5xwznHWWSy7v2o0cdho6n+xLhK2gntImp0rJroVVFkcYFYQ8C8UJTSuTw/3CnExBmPjycjmUJkxVmjXsld6A==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "5.30.7", + "@typescript-eslint/types": "5.30.7", + "@typescript-eslint/typescript-estree": "5.30.7", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.30.7.tgz", + "integrity": "sha512-7BM1bwvdF1UUvt+b9smhqdc/eniOnCKxQT/kj3oXtj3LqnTWCAM0qHRHfyzCzhEfWX0zrW7KqXXeE4DlchZBKw==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.30.7", + "@typescript-eslint/visitor-keys": "5.30.7" + } + }, + "@typescript-eslint/type-utils": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.30.7.tgz", + "integrity": "sha512-nD5qAE2aJX/YLyKMvOU5jvJyku4QN5XBVsoTynFrjQZaDgDV6i7QHFiYCx10wvn7hFvfuqIRNBtsgaLe0DbWhw==", + "dev": true, + "requires": { + "@typescript-eslint/utils": "5.30.7", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/types": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.30.7.tgz", + "integrity": "sha512-ocVkETUs82+U+HowkovV6uxf1AnVRKCmDRNUBUUo46/5SQv1owC/EBFkiu4MOHeZqhKz2ktZ3kvJJ1uFqQ8QPg==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.7.tgz", + "integrity": "sha512-tNslqXI1ZdmXXrHER83TJ8OTYl4epUzJC0aj2i4DMDT4iU+UqLT3EJeGQvJ17BMbm31x5scSwo3hPM0nqQ1AEA==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.30.7", + "@typescript-eslint/visitor-keys": "5.30.7", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/utils": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.7.tgz", + "integrity": "sha512-Z3pHdbFw+ftZiGUnm1GZhkJgVqsDL5CYW2yj+TB2mfXDFOMqtbzQi2dNJIyPqPbx9mv2kUxS1gU+r2gKlKi1rQ==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.30.7", + "@typescript-eslint/types": "5.30.7", + "@typescript-eslint/typescript-estree": "5.30.7", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.30.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.7.tgz", + "integrity": "sha512-KrRXf8nnjvcpxDFOKej4xkD7657+PClJs5cJVSG7NNoCNnjEdc46juNAQt7AyuWctuCgs6mVRc1xGctEqrjxWw==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.30.7", + "eslint-visitor-keys": "^3.3.0" + } + }, + "@whatwg-node/events": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.0.3.tgz", + "integrity": "sha512-IqnKIDWfXBJkvy/k6tzskWTc2NK3LcqHlb+KHGCrjOCH4jfQckRX0NAiIcC/vIqQkzLYw2r2CTSwAxcrtcD6lA==", + "dev": true + }, + "@whatwg-node/fetch": { + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.8.8.tgz", + "integrity": "sha512-CdcjGC2vdKhc13KKxgsc6/616BQ7ooDIgPeTuAiE8qfCnS0mGzcfCOoZXypQSz73nxI+GWc7ZReIAVhxoE1KCg==", + "dev": true, + "requires": { + "@peculiar/webcrypto": "^1.4.0", + "@whatwg-node/node-fetch": "^0.3.6", + "busboy": "^1.6.0", + "urlpattern-polyfill": "^8.0.0", + "web-streams-polyfill": "^3.2.1" + } + }, + "@whatwg-node/node-fetch": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.3.6.tgz", + "integrity": "sha512-w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA==", + "dev": true, + "requires": { + "@whatwg-node/events": "^0.0.3", + "busboy": "^1.6.0", + "fast-querystring": "^1.1.1", + "fast-url-parser": "^1.1.3", + "tslib": "^2.3.1" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "requires": {} + }, + "agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dev": true, + "requires": { + "debug": "^4.3.4" + } + }, + "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, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-align": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz", + "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=", + "dev": true, + "requires": { + "string-width": "^2.0.0" + } + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, + "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, + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": { + "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 + } + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "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 + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "dev": true + }, + "asn1js": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/asn1js/-/asn1js-3.0.5.tgz", + "integrity": "sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==", + "dev": true, + "requires": { + "pvtsutils": "^1.3.2", + "pvutils": "^1.1.3", + "tslib": "^2.4.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "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 + }, + "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 + }, + "babel-plugin-syntax-trailing-function-commas": { + "version": "7.0.0-beta.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz", + "integrity": "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==", + "dev": true + }, + "babel-preset-fbjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz", + "integrity": "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==", + "dev": true, + "requires": { + "@babel/plugin-proposal-class-properties": "^7.0.0", + "@babel/plugin-proposal-object-rest-spread": "^7.0.0", + "@babel/plugin-syntax-class-properties": "^7.0.0", + "@babel/plugin-syntax-flow": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.0.0", + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "@babel/plugin-transform-arrow-functions": "^7.0.0", + "@babel/plugin-transform-block-scoped-functions": "^7.0.0", + "@babel/plugin-transform-block-scoping": "^7.0.0", + "@babel/plugin-transform-classes": "^7.0.0", + "@babel/plugin-transform-computed-properties": "^7.0.0", + "@babel/plugin-transform-destructuring": "^7.0.0", + "@babel/plugin-transform-flow-strip-types": "^7.0.0", + "@babel/plugin-transform-for-of": "^7.0.0", + "@babel/plugin-transform-function-name": "^7.0.0", + "@babel/plugin-transform-literals": "^7.0.0", + "@babel/plugin-transform-member-expression-literals": "^7.0.0", + "@babel/plugin-transform-modules-commonjs": "^7.0.0", + "@babel/plugin-transform-object-super": "^7.0.0", + "@babel/plugin-transform-parameters": "^7.0.0", + "@babel/plugin-transform-property-literals": "^7.0.0", + "@babel/plugin-transform-react-display-name": "^7.0.0", + "@babel/plugin-transform-react-jsx": "^7.0.0", + "@babel/plugin-transform-shorthand-properties": "^7.0.0", + "@babel/plugin-transform-spread": "^7.0.0", + "@babel/plugin-transform-template-literals": "^7.0.0", + "babel-plugin-syntax-trailing-function-commas": "^7.0.0-beta.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "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 + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "boolean": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.1.4.tgz", + "integrity": "sha512-3hx0kwU3uzG6ReQ3pnaFQPSktpBw6RHN3/ivDKEuU8g1XSfafowyvDnadjv1xp8IZqhtSukxlwv9bF6FhX8m0w==", + "dev": true, + "optional": true + }, + "boxen": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz", + "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==", + "dev": true, + "requires": { + "ansi-align": "^2.0.0", + "camelcase": "^4.0.0", + "chalk": "^2.0.1", + "cli-boxes": "^1.0.0", + "string-width": "^2.0.0", + "term-size": "^1.2.0", + "widest-line": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "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 + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserslist": { + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + } + }, + "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, + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", + "dev": true + }, + "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==", + "dev": true + }, + "busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dev": true, + "requires": { + "streamsearch": "^1.1.0" + } + }, + "cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "dev": true, + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true + } + } + }, + "call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dev": true, + "requires": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "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, + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001568", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001568.tgz", + "integrity": "sha512-vSUkH84HontZJ88MiNrOau1EBrCqEQYgkC5gIySiDlpsm8sGVrhU7Kx4V6h0tnqaHzIHZv08HlJIwPbL4XL9+A==", + "dev": true + }, + "capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "capture-stack-trace": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz", + "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "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, + "requires": { + "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" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "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, + "requires": { + "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" + } + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "ci-info": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", + "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", + "dev": true + }, + "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 + }, + "cli-boxes": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz", + "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=", + "dev": true + }, + "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, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "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 + }, + "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, + "requires": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "dependencies": { + "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==", + "dev": true + }, + "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, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + }, + "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==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + } + } + }, + "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 + }, + "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, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "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==", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "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, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "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==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "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==", + "dev": true + }, + "colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "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 + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "concurrently": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-8.2.2.tgz", + "integrity": "sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==", + "dev": true, + "requires": { + "chalk": "^4.1.2", + "date-fns": "^2.30.0", + "lodash": "^4.17.21", + "rxjs": "^7.8.1", + "shell-quote": "^1.8.1", + "spawn-command": "0.0.2", + "supports-color": "^8.1.1", + "tree-kill": "^1.2.2", + "yargs": "^17.7.2" + }, + "dependencies": { + "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, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dev": true, + "optional": true, + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "configstore": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.5.tgz", + "integrity": "sha512-nlOhI4+fdzoK5xmJ+NY+1gZK56bwEaWZr8fYuXohZ9Vkc1o3a4T/R3M+yE/w7x/ZVJ1zF8c+oaOvF0dztdUgmA==", + "dev": true, + "requires": { + "dot-prop": "^4.2.1", + "graceful-fs": "^4.1.2", + "make-dir": "^1.0.0", + "unique-string": "^1.0.0", + "write-file-atomic": "^2.0.0", + "xdg-basedir": "^3.0.0" + } + }, + "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, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "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 + }, + "core-js": { + "version": "3.18.3", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.18.3.tgz", + "integrity": "sha512-tReEhtMReZaPFVw7dajMx0vlsz3oOb8ajgPoHVYGxr8ErnZ6PcYEvvmjGmXlfpnxpkYSdOQttjB+MvVbCGfvLw==", + "dev": true, + "optional": true + }, + "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==", + "dev": true + }, + "create-error-class": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", + "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", + "dev": true, + "requires": { + "capture-stack-trace": "^1.0.0" + } + }, + "cross-fetch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", + "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "requires": { + "node-fetch": "2.6.7" + } + }, + "cross-inspect": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/cross-inspect/-/cross-inspect-1.0.0.tgz", + "integrity": "sha512-4PFfn4b5ZN6FMNGSZlyb7wUhuN8wvj8t/VQHZdM4JsDcruGJ8L2kf9zao98QIrBPFCpdk27qst/AGTl7pL3ypQ==", + "dev": true, + "requires": { + "tslib": "^2.4.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-random-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", + "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=", + "dev": true + }, + "csstype": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.0.tgz", + "integrity": "sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==" + }, + "dataloader": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/dataloader/-/dataloader-2.2.2.tgz", + "integrity": "sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==", + "dev": true + }, + "date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.21.0" + } + }, + "debounce": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", + "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==", + "dev": true + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "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, + "requires": { + "clone": "^1.0.2" + } + }, + "defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", + "dev": true + }, + "define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dev": true, + "requires": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "optional": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "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 + }, + "dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" + }, + "detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "dev": true + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true, + "optional": true + }, + "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, + "requires": { + "path-type": "^4.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "dot-prop": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.1.tgz", + "integrity": "sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ==", + "dev": true, + "requires": { + "is-obj": "^1.0.0" + } + }, + "dotenv": { + "version": "16.3.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", + "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "dev": true + }, + "dset": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/dset/-/dset-3.1.3.tgz", + "integrity": "sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==", + "dev": true + }, + "duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", + "dev": true + }, + "electron": { + "version": "11.5.0", + "resolved": "https://registry.npmjs.org/electron/-/electron-11.5.0.tgz", + "integrity": "sha512-WjNDd6lGpxyiNjE3LhnFCAk/D9GIj1rU3GSDealVShhkkkPR3Vh4q8ErXGDl1OAO/faomVa10KoFPUN/pLbNxg==", + "dev": true, + "requires": { + "@electron/get": "^1.0.1", + "@types/node": "^12.0.12", + "extract-zip": "^1.0.3" + }, + "dependencies": { + "@types/node": { + "version": "12.20.55", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", + "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==", + "dev": true + } + } + }, + "electron-to-chromium": { + "version": "1.4.609", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.609.tgz", + "integrity": "sha512-ihiCP7PJmjoGNuLpl7TjNA8pCQWu09vGyjlPYw1Rqww4gvNuCcmvl+44G+2QyJ6S2K4o+wbTS++Xz0YN8Q9ERw==", + "dev": true + }, + "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==", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true, + "optional": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true + }, + "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, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es6-error": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", + "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", + "dev": true, + "optional": true + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "eslint": { + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "dev": true, + "requires": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + } + } + }, + "eslint-config-prettier": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", + "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", + "dev": true, + "requires": {} + }, + "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==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^2.0.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true + } + } + }, + "eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "dev": true, + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + } + } + }, + "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, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + } + }, + "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 + }, + "extract-zip": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", + "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", + "dev": true, + "requires": { + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "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 + }, + "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==", + "dev": true + }, + "fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "dev": true, + "requires": { + "@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" + } + }, + "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==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "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, + "requires": { + "fast-decode-uri-component": "^1.0.1" + } + }, + "fast-url-parser": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz", + "integrity": "sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==", + "dev": true, + "requires": { + "punycode": "^1.3.2" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "dev": true + } + } + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "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, + "requires": { + "bser": "2.1.1" + } + }, + "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, + "requires": { + "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" + } + }, + "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 + }, + "fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", + "dev": true, + "requires": { + "pend": "~1.2.0" + } + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + }, + "dependencies": { + "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 + } + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz", + "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==", + "dev": true + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "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 + }, + "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 + }, + "get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dev": true, + "requires": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-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, + "requires": { + "is-glob": "^4.0.1" + } + }, + "global-agent": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-2.2.0.tgz", + "integrity": "sha512-+20KpaW6DDLqhG7JDiJpD1JvNvb8ts+TNl7BPOYcURqCrXqnN1Vf+XVOrkKJAFPqfX+oEhsdzOj1hLWkBTdNJg==", + "dev": true, + "optional": true, + "requires": { + "boolean": "^3.0.1", + "core-js": "^3.6.5", + "es6-error": "^4.1.1", + "matcher": "^3.0.0", + "roarr": "^2.15.3", + "semver": "^7.3.2", + "serialize-error": "^7.0.1" + } + }, + "global-dirs": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", + "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", + "dev": true, + "requires": { + "ini": "^1.3.4" + } + }, + "global-tunnel-ng": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/global-tunnel-ng/-/global-tunnel-ng-2.7.1.tgz", + "integrity": "sha512-4s+DyciWBV0eK148wqXxcmVAbFVPqtc3sEtUE/GTQfuU80rySLcMhUmHKSHI7/LDj8q0gDYI1lIhRRB7ieRAqg==", + "dev": true, + "optional": true, + "requires": { + "encodeurl": "^1.0.2", + "lodash": "^4.17.10", + "npm-conf": "^1.1.3", + "tunnel": "^0.0.6" + } + }, + "globals": { + "version": "13.11.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz", + "integrity": "sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "globalthis": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.2.tgz", + "integrity": "sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ==", + "dev": true, + "optional": true, + "requires": { + "define-properties": "^1.1.3" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "requires": { + "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" + } + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "got": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "dev": true, + "requires": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + } + }, + "graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "dev": true + }, + "graphql": { + "version": "16.8.1", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.8.1.tgz", + "integrity": "sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==", + "dev": true, + "peer": true + }, + "graphql-config": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-5.0.3.tgz", + "integrity": "sha512-BNGZaoxIBkv9yy6Y7omvsaBUHOzfFcII3UN++tpH8MGOKFPFkCPZuwx09ggANMt8FgyWP1Od8SWPmrUEZca4NQ==", + "dev": true, + "requires": { + "@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": "^1.18.2", + "minimatch": "^4.2.3", + "string-env-interpolation": "^1.0.1", + "tslib": "^2.4.0" + }, + "dependencies": { + "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 + }, + "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, + "requires": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + } + }, + "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, + "requires": { + "argparse": "^2.0.1" + } + }, + "minimatch": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.3.tgz", + "integrity": "sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "dev": true, + "optional": true, + "peer": true + } + } + }, + "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, + "requires": { + "@graphql-typed-document-node/core": "^3.2.0", + "cross-fetch": "^3.1.5" + } + }, + "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==", + "dev": true, + "requires": { + "tslib": "^2.1.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "graphql-ws": { + "version": "5.14.2", + "resolved": "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.14.2.tgz", + "integrity": "sha512-LycmCwhZ+Op2GlHz4BZDsUYHKRiiUz+3r9wbhBATMETNlORQJAaFlAgTFoeRh6xQoQegwYwIylVD1Qns9/DA3w==", + "dev": true, + "requires": {} + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dev": true, + "requires": { + "get-intrinsic": "^1.2.2" + } + }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true + }, + "hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "requires": { + "function-bind": "^1.1.2" + } + }, + "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, + "requires": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", + "dev": true + }, + "http-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "dev": true, + "requires": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + } + }, + "https-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "dev": true, + "requires": { + "agent-base": "^7.0.2", + "debug": "4" + } + }, + "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, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true + }, + "immutable": { + "version": "3.7.6", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.7.6.tgz", + "integrity": "sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "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 + }, + "import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", + "dev": true + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "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 + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "inquirer": { + "version": "8.2.6", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.6.tgz", + "integrity": "sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==", + "dev": true, + "requires": { + "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" + }, + "dependencies": { + "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==", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + } + } + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dev": true, + "requires": { + "loose-envify": "^1.0.0" + } + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "dev": true + }, + "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, + "requires": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + } + }, + "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 + }, + "is-ci": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", + "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", + "dev": true, + "requires": { + "ci-info": "^1.5.0" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true + }, + "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, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-installed-globally": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz", + "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=", + "dev": true, + "requires": { + "global-dirs": "^0.1.0", + "is-path-inside": "^1.0.0" + } + }, + "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 + }, + "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, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "is-npm": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", + "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=", + "dev": true + }, + "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 + }, + "is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "dev": true + }, + "is-path-inside": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", + "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", + "dev": true, + "requires": { + "path-is-inside": "^1.0.1" + } + }, + "is-redirect": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", + "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=", + "dev": true + }, + "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, + "requires": { + "is-unc-path": "^1.0.0" + } + }, + "is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "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, + "requires": { + "unc-path-regex": "^0.1.2" + } + }, + "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 + }, + "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, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "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 + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "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, + "requires": {} + }, + "jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "dev": true + }, + "jose": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/jose/-/jose-5.1.3.tgz", + "integrity": "sha512-GPExOkcMsCLBTi1YetY2LmkoY559fss0+0KVa6kOfb2YFe84nAM7Nm/XzuZozah4iHgmBGrCOHL5/cy670SBRw==", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", + "dev": true + }, + "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==", + "dev": true + }, + "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==", + "dev": true + }, + "json-stable-stringify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.0.tgz", + "integrity": "sha512-zfA+5SuwYN2VWqN1/5HZaDzQKLJHaBVMZIIM+wuYjdptkaQsqzDdqjqf+lZZJUuJq1aanHiY8LhH8LmH+qBYJA==", + "dev": true, + "requires": { + "call-bind": "^1.0.5", + "isarray": "^2.0.5", + "jsonify": "^0.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": { + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + } + } + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true, + "optional": true + }, + "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, + "requires": { + "remedial": "^1.0.7", + "remove-trailing-spaces": "^1.0.6" + } + }, + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "jsonify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", + "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", + "dev": true + }, + "keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "dev": true, + "requires": { + "json-buffer": "3.0.0" + } + }, + "latest-version": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz", + "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=", + "dev": true, + "requires": { + "package-json": "^4.0.0" + } + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "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 + }, + "listr2": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-4.0.5.tgz", + "integrity": "sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==", + "dev": true, + "requires": { + "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" + }, + "dependencies": { + "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==", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "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, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", + "dev": true + }, + "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, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + } + }, + "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, + "requires": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "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==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "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, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "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, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "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 + }, + "matcher": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", + "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", + "dev": true, + "optional": true, + "requires": { + "escape-string-regexp": "^4.0.0" + } + }, + "media-typer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", + "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "meros": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/meros/-/meros-1.3.0.tgz", + "integrity": "sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==", + "dev": true, + "requires": {} + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "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 + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "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 + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "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, + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "requires": { + "whatwg-url": "^5.0.0" + } + }, + "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 + }, + "node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true + }, + "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, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + }, + "normalize-url": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", + "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==", + "dev": true + }, + "npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "dev": true, + "optional": true, + "requires": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": { + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true + } + } + }, + "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 + }, + "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==", + "dev": true + }, + "object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "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, + "requires": { + "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" + } + }, + "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 + }, + "p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", + "dev": true + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true + }, + "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, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "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==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + }, + "dependencies": { + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + } + } + }, + "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, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "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==", + "dev": true + }, + "package-json": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz", + "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=", + "dev": true, + "requires": { + "got": "^6.7.1", + "registry-auth-token": "^3.0.1", + "registry-url": "^3.0.3", + "semver": "^5.1.0" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true + }, + "got": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", + "integrity": "sha512-Y/K3EDuiQN9rTZhBvPRWMLXIKdeD1Rj0nzunfoi0Yyn5WBEbzxXKU9Ub2X41oZBagVWOBU3MuDonFMgPWQFnwg==", + "dev": true, + "requires": { + "create-error-class": "^3.0.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-redirect": "^1.0.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "lowercase-keys": "^1.0.0", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "unzip-response": "^2.0.1", + "url-parse-lax": "^1.0.0" + } + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "url-parse-lax": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", + "integrity": "sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==", + "dev": true, + "requires": { + "prepend-http": "^1.0.1" + } + } + } + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "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, + "requires": { + "callsites": "^3.0.0" + } + }, + "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, + "requires": { + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" + } + }, + "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, + "requires": { + "@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" + } + }, + "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, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "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, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "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==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "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, + "requires": { + "path-root-regex": "^0.1.0" + } + }, + "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 + }, + "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 + }, + "pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "dev": true + }, + "prettier": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.1.tgz", + "integrity": "sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==", + "dev": true + }, + "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==", + "dev": true + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true + }, + "promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "dev": true, + "requires": { + "asap": "~2.0.3" + } + }, + "proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=", + "dev": true, + "optional": true + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "pvtsutils": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.5.tgz", + "integrity": "sha512-ARvb14YB9Nm2Xi6nBq1ZX6dAM0FsJnuk+31aUp4TrcZEdKUlSqOqsxJHUPJDNE3qiIp+iUPEIeR6Je/tgV7zsA==", + "dev": true, + "requires": { + "tslib": "^2.6.1" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "pvutils": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/pvutils/-/pvutils-1.1.3.tgz", + "integrity": "sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==", + "dev": true + }, + "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 + }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true + } + } + }, + "react": { + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.1.0.tgz", + "integrity": "sha512-4oL8ivCz5ZEPyclFQXaNksK3adutVS8l2xzZU0cqEFrE9Sb7fC0EFK5uEk74wIreL1DERyjvsU915j1pcT2uEQ==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "react-devtools": { + "version": "4.25.0", + "resolved": "https://registry.npmjs.org/react-devtools/-/react-devtools-4.25.0.tgz", + "integrity": "sha512-b6BEjWP0BOF1umqKDAVeSi4sm+crIQJ9WlwPTAxT4T73mKYMqFOr4nf5JwnQK0Vt2U/+kKlLSQqrTKPa2feq+Q==", + "dev": true, + "requires": { + "cross-spawn": "^5.0.1", + "electron": "^11.1.0", + "ip": "^1.1.4", + "minimist": "^1.2.3", + "react-devtools-core": "4.25.0", + "update-notifier": "^2.1.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + } + } + }, + "react-devtools-core": { + "version": "4.25.0", + "resolved": "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.25.0.tgz", + "integrity": "sha512-iewRrnu0ZnmfL+jJayKphXj04CFh6i3ezVnpCtcnZbTPSQgN09XqHAzXbKbqNDl7aTg9QLNkQRP6M3DvdrinWA==", + "dev": true, + "requires": { + "shell-quote": "^1.6.1", + "ws": "^7" + } + }, + "react-reconciler": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/react-reconciler/-/react-reconciler-0.28.0.tgz", + "integrity": "sha512-sGIHDOpgVjRYgsi8NgosDnbkDvvkYFFSF900ZUhUw0+lSBEA5n76TcKFaVkfYMIuYm+7W6mT8Q673DLBfuTxcQ==", + "requires": { + "loose-envify": "^1.1.0", + "scheduler": "^0.22.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "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" + } + }, + "regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "dev": true + }, + "regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true + }, + "registry-auth-token": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz", + "integrity": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==", + "dev": true, + "requires": { + "rc": "^1.1.6", + "safe-buffer": "^5.0.1" + } + }, + "registry-url": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", + "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=", + "dev": true, + "requires": { + "rc": "^1.0.1" + } + }, + "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, + "requires": { + "@babel/runtime": "^7.0.0", + "fbjs": "^3.0.0", + "invariant": "^2.2.4" + } + }, + "remedial": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/remedial/-/remedial-1.0.8.tgz", + "integrity": "sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==", + "dev": true + }, + "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 + }, + "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 + }, + "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 + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "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 + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "dev": true, + "requires": { + "lowercase-keys": "^1.0.0" + } + }, + "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, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rfdc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "roarr": { + "version": "2.15.4", + "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz", + "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==", + "dev": true, + "optional": true, + "requires": { + "boolean": "^3.0.1", + "detect-node": "^2.0.4", + "globalthis": "^1.0.1", + "json-stringify-safe": "^5.0.1", + "semver-compare": "^1.0.0", + "sprintf-js": "^1.1.2" + }, + "dependencies": { + "sprintf-js": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", + "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==", + "dev": true, + "optional": true + } + } + }, + "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 + }, + "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, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "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, + "requires": { + "tslib": "^2.1.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "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==", + "dev": true + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "scheduler": { + "version": "0.22.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.22.0.tgz", + "integrity": "sha512-6QAm1BgQI88NPYymgGQLCZgvep4FyePDWFpXVK+zNSUgHwlqpJy8VEh8Et0KxTACS4VWwMousBElAZOH9nkkoQ==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "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 + }, + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", + "dev": true, + "optional": true + }, + "semver-diff": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", + "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", + "dev": true, + "requires": { + "semver": "^5.0.3" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "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, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "serialize-error": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", + "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", + "dev": true, + "optional": true, + "requires": { + "type-fest": "^0.13.1" + }, + "dependencies": { + "type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "dev": true, + "optional": true + } + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "dev": true, + "requires": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + } + }, + "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 + }, + "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==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "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 + }, + "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==" + }, + "signedsource": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/signedsource/-/signedsource-1.0.0.tgz", + "integrity": "sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "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, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "dependencies": { + "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==", + "dev": true + } + } + }, + "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, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "spawn-command": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2.tgz", + "integrity": "sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==", + "dev": true + }, + "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, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "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 + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "sumchecker": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", + "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==", + "dev": true, + "requires": { + "debug": "^4.1.0" + } + }, + "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==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "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, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "table": { + "version": "6.7.2", + "resolved": "https://registry.npmjs.org/table/-/table-6.7.2.tgz", + "integrity": "sha512-UFZK67uvyNivLeQbVtkiUs8Uuuxv24aSL4/Vil2PJVtMgU8Lx0CYkP12uCGa3kjyQzOSgV1+z9Wkb82fCGsO0g==", + "dev": true, + "requires": { + "ajv": "^8.0.1", + "lodash.clonedeep": "^4.5.0", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "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==", + "dev": true + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + } + } + }, + "term-size": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz", + "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=", + "dev": true, + "requires": { + "execa": "^0.7.0" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", + "dev": true + }, + "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, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true + }, + "to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", + "dev": true + }, + "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, + "requires": { + "is-number": "^7.0.0" + } + }, + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "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 + }, + "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 + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + }, + "tunnel": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", + "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==", + "dev": true, + "optional": true + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, + "typescript": { + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", + "dev": true + }, + "ua-parser-js": { + "version": "1.0.37", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.37.tgz", + "integrity": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==", + "dev": true + }, + "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 + }, + "unique-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", + "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", + "dev": true, + "requires": { + "crypto-random-string": "^1.0.0" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + }, + "unixify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz", + "integrity": "sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==", + "dev": true, + "requires": { + "normalize-path": "^2.1.1" + } + }, + "unzip-response": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz", + "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=", + "dev": true + }, + "update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, + "update-notifier": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz", + "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==", + "dev": true, + "requires": { + "boxen": "^1.2.1", + "chalk": "^2.0.1", + "configstore": "^3.0.0", + "import-lazy": "^2.1.0", + "is-ci": "^1.0.10", + "is-installed-globally": "^0.1.0", + "is-npm": "^1.0.0", + "latest-version": "^3.0.0", + "semver-diff": "^2.0.0", + "xdg-basedir": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "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 + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "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, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", + "dev": true, + "requires": { + "prepend-http": "^2.0.0" + } + }, + "urlpattern-polyfill": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz", + "integrity": "sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "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 + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "web-streams-polyfill": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", + "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", + "dev": true + }, + "webcrypto-core": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/webcrypto-core/-/webcrypto-core-1.7.7.tgz", + "integrity": "sha512-7FjigXNsBfopEj+5DV2nhNpfic2vumtjjgPmeDKk45z+MJwXKKfhPB7118Pfzrmh4jqOMST6Ch37iPAHoImg5g==", + "dev": true, + "requires": { + "@peculiar/asn1-schema": "^2.3.6", + "@peculiar/json-schema": "^1.1.12", + "asn1js": "^3.0.1", + "pvtsutils": "^1.3.2", + "tslib": "^2.4.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "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==" + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "dev": true + }, + "widest-line": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz", + "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==", + "dev": true, + "requires": { + "string-width": "^2.1.1" + } + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "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, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "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==", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "write-file-atomic": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "dev": true, + "requires": {} + }, + "xdg-basedir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", + "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=", + "dev": true + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "dev": true + }, + "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 + }, + "yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "requires": { + "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" + }, + "dependencies": { + "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==", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + } + } + }, + "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 + }, + "yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", + "dev": true, + "requires": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "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 + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 000000000000..09b5e07b82d1 --- /dev/null +++ b/package.json @@ -0,0 +1,84 @@ +{ + "$schema": "https://www.raycast.com/schemas/extension.json", + "name": "buildkite", + "title": "Buildkite", + "description": "Search Buildkite pipelines and builds", + "icon": "buildkite.png", + "author": "mskelton", + "contributors": [ + "bennnym" + ], + "categories": [ + "Developer Tools" + ], + "license": "MIT", + "commands": [ + { + "name": "search-pipelines", + "title": "Search Pipelines", + "subtitle": "Buildkite", + "description": "Search Buildkite pipelines in your organization.", + "mode": "view" + }, + { + "name": "my-builds", + "title": "My Builds", + "subtitle": "Buildkite", + "description": "View your recent Buildkite builds.", + "mode": "view" + } + ], + "preferences": [ + { + "name": "token", + "type": "password", + "required": true, + "title": "API Token", + "description": "Your Buildkite API access token. GraphQL API Access is required.", + "placeholder": "Enter your Buildkite API token." + }, + { + "name": "org", + "type": "textfield", + "required": true, + "title": "Organization Slug", + "description": "Your organization slug", + "placeholder": "Enter your Buildkite organization slug." + }, + { + "name": "favoriteBranches", + "type": "textfield", + "required": false, + "default": "main, master", + "title": "Favorite Branches", + "description": "A comma-separated list of branches to always show at the top of the build list.", + "placeholder": "Enter your favorite branches." + } + ], + "dependencies": { + "@raycast/api": "^1.38.2", + "@raycast/utils": "^1.4.8" + }, + "devDependencies": { + "@graphql-codegen/cli": "^5.0.0", + "@graphql-codegen/typescript": "^4.0.1", + "@graphql-codegen/typescript-graphql-request": "^6.0.1", + "@graphql-codegen/typescript-operations": "^4.0.1", + "@types/node": "^18.0.6", + "@types/react": "^18.0.15", + "@typescript-eslint/eslint-plugin": "^5.30.7", + "@typescript-eslint/parser": "^5.30.7", + "concurrently": "^8.2.2", + "eslint": "^7.32.0", + "eslint-config-prettier": "^8.5.0", + "prettier": "^3.1.1", + "react-devtools": "^4.25.0", + "typescript": "^4.7.4" + }, + "scripts": { + "build": "npm run generate && ray build -e dist", + "dev": "concurrently \"ray develop\" \"npm run generate -- --watch\"", + "lint": "ray lint", + "generate": "graphql-codegen --config codegen.ts" + } +} diff --git a/schema.graphql b/schema.graphql new file mode 100644 index 000000000000..2013535b8d00 --- /dev/null +++ b/schema.graphql @@ -0,0 +1,10487 @@ +""" +API access tokens for authentication with the Buildkite API +""" +type APIAccessToken implements Node { + id: ID! + + """ + The public UUID for the API Access Token + """ + uuid: ID! +} + +""" +A code that is used by an API Application to request an API Access Token +""" +type APIAccessTokenCode implements Node { + application: APIApplication + + """ + The time when this code was authorized by a user + """ + authorizedAt: DateTime + + """ + The IP address of the client that authorized this code + """ + authorizedIPAddress: String + + """ + The actual code used to find this API Access Token Code record + """ + code: String! + + """ + The description of the code provided by the API Application + """ + description: String! + + """ + The time when this code will expire + """ + expiresAt: DateTime! + id: ID! +} + +""" +Autogenerated input type of APIAccessTokenCodeAuthorizeMutation +""" +input APIAccessTokenCodeAuthorizeMutationInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of APIAccessTokenCodeAuthorizeMutation. +""" +type APIAccessTokenCodeAuthorizeMutationPayload { + apiAccessTokenCode: APIAccessTokenCode! + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String +} + +""" +All possible scopes on a user's API Access Token +""" +enum APIAccessTokenScopes { + GRAPHQL + READ_AGENTS + READ_ARTIFACTS + READ_BUILDS + READ_BUILD_LOGS + READ_CLUSTERS + READ_JOB_ENV + READ_NOTIFICATION_SERVICES + READ_ORGANIZATIONS + READ_PIPELINES + READ_PIPELINE_TEMPLATES + READ_SUITES + READ_TEAMS + READ_USER + WRITE_AGENTS + WRITE_ARTIFACTS + WRITE_BUILDS + WRITE_BUILD_LOGS + WRITE_CLUSTERS + WRITE_NOTIFICATION_SERVICES + WRITE_PIPELINES + WRITE_PIPELINE_TEMPLATES + WRITE_SUITES +} + +""" +An API Application +""" +type APIApplication implements Node { + """ + A description of the application + """ + description: String! + id: ID! + + """ + The name of this application + """ + name: String! +} + +""" +An agent +""" +type Agent implements Node { + clusterQueue: ClusterQueue + + """ + The time when the agent connected to Buildkite + """ + connectedAt: DateTime + + """ + The connection state of the agent + """ + connectionState: String! + + """ + The date the agent was created + """ + createdAt: DateTime + + """ + The time when the agent disconnected from Buildkite + """ + disconnectedAt: DateTime + + """ + The last time the agent performed a `heartbeat` operation to the Agent API + """ + heartbeatAt: DateTime + + """ + The hostname of the machine running the agent + """ + hostname: String + id: ID! + + """ + The IP address that the agent has connected from + """ + ipAddress: String + + """ + If this version of agent has been deprecated by Buildkite + """ + isDeprecated: Boolean! + + """ + Returns whether or not this agent is running a job. If isRunningJob true, but + the `job` field is empty, the current user doesn't have access to view the job + """ + isRunningJob: Boolean! + + """ + The currently running job + """ + job: Job + + """ + Jobs that have been assigned to this agent + """ + jobs( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + agentQueryRules: [String!] + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + concurrency: JobConcurrencySearch + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + Order the jobs + """ + order: JobOrder = RECENTLY_ASSIGNED + + """ + Whether or not the command job passed. Passing `false` will return all failed jobs (including "soft failed" jobs) + """ + passed: Boolean + priority: Int + state: [JobStates!] + + """ + Filtering jobs based on related step information + """ + step: JobStepSearch + type: [JobTypes!] + ): JobConnection + + """ + The date the agent was lost from Buildkite if it didn't cleanly disconnect + """ + lostAt: DateTime + + """ + The meta data this agent was stared with + """ + metaData: [String!] + + """ + The name of the agent + """ + name: String! + + """ + The operating system the agent is running on + """ + operatingSystem: OperatingSystem + organization: Organization + permissions: AgentPermissions! + + """ + The process identifier (PID) of the agent process on the machine + """ + pid: String + pingedAt: DateTime @deprecated(reason: "DEPRECATED: please use heartbeatAt") + + """ + The priority setting for the agent + """ + priority: Int + + """ + Whether this agent is visible to everyone, including people outside this organization + """ + public: Boolean! + + """ + The time this agent was forced to stop + """ + stopForcedAt: DateTime + + """ + The user that forced this agent to stop + """ + stopForcedBy: User + + """ + The time the agent was first asked to stop + """ + stoppedAt: DateTime @deprecated(reason: "Use either `stoppedGracefullyAt` or `stopForcedAt`") + + """ + The user that initially stopped this agent + """ + stoppedBy: User @deprecated(reason: "Use either `stoppedGracefullyBy` or `stopForcedBy`") + + """ + The time the agent was gracefully stopped by a user + """ + stoppedGracefullyAt: DateTime + + """ + The user that gracefully stopped this agent + """ + stoppedGracefullyBy: User + + """ + The User-Agent of the program that is making Agent API requests to Buildkite + """ + userAgent: String + + """ + The public UUID for the agent + """ + uuid: String! + + """ + The version of the agent + """ + version: String + + """ + Whether this agent's version has known issues and should be upgraded + """ + versionHasKnownIssues: Boolean! +} + +type AgentConnection implements Connection { + count: Int! + edges: [AgentEdge] + pageInfo: PageInfo +} + +type AgentEdge { + cursor: String! + node: Agent +} + +""" +Permissions information about what actions the current user can do against this agent +""" +type AgentPermissions { + """ + Whether the user can stop the agent remotely + """ + agentStop: Permission +} + +""" +Autogenerated input type of AgentStop +""" +input AgentStopInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + If this agent should finish the current job before stopping + """ + graceful: Boolean = true + id: ID! +} + +""" +Autogenerated return type of AgentStop. +""" +type AgentStopPayload { + agent: Agent! + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String +} + +""" +A token used to connect an agent to Buildkite +""" +type AgentToken implements Node { + """ + The time this agent token was created + """ + createdAt: DateTime + + """ + The user that created this agent token + """ + createdBy: User + + """ + A description about what this agent token is used for + """ + description: String + id: ID! + organization: Organization + permissions: AgentTokenPermissions! + + """ + Whether agents registered with this token will be visible to everyone, including people outside this organization + """ + public: Boolean! + + """ + The time this agent token was revoked + """ + revokedAt: DateTime + + """ + The user that revoked this agent token + """ + revokedBy: User + + """ + The reason as defined by the user why this token was revoked + """ + revokedReason: String + + """ + The token value used to register a new agent + """ + token: String! @deprecated(reason: "Hiding these after creation to improve security. Use the `token_value` field on AgentTokenCreate instead.") + + """ + The public UUID for the agent + """ + uuid: ID! +} + +type AgentTokenConnection implements Connection { + count: Int! + edges: [AgentTokenEdge] + pageInfo: PageInfo +} + +""" +Autogenerated input type of AgentTokenCreate +""" +input AgentTokenCreateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + description: String + organizationID: ID! + public: Boolean = false +} + +""" +Autogenerated return type of AgentTokenCreate. +""" +type AgentTokenCreatePayload { + agentTokenEdge: AgentTokenEdge! + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + organization: Organization! + + """ + The token value used to register a new agent. Please ensure to securely copy + this value immediately upon generation as it will not be displayed again. + """ + tokenValue: String! +} + +type AgentTokenEdge { + cursor: String! + node: AgentToken +} + +""" +Permissions information about what actions the current user can do against the agent token +""" +type AgentTokenPermissions { + """ + Whether the user can revoke this agent token + """ + agentTokenRevoke: Permission +} + +""" +Autogenerated input type of AgentTokenRevoke +""" +input AgentTokenRevokeInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! + + """ + The reason why this agent token should be revoked + """ + reason: String! +} + +""" +Autogenerated return type of AgentTokenRevoke. +""" +type AgentTokenRevokePayload { + agentToken: AgentToken! + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String +} + +""" +An annotation allows you to add arbitrary content to the top of a build page in the Buildkite UI +""" +type Annotation implements Node { + """ + The body of the annotation + """ + body: AnnotationBody + + """ + The context of the annotation that helps you differentiate this one from others + """ + context: String! + + """ + The date the annotation was created + """ + createdAt: DateTime! + id: ID! + + """ + The visual style of the annotation + """ + style: AnnotationStyle + + """ + The last time the annotation was changed + """ + updatedAt: DateTime + + """ + The public UUID for this annotation + """ + uuid: ID! +} + +""" +A body of an annotation +""" +type AnnotationBody { + """ + The body of the annotation rendered as HTML. The renderer result could be an + empty string if the textual version has unsupported HTML tags + """ + html: String + + """ + The body of the annotation as text + """ + text: String! +} + +type AnnotationConnection implements Connection { + count: Int! + edges: [AnnotationEdge] + pageInfo: PageInfo +} + +type AnnotationEdge { + cursor: String! + node: Annotation +} + +""" +The visual style of the annotation +""" +enum AnnotationStyle { + """ + The default styling of an annotation + """ + DEFAULT + + """ + The annotation has a red border with a cross next to it + """ + ERROR + + """ + The annotation has a blue border with an information icon next to it + """ + INFO + + """ + The annotation has a green border with a tick next to it + """ + SUCCESS + + """ + The annotation has an orange border with a warning icon next to it + """ + WARNING +} + +""" +A file uploaded from the agent whilst running a job +""" +type Artifact implements Node { + """ + The download URL for the artifact. Unless you've used your own artifact + storage, the URL will be valid for only 10 minutes. + """ + downloadURL: String! + + """ + The time when the artifact will, or did, expire + """ + expiresAt: DateTime + id: ID! + + """ + The job that uploaded this artifact + """ + job: JobTypeCommand + + """ + The mime type of the file provided by the agent + """ + mimeType: String! + + """ + The path of the uploaded artifact + """ + path: String! + + """ + A SHA1SUM of the file + """ + sha1sum: String! + + """ + The size of the file in bytes that was uploaded + """ + size: Int! + + """ + The upload state of the artifact + """ + state: String! + + """ + The public UUID for this artifact + """ + uuid: ID! +} + +type ArtifactConnection implements Connection { + count: Int! + edges: [ArtifactEdge] + pageInfo: PageInfo +} + +type ArtifactEdge { + cursor: String! + node: Artifact +} + +""" +Context for an audit event created during an REST/GraphQL API request +""" +type AuditAPIContext { + """ + The remote IP which made the request + """ + requestIpAddress: String + + """ + The client supplied user agent which made the request + """ + requestUserAgent: String +} + +""" +The actor who caused an AuditEvent +""" +type AuditActor { + """ + The GraphQL ID for this actor + """ + id: ID! + + """ + The name or short description of this actor + """ + name: String + + """ + The node corresponding to this actor, if available + """ + node: AuditActorNode + + """ + The type of this actor + """ + type: AuditActorType + + """ + The public UUID of this actor + """ + uuid: ID! +} + +""" +Kinds of actors which can perform audit events +""" +union AuditActorNode = User + +""" +All the possible types of actors in an Audit Event +""" +enum AuditActorType { + USER +} + +""" +Kinds of contexts in which an audit event can be performed +""" +union AuditContext = AuditAPIContext | AuditWebContext + +""" +Audit record of an event which occurred in the system +""" +type AuditEvent implements Node { + """ + The actor who caused this event + """ + actor: AuditActor + + """ + The context in which this event occurred + """ + context: AuditContext + + """ + The changed data in the event + """ + data: JSON + id: ID! + + """ + The time at which this event occurred + """ + occurredAt: DateTime! + + """ + The subject of this event + """ + subject: AuditSubject + + """ + The type of event + """ + type: AuditEventType! + + """ + The public UUID for the event + """ + uuid: ID! +} + +""" +All the possible types of an Audit Event +""" +enum AuditEventType { + AGENT_TOKEN_CREATED + AGENT_TOKEN_REVOKED + AGENT_TOKEN_UPDATED + API_ACCESS_TOKEN_CREATED + API_ACCESS_TOKEN_DELETED + API_ACCESS_TOKEN_ORGANIZATION_ACCESS_REVOKED + API_ACCESS_TOKEN_UPDATED + AUTHORIZATION_CREATED + AUTHORIZATION_DELETED + CLUSTER_CREATED + CLUSTER_DELETED + CLUSTER_PERMISSION_CREATED + CLUSTER_PERMISSION_DELETED + CLUSTER_QUEUE_CREATED + CLUSTER_QUEUE_DELETED + CLUSTER_QUEUE_TOKEN_CREATED + CLUSTER_QUEUE_TOKEN_DELETED + CLUSTER_QUEUE_TOKEN_UPDATED + CLUSTER_QUEUE_UPDATED + CLUSTER_TOKEN_CREATED + CLUSTER_TOKEN_DELETED + CLUSTER_TOKEN_UPDATED + CLUSTER_UPDATED + NOTIFICATION_SERVICE_BROKEN + NOTIFICATION_SERVICE_CREATED + NOTIFICATION_SERVICE_DELETED + NOTIFICATION_SERVICE_DISABLED + NOTIFICATION_SERVICE_ENABLED + NOTIFICATION_SERVICE_UPDATED + ORGANIZATION_BANNER_CREATED + ORGANIZATION_BANNER_DELETED + ORGANIZATION_BANNER_UPDATED + ORGANIZATION_BUILD_EXPORT_UPDATED + ORGANIZATION_CREATED + ORGANIZATION_DELETED + ORGANIZATION_INVITATION_ACCEPTED + ORGANIZATION_INVITATION_CREATED + ORGANIZATION_INVITATION_RESENT + ORGANIZATION_INVITATION_REVOKED + ORGANIZATION_MEMBER_CREATED + ORGANIZATION_MEMBER_DELETED + ORGANIZATION_MEMBER_UPDATED + ORGANIZATION_TEAMS_DISABLED + ORGANIZATION_TEAMS_ENABLED + ORGANIZATION_UPDATED + PIPELINE_CREATED + PIPELINE_DELETED + PIPELINE_SCHEDULE_CREATED + PIPELINE_SCHEDULE_DELETED + PIPELINE_SCHEDULE_UPDATED + PIPELINE_TEMPLATE_CREATED + PIPELINE_TEMPLATE_DELETED + PIPELINE_TEMPLATE_UPDATED + PIPELINE_UPDATED + PIPELINE_VISIBILITY_CHANGED + PIPELINE_WEBHOOK_URL_ROTATED + SCM_PIPELINE_SETTINGS_CREATED + SCM_PIPELINE_SETTINGS_DELETED + SCM_PIPELINE_SETTINGS_UPDATED + SCM_REPOSITORY_HOST_CREATED + SCM_REPOSITORY_HOST_DESTROYED + SCM_REPOSITORY_HOST_UPDATED + SCM_SERVICE_CREATED + SCM_SERVICE_DELETED + SCM_SERVICE_UPDATED + SSO_PROVIDER_CREATED + SSO_PROVIDER_DELETED + SSO_PROVIDER_DISABLED + SSO_PROVIDER_ENABLED + SSO_PROVIDER_UPDATED + SUBSCRIPTION_PLAN_CHANGED + SUBSCRIPTION_PLAN_CHANGE_SCHEDULED + SUITE_API_TOKEN_REGENERATED + SUITE_CREATED + SUITE_DELETED + SUITE_MONITOR_CREATED + SUITE_MONITOR_DELETED + SUITE_MONITOR_UPDATED + SUITE_UPDATED + SUITE_VISIBILITY_CHANGED + TEAM_CREATED + TEAM_DELETED + TEAM_MEMBER_CREATED + TEAM_MEMBER_DELETED + TEAM_MEMBER_UPDATED + TEAM_PIPELINE_CREATED + TEAM_PIPELINE_DELETED + TEAM_PIPELINE_UPDATED + TEAM_SUITE_CREATED + TEAM_SUITE_DELETED + TEAM_SUITE_UPDATED + TEAM_UPDATED + USER_API_ACCESS_TOKEN_ORGANIZATION_ACCESS_ADDED + USER_API_ACCESS_TOKEN_ORGANIZATION_ACCESS_REMOVED + USER_EMAIL_CREATED + USER_EMAIL_DELETED + USER_EMAIL_MARKED_PRIMARY + USER_EMAIL_VERIFIED + USER_PASSWORD_RESET + USER_PASSWORD_RESET_REQUESTED + USER_TOTP_ACTIVATED + USER_TOTP_CREATED + USER_TOTP_DELETED + USER_UPDATED +} + +""" +The subject of an AuditEvent +""" +type AuditSubject { + """ + The GraphQL ID for the subject + """ + id: ID! + + """ + The name or short description of this subject + """ + name: String + + """ + The node corresponding to the subject, if available + """ + node: AuditSubjectNode + + """ + The type of this subject + """ + type: AuditSubjectType + + """ + The public UUID of this subject + """ + uuid: ID! +} + +""" +Kinds of subjects which can have audit events performed on them +""" +union AuditSubjectNode = APIAccessToken | AgentToken | AuthorizationBitbucket | AuthorizationGitHub | AuthorizationGitHubEnterprise | Cluster | ClusterPermission | ClusterQueue | ClusterQueueToken | ClusterToken | Email | NotificationServiceSlack | NotificationServiceWebhook | Organization | OrganizationBanner | OrganizationInvitation | OrganizationMember | Pipeline | PipelineSchedule | PipelineTemplate | SCMPipelineSettings | SCMRepositoryHost | SCMService | SSOProviderGitHubApp | SSOProviderGoogleGSuite | SSOProviderSAML | Subscription | Suite | TOTP | Team | TeamMember | TeamPipeline | TeamSuite | User + +""" +All the possible types of subjects in an Audit Event +""" +enum AuditSubjectType { + AGENT_TOKEN + API_ACCESS_TOKEN + AUTHORIZATION + CLUSTER + CLUSTER_PERMISSION + CLUSTER_QUEUE + CLUSTER_QUEUE_TOKEN + CLUSTER_TOKEN + NOTIFICATION_SERVICE + ORGANIZATION + ORGANIZATION_BANNER + ORGANIZATION_INVITATION + ORGANIZATION_MEMBER + PIPELINE + PIPELINE_SCHEDULE + PIPELINE_TEMPLATE + SCM_PIPELINE_SETTINGS + SCM_REPOSITORY_HOST + SCM_SERVICE + SSO_PROVIDER + SUBSCRIPTION + SUITE + SUITE_MONITOR + TEAM + TEAM_MEMBER + TEAM_PIPELINE + TEAM_SUITE + USER + USER_EMAIL + USER_TOTP +} + +""" +Context for an audit event created during a web request +""" +type AuditWebContext { + """ + The remote IP which made the request + """ + requestIpAddress: String + + """ + The client supplied user agent which made the request + """ + requestUserAgent: String + + """ + When the session started, if available + """ + sessionCreatedAt: DateTime + + """ + When the session was escalated, if available and escalated + """ + sessionEscalatedAt: DateTime + + """ + The session's authenticated user, if available + """ + sessionUser: User + + """ + The session's authenticated user's uuid + """ + sessionUserUuid: ID +} + +interface Authorization { + """ + ID of the object. + """ + id: ID! +} + +""" +A Bitbucket account authorized with a Buildkite account +""" +type AuthorizationBitbucket implements Authorization & Node { + """ + ID of the object. + """ + id: ID! +} + +type AuthorizationConnection implements Connection { + count: Int! + edges: [AuthorizationEdge] + pageInfo: PageInfo +} + +type AuthorizationEdge { + cursor: String! + node: Authorization +} + +""" +A GitHub account authorized with a Buildkite account +""" +type AuthorizationGitHub implements Authorization & Node { + """ + ID of the object. + """ + id: ID! +} + +""" +A GitHub app authorized with a Buildkite account +""" +type AuthorizationGitHubApp implements Authorization & Node { + """ + ID of the object. + """ + id: ID! +} + +""" +A GitHub Enterprise account authorized with a Buildkite account +""" +type AuthorizationGitHubEnterprise implements Authorization & Node { + """ + ID of the object. + """ + id: ID! +} + +""" +A Google account authorized with a Buildkite account +""" +type AuthorizationGoogle implements Authorization & Node { + """ + ID of the object. + """ + id: ID! +} + +""" +A SAML account authorized with a Buildkite account +""" +type AuthorizationSAML implements Authorization & Node { + """ + ID of the object. + """ + id: ID! +} + +""" +The type of the authorization +""" +enum AuthorizationType { + """ + Bitbucket Authorization + """ + BITBUCKET + + """ + GitHub Authorization + """ + GITHUB + + """ + GitHub Enterprise Authorization + """ + GITHUB_ENTERPRISE +} + +""" +An avatar belonging to a user +""" +type Avatar { + """ + The URL of the avatar + """ + url: String! +} + +""" +A build from a pipeline +""" +type Build implements Node { + annotations( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + style: [AnnotationStyle!] + ): AnnotationConnection + + """ + The current blocked state of the build + """ + blockedState: BuildBlockedStates + + """ + The branch for the build + """ + branch: String! + + """ + The time when the build was cancelled + """ + canceledAt: DateTime + + """ + The user who canceled this build. If the build was canceled, and this value is + null, then it was canceled automatically by Buildkite + """ + canceledBy: User + + """ + The fully-qualified commit for the build + """ + commit: String! + + """ + The time when the build was created + """ + createdAt: DateTime + createdBy: BuildCreator + + """ + Custom environment variables passed to this build + """ + env: [String!] + + """ + The time when the build finished + """ + finishedAt: DateTime + id: ID! + jobs( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + agentQueryRules: [String!] + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + concurrency: JobConcurrencySearch + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + Order the jobs + """ + order: JobOrder = RECENTLY_CREATED + + """ + Whether or not the command job passed. Passing `false` will return all failed jobs (including "soft failed" jobs) + """ + passed: Boolean + priority: JobPrioritySearch + state: [JobStates!] + + """ + Filtering jobs based on related step information + """ + step: JobStepSearch + type: [JobTypes!] + ): JobConnection + + """ + The message for the build + """ + message: String + metaData(first: Int, last: Int): BuildMetaDataConnection + + """ + The number of the build + """ + number: Int! + organization: Organization! + pipeline: Pipeline! + pullRequest: PullRequest + + """ + The build that this build was rebuilt from + """ + rebuiltFrom: Build + + """ + The time when the build became scheduled for running + """ + scheduledAt: DateTime + + """ + Where the build was created + """ + source: BuildSource! + + """ + The time when the build started running + """ + startedAt: DateTime + + """ + The current state of the build + """ + state: BuildStates! + + """ + The job that this build was triggered from + """ + triggeredFrom: JobTypeTrigger + + """ + The URL for the build + """ + url: String! + + """ + The UUID for the build + """ + uuid: String! +} + +""" +Autogenerated input type of BuildAnnotate +""" +input BuildAnnotateInput { + """ + Append to an existing annotation + """ + append: Boolean = false + + """ + The body of the annotation. Markdown and some limited HTML is supported + """ + body: String + + """ + The GraphQL ID of the build you want to annotate + """ + buildID: ID! + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + A string label to differentiate this annotation from other annotations. The default is `default` + """ + context: String = "default" + + """ + The style of the annotation. The default is `DEFAULT` + """ + style: AnnotationStyle = DEFAULT +} + +""" +Autogenerated return type of BuildAnnotate. +""" +type BuildAnnotatePayload { + annotation: Annotation + annotationEdge: AnnotationEdge + build: Build + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String +} + +""" +Author for a build +""" +input BuildAuthorInput { + """ + The email for the build author + """ + email: String! + + """ + The name for the build author + """ + name: String! +} + +""" +All the possible blocked states a build can be in +""" +enum BuildBlockedStates { + """ + The blocked build is failed + """ + FAILED + + """ + The blocked build is passed + """ + PASSED + + """ + The blocked build is running + """ + RUNNING +} + +""" +Autogenerated input type of BuildCancel +""" +input BuildCancelInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of BuildCancel. +""" +type BuildCancelPayload { + build: Build! + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String +} + +type BuildConnection implements Connection { + count: Int! + edges: [BuildEdge] + pageInfo: PageInfo +} + +""" +Autogenerated input type of BuildCreate +""" +input BuildCreateInput { + author: BuildAuthorInput + + """ + The branch for the build + """ + branch: String + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + The commit for the build + """ + commit: String + + """ + Environment variables used for the build + """ + env: [String!] + + """ + The message that is displayed on the build + """ + message: String + metaData: [BuildMetaDataInput!] + + """ + The GraphQL ID of the pipeline you want to create a build on + """ + pipelineID: ID! +} + +""" +Autogenerated return type of BuildCreate. +""" +type BuildCreatePayload { + build: Build + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String +} + +""" +Either a `User` or an `UnregisteredUser` type +""" +union BuildCreator = UnregisteredUser | User + +type BuildEdge { + cursor: String! + node: Build +} + +""" +A comment on a build +""" +type BuildMetaData { + """ + The key used to set this meta data + """ + key: String! + + """ + The value set to this meta data + """ + value: String! +} + +type BuildMetaDataConnection implements Connection { + count: Int! + edges: [BuildMetaDataEdge] + pageInfo: PageInfo +} + +type BuildMetaDataEdge { + cursor: String! + node: BuildMetaData +} + +""" +Meta-data key/value pairs for a build +""" +input BuildMetaDataInput { + """ + The key for this meta-data item + """ + key: String! + + """ + The value for this meta-data item + """ + value: String! +} + +""" +Autogenerated input type of BuildRebuild +""" +input BuildRebuildInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of BuildRebuild. +""" +type BuildRebuildPayload { + build: Build! + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + rebuild: Build! +} + +""" +All the possible build retention periods, depending on your billing plan +""" +enum BuildRetentionPeriods { + """ + 30 days + """ + DAYS_30 + + """ + 60 days + """ + DAYS_60 + + """ + 90 days + """ + DAYS_90 + + """ + 12 months + """ + MONTHS_12 + + """ + 18 months + """ + MONTHS_18 + + """ + 6 months + """ + MONTHS_6 + + """ + 2 years + """ + YEARS_2 +} + +interface BuildSource { + name: String! +} + +""" +A build was triggered via an API +""" +type BuildSourceAPI implements BuildSource { + name: String! +} + +""" +A build was triggered manually via the frontend +""" +type BuildSourceFrontend implements BuildSource { + name: String! +} + +""" +A build was triggered via a schedule +""" +type BuildSourceSchedule implements BuildSource { + name: String! + + """ + The associated schedule that created this build. Will be `null` if the associated schedule has been deleted. + """ + pipelineSchedule: PipelineSchedule +} + +""" +A build was triggered via a trigger job +""" +type BuildSourceTriggerJob implements BuildSource { + name: String! +} + +""" +A build was triggered via a Webhook +""" +type BuildSourceWebhook implements BuildSource { + """ + Provider specific headers sent along with the webhook. This will return null if the webhook has been purged by Buildkite. + """ + headers: [String!] + name: String! + + """ + The body of the webhook. Buildkite only stores webhook data for a short period + of time, so if this returns null - then the webhook data has been purged by Buildkite + """ + payload: JSON + + """ + The UUID for this webhook. This will return null if the webhook has been purged by Buildkite + """ + uuid: String +} + +""" +All the possible states a build can be in +""" +enum BuildStates { + """ + The build is blocked + """ + BLOCKED + + """ + The build was canceled + """ + CANCELED + + """ + The build is currently being canceled + """ + CANCELING + + """ + The build is currently being created + """ + CREATING + + """ + The build failed + """ + FAILED + + """ + The build is failing + """ + FAILING + + """ + The build wasn't run + """ + NOT_RUN + + """ + The build passed + """ + PASSED + + """ + The build is currently running jobs + """ + RUNNING + + """ + The build has yet to start running jobs + """ + SCHEDULED + + """ + The build was skipped + """ + SKIPPED +} + +""" +The results of a `buildkite-agent pipeline upload` +""" +type BuildStepUpload { + """ + The uploaded step definition + """ + definition: BuildStepUploadDefinition! + id: ID! + + """ + The UUID for this build step upload + """ + uuid: ID! +} + +""" +The pipeline definition for a step upload +""" +type BuildStepUploadDefinition { + """ + The uploaded step definition rendered as JSON + """ + json: String! + + """ + The uploaded step definition rendered as YAML + """ + yaml: String! +} + +""" +A changelog +""" +type Changelog implements Node { + author: ChangelogAuthor + + """ + The body of this changelog + """ + body: String + id: ID! + + """ + The date and time this changelog was published + """ + publishedAt: DateTime + + """ + The tag for this changelog + """ + tag: String! + + """ + The title for this changelog + """ + title: String! + + """ + The public UUID for this changelog + """ + uuid: String! +} + +""" +The author of the changelog +""" +type ChangelogAuthor { + avatar: Avatar! + + """ + The name of the author + """ + name: String! +} + +type ChangelogConnection implements Connection { + count: Int! + edges: [ChangelogEdge] + pageInfo: PageInfo +} + +type ChangelogEdge { + cursor: String! + node: Changelog +} + +type Cluster implements Node { + """ + Returns agent tokens for the Cluster + """ + agentTokens(first: Int, last: Int): ClusterAgentTokenConnection + + """ + Color hex code for the cluster + """ + color: String + + """ + User who created the cluster + """ + createdBy: User + + """ + The default queue that agents connecting to the cluster without specifying a queue will accept jobs from + """ + defaultQueue: ClusterQueue + + """ + Description of the cluster + """ + description: String + + """ + Emoji for the cluster using Buildkite emoji syntax + """ + emoji: String + id: ID! + + """ + Name of the cluster + """ + name: String! + organization: Organization + queues( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + Order the cluster queues + """ + order: ClusterQueueOrder = KEY + ): ClusterQueueConnection + + """ + The public UUID for this cluster + """ + uuid: ID! +} + +type ClusterAgentTokenConnection implements Connection { + count: Int! + edges: [ClusterAgentTokenEdge] + pageInfo: PageInfo +} + +""" +Autogenerated input type of ClusterAgentTokenCreate +""" +input ClusterAgentTokenCreateInput { + """ + A list of CIDR-notation IPv4 addresses from which agents can use this token. + Please note that this feature is not yet available to all organizations + """ + allowedIpAddresses: String + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + clusterId: ID! + description: String! + + """ + Agents registered with this token will use a unique token for each job. Please + note that this feature is not yet available to all organizations + """ + jobTokensEnabled: Boolean + organizationId: ID! +} + +""" +Autogenerated return type of ClusterAgentTokenCreate. +""" +type ClusterAgentTokenCreatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + clusterAgentToken: ClusterToken! + + """ + The token value used to register a new agent to this tokens cluster. Please + ensure to securely copy this value immediately upon generation as it will not + be displayed again. + """ + tokenValue: String! +} + +type ClusterAgentTokenEdge { + cursor: String! + node: ClusterToken +} + +""" +Autogenerated input type of ClusterAgentTokenRevoke +""" +input ClusterAgentTokenRevokeInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! + organizationId: ID! +} + +""" +Autogenerated return type of ClusterAgentTokenRevoke. +""" +type ClusterAgentTokenRevokePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + deletedClusterAgentTokenId: ID! +} + +""" +Autogenerated input type of ClusterAgentTokenUpdate +""" +input ClusterAgentTokenUpdateInput { + """ + A list of CIDR-notation IPv4 addresses from which agents can use this token. + Please note that this feature is not yet available to all organizations + """ + allowedIpAddresses: String + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + description: String! + id: ID! + + """ + Agents registered with this token will use a unique token for each job. Please + note that this feature is not yet available to all organizations + """ + jobTokensEnabled: Boolean + organizationId: ID! +} + +""" +Autogenerated return type of ClusterAgentTokenUpdate. +""" +type ClusterAgentTokenUpdatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + clusterAgentToken: ClusterToken! +} + +type ClusterConnection implements Connection { + count: Int! + edges: [ClusterEdge] + pageInfo: PageInfo +} + +""" +Autogenerated input type of ClusterCreate +""" +input ClusterCreateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + Color hex code for the cluster + """ + color: String + + """ + Description for the cluster + """ + description: String + + """ + Emoji for the cluster using Buildkite emoji syntax + """ + emoji: String + + """ + Name for the cluster + """ + name: String! + organizationId: ID! +} + +""" +Autogenerated return type of ClusterCreate. +""" +type ClusterCreatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + cluster: Cluster! +} + +""" +Autogenerated input type of ClusterDelete +""" +input ClusterDeleteInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! + organizationId: ID! +} + +""" +Autogenerated return type of ClusterDelete. +""" +type ClusterDeletePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + deletedClusterId: ID! +} + +type ClusterEdge { + cursor: String! + node: Cluster +} + +""" +The different orders you can sort clusters by +""" +enum ClusterOrder { + """ + Order by name alphabetically + """ + NAME + + """ + Order by the most recently created clusters first + """ + RECENTLY_CREATED +} + +type ClusterPermission { + actor: ClusterPermissionActor + + """ + Whether the actor can add pipelines to this cluster + """ + can_add_pipelines: Boolean! + + """ + Whether the actor can manage the associated cluster + """ + can_manage: Boolean! + + """ + Whether the actor can see this cluster's tokens + """ + can_see_tokens: Boolean! + cluster: Cluster + id: ID! + + """ + The public UUID for this cluster permission + """ + uuid: ID! +} + +""" +Actor to whom a cluster permission is applied +""" +union ClusterPermissionActor = OrganizationMember | Team + +type ClusterQueue implements Node { + cluster: Cluster + createdBy: User + description: String + + """ + States whether job dispatch is paused for this cluster queue + """ + dispatchPaused: Boolean! + + """ + The time this queue was paused + """ + dispatchPausedAt: DateTime + + """ + The user who paused this cluster queue + """ + dispatchPausedBy: User + + """ + Note describing why job dispatch was paused for this cluster queue + """ + dispatchPausedNote: String + id: ID! + key: String! + + """ + The public UUID for this cluster queue + """ + uuid: ID! +} + +type ClusterQueueConnection implements Connection { + count: Int! + edges: [ClusterQueueEdge] + pageInfo: PageInfo +} + +""" +Autogenerated input type of ClusterQueueCreate +""" +input ClusterQueueCreateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + clusterId: ID! + + """ + Description for the queue + """ + description: String + + """ + The queue tag used to connect an agent to the queue, this can't be updated later + """ + key: String! + organizationId: ID! +} + +""" +Autogenerated return type of ClusterQueueCreate. +""" +type ClusterQueueCreatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + clusterQueue: ClusterQueue! +} + +""" +Autogenerated input type of ClusterQueueDelete +""" +input ClusterQueueDeleteInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! + organizationId: ID! +} + +""" +Autogenerated return type of ClusterQueueDelete. +""" +type ClusterQueueDeletePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + deletedClusterQueueId: ID! +} + +type ClusterQueueEdge { + cursor: String! + node: ClusterQueue +} + +""" +The different orders you can sort cluster queues by +""" +enum ClusterQueueOrder { + """ + Order by key alphabetically + """ + KEY + + """ + Order by the most recently created cluster queues first + """ + RECENTLY_CREATED +} + +""" +Autogenerated input type of ClusterQueuePauseDispatch +""" +input ClusterQueuePauseDispatchInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! + + """ + An optional note describing the reason for pausing + """ + note: String +} + +""" +Autogenerated return type of ClusterQueuePauseDispatch. +""" +type ClusterQueuePauseDispatchPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + queue: ClusterQueue! +} + +""" +Autogenerated input type of ClusterQueueResumeDispatch +""" +input ClusterQueueResumeDispatchInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of ClusterQueueResumeDispatch. +""" +type ClusterQueueResumeDispatchPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + queue: ClusterQueue! +} + +""" +A token used to register an agent with a Buildkite cluster queue +""" +type ClusterQueueToken implements Node { + """ + A list of CIDR-notation IPv4 addresses from which agents can use this token. + Please note that this feature is not yet available to all organizations + """ + allowedIpAddresses: String + cluster: Cluster + clusterQueue: ClusterQueue + createdBy: User + + """ + A description for this cluster queue token + """ + description: String! + id: ID! + + """ + Agents registered with this token will use a unique token for each job. Please + note that this feature is not yet available to all organizations + """ + jobTokensEnabled: Boolean + + """ + The public UUID for this cluster queue token + """ + uuid: ID! +} + +""" +Autogenerated input type of ClusterQueueUpdate +""" +input ClusterQueueUpdateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + Description for the queue + """ + description: String + id: ID! + organizationId: ID! +} + +""" +Autogenerated return type of ClusterQueueUpdate. +""" +type ClusterQueueUpdatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + clusterQueue: ClusterQueue! +} + +""" +A token used to connect an agent in cluster to Buildkite +""" +type ClusterToken implements Node { + """ + A list of CIDR-notation IPv4 addresses from which agents can use this token. + Please note that this feature is not yet available to all organizations + """ + allowedIpAddresses: String + cluster: Cluster + createdBy: User + + """ + A description about what this cluster agent token is used for + """ + description: String + id: ID! + + """ + Agents registered with this token will use a unique token for each job. Please + note that this feature is not yet available to all organizations + """ + jobTokensEnabled: Boolean + + """ + The token value used to register a new agent to this tokens cluster. This will + soon return an empty string before we finally remove this field. + """ + token: String! @deprecated(reason: "Hiding these after creation to improve security. Use the `token_value` field on ClusterAgentTokenCreate instead.") + + """ + The public UUID for this cluster token + """ + uuid: ID! +} + +""" +Autogenerated input type of ClusterUpdate +""" +input ClusterUpdateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + Color hex code for the cluster + """ + color: String + + """ + ID of the queue to set as the cluster's default queue + """ + defaultQueueId: ID + + """ + Description for the cluster + """ + description: String + + """ + Emoji for the cluster using Buildkite emoji syntax + """ + emoji: String + id: ID! + + """ + Name for the cluster + """ + name: String + organizationId: ID! +} + +""" +Autogenerated return type of ClusterUpdate. +""" +type ClusterUpdatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + cluster: Cluster! +} + +interface Connection { + count: Int! + pageInfo: PageInfo +} + +""" +An ISO-8601 encoded UTC date string +""" +scalar DateTime + +type Dependency { + """ + Is this dependency allowed to fail + """ + allowFailure: Boolean! + id: ID! + + """ + The step key or step identifier that this step depends on + """ + key: String + + """ + The UUID for this dependency + """ + uuid: ID! +} + +type DependencyConnection implements Connection { + count: Int! + edges: [DependencyEdge] + pageInfo: PageInfo +} + +type DependencyEdge { + cursor: String! + node: Dependency +} + +""" +A job dispatch for a particular Organization +""" +type Dispatch { + id: ID! + + """ + The public UUID for this organization dispatch + """ + uuid: String! +} + +""" +An email address +""" +type Email implements Node { + """ + The email address + """ + address: String! + id: ID! + + """ + Whether the email address is the user's primary address + """ + primary: Boolean! + + """ + The public UUID for this email + """ + uuid: ID! + + """ + Whether the email address has been verified by the user + """ + verified: Boolean! +} + +""" +The connection type for Email. +""" +type EmailConnection implements Connection { + count: Int! + + """ + A list of edges. + """ + edges: [EmailEdge] + + """ + A list of nodes. + """ + nodes: [Email] + pageInfo: PageInfo +} + +""" +Autogenerated input type of EmailCreate +""" +input EmailCreateInput { + address: String! + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String +} + +""" +Autogenerated return type of EmailCreate. +""" +type EmailCreatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + emailEdge: EmailEdge! + viewer: Viewer! +} + +""" +An edge in a connection. +""" +type EmailEdge { + """ + A cursor for use in pagination. + """ + cursor: String! + + """ + The item at the end of the edge. + """ + node: Email +} + +""" +Autogenerated input type of EmailResendVerification +""" +input EmailResendVerificationInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of EmailResendVerification. +""" +type EmailResendVerificationPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + email: Email! +} + +""" +A shared GraphQL query +""" +type GraphQLSnippet { + """ + When this GraphQL snippet was created + """ + createdAt: DateTime! + id: ID! + + """ + The default operation name for this snippet + """ + operationName: String + + """ + The query of this GraphQL snippet + """ + query: String! + + """ + The URL for the GraphQL snippet + """ + url: String! + + """ + The public UUID for this snippet + """ + uuid: ID! +} + +""" +Autogenerated input type of GraphQLSnippetCreate +""" +input GraphQLSnippetCreateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + operationName: ID + query: String! +} + +""" +Autogenerated return type of GraphQLSnippetCreate. +""" +type GraphQLSnippetCreatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + graphQLSnippet: GraphQLSnippet! +} + +""" +An ISO 8601-encoded date +""" +scalar ISO8601Date + +""" +Represents non-fractional signed whole numeric values. + +`JSInt` can represent values between -(2^53) + 1 and 2^53 - 1. +""" +scalar JSInt + +""" +A blob of JSON represented as a pretty formatted string +""" +scalar JSON + +""" +Kinds of jobs that can exist on a build +""" +union Job = JobTypeBlock | JobTypeCommand | JobTypeTrigger | JobTypeWait + +""" +Concurrency configuration for a job +""" +type JobConcurrency { + """ + The concurrency group + """ + group: String! + + """ + The maximum amount of jobs in the concurrency that are allowed to run at any given time + """ + limit: Int! +} + +""" +Searching for concurrency groups on jobs +""" +input JobConcurrencySearch { + """ + The groups you want to search + """ + group: [String!] +} + +type JobConnection implements Connection { + count: Int! + edges: [JobEdge] + pageInfo: PageInfo +} + +type JobEdge { + cursor: String! + node: Job +} + +interface JobEvent { + """ + The actor that caused this event to occur + """ + actor: JobEventActor! + id: ID! + + """ + The job that this event belongs to + """ + job: JobTypeCommand! + + """ + The time when the event occurred + """ + timestamp: DateTime! + + """ + The type of event + """ + type: JobEventType! + + """ + The public UUID for this job event + """ + uuid: ID! +} + +""" +The actor who was responsible for the job event +""" +type JobEventActor { + """ + The node corresponding to this actor if available + """ + node: JobEventActorNodeUnion + + """ + The type of this actor + """ + type: JobEventActorType! + + """ + The public UUID of this actor if available + """ + uuid: ID +} + +""" +Actor types that can create events on a job +""" +union JobEventActorNodeUnion = Agent | Dispatch | User + +""" +All the actors that can have created a job event +""" +enum JobEventActorType { + """ + The actor was an agent + """ + AGENT + + """ + The actor was the dispatcher + """ + DISPATCH + + """ + The actor was the system + """ + SYSTEM + + """ + The actor was a user + """ + USER +} + +""" +An event created when the dispatcher assigns the job to an agent +""" +type JobEventAssigned implements JobEvent & Node { + """ + The actor that caused this event to occur + """ + actor: JobEventActor! + + """ + The agent the job was assigned to + """ + assignedAgent: Agent + id: ID! + + """ + The job that this event belongs to + """ + job: JobTypeCommand! + + """ + The time when the event occurred + """ + timestamp: DateTime! + + """ + The type of event + """ + type: JobEventType! + + """ + The public UUID for this job event + """ + uuid: ID! +} + +""" +An event created when the job creates new build steps via pipeline upload +""" +type JobEventBuildStepUploadCreated implements JobEvent & Node { + """ + The actor that caused this event to occur + """ + actor: JobEventActor! + buildStepUpload: BuildStepUpload! + id: ID! + + """ + The job that this event belongs to + """ + job: JobTypeCommand! + + """ + The time when the event occurred + """ + timestamp: DateTime! + + """ + The type of event + """ + type: JobEventType! + + """ + The public UUID for this job event + """ + uuid: ID! +} + +""" +An event created when the job is canceled +""" +type JobEventCanceled implements JobEvent & Node { + """ + The actor that caused this event to occur + """ + actor: JobEventActor! + exitStatus: JSInt! + id: ID! + + """ + The job that this event belongs to + """ + job: JobTypeCommand! + + """ + The termination signal which killed the command, if the command was killed + """ + signal: String + + """ + If the termination signal was sent by the agent, the reason the agent took + that action. If this field is null, and the `signal` field is not null, the + command was killed by another process or by the operating system. + """ + signalReason: JobEventSignalReason + + """ + The time when the event occurred + """ + timestamp: DateTime! + + """ + The type of event + """ + type: JobEventType! + + """ + The public UUID for this job event + """ + uuid: ID! +} + +type JobEventConnection implements Connection { + count: Int! + edges: [JobEventEdge] + pageInfo: PageInfo +} + +type JobEventEdge { + cursor: String! + node: JobEvent! +} + +""" +An event created when the job is finished +""" +type JobEventFinished implements JobEvent & Node { + """ + The actor that caused this event to occur + """ + actor: JobEventActor! + + """ + The exit status returned by the command on the agent. A value of `-1` + indicates either that the agent was lost or the process was killed. If the + process was killed, the `signal` field will be non-null. + """ + exitStatus: JSInt! + id: ID! + + """ + The job that this event belongs to + """ + job: JobTypeCommand! + + """ + The termination signal which killed the command, if the command was killed + """ + signal: String + + """ + If the termination signal was sent by the agent, the reason the agent took + that action. If this field is null, and the `signal` field is not null, the + command was killed by another process or by the operating system. + """ + signalReason: JobEventSignalReason + + """ + The time when the event occurred + """ + timestamp: DateTime! + + """ + The type of event + """ + type: JobEventType! + + """ + The public UUID for this job event + """ + uuid: ID! +} + +""" +A generic event type that doesn't have any additional meta-information associated with the event +""" +type JobEventGeneric implements JobEvent & Node { + """ + The actor that caused this event to occur + """ + actor: JobEventActor! + id: ID! + + """ + The job that this event belongs to + """ + job: JobTypeCommand! + + """ + The time when the event occurred + """ + timestamp: DateTime! + + """ + The type of event + """ + type: JobEventType! + + """ + The public UUID for this job event + """ + uuid: ID! +} + +""" +An event created when the job is retried +""" +type JobEventRetried implements JobEvent & Node { + """ + The actor that caused this event to occur + """ + actor: JobEventActor! + automaticRule: JobRetryRuleAutomatic + id: ID! + + """ + The job that this event belongs to + """ + job: JobTypeCommand! + retriedInJob: JobTypeCommand + + """ + The time when the event occurred + """ + timestamp: DateTime! + + """ + The type of event + """ + type: JobEventType! + + """ + The public UUID for this job event + """ + uuid: ID! +} + +""" +The reason why a signal was sent to the job's process, or why the process did not start +""" +enum JobEventSignalReason { + """ + The agent refused the job. Note that in this case, no signal was sent to the process, the job was not run at all. + """ + AGENT_REFUSED + + """ + The agent sent the signal to the process because the agent was stopped + """ + AGENT_STOP + + """ + The agent sent the signal to the process because the job was canceled + """ + CANCEL + + """ + The agent was unable to start the job process, often due to memory or resource + constraints. Note that in this case, no signal was sent to the process, it + simply never started. + """ + PROCESS_RUN_ERROR + + """ + The agent refused the job because the signature could not be verified. Note + that in this case, no signal was sent to the process, the job was not run at all. + """ + SIGNATURE_REJECTED +} + +""" +An event created when the job is timed out +""" +type JobEventTimedOut implements JobEvent & Node { + """ + The actor that caused this event to occur + """ + actor: JobEventActor! + exitStatus: JSInt! + id: ID! + + """ + The job that this event belongs to + """ + job: JobTypeCommand! + + """ + The termination signal which killed the command, if the command was killed + """ + signal: String + + """ + If the termination signal was sent by the agent, the reason the agent took + that action. If this field is null, and the `signal` field is not null, the + command was killed by another process or by the operating system. + """ + signalReason: JobEventSignalReason + + """ + The time when the event occurred + """ + timestamp: DateTime! + + """ + The type of event + """ + type: JobEventType! + + """ + The public UUID for this job event + """ + uuid: ID! +} + +""" +All the possible types of events that happen to a Job +""" +enum JobEventType { + """ + The Job was accepted by an agent + """ + ACCEPTED + + """ + The agent took too long to start the job + """ + ACCEPTED_EXPIRED + + """ + The agent disconnected while processing this job + """ + AGENT_DISCONNECTED + + """ + The agent was lost while processing this job + """ + AGENT_LOST + + """ + The agent was stopped while processing this job + """ + AGENT_STOPPED + + """ + The Job was assigned to an agent + """ + ASSIGNED + + """ + The agent took too long to accept the job + """ + ASSIGNED_EXPIRED + + """ + The Job uploaded steps to the current build + """ + BUILD_STEP_UPLOAD_CREATED + + """ + The Job was marked for cancelation by a user + """ + CANCELATION + + """ + The Job was canceled + """ + CANCELED + + """ + The Job was changed + """ + CHANGED + + """ + The Job expired before it was started on an agent + """ + EXPIRED + + """ + The Job was finished by an agent + """ + FINISHED + + """ + The Job is limited by a concurrency group + """ + LIMITED + + """ + The Job sent a notification + """ + NOTIFICATION + + """ + The Job was retried either automatically or by a user + """ + RETRIED + + """ + The Job was scheduled + """ + SCHEDULED + + """ + The Job was started by an agent + """ + STARTED + + """ + The Job was timed out + """ + TIMED_OUT + + """ + The Job was unblocked by a user + """ + UNBLOCKED +} + +interface JobInterface { + """ + If this job has been retried + """ + retried: Boolean! + + """ + The user that retried this job + """ + retriedBy: User + + """ + The number of times the job has been retried + """ + retriesCount: Int + + """ + The job that was retried to create this job + """ + retrySource: Job + + """ + The type of retry that was performed on this job + """ + retryType: JobRetryTypes + + """ + The UUID for this job + """ + uuid: String! +} + +""" +A record of job minutes usage, aggregated by day and pipeline. +""" +type JobMinutesUsage implements ResourceUsageInterface { + aggregatedOn: ISO8601Date! + pipeline: Pipeline + pipelineId: ID! + + """ + The recorded usage in seconds. For billing purposes, seconds are summed for a + billing period and rounded down to the nearest minute. + """ + seconds: Int! +} + +""" +The different orders you can sort jobs by +""" +enum JobOrder { + """ + Order by the most recently assigned jobs first + """ + RECENTLY_ASSIGNED + + """ + Order by the most recently created jobs first + """ + RECENTLY_CREATED +} + +""" +The priority with which a job will run +""" +type JobPriority { + number: Int +} + +""" +Search jobs by priority +""" +input JobPrioritySearch { + """ + The priority number to search + """ + number: [Int!] +} + +""" +Automatic retry rule configuration +""" +type JobRetryRuleAutomatic { + exitStatus: String + limit: String + signal: String + signalReason: String +} + +""" +Retry Rules for a job +""" +type JobRetryRules { + automatic: [JobRetryRuleAutomatic] + manual: Boolean +} + +""" +The retry types that can be made on a Job +""" +enum JobRetryTypes { + AUTOMATIC + MANUAL +} + +""" +All the possible states a job can be in +""" +enum JobStates { + """ + The job was accepted by the agent, and now it's waiting to start running + """ + ACCEPTED + + """ + The job has been assigned to an agent, and it's waiting for it to accept + """ + ASSIGNED + + """ + The job is waiting on a `block` step to finish + """ + BLOCKED + + """ + The job was in a `BLOCKED` state when the build failed + """ + BLOCKED_FAILED + + """ + The jobs configuration means that it can't be run + """ + BROKEN + + """ + The job was canceled + """ + CANCELED + + """ + The job is currently canceling + """ + CANCELING + + """ + The job expired before it was started on an agent + """ + EXPIRED + + """ + The job has finished + """ + FINISHED + + """ + The job is waiting for jobs with the same concurrency group to finish + """ + LIMITED + + """ + The job is waiting on a concurrency group check before becoming either `LIMITED` or `SCHEDULED` + """ + LIMITING + + """ + The job has just been created and doesn't have a state yet + """ + PENDING + + """ + The job is running + """ + RUNNING + + """ + The job is scheduled and waiting for an agent + """ + SCHEDULED + + """ + The job was skipped + """ + SKIPPED + + """ + The job timed out + """ + TIMED_OUT + + """ + The job is timing out for taking too long + """ + TIMING_OUT + + """ + This `block` job has been manually unblocked + """ + UNBLOCKED + + """ + This `block` job was in an `UNBLOCKED` state when the build failed + """ + UNBLOCKED_FAILED + + """ + The job is waiting on a `wait` step to finish + """ + WAITING + + """ + The job was in a `WAITING` state when the build failed + """ + WAITING_FAILED +} + +""" +Searching for jobs based on step information +""" +input JobStepSearch { + """ + The key assigned to the step + """ + key: [String!] +} + +""" +A type of job that requires a user to unblock it before proceeding in a build pipeline +""" +type JobTypeBlock implements JobInterface & Node { + """ + The build that this job is a part of + """ + build: Build + id: ID! + + """ + Whether or not this job can be unblocked yet (may be waiting on another job to finish) + """ + isUnblockable: Boolean + + """ + The label of this block step + """ + label: String + + """ + If this job has been retried + """ + retried: Boolean! + + """ + The user that retried this job + """ + retriedBy: User + + """ + The number of times the job has been retried + """ + retriesCount: Int + + """ + The job that was retried to create this job + """ + retrySource: Job + + """ + The type of retry that was performed on this job + """ + retryType: JobRetryTypes + + """ + The state of the job + """ + state: JobStates! + + """ + The step that defined this job. Some older jobs in the system may not have an associated step + """ + step: StepInput + + """ + The time when the job was created + """ + unblockedAt: DateTime + + """ + The user that unblocked this job + """ + unblockedBy: User + + """ + The UUID for this job + """ + uuid: String! +} + +""" +Autogenerated input type of JobTypeBlockUnblock +""" +input JobTypeBlockUnblockInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + Hash of values for the block step's fields. + """ + fields: JSON + id: ID! +} + +""" +Autogenerated return type of JobTypeBlockUnblock. +""" +type JobTypeBlockUnblockPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + jobTypeBlock: JobTypeBlock! +} + +""" +A type of job that runs a command on an agent +""" +type JobTypeCommand implements JobInterface & Node { + """ + The agent that is running the job + """ + agent: Agent + + """ + The ruleset used to find an agent to run this job + """ + agentQueryRules: [String!] + + """ + Artifacts uploaded to this job + """ + artifacts(first: Int, last: Int): ArtifactConnection + + """ + A glob of files to automatically upload after the job finishes + """ + automaticArtifactUploadPaths: String + + """ + The build that this job is a part of + """ + build: Build + + """ + The time when the job was cancelled + """ + canceledAt: DateTime + + """ + The cluster of this job + """ + cluster: Cluster + + """ + The cluster queue of this job + """ + clusterQueue: ClusterQueue + + """ + The command the job will run + """ + command: String + + """ + Concurrency information related to a job + """ + concurrency: JobConcurrency + + """ + The time when the job was created + """ + createdAt: DateTime + + """ + Environment variables for this job + """ + env: [String!] + + """ + Job events + """ + events( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + ): JobEventConnection! + + """ + The exit status returned by the command on the agent + """ + exitStatus: String + + """ + The time when the job was expired + """ + expiredAt: DateTime + + """ + The time when the job finished + """ + finishedAt: DateTime + id: ID! + + """ + The label of the job + """ + label: String + + """ + The matrix configuration values for this particular job + """ + matrix: JSON + + """ + The index of this job within the parallel job group it is a part of. Null if this job is not part of a parallel job group. + """ + parallelGroupIndex: Int + + """ + The total number of jobs in the parallel job group this job is a part of. Null + if this job is not part of a parallel job group. + """ + parallelGroupTotal: Int + + """ + If the job has finished and passed + """ + passed: Boolean! + + """ + The pipeline that this job is a part of + """ + pipeline: Pipeline + + """ + The priority of this job + """ + priority: JobPriority! + + """ + If this job has been retried + """ + retried: Boolean! + + """ + The user that retried this job + """ + retriedBy: User + + """ + The number of times the job has been retried + """ + retriesCount: Int + + """ + Job retry rules + """ + retryRules: JobRetryRules + + """ + The job that was retried to create this job + """ + retrySource: Job + + """ + The type of retry that was performed on this job + """ + retryType: JobRetryTypes + + """ + The time when the job became available to be run by an agent + """ + runnableAt: DateTime + + """ + The time when the job became scheduled for running + """ + scheduledAt: DateTime + + """ + The termination signal which killed the command, if the command was killed + """ + signal: String + + """ + If the termination signal was sent by the agent, the reason the agent took + that action. If this field is null, and the `signal` field is not null, the + command was killed by another process or by the operating system. + """ + signalReason: JobEventSignalReason + + """ + If the job soft failed + """ + softFailed: Boolean! + + """ + The time when the job started running + """ + startedAt: DateTime + + """ + The state of the job + """ + state: JobStates! + + """ + The step that defined this job. Some older jobs in the system may not have an associated step + """ + step: StepCommand + + """ + The URL for the job + """ + url: String! + + """ + The UUID for this job + """ + uuid: String! +} + +""" +Autogenerated input type of JobTypeCommandCancel +""" +input JobTypeCommandCancelInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of JobTypeCommandCancel. +""" +type JobTypeCommandCancelPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + jobTypeCommand: JobTypeCommand! +} + +""" +Autogenerated input type of JobTypeCommandRetry +""" +input JobTypeCommandRetryInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of JobTypeCommandRetry. +""" +type JobTypeCommandRetryPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + jobTypeCommand: JobTypeCommand! + retriedInJobTypeCommand: JobTypeCommand! +} + +""" +A type of job that triggers another build on a pipeline +""" +type JobTypeTrigger implements JobInterface & Node { + """ + The build that this job is a part of + """ + build: Build + id: ID! + + """ + The label of this trigger step + """ + label: String + + """ + If this job has been retried + """ + retried: Boolean! + + """ + The user that retried this job + """ + retriedBy: User + + """ + The number of times the job has been retried + """ + retriesCount: Int + + """ + The job that was retried to create this job + """ + retrySource: Job + + """ + The type of retry that was performed on this job + """ + retryType: JobRetryTypes + + """ + The state of the job + """ + state: JobStates! + + """ + The step that defined this job. Some older jobs in the system may not have an associated step + """ + step: StepTrigger + + """ + The build that this job triggered + """ + triggered: Build + + """ + The UUID for this job + """ + uuid: String! +} + +""" +A type of job that waits for all previous jobs to pass before proceeding the build pipeline +""" +type JobTypeWait implements JobInterface & Node { + """ + The build that this job is a part of + """ + build: Build + id: ID! + + """ + The label of this wait step + """ + label: String + + """ + If this job has been retried + """ + retried: Boolean! + + """ + The user that retried this job + """ + retriedBy: User + + """ + The number of times the job has been retried + """ + retriesCount: Int + + """ + The job that was retried to create this job + """ + retrySource: Job + + """ + The type of retry that was performed on this job + """ + retryType: JobRetryTypes + + """ + The state of the job + """ + state: JobStates! + + """ + The step that defined this job. Some older jobs in the system may not have an associated step + """ + step: StepWait + + """ + The UUID for this job + """ + uuid: String! +} + +""" +All the possible types of jobs that can exist +""" +enum JobTypes { + """ + A job that blocks a pipeline from progressing until it's manually unblocked + """ + BLOCK + + """ + A job that runs a command on an agent + """ + COMMAND + + """ + A job that triggers another build on a pipeline + """ + TRIGGER + + """ + A job that waits for all previous jobs to finish + """ + WAIT +} + +""" +The root for mutations in this schema +""" +type Mutation { + """ + Instruct an agent to stop accepting new build jobs and shut itself down. + """ + agentStop( + """ + Parameters for AgentStop + """ + input: AgentStopInput! + ): AgentStopPayload + + """ + Create a new agent registration token. + """ + agentTokenCreate( + """ + Parameters for AgentTokenCreate + """ + input: AgentTokenCreateInput! + ): AgentTokenCreatePayload + + """ + Revoke an agent registration token. + """ + agentTokenRevoke( + """ + Parameters for AgentTokenRevoke + """ + input: AgentTokenRevokeInput! + ): AgentTokenRevokePayload + + """ + Authorize an API Access Token Code generated by an API Application. Please + note this mutation is private and cannot be executed externally. + """ + apiAccessTokenCodeAuthorize( + """ + Parameters for APIAccessTokenCodeAuthorizeMutation + """ + input: APIAccessTokenCodeAuthorizeMutationInput! + ): APIAccessTokenCodeAuthorizeMutationPayload + + """ + Annotate a build with information to appear on the build page. + """ + buildAnnotate( + """ + Parameters for BuildAnnotate + """ + input: BuildAnnotateInput! + ): BuildAnnotatePayload + + """ + Cancel a build. + """ + buildCancel( + """ + Parameters for BuildCancel + """ + input: BuildCancelInput! + ): BuildCancelPayload + + """ + Create a build. + """ + buildCreate( + """ + Parameters for BuildCreate + """ + input: BuildCreateInput! + ): BuildCreatePayload + + """ + Rebuild a build. + """ + buildRebuild( + """ + Parameters for BuildRebuild + """ + input: BuildRebuildInput! + ): BuildRebuildPayload + + """ + Create a new cluster agent token + """ + clusterAgentTokenCreate( + """ + Parameters for ClusterAgentTokenCreate + """ + input: ClusterAgentTokenCreateInput! + ): ClusterAgentTokenCreatePayload + + """ + Revokes a cluster agent token + """ + clusterAgentTokenRevoke( + """ + Parameters for ClusterAgentTokenRevoke + """ + input: ClusterAgentTokenRevokeInput! + ): ClusterAgentTokenRevokePayload + + """ + Updates a cluster agent token + """ + clusterAgentTokenUpdate( + """ + Parameters for ClusterAgentTokenUpdate + """ + input: ClusterAgentTokenUpdateInput! + ): ClusterAgentTokenUpdatePayload + + """ + Create a cluster. + """ + clusterCreate( + """ + Parameters for ClusterCreate + """ + input: ClusterCreateInput! + ): ClusterCreatePayload + + """ + Delete a cluster. + """ + clusterDelete( + """ + Parameters for ClusterDelete + """ + input: ClusterDeleteInput! + ): ClusterDeletePayload + + """ + Create a cluster queue. + """ + clusterQueueCreate( + """ + Parameters for ClusterQueueCreate + """ + input: ClusterQueueCreateInput! + ): ClusterQueueCreatePayload + + """ + Delete a cluster queue. + """ + clusterQueueDelete( + """ + Parameters for ClusterQueueDelete + """ + input: ClusterQueueDeleteInput! + ): ClusterQueueDeletePayload + + """ + This will prevent dispatch of jobs to agents on this queue. You can add an + optional note describing the reason for pausing. + """ + clusterQueuePauseDispatch( + """ + Parameters for ClusterQueuePauseDispatch + """ + input: ClusterQueuePauseDispatchInput! + ): ClusterQueuePauseDispatchPayload + + """ + This will resume dispatch of jobs on this queue. + """ + clusterQueueResumeDispatch( + """ + Parameters for ClusterQueueResumeDispatch + """ + input: ClusterQueueResumeDispatchInput! + ): ClusterQueueResumeDispatchPayload + + """ + Updates a cluster queue. + """ + clusterQueueUpdate( + """ + Parameters for ClusterQueueUpdate + """ + input: ClusterQueueUpdateInput! + ): ClusterQueueUpdatePayload + + """ + Updates a cluster. + """ + clusterUpdate( + """ + Parameters for ClusterUpdate + """ + input: ClusterUpdateInput! + ): ClusterUpdatePayload + + """ + Add a new email address for the current user + """ + emailCreate( + """ + Parameters for EmailCreate + """ + input: EmailCreateInput! + ): EmailCreatePayload + + """ + Resend a verification email. + """ + emailResendVerification( + """ + Parameters for EmailResendVerification + """ + input: EmailResendVerificationInput! + ): EmailResendVerificationPayload + + """ + Create a GraphQL snippet. + """ + graphQLSnippetCreate( + """ + Parameters for GraphQLSnippetCreate + """ + input: GraphQLSnippetCreateInput! + ): GraphQLSnippetCreatePayload + + """ + Unblocks a build's "Block pipeline" job. + """ + jobTypeBlockUnblock( + """ + Parameters for JobTypeBlockUnblock + """ + input: JobTypeBlockUnblockInput! + ): JobTypeBlockUnblockPayload + + """ + Cancel a job. + """ + jobTypeCommandCancel( + """ + Parameters for JobTypeCommandCancel + """ + input: JobTypeCommandCancelInput! + ): JobTypeCommandCancelPayload + + """ + Retry a job. + """ + jobTypeCommandRetry( + """ + Parameters for JobTypeCommandRetry + """ + input: JobTypeCommandRetryInput! + ): JobTypeCommandRetryPayload + + """ + Dismisses a notice from the Buildkite UI. This mutation is idempotent so if + you dismiss the same notice multiple times, it will return the original + `dismissedAt` time + """ + noticeDismiss( + """ + Parameters for NoticeDismiss + """ + input: NoticeDismissInput! + ): NoticeDismissPayload + + """ + Revokes access to an organization for a user's API access token. The + organization can not be re-added to the same token, however the user can + create a new token and add the organization to that token. + """ + organizationApiAccessTokenRevoke( + """ + Parameters for OrganizationAPIAccessTokenRevokeMutation + """ + input: OrganizationAPIAccessTokenRevokeMutationInput! + ): OrganizationAPIAccessTokenRevokeMutationPayload + + """ + Sets an allowlist of IP addresses for API access to an organization. Please + note that this is a beta feature and is not yet available to all + organizations. + """ + organizationApiIpAllowlistUpdate( + """ + Parameters for OrganizationAPIIPAllowlistUpdateMutation + """ + input: OrganizationAPIIPAllowlistUpdateMutationInput! + ): OrganizationAPIIPAllowlistUpdateMutationPayload + + """ + Delete the system banner + """ + organizationBannerDelete( + """ + Parameters for OrganizationBannerDelete + """ + input: OrganizationBannerDeleteInput! + ): OrganizationBannerDeletePayload + + """ + Retrieves the active system banner for provided organization, then updates it + with input data. If active banner is not found, a new banner is created with + the provided input. + """ + organizationBannerUpsert( + """ + Parameters for OrganizationBannerUpsert + """ + input: OrganizationBannerUpsertInput! + ): OrganizationBannerUpsertPayload + + """ + Sets whether the organization requires two-factor authentication for all members. + """ + organizationEnforceTwoFactorAuthenticationForMembersUpdate( + """ + Parameters for OrganizationEnforceTwoFactorAuthenticationForMembersUpdateMutation + """ + input: OrganizationEnforceTwoFactorAuthenticationForMembersUpdateMutationInput! + ): OrganizationEnforceTwoFactorAuthenticationForMembersUpdateMutationPayload + + """ + Send email invitations to this organization. + """ + organizationInvitationCreate( + """ + Parameters for OrganizationInvitationCreate + """ + input: OrganizationInvitationCreateInput! + ): OrganizationInvitationCreatePayload + + """ + Resend an organization invitation email. + """ + organizationInvitationResend( + """ + Parameters for OrganizationInvitationResend + """ + input: OrganizationInvitationResendInput! + ): OrganizationInvitationResendPayload + + """ + Revoke an invitation to an organization so that it can no longer be accepted. + """ + organizationInvitationRevoke( + """ + Parameters for OrganizationInvitationRevoke + """ + input: OrganizationInvitationRevokeInput! + ): OrganizationInvitationRevokePayload + + """ + Remove a user from an organization. + """ + organizationMemberDelete( + """ + Parameters for OrganizationMemberDelete + """ + input: OrganizationMemberDeleteInput! + ): OrganizationMemberDeletePayload + + """ + Change a user's role within an organization. + """ + organizationMemberUpdate( + """ + Parameters for OrganizationMemberUpdate + """ + input: OrganizationMemberUpdateInput! + ): OrganizationMemberUpdatePayload + + """ + Specify the maximum timeframe to revoke organization access from inactive API tokens. + """ + organizationRevokeInactiveTokensAfterUpdate( + """ + Parameters for OrganizationRevokeInactiveTokensAfterUpdateMutation + """ + input: OrganizationRevokeInactiveTokensAfterUpdateMutationInput! + ): OrganizationRevokeInactiveTokensAfterUpdateMutationPayload + + """ + Archive a pipeline. + """ + pipelineArchive( + """ + Parameters for PipelineArchive + """ + input: PipelineArchiveInput! + ): PipelineArchivePayload + + """ + Create a pipeline. + """ + pipelineCreate( + """ + Parameters for PipelineCreate + """ + input: PipelineCreateInput! + ): PipelineCreatePayload + + """ + Create SCM webhooks for a pipeline. + """ + pipelineCreateWebhook( + """ + Parameters for PipelineCreateWebhook + """ + input: PipelineCreateWebhookInput! + ): PipelineCreateWebhookPayload + + """ + Delete a pipeline. + """ + pipelineDelete( + """ + Parameters for PipelineDelete + """ + input: PipelineDeleteInput! + ): PipelineDeletePayload + + """ + Favorite a pipeline. + """ + pipelineFavorite( + """ + Parameters for PipelineFavorite + """ + input: PipelineFavoriteInput! + ): PipelineFavoritePayload + + """ + Rotate a pipeline's webhook URL. + + Note that the old webhook URL will stop working immediately and so must be updated quickly to avoid interruption. + """ + pipelineRotateWebhookURL( + """ + Parameters for PipelineRotateWebhookURL + """ + input: PipelineRotateWebhookURLInput! + ): PipelineRotateWebhookURLPayload + + """ + Create a scheduled build on pipeline. + """ + pipelineScheduleCreate( + """ + Parameters for PipelineScheduleCreate + """ + input: PipelineScheduleCreateInput! + ): PipelineScheduleCreatePayload + + """ + Delete a scheduled build on pipeline. + """ + pipelineScheduleDelete( + """ + Parameters for PipelineScheduleDelete + """ + input: PipelineScheduleDeleteInput! + ): PipelineScheduleDeletePayload + + """ + Update a scheduled build on pipeline. + """ + pipelineScheduleUpdate( + """ + Parameters for PipelineScheduleUpdate + """ + input: PipelineScheduleUpdateInput! + ): PipelineScheduleUpdatePayload + + """ + Create a pipeline template. + """ + pipelineTemplateCreate( + """ + Parameters for PipelineTemplateCreate + """ + input: PipelineTemplateCreateInput! + ): PipelineTemplateCreatePayload + + """ + Delete a pipeline template. + """ + pipelineTemplateDelete( + """ + Parameters for PipelineTemplateDelete + """ + input: PipelineTemplateDeleteInput! + ): PipelineTemplateDeletePayload + + """ + Update a pipeline template. + """ + pipelineTemplateUpdate( + """ + Parameters for PipelineTemplateUpdate + """ + input: PipelineTemplateUpdateInput! + ): PipelineTemplateUpdatePayload + + """ + Unarchive a pipeline. + """ + pipelineUnarchive( + """ + Parameters for PipelineUnarchive + """ + input: PipelineUnarchiveInput! + ): PipelineUnarchivePayload + + """ + Change the settings for a pipeline. + """ + pipelineUpdate( + """ + Parameters for PipelineUpdate + """ + input: PipelineUpdateInput! + ): PipelineUpdatePayload + + """ + Create a SSO provider. + """ + ssoProviderCreate( + """ + Parameters for SSOProviderCreate + """ + input: SSOProviderCreateInput! + ): SSOProviderCreatePayload + + """ + Delete a SSO provider. + """ + ssoProviderDelete( + """ + Parameters for SSOProviderDelete + """ + input: SSOProviderDeleteInput! + ): SSOProviderDeletePayload + + """ + Disable a SSO provider. + """ + ssoProviderDisable( + """ + Parameters for SSOProviderDisable + """ + input: SSOProviderDisableInput! + ): SSOProviderDisablePayload + + """ + Enable a SSO provider. + """ + ssoProviderEnable( + """ + Parameters for SSOProviderEnable + """ + input: SSOProviderEnableInput! + ): SSOProviderEnablePayload + + """ + Change the settings for a SSO provider. + """ + ssoProviderUpdate( + """ + Parameters for SSOProviderUpdate + """ + input: SSOProviderUpdateInput! + ): SSOProviderUpdatePayload + + """ + Create a team. + """ + teamCreate( + """ + Parameters for TeamCreate + """ + input: TeamCreateInput! + ): TeamCreatePayload + + """ + Delete a team. + """ + teamDelete( + """ + Parameters for TeamDelete + """ + input: TeamDeleteInput! + ): TeamDeletePayload + + """ + Add a user to a team. + """ + teamMemberCreate( + """ + Parameters for TeamMemberCreate + """ + input: TeamMemberCreateInput! + ): TeamMemberCreatePayload + + """ + Remove a user from a team. + """ + teamMemberDelete( + """ + Parameters for TeamMemberDelete + """ + input: TeamMemberDeleteInput! + ): TeamMemberDeletePayload + + """ + Update a user's role in a team. + """ + teamMemberUpdate( + """ + Parameters for TeamMemberUpdate + """ + input: TeamMemberUpdateInput! + ): TeamMemberUpdatePayload + + """ + Add a pipeline to a team. + """ + teamPipelineCreate( + """ + Parameters for TeamPipelineCreate + """ + input: TeamPipelineCreateInput! + ): TeamPipelineCreatePayload + + """ + Remove a pipeline from a team. + """ + teamPipelineDelete( + """ + Parameters for TeamPipelineDelete + """ + input: TeamPipelineDeleteInput! + ): TeamPipelineDeletePayload + + """ + Update a pipeline's access level within a team. + """ + teamPipelineUpdate( + """ + Parameters for TeamPipelineUpdate + """ + input: TeamPipelineUpdateInput! + ): TeamPipelineUpdatePayload + + """ + Add a suite to a team. + """ + teamSuiteCreate( + """ + Parameters for TeamSuiteCreate + """ + input: TeamSuiteCreateInput! + ): TeamSuiteCreatePayload + + """ + Remove a suite from a team. + """ + teamSuiteDelete( + """ + Parameters for TeamSuiteDelete + """ + input: TeamSuiteDeleteInput! + ): TeamSuiteDeletePayload + + """ + Update a suite's access level within a team. + """ + teamSuiteUpdate( + """ + Parameters for TeamSuiteUpdate + """ + input: TeamSuiteUpdateInput! + ): TeamSuiteUpdatePayload + + """ + Change the settings for a team. + """ + teamUpdate( + """ + Parameters for TeamUpdate + """ + input: TeamUpdateInput! + ): TeamUpdatePayload + + """ + Activate a previously-generated TOTP configuration, and its Recovery Codes. + + Once activated, both this TOTP configuration, and the associated Recovery Codes will become active for the user. + Any previous TOTP configuration or Recovery Codes will no longer be usable. + + This mutation is private, requires an escalated session, and cannot be accessed via the public GraphQL API. + """ + totpActivate( + """ + Parameters for TOTPActivate + """ + input: TOTPActivateInput! + ): TOTPActivatePayload + + """ + Create a new TOTP configuration for the current user. + + This will produce a TOTP configuration with an associated set of Recovery + Codes. The Recovery Codes must be presented to the user prior to the TOTP's + activation with `totpActivate`. + Neither TOTP configuration nor Recovery Codes will be usable until they have been activated. + + This mutation is private, requires an escalated session, and cannot be accessed via the public GraphQL API. + """ + totpCreate( + """ + Parameters for TOTPCreate + """ + input: TOTPCreateInput! + ): TOTPCreatePayload + + """ + Delete a TOTP configuration. + + If a TOTP configuration was active, it will no longer be used for logging on to the user's account. + Any Recovery Codes associated with the TOTP configuration will also no longer be usable. + + This mutation is private, requires an escalated session, and cannot be accessed via the public GraphQL API. + """ + totpDelete( + """ + Parameters for TOTPDelete + """ + input: TOTPDeleteInput! + ): TOTPDeletePayload + + """ + Generate a new set of Recovery Codes for a given TOTP. + + The new Recovery Codes will immediately replace any existing recovery codes. + + This mutation is private, requires an escalated session, and cannot be accessed via the public GraphQL API. + """ + totpRecoveryCodesRegenerate( + """ + Parameters for TOTPRecoveryCodesRegenerate + """ + input: TOTPRecoveryCodesRegenerateInput! + ): TOTPRecoveryCodesRegeneratePayload +} + +""" +An object with an ID. +""" +interface Node { + """ + ID of the object. + """ + id: ID! +} + +""" +A notice or notice that a user sees in the Buildkite UI +""" +type Notice { + """ + The time when this notice was dismissed from the UI + """ + dismissedAt: DateTime + id: ID! + + """ + The namespace of this notice + """ + namespace: NoticeNamespaces! + + """ + The scope within the namespace + """ + scope: String! +} + +""" +Autogenerated input type of NoticeDismiss +""" +input NoticeDismissInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of NoticeDismiss. +""" +type NoticeDismissPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + notice: Notice +} + +""" +All the possible namespaces for a notice +""" +enum NoticeNamespaces { + """ + A change to an existing feature + """ + CHANGE + + """ + The user has had an email suggested to them + """ + EMAIL_SUGGESTION + + """ + An event announcement + """ + EVENT + + """ + A new feature was added + """ + FEATURE +} + +interface NotificationService { + """ + The description of this service + """ + description: String! + id: ID! + + """ + The name of the service provider + """ + name: String! +} + +""" +Deliver notifications to Slack +""" +type NotificationServiceSlack implements Node & NotificationService { + """ + The description of this service + """ + description: String! + id: ID! + + """ + The name of the service provider + """ + name: String! +} + +""" +Deliver notifications to a custom URL +""" +type NotificationServiceWebhook implements NotificationService { + """ + The description of this service + """ + description: String! + id: ID! + + """ + The name of the service provider + """ + name: String! +} + +""" +A operating system that an agent can run on +""" +type OperatingSystem { + """ + The name of the operating system + """ + name: String! +} + +""" +An organization +""" +type Organization implements Node { + """ + Returns agent access tokens for an Organization. By default returns all tokens, whether revoked or non-revoked. + """ + agentTokens( + first: Int + last: Int + + """ + Filter tokens by whether they are revoked or not + """ + revoked: Boolean + ): AgentTokenConnection + agents( + after: String + before: String + + """ + Filter agents by membership of a given cluster + """ + cluster: ID + + """ + Filter agents to those within a given cluster queue + """ + clusterQueue: [ID!] + + """ + Pass `false` to exclude agents that belong to a cluster queue + """ + clustered: Boolean = true + first: Int + + """ + Filter agents by whether they are running a job or not + """ + isRunningJob: Boolean + last: Int + + """ + Filter agents to those only having the matching meta data + """ + metaData: [String!] + + """ + Search agents for the given query terms case insensitively across name and meta data + """ + search: String + ): AgentConnection + + """ + A space-separated allowlist of IP addresses that can access the organization via the GraphQL or REST API + """ + allowedApiIpAddresses: String + + """ + Returns user API access tokens that can access this organization + """ + apiAccessTokens( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + ): OrganizationAPIAccessTokenConnection! + auditEvents( + """ + Filter the events by the IDs of the actors who initiated them + """ + actor: [ID!] + + """ + Filter the events by the type of actor who initiated them + """ + actorType: [AuditActorType!] + after: String + before: String + first: Int + last: Int + + """ + Filter events which occurred from the given date and time + """ + occurredAtFrom: DateTime + + """ + Filter events which occurred until the given date and time + """ + occurredAtTo: DateTime + + """ + Order the events + """ + order: OrganizationAuditEventOrders = RECENTLY_OCCURRED + + """ + Filter the events by the IDs of the subject they relate to + """ + subject: [ID!] + + """ + Filter the events by the type of subject they relate to + """ + subjectType: [AuditSubjectType!] + + """ + Filter the events by the UUIDs of the subject they relate to + """ + subjectUUID: [ID!] + + """ + Filter the events by type + """ + type: [AuditEventType!] + ): OrganizationAuditEventConnection + + """ + Returns active banners for this organization. + """ + banners( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + ): OrganizationBannerConnection! + + """ + Return cluster in the Organization by UUID + """ + cluster(id: ID!): Cluster + + """ + Returns clusters for an Organization + """ + clusters( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + Order the clusters + """ + order: ClusterOrder = NAME + ): ClusterConnection + + """ + The URL to an icon representing this organization + """ + iconUrl: String + id: ID! + invitations( + after: String + before: String + first: Int + last: Int + + """ + Order the invitations + """ + order: OrganizationInvitationOrders = RECENTLY_CREATED + state: [OrganizationInvitationStates!] + ): OrganizationInvitationConnection + + """ + Whether teams is enabled for this organization + """ + isTeamsEnabled: Boolean! + jobs( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + agentQueryRules: [String!] + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Filter jobs by membership of a given cluster + """ + cluster: ID + + """ + Filter jobs to those within a given cluster queue + """ + clusterQueue: [ID!] + + """ + Pass `false` to exclude jobs that belong to a cluster queue + """ + clustered: Boolean = true + concurrency: JobConcurrencySearch + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + Order the jobs + """ + order: JobOrder = RECENTLY_CREATED + + """ + Whether or not the command job passed. Passing `false` will return all failed jobs (including "soft failed" jobs) + """ + passed: Boolean + priority: JobPrioritySearch + state: [JobStates!] + + """ + Filtering jobs based on related step information + """ + step: JobStepSearch + type: [JobTypes!] + ): JobConnection + + """ + Returns users within the organization + """ + members( + after: String + before: String + + """ + The primary email of the team member + """ + email: String + first: Int + last: Int + + """ + Order the members + """ + order: OrganizationMemberOrder = RECENTLY_CREATED + + """ + Search members by their role + """ + role: [OrganizationMemberRole!] + + """ + Search members named like the given query case insensitively + """ + search: String + security: OrganizationMemberSecurityInput + sso: OrganizationMemberSSOInput + + """ + Filter the members by team + """ + team: TeamSelector + ): OrganizationMemberConnection + + """ + Whether this organization requires 2FA to access (Please note that this is a + beta feature and is not yet available to all organizations.) + """ + membersRequireTwoFactorAuthentication: Boolean! + + """ + The name of the organization + """ + name: String! + permissions: OrganizationPermissions! + + """ + Return all the pipeline templates the current user has access to for this organization + """ + pipelineTemplates( + after: String + before: String + first: Int + last: Int + + """ + Order the pipeline templates + """ + order: PipelineTemplateOrder = NAME + ): PipelineTemplateConnection + + """ + Return all the pipelines the current user has access to for this organization + """ + pipelines( + after: String + + """ + Filter pipelines based on whether or not they've been archived. If not + provided, all pipelines are returned regardless of archived state. + """ + archived: Boolean + before: String + + """ + Filter pipelines by membership of a given cluster + """ + cluster: ID + + """ + Pass `false` to exclude pipelines that belong to a cluster + """ + clustered: Boolean = true + createdAtFrom: DateTime + createdAtTo: DateTime + + """ + Only return favorited pipelines + """ + favorite: Boolean + first: Int + last: Int + + """ + Order the pipelines + """ + order: PipelineOrders = RECENTLY_CREATED + repository: PipelineRepositoryInput + + """ + Search pipelines named like the given query case insensitively + """ + search: String + + """ + Filter pipelines with those that have particular tags + """ + tags: [String!] + + """ + Filter the pipelines by team + """ + team: TeamSelector + ): PipelineConnection + + """ + Whether this organization is visible to everyone, including people outside it + """ + public: Boolean! + + """ + API tokens with access to this organization will be automatically revoked + after this many seconds of inactivity. A `null` value indicates never revoke + inactive tokens. + """ + revokeInactiveTokensAfter: RevokeInactiveTokenPeriod + + """ + The slug used to represent the organization in URLs + """ + slug: String! + + """ + The single sign-on configuration of this organization + """ + sso: OrganizationSSO + + """ + Single sign on providers created for an organization + """ + ssoProviders( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + ): SSOProviderConnection + + """ + Return all the suite the current user has access to for this organization + """ + suites( + after: String + before: String + createdAtFrom: DateTime + createdAtTo: DateTime + first: Int + last: Int + + """ + Order the suites + """ + order: SuiteOrders = RECENTLY_CREATED + + """ + Search suites named like the given query case insensitively + """ + search: String + + """ + Filter the suites by team + """ + team: TeamSelector + ): SuiteConnection + + """ + Returns teams within the organization that the viewer can see + """ + teams( + after: String + before: String + first: Int + last: Int + + """ + Order the teams + """ + order: TeamOrder = NAME + + """ + Filter teams by pipeline + """ + pipeline: PipelineSelector + + """ + Search teams by their privacy + """ + privacy: [TeamPrivacy!] + + """ + Search teams + """ + search: String + + """ + Filter teams by user membership + """ + user: UserSelector + ): TeamConnection + + """ + Returns the resource usage data for this organization. + """ + usage( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Filter aggregations performed from this date + """ + aggregatedOnFrom: ISO8601Date + + """ + Filter aggregations performed until this date + """ + aggregatedOnTo: ISO8601Date + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + Filter results by the associated Pipeline ID + """ + pipelineIds: [ID!] = [] + + """ + Filter results by resource type + """ + resource: [ResourceUsageType!] = [JOB_MINUTES, TEST_EXECUTIONS] + + """ + Filter results by the associated Suite ID + """ + suiteIds: [ID!] = [] + ): UsageUnionConnection! + + """ + The public UUID for this organization + """ + uuid: String! +} + +""" +Information on user API Access Tokens which can access the Organization. Excludes the token attribute +""" +type OrganizationAPIAccessToken { + createdAt: DateTime! + + """ + A description of the token + """ + description: String + id: ID! + + """ + The IP address of the last request to the Buildkite API + """ + ipAddress: String + + """ + The last time the token was used to access the Buildkite API + """ + lastAccessedAt: DateTime + + """ + The user associated with this token + """ + owner: User + + """ + The organization scopes that the user's token has access to + """ + scopes: [APIAccessTokenScopes!]! + + """ + The public UUID for the API Access Token + """ + uuid: ID! +} + +""" +The connection type for OrganizationAPIAccessToken. +""" +type OrganizationAPIAccessTokenConnection { + """ + A list of edges. + """ + edges: [OrganizationAPIAccessTokenEdge] + + """ + A list of nodes. + """ + nodes: [OrganizationAPIAccessToken] + + """ + Information to aid in pagination. + """ + pageInfo: PageInfo! +} + +""" +An edge in a connection. +""" +type OrganizationAPIAccessTokenEdge { + """ + A cursor for use in pagination. + """ + cursor: String! + + """ + The item at the end of the edge. + """ + node: OrganizationAPIAccessToken +} + +""" +Autogenerated input type of OrganizationAPIAccessTokenRevokeMutation +""" +input OrganizationAPIAccessTokenRevokeMutationInput { + apiAccessTokenId: ID! + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + organizationId: ID! +} + +""" +Autogenerated return type of OrganizationAPIAccessTokenRevokeMutation. +""" +type OrganizationAPIAccessTokenRevokeMutationPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + revokedApiAccessTokenId: ID! +} + +""" +Autogenerated input type of OrganizationAPIIPAllowlistUpdateMutation +""" +input OrganizationAPIIPAllowlistUpdateMutationInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + ipAddresses: String! + organizationID: ID! +} + +""" +Autogenerated return type of OrganizationAPIIPAllowlistUpdateMutation. +""" +type OrganizationAPIIPAllowlistUpdateMutationPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + organization: Organization +} + +type OrganizationAuditEventConnection implements Connection { + count: Int! + edges: [OrganizationAuditEventEdge] + pageInfo: PageInfo +} + +type OrganizationAuditEventEdge { + cursor: String! + node: AuditEvent +} + +""" +The different orders you can sort audit events by +""" +enum OrganizationAuditEventOrders { + """ + Order by the most recently occurring events first + """ + RECENTLY_OCCURRED +} + +""" +System banner of an organization +""" +type OrganizationBanner implements Node { + id: ID! + + """ + The banner message + """ + message: String! + + """ + The UUID of the organization banner + """ + uuid: String! +} + +""" +The connection type for OrganizationBanner. +""" +type OrganizationBannerConnection { + """ + A list of edges. + """ + edges: [OrganizationBannerEdge] + + """ + A list of nodes. + """ + nodes: [OrganizationBanner] + + """ + Information to aid in pagination. + """ + pageInfo: PageInfo! +} + +""" +Autogenerated input type of OrganizationBannerDelete +""" +input OrganizationBannerDeleteInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + organizationId: ID! +} + +""" +Autogenerated return type of OrganizationBannerDelete. +""" +type OrganizationBannerDeletePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + deletedBannerId: ID! +} + +""" +An edge in a connection. +""" +type OrganizationBannerEdge { + """ + A cursor for use in pagination. + """ + cursor: String! + + """ + The item at the end of the edge. + """ + node: OrganizationBanner +} + +""" +Autogenerated input type of OrganizationBannerUpsert +""" +input OrganizationBannerUpsertInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + message: String! + organizationId: ID! +} + +""" +Autogenerated return type of OrganizationBannerUpsert. +""" +type OrganizationBannerUpsertPayload { + banner: OrganizationBanner! + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String +} + +type OrganizationConnection implements Connection { + count: Int! + edges: [OrganizationEdge] + pageInfo: PageInfo +} + +type OrganizationEdge { + cursor: String! + node: Organization +} + +""" +Autogenerated input type of OrganizationEnforceTwoFactorAuthenticationForMembersUpdateMutation +""" +input OrganizationEnforceTwoFactorAuthenticationForMembersUpdateMutationInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + membersRequireTwoFactorAuthentication: Boolean! + organizationId: ID! +} + +""" +Autogenerated return type of OrganizationEnforceTwoFactorAuthenticationForMembersUpdateMutation. +""" +type OrganizationEnforceTwoFactorAuthenticationForMembersUpdateMutationPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + organization: Organization! +} + +""" +A pending invitation to a user to join this organization +""" +type OrganizationInvitation implements Node { + """ + The time when the invitation was accepted + """ + acceptedAt: DateTime + + """ + The user that accepted this invite + """ + acceptedBy: User + + """ + The time when the invitation was created + """ + createdAt: DateTime + + """ + The user that added invited this email address + """ + createdBy: User + + """ + The email address of this invitation + """ + email: String! + + """ + The time when the invitation was automatically expired + """ + expiredAt: DateTime + id: ID! + organization: Organization + permissions: OrganizationInvitationPermissions! + + """ + The time when this invitation was revoked + """ + revokedAt: DateTime + + """ + The user that revoked this invitation + """ + revokedBy: User + + """ + The role the user will have in the organization once they've accepted the invitation + """ + role: OrganizationMemberRole! + + """ + The slug of the invitation that can be used to find an invitation in the query root + """ + slug: String! + sso: OrganizationInvitationSSOType! + + """ + The current state of the invitation + """ + state: OrganizationInvitationStates! + + """ + Teams that have been assigned to this invitation + """ + teams( + """ + Returns the first _n_ elements from the list. + """ + first: Int + ): OrganizationInvitationTeamAssignmentConnection + + """ + The UUID of the invitation + """ + uuid: String! +} + +type OrganizationInvitationConnection implements Connection { + count: Int! + edges: [OrganizationInvitationEdge] + pageInfo: PageInfo +} + +""" +Autogenerated input type of OrganizationInvitationCreate +""" +input OrganizationInvitationCreateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + emails: [String!]! + organizationID: ID! + role: OrganizationMemberRole + sso: OrganizationInvitationSSOInput + teams: [OrganizationInvitationTeamAssignmentInput!] +} + +""" +Autogenerated return type of OrganizationInvitationCreate. +""" +type OrganizationInvitationCreatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + invitationEdges: [OrganizationInvitationEdge] + organization: Organization +} + +type OrganizationInvitationEdge { + cursor: String! + node: OrganizationInvitation +} + +""" +The different orders you can sort organization invitations by +""" +enum OrganizationInvitationOrders { + """ + Order by email address alphabetically + """ + EMAIL + + """ + Order by the most recently created invitations first + """ + RECENTLY_CREATED +} + +""" +Permissions information about what actions the current user can do against this invitation +""" +type OrganizationInvitationPermissions { + """ + Whether the user can resend this invitation + """ + organizationInvitationResend: Permission + + """ + Whether the user can revoke this invitation + """ + organizationInvitationRevoke: Permission +} + +""" +Autogenerated input type of OrganizationInvitationResend +""" +input OrganizationInvitationResendInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of OrganizationInvitationResend. +""" +type OrganizationInvitationResendPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + organizationInvitation: OrganizationInvitation! +} + +""" +Autogenerated input type of OrganizationInvitationRevoke +""" +input OrganizationInvitationRevokeInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of OrganizationInvitationRevoke. +""" +type OrganizationInvitationRevokePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + organization: Organization! + organizationInvitation: OrganizationInvitation! + organizationInvitationEdge: OrganizationInvitationEdge! +} + +input OrganizationInvitationSSOInput { + mode: OrganizationMemberSSOModeEnum! +} + +""" +Information about the SSO setup for this invited organization member +""" +type OrganizationInvitationSSOType { + """ + The SSO mode of the invited organization member + """ + mode: OrganizationMemberSSOModeEnum +} + +""" +All the possible states that an organization invitation can be +""" +enum OrganizationInvitationStates { + """ + The invitation was accepted by the person it was sent to + """ + ACCEPTED + + """ + The invitation wasn't accepted and the link has expired + """ + EXPIRED + + """ + The invitation is waiting for a user to accept it + """ + PENDING + + """ + The invitation was revoked and can no longer be accepted + """ + REVOKED +} + +""" +A team that has been assigned to an invitation +""" +type OrganizationInvitationTeamAssignment { + id: ID! + + """ + The role that the user will have once they've accepted the invite + """ + role: TeamMemberRole! + + """ + The team that this assignment refers to + """ + team: Team! +} + +type OrganizationInvitationTeamAssignmentConnection implements Connection { + count: Int! + edges: [OrganizationInvitationTeamAssignmentEdge] + pageInfo: PageInfo +} + +type OrganizationInvitationTeamAssignmentEdge { + cursor: String! + node: OrganizationInvitationTeamAssignment +} + +""" +Used to assign teams to organization invitation in mutations +""" +input OrganizationInvitationTeamAssignmentInput { + """ + The ID of the team you want the user to join once they've accepted the invite + """ + id: ID! + + """ + The role in the team you want the user to have + """ + role: TeamMemberRole! +} + +""" +A member of an organization +""" +type OrganizationMember implements Node { + """ + Whether or not organizations are required to pay for this user + """ + complimentary: Boolean! + + """ + The time when this user was added to the organization + """ + createdAt: DateTime! + + """ + The user that added invited this user + """ + createdBy: User + id: ID! + organization: Organization! + permissions: OrganizationMemberPermissions! + + """ + Pipelines the user has access to within the organization + """ + pipelines( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + Order the pipelines returned + """ + order: PipelineOrders = RECENTLY_CREATED + + """ + Search within the pipelines the user has access to + """ + search: String + ): OrganizationMemberPipelineConnection! + + """ + The users role within the organization + """ + role: OrganizationMemberRole! + security: OrganizationMemberSecurity! + sso: OrganizationMemberSSO! + + """ + Teams that this user is a part of within the organization + """ + teams( + after: String + before: String + first: Int + last: Int + + """ + Order the members returned + """ + order: TeamMemberOrder = RECENTLY_CREATED + ): TeamMemberConnection! + user: User! + + """ + The public UUID for this organization member + """ + uuid: String! +} + +type OrganizationMemberConnection implements Connection { + count: Int! + edges: [OrganizationMemberEdge] + pageInfo: PageInfo +} + +""" +Autogenerated input type of OrganizationMemberDelete +""" +input OrganizationMemberDeleteInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of OrganizationMemberDelete. +""" +type OrganizationMemberDeletePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + deletedOrganizationMemberID: ID! + organization: Organization + user: User +} + +type OrganizationMemberEdge { + cursor: String! + node: OrganizationMember +} + +""" +The different orders you can sort members by +""" +enum OrganizationMemberOrder { + """ + Order by name alphabetically + """ + NAME + + """ + Order by the most recently created members first + """ + RECENTLY_CREATED + + """ + Order by relevance when searching for members + """ + RELEVANCE +} + +""" +Permissions information about what actions the current user can do against the organization membership record +""" +type OrganizationMemberPermissions { + """ + Whether the user can delete the user from the organization + """ + organizationMemberDelete: Permission + + """ + Whether the user can update the organization's members role information + """ + organizationMemberUpdate: Permission +} + +""" +Represents the connection between a user an a pipeline within an organization +""" +type OrganizationMemberPipeline { + """ + The pipeline the user has access to within the organization + """ + pipeline: Pipeline! +} + +type OrganizationMemberPipelineConnection implements Connection { + count: Int! + edges: [OrganizationMemberPipelineEdge] + pageInfo: PageInfo +} + +type OrganizationMemberPipelineEdge { + cursor: String! + node: OrganizationMemberPipeline +} + +""" +The roles a user can be within an organization +""" +enum OrganizationMemberRole { + """ + Has full access to the entire organization + """ + ADMIN + + """ + The user is a regular member of the organization + """ + MEMBER +} + +""" +Information about the SSO setup for this organization member +""" +type OrganizationMemberSSO { + """ + SSO authorizations provided by your organization that have been created for this user + """ + authorizations( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + Filter authorizations by state + """ + state: [SSOAuthorizationState!] + ): SSOAuthorizationConnection + + """ + The SSO mode of the organization member + """ + mode: OrganizationMemberSSOModeEnum +} + +input OrganizationMemberSSOInput { + mode: OrganizationMemberSSOModeEnum! +} + +""" +The SSO authorization modes you can use on a member +""" +enum OrganizationMemberSSOModeEnum { + """ + The member can either use SSO or their email & password + """ + OPTIONAL + + """ + The member must use SSO to access your organization + """ + REQUIRED +} + +""" +Information about what security settings the user has enabled in Buildkite +""" +type OrganizationMemberSecurity { + """ + If the user has secured their Buildkite user account with a password + """ + passwordProtected: Boolean! + + """ + If the user has enabled Two Factor Authentication + """ + twoFactorEnabled: Boolean! +} + +input OrganizationMemberSecurityInput { + passwordProtected: Boolean + twoFactorEnabled: Boolean +} + +""" +Autogenerated input type of OrganizationMemberUpdate +""" +input OrganizationMemberUpdateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! + role: OrganizationMemberRole + sso: OrganizationMemberSSOInput +} + +""" +Autogenerated return type of OrganizationMemberUpdate. +""" +type OrganizationMemberUpdatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + organizationMember: OrganizationMember +} + +""" +Permissions information about what actions the current user can do against the organization +""" +type OrganizationPermissions { + """ + Whether the user can create agent tokens + """ + agentTokenCreate: Permission + + """ + Whether the user can access agent tokens + """ + agentTokenView: Permission + + """ + Whether the user can create a see a list of agents in organization + """ + agentView: Permission + + """ + Whether the user can access audit events for the organization + """ + auditEventsView: Permission + + """ + Whether the user can change the notification services for the organization + """ + notificationServiceUpdate: Permission + + """ + Whether the user can view and manage billing for the organization + """ + organizationBillingUpdate: Permission + + """ + Whether the user can invite members from an organization + """ + organizationInvitationCreate: Permission + + """ + Whether the user can update/remove members from an organization + """ + organizationMemberUpdate: Permission + + """ + Whether the user can see members in the organization + """ + organizationMemberView: Permission + + """ + Whether the user can see sensitive information about members in the organization + """ + organizationMemberViewSensitive: Permission + + """ + Whether the user can change the organization name and related source code provider settings + """ + organizationUpdate: Permission + + """ + Whether the user can create a new pipeline in the organization + """ + pipelineCreate: Permission + + """ + Whether the user can create a new pipeline without adding it to any teams within the organization + """ + pipelineCreateWithoutTeams: Permission + + """ + Whether the user can create a see a list of pipelines in organization + """ + pipelineView: Permission + + """ + Whether the user can change SSO Providers for the organization + """ + ssoProviderCreate: Permission + + """ + Whether the user can change SSO Providers for the organization + """ + ssoProviderUpdate: Permission + + """ + Whether the user can create a see a list of suites in organization + """ + suiteView: Permission + + """ + Whether the user can administer one or all the teams in the organization + """ + teamAdmin: Permission + + """ + Whether the user can create teams for the organization + """ + teamCreate: Permission + + """ + Whether the user can toggle teams on/off for the organization + """ + teamEnabledChange: Permission + + """ + Whether the user can see teams in the organization + """ + teamView: Permission +} + +""" +Autogenerated input type of OrganizationRevokeInactiveTokensAfterUpdateMutation +""" +input OrganizationRevokeInactiveTokensAfterUpdateMutationInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + organizationId: ID! + revokeInactiveTokensAfter: RevokeInactiveTokenPeriod! +} + +""" +Autogenerated return type of OrganizationRevokeInactiveTokensAfterUpdateMutation. +""" +type OrganizationRevokeInactiveTokensAfterUpdateMutationPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + organization: Organization +} + +""" +Single sign-on settings for an organization +""" +type OrganizationSSO { + """ + Whether this account is configured for single sign-on + """ + isEnabled: Boolean! + + """ + The single sign-on provider for this organization + """ + provider: OrganizationSSOProvider +} + +""" +Single sign-on provider information for an organization +""" +type OrganizationSSOProvider { + name: String! +} + +""" +Information about pagination in a connection. +""" +type PageInfo { + """ + When paginating forwards, the cursor to continue. + """ + endCursor: String + + """ + When paginating forwards, are there more items? + """ + hasNextPage: Boolean! + + """ + When paginating backwards, are there more items? + """ + hasPreviousPage: Boolean! + + """ + When paginating backwards, the cursor to continue. + """ + startCursor: String +} + +""" +The result of checking a permissions +""" +type Permission { + allowed: Boolean! + code: String + message: String +} + +""" +A pipeline +""" +type Pipeline implements Node { + """ + Whether existing builds can be rebuilt as new builds. + """ + allowRebuilds: Boolean + + """ + Whether this pipeline has been archived + """ + archived: Boolean! + + """ + The time when the pipeline was archived + """ + archivedAt: DateTime + + """ + The user that archived this pipeline + """ + archivedBy: User + + """ + A branch filter pattern to limit which pushed branches trigger builds on this pipeline. + """ + branchConfiguration: String + + """ + Choose to keep builds or remove them after a set time period. Pipelines are + scanned once a day for builds that can be removed according to these settings. + """ + buildRetentionEnabled: Boolean @deprecated(reason: "Build retention is now determined by your billing plan. This field is no longer used and always returns null.") + + """ + The minimum number of builds to keep in the pipeline regardless of how old the builds are. + """ + buildRetentionNumber: Int @deprecated(reason: "Build retention is now determined by your billing plan. This field is no longer used and always returns null.") + + """ + How long is a build kept before it is automatically removed. + """ + buildRetentionPeriod: BuildRetentionPeriods @deprecated(reason: "Build retention is now determined by your billing plan. This field is no longer used and always returns null.") + + """ + Returns the builds for this pipeline + """ + builds( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Use `%default` to search by the Pipelines default branch + """ + branch: [String!] + commit: [String!] + createdAtFrom: DateTime + createdAtTo: DateTime + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + metaData: [String!] + state: [BuildStates!] + ): BuildConnection + + """ + When a new build is created on a branch, any previous builds that are running + on the same branch will be automatically cancelled + """ + cancelIntermediateBuilds: Boolean! + + """ + Limit which branches build cancelling applies to, for example `!main` will + ensure that the main branch won't have it's builds automatically cancelled. + """ + cancelIntermediateBuildsBranchFilter: String + cluster: Cluster + + """ + The color of the pipeline + """ + color: String + + """ + The shortest length to which any git commit ID may be truncated while guaranteeing referring to a unique commit + """ + commitShortLength: Int! + + """ + The time when the pipeline was created + """ + createdAt: DateTime + + """ + The user who created the pipeline + """ + createdBy: User + + """ + The default branch for this pipeline + """ + defaultBranch: String + + """ + The default timeout in minutes for all command steps in this pipeline. This can still be overridden in any command step + """ + defaultTimeoutInMinutes: Int + + """ + The short description of the pipeline + """ + description: String + + """ + The emoji of the pipeline + """ + emoji: String + + """ + Returns true if the viewer has favorited this pipeline + """ + favorite: Boolean! + id: ID! + jobs( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + agentQueryRules: [String!] + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + concurrency: JobConcurrencySearch + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + Order the jobs + """ + order: JobOrder = RECENTLY_CREATED + + """ + Whether or not the command job passed. Passing `false` will return all failed jobs (including "soft failed" jobs) + """ + passed: Boolean + priority: JobPrioritySearch + state: [JobStates!] + + """ + Filtering jobs based on related step information + """ + step: JobStepSearch + type: [JobTypes!] + ): JobConnection + + """ + The maximum timeout in minutes for all command steps in this pipeline. Any + command step without a timeout or with a timeout greater than this value will + be set to this value. + """ + maximumTimeoutInMinutes: Int + metrics(first: Int, last: Int): PipelineMetricConnection + + """ + The name of the pipeline + """ + name: String! + + """ + The next build number in the sequence + """ + nextBuildNumber: Int! + organization: Organization! + permissions: PipelinePermissions! + pipelineTemplate: PipelineTemplate + + """ + Whether this pipeline is visible to everyone, including people outside this organization + """ + public: Boolean! @deprecated(reason: "Use `visibility`") + + """ + The repository for this pipeline + """ + repository: Repository + + """ + Schedules for this pipeline + """ + schedules(first: Int): PipelineScheduleConnection + + """ + When a new build is created on a branch, any previous builds that haven't yet + started on the same branch will be automatically marked as skipped. + """ + skipIntermediateBuilds: Boolean! + + """ + Limit which branches build skipping applies to, for example `!main` will + ensure that the main branch won't have it's builds automatically skipped. + """ + skipIntermediateBuildsBranchFilter: String + + """ + The slug of the pipeline + """ + slug: String! + steps: PipelineSteps + + """ + Tags that have been given to this pipeline + """ + tags: [PipelineTag!]! + + """ + Teams associated with this pipeline + """ + teams( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + Order the pipelines returned + """ + order: TeamPipelineOrder = RECENTLY_CREATED + + """ + Search for teams associated that this pipeline is assigned to + """ + search: String + ): TeamPipelineConnection + + """ + The URL for the pipeline + """ + url: String! + + """ + The UUID of the pipeline + """ + uuid: String! + + """ + Whether this pipeline is visible to everyone, including people outside this organization + """ + visibility: PipelineVisibility! + + """ + The URL to use in your repository settings for commit webhooks + """ + webhookURL: String! +} + +""" +The access levels that can be assigned to a pipeline +""" +enum PipelineAccessLevels { + """ + Allows builds and read only + """ + BUILD_AND_READ + + """ + Allows edits, builds and reads + """ + MANAGE_BUILD_AND_READ + + """ + Read only - no builds or edits + """ + READ_ONLY +} + +""" +Autogenerated input type of PipelineArchive +""" +input PipelineArchiveInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of PipelineArchive. +""" +type PipelineArchivePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + pipeline: Pipeline! +} + +type PipelineConnection implements Connection { + count: Int! + edges: [PipelineEdge] + pageInfo: PageInfo +} + +""" +Autogenerated input type of PipelineCreate +""" +input PipelineCreateInput { + """ + If existing builds can be rebuilt as new builds. + """ + allowRebuilds: Boolean = true + + """ + A branch filter pattern to limit which pushed branches trigger builds on this pipeline. + """ + branchConfiguration: String + + """ + If intermediate builds should be canceled as new builds are created + """ + cancelIntermediateBuilds: Boolean + + """ + A branch filter to scope which builds this is applied to + """ + cancelIntermediateBuildsBranchFilter: String + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + The GraphQL ID of the cluster you want to use for the pipeline + """ + clusterId: ID + + """ + A color hex code to represent this pipeline. + """ + color: String + + """ + The default branch used to show statistics about the build + """ + defaultBranch: String = "main" + + """ + The default timeout in minutes for all command steps in this pipeline. This can still be overridden in any command step. + """ + defaultTimeoutInMinutes: Int + + """ + A description of this pipeline. + """ + description: String + + """ + An emoji to represent this pipeline. + """ + emoji: String + + """ + The maximum timeout in minutes for all command steps in this pipeline. Any + command step without a timeout or with a timeout greater than this value will + be set to this value. + """ + maximumTimeoutInMinutes: Int + + """ + The `graphql_name` of the pipeline. + """ + name: String! + + """ + The initial build number to use in the sequence + """ + nextBuildNumber: Int + organizationId: ID! + + """ + The GraphQL ID of the pipeline template you want to use for the pipeline + """ + pipelineTemplateId: ID + + """ + A source code repository that will back this pipeline + """ + repository: PipelineRepositoryInput! + + """ + If intermediate builds should be skipped as new builds are created + """ + skipIntermediateBuilds: Boolean + + """ + A branch filter to scope which builds this is applied to + """ + skipIntermediateBuildsBranchFilter: String + + """ + Steps used by this pipeline defined as YAML + """ + steps: PipelineStepsInput + + """ + Tags you want this pipeline to have + """ + tags: [PipelineTagInput!] + + """ + Which teams this pipeline should be assigned to + """ + teams: [PipelineTeamAssignmentInput!] + + """ + The visibility of the pipeline, either PUBLIC or PRIVATE. + """ + visibility: PipelineVisibility = PRIVATE +} + +""" +Autogenerated return type of PipelineCreate. +""" +type PipelineCreatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + cluster: Cluster + organization: Organization! + pipeline: Pipeline! + pipelineEdge: PipelineEdge! + pipelineTemplate: PipelineTemplate +} + +""" +Autogenerated input type of PipelineCreateWebhook +""" +input PipelineCreateWebhookInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of PipelineCreateWebhook. +""" +type PipelineCreateWebhookPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + pipelineID: ID! +} + +""" +Autogenerated input type of PipelineDelete +""" +input PipelineDeleteInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of PipelineDelete. +""" +type PipelineDeletePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + deletedPipelineID: ID! + organization: Organization! +} + +type PipelineEdge { + cursor: String! + node: Pipeline +} + +""" +Autogenerated input type of PipelineFavorite +""" +input PipelineFavoriteInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + favorite: Boolean! + id: ID! +} + +""" +Autogenerated return type of PipelineFavorite. +""" +type PipelineFavoritePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + pipeline: Pipeline +} + +""" +A metric for a pipeline +""" +type PipelineMetric implements Node { + id: ID! + + """ + The label of this metric + """ + label: ID! + + """ + The URL for this metric + """ + url: String + + """ + The value for this metric + """ + value: String +} + +type PipelineMetricConnection implements Connection { + count: Int! + edges: [PipelineMetricEdge] + pageInfo: PageInfo +} + +type PipelineMetricEdge { + cursor: String! + node: PipelineMetric +} + +""" +The different orders you can sort pipelines by +""" +enum PipelineOrders { + """ + Order by name alphabetically + """ + NAME + + """ + Order by favorites first alphabetically, then the rest of the pipelines alphabetically + """ + NAME_WITH_FAVORITES_FIRST + + """ + Order by the most recently created pipelines first + """ + RECENTLY_CREATED + + """ + Order by relevance when searching for pipelines + """ + RELEVANCE +} + +""" +Permission information about what actions the current user can do against the pipeline +""" +type PipelinePermissions { + """ + Whether the user can create builds on this pipeline + """ + buildCreate: Permission! + + """ + Whether the user can delete this pipeline + """ + pipelineDelete: Permission! + + """ + Whether the user can favorite this pipeline + """ + pipelineFavorite: Permission! + + """ + Whether the user can create schedules on this pipeline + """ + pipelineScheduleCreate: Permission! + + """ + Whether the user can edit the settings of this pipeline + """ + pipelineUpdate: Permission! +} + +""" +Repository information for a pipeline +""" +input PipelineRepositoryInput { + """ + The remote URL for this repository i.e. git@github.com:foo/bar.git + """ + url: String! +} + +""" +Autogenerated input type of PipelineRotateWebhookURL +""" +input PipelineRotateWebhookURLInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of PipelineRotateWebhookURL. +""" +type PipelineRotateWebhookURLPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + pipeline: Pipeline! +} + +""" +A schedule of when a build should automatically triggered for a Pipeline +""" +type PipelineSchedule implements Node { + """ + The branch to use for builds that this schedule triggers. Defaults to to the default branch in the Pipeline + """ + branch: String + + """ + Returns the builds created by this schedule + """ + builds( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + ): BuildConnection + + """ + The commit to use for builds that this schedule triggers. Defaults to `HEAD` + """ + commit: String + + """ + The time when this schedule was created + """ + createdAt: DateTime + createdBy: User + + """ + A definition of the trigger build schedule in cron syntax + """ + cronline: String! + + """ + If this Pipeline schedule is currently enabled + """ + enabled: Boolean + + """ + Environment variables passed to any triggered builds + """ + env: [String!] + + """ + The time when this schedule failed + """ + failedAt: DateTime + + """ + If the last attempt at triggering this scheduled build fails, this will be the reason + """ + failedMessage: String + id: ID! + + """ + A short description of the Pipeline schedule + """ + label: String! + + """ + The message to use for builds that this schedule triggers + """ + message: String + + """ + The time when this schedule will create a build next + """ + nextBuildAt: DateTime + permissions: PipelineSchedulePermissions! + pipeline: Pipeline + + """ + The UUID of the Pipeline schedule + """ + uuid: String! +} + +type PipelineScheduleConnection implements Connection { + count: Int! + edges: [PipelineScheduleEdge] + pageInfo: PageInfo +} + +""" +Autogenerated input type of PipelineScheduleCreate +""" +input PipelineScheduleCreateInput { + branch: String + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + commit: String + cronline: String + enabled: Boolean + env: String + label: String + message: String + pipelineID: ID! +} + +""" +Autogenerated return type of PipelineScheduleCreate. +""" +type PipelineScheduleCreatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + pipeline: Pipeline! + pipelineScheduleEdge: PipelineScheduleEdge! +} + +""" +Autogenerated input type of PipelineScheduleDelete +""" +input PipelineScheduleDeleteInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of PipelineScheduleDelete. +""" +type PipelineScheduleDeletePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + deletedPipelineScheduleID: ID! + pipeline: Pipeline +} + +type PipelineScheduleEdge { + cursor: String! + node: PipelineSchedule +} + +""" +Permission information about what actions the current user can do against the pipeline schedule +""" +type PipelineSchedulePermissions { + """ + Whether the user can delete the schedule + """ + pipelineScheduleDelete: Permission + + """ + Whether the user can update the schedule + """ + pipelineScheduleUpdate: Permission +} + +""" +Autogenerated input type of PipelineScheduleUpdate +""" +input PipelineScheduleUpdateInput { + branch: String + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + commit: String + cronline: String + enabled: Boolean + env: String + id: ID! + label: String + message: String +} + +""" +Autogenerated return type of PipelineScheduleUpdate. +""" +type PipelineScheduleUpdatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + pipelineSchedule: PipelineSchedule! +} + +""" +A Pipeline identifier using a slug, and optionally negated with a leading `!` +""" +scalar PipelineSelector + +""" +Steps defined on a pipeline +""" +type PipelineSteps { + """ + A YAML representation of the pipeline steps + """ + yaml: YAML +} + +""" +Step definition for a pipeline +""" +input PipelineStepsInput { + """ + A YAML representation of the steps in this pipeline. This is formatted the same as `buildkite-agent pipeline upload + """ + yaml: String! +} + +""" +A tag associated with a pipeline +""" +type PipelineTag { + """ + The label for this tag + """ + label: String! +} + +""" +Tag associated with a pipeline +""" +input PipelineTagInput { + """ + The label of this tag + """ + label: String! +} + +""" +Used to assign teams to pipelines +""" +input PipelineTeamAssignmentInput { + """ + The access level members within the team have to the pipeline + """ + accessLevel: PipelineAccessLevels = MANAGE_BUILD_AND_READ + + """ + The ID of the team you want to be assigned + """ + id: ID! +} + +""" +A template defining a fixed step configuration for a pipeline +""" +type PipelineTemplate implements Node { + """ + If the pipeline template is available for assignment by non admin users + """ + available: Boolean! + + """ + A YAML representation of the step configuration + """ + configuration: YAML! + + """ + The time when the template was created + """ + createdAt: DateTime! + + """ + The user who created the template + """ + createdBy: User! + + """ + The short description of the template + """ + description: String + id: ID! + + """ + The name of the template + """ + name: String! + + """ + The last time the template was changed + """ + updatedAt: DateTime! + + """ + The user who last updated the template + """ + updatedBy: User! + + """ + The UUID for the template + """ + uuid: ID! +} + +type PipelineTemplateConnection implements Connection { + count: Int! + edges: [PipelineTemplateEdge] + pageInfo: PageInfo +} + +""" +Autogenerated input type of PipelineTemplateCreate +""" +input PipelineTemplateCreateInput { + """ + If the pipeline template is available for assignment by non admin users + """ + available: Boolean = false + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + YAML step configuration for the pipeline template + """ + configuration: String! + + """ + Description for the pipeline template + """ + description: String + + """ + Name for the pipeline template + """ + name: String! + organizationId: ID! +} + +""" +Autogenerated return type of PipelineTemplateCreate. +""" +type PipelineTemplateCreatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + pipelineTemplate: PipelineTemplate! +} + +""" +Autogenerated input type of PipelineTemplateDelete +""" +input PipelineTemplateDeleteInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! + organizationId: ID! +} + +""" +Autogenerated return type of PipelineTemplateDelete. +""" +type PipelineTemplateDeletePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + deletedPipelineTemplateId: ID! +} + +type PipelineTemplateEdge { + cursor: String! + node: PipelineTemplate +} + +""" +The different orders you can sort pipeline templates by +""" +enum PipelineTemplateOrder { + """ + Order by name alphabetically + """ + NAME + + """ + Order by the most recently created pipeline templates first + """ + RECENTLY_CREATED +} + +""" +Autogenerated input type of PipelineTemplateUpdate +""" +input PipelineTemplateUpdateInput { + """ + If the pipeline template is available for assignment by non admin users + """ + available: Boolean + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + YAML step configuration for the pipeline template + """ + configuration: String + + """ + Description for the pipeline template + """ + description: String + id: ID! + + """ + Name for the pipeline template + """ + name: String + organizationId: ID! +} + +""" +Autogenerated return type of PipelineTemplateUpdate. +""" +type PipelineTemplateUpdatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + pipelineTemplate: PipelineTemplate! +} + +""" +Autogenerated input type of PipelineUnarchive +""" +input PipelineUnarchiveInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of PipelineUnarchive. +""" +type PipelineUnarchivePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + pipeline: Pipeline! +} + +""" +Autogenerated input type of PipelineUpdate +""" +input PipelineUpdateInput { + """ + If existing builds can be rebuilt as new builds. + """ + allowRebuilds: Boolean = true + + """ + Whether or not this pipeline should be archived. This field is deprecated and + will be removed on 2022-06-01. Use ArchivePipeline and UnarchivePipeline + mutations instead. + """ + archived: Boolean + + """ + A branch filter pattern to limit which pushed branches trigger builds on this pipeline. + """ + branchConfiguration: String + + """ + If intermediate builds should be canceled as new builds are created + """ + cancelIntermediateBuilds: Boolean + + """ + A branch filter to scope which builds this is applied to + """ + cancelIntermediateBuildsBranchFilter: String + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + The GraphQL ID of the cluster you want to update for the pipeline + """ + clusterId: ID + + """ + A color hex code to represent this pipeline. + """ + color: String + + """ + The default branch used to show statistics about the build + """ + defaultBranch: String + + """ + The default timeout in minutes for all command steps in this pipeline. This can still be overridden in any command step. + """ + defaultTimeoutInMinutes: Int + + """ + A description of this pipeline. + """ + description: String + + """ + An emoji to represent this pipeline. + """ + emoji: String + id: ID! + + """ + The maximum timeout in minutes for all command steps in this pipeline. Any + command step without a timeout or with a timeout greater than this value will + be set to this value. + """ + maximumTimeoutInMinutes: Int + + """ + The `graphql_name` of the pipeline. + """ + name: String + + """ + The next build number to use in the sequence + """ + nextBuildNumber: Int + + """ + The GraphQL ID of the pipeline template you want to apply to this pipeline + """ + pipelineTemplateId: ID + + """ + A source code repository that will back this pipeline + """ + repository: PipelineRepositoryInput + + """ + If intermediate builds should be skipped as new builds are created + """ + skipIntermediateBuilds: Boolean + + """ + A branch filter to scope which builds this is applied to + """ + skipIntermediateBuildsBranchFilter: String + + """ + Steps used by this pipeline defined as YAML + """ + steps: PipelineStepsInput + + """ + Tags you want this pipeline to have + """ + tags: [PipelineTagInput!] + + """ + The visibility of the pipeline, either PUBLIC or PRIVATE. + """ + visibility: PipelineVisibility +} + +""" +Autogenerated return type of PipelineUpdate. +""" +type PipelineUpdatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + pipeline: Pipeline! +} + +""" +The visibility of the pipeline +""" +enum PipelineVisibility { + """ + The pipeline is private + """ + PRIVATE + + """ + The pipeline is public + """ + PUBLIC +} + +""" +A pull request on a provider +""" +type PullRequest { + id: String! +} + +""" +The query root for this schema +""" +type Query { + """ + Find an agent by its slug + """ + agent( + """ + The UUID for the agent, prefixed by its organization's slug i.e. `acme-inc/0bd5ea7c-89b3-4f40-8ca3-ffac805771eb` + """ + slug: ID! + ): Agent + + """ + Find an agent token by its slug + """ + agentToken( + """ + The UUID for the agent token, prefixed by its organization's slug i.e. `acme-inc/0bd5ea7c-89b3-4f40-8ca3-ffac805771eb` + """ + slug: ID! + ): AgentToken + + """ + Find a API Access Token code + """ + apiAccessTokenCode( + """ + The code provided by the Auth API + """ + code: ID! + ): APIAccessTokenCode + + """ + Find an artifact by its UUID + """ + artifact(uuid: ID!): Artifact + + """ + Find an audit event via its uuid + """ + auditEvent( + """ + The UUID for the audit event i.e. `0bd5ea7c-89b3-4f40-8ca3-ffac805771eb` + """ + uuid: ID! + ): AuditEvent + + """ + Find a build + """ + build( + """ + The number of the build, prefixed with its organization and pipeline. i.e. `acme-inc/my-pipeline/123` + """ + slug: ID + + """ + The UUID of the build + """ + uuid: ID + ): Build + + """ + Find a GraphQL snippet + """ + graphQLSnippet( + """ + The UUID for this GraphQL snippet + """ + uuid: String! + ): GraphQLSnippet + + """ + Find a build job + """ + job(uuid: ID!): Job + + """ + Fetches an object given its ID. + """ + node( + """ + ID of the object. + """ + id: ID! + ): Node + + """ + Find a notification service via its UUID + """ + notificationService( + """ + The UUID for the notification service i.e. `0bd5ea7c-89b3-4f40-8ca3-ffac805771eb` + """ + uuid: ID! + ): NotificationService + + """ + Find an organization + """ + organization( + """ + The slug of the organization + """ + slug: ID + + """ + The UUID of the organization + """ + uuid: ID + ): Organization + + """ + Find an organization invitation via its slug + """ + organizationInvitation( + """ + The UUID for the invitation, prefixed by its organization's slug i.e. `acme-inc/0bd5ea7c-89b3-4f40-8ca3-ffac805771eb` + """ + slug: ID! + ): OrganizationInvitation + + """ + Find an organization membership via its slug + """ + organizationMember( + """ + The UUID for the membership, prefixed by its organization's slug i.e. `acme-inc/0bd5ea7c-89b3-4f40-8ca3-ffac805771eb` + """ + slug: ID! + ): OrganizationMember + + """ + Find a pipeline + """ + pipeline( + """ + The slug of the pipeline, prefixed with its organization. i.e. `acme-inc/my-pipeline` + """ + slug: ID + + """ + The UUID of the pipeline + """ + uuid: ID + ): Pipeline + + """ + Find a pipeline schedule by its slug + """ + pipelineSchedule( + """ + The UUID for the pipeline schedule, prefixed by its organization and + pipeline's slug i.e. + `acme-inc/my-pipeline/0bd5ea7c-89b3-4f40-8ca3-ffac805771eb` + """ + slug: ID! + ): PipelineSchedule + + """ + Find a pipeline template + """ + pipelineTemplate( + """ + The UUID of the pipeline template + """ + uuid: ID! + ): PipelineTemplate + + """ + Find an sso provider either using it's slug, or UUID + """ + ssoProvider( + """ + The slug for the sso provider, prefixed by its organization's slug i.e. `acme-inc/0bd5ea7c-89b3-4f40-8ca3-ffac805771eb` + """ + slug: ID + + """ + The UUID of the sso provider + """ + uuid: ID + ): SSOProvider + + """ + Find a team + """ + team( + """ + The slug of the team, prefixed with its organization. i.e. `acme-inc/awesome-team` + """ + slug: ID! + ): Team + + """ + Context of the current user using the GraphQL API + """ + viewer: Viewer +} + +""" +A recovery code +""" +type RecoveryCode { + """ + The recovery code. + """ + code: String! + + """ + Whether the recovery codes is used + """ + consumed: Boolean! + + """ + Foo + """ + consumedAt: String +} + +""" +A batch of recovery codes +""" +type RecoveryCodeBatch { + """ + Whether the batch of recovery codes is active + """ + active: Boolean! + + """ + The recovery codes from this batch. Codes are consumed when used, and codes + will be included in this list whether consumed or not + """ + codes: [RecoveryCode!]! + id: ID! +} + +""" +A repository associated with a pipeline +""" +type Repository { + """ + The repository’s provider + """ + provider: RepositoryProvider + + """ + The git URL for this repository + """ + url: String! +} + +interface RepositoryProvider { + """ + The name of the provider + """ + name: String! + + """ + This URL to the provider’s web interface + """ + url: String + + """ + The URL to use when setting up webhooks from the provider to trigger Buildkite builds + """ + webhookUrl: String +} + +""" +A pipeline's repository is being provided by Beanstalk +""" +type RepositoryProviderBeanstalk implements RepositoryProvider { + """ + The name of the provider + """ + name: String! + + """ + This URL to the provider’s web interface + """ + url: String + + """ + The URL to use when setting up webhooks from the provider to trigger Buildkite builds + """ + webhookUrl: String +} + +""" +A pipeline's repository is being provided by Bitbucket +""" +type RepositoryProviderBitbucket implements RepositoryProvider { + """ + The name of the provider + """ + name: String! + + """ + This URL to the provider’s web interface + """ + url: String + + """ + The URL to use when setting up webhooks from the provider to trigger Buildkite builds + """ + webhookUrl: String +} + +""" +A pipeline's repository is being provided by Bitbucket Server +""" +type RepositoryProviderBitbucketServer implements RepositoryProvider { + """ + The name of the provider + """ + name: String! + + """ + This URL to the provider’s web interface + """ + url: String + + """ + The URL to use when setting up webhooks from the provider to trigger Buildkite builds + """ + webhookUrl: String +} + +""" +A pipeline's repository is being provided by Codebase +""" +type RepositoryProviderCodebase implements RepositoryProvider { + """ + The name of the provider + """ + name: String! + + """ + This URL to the provider’s web interface + """ + url: String + + """ + The URL to use when setting up webhooks from the provider to trigger Buildkite builds + """ + webhookUrl: String +} + +""" +A pipeline's repository is being provided by GitHub +""" +type RepositoryProviderGithub implements RepositoryProvider { + """ + The name of the provider + """ + name: String! + + """ + This URL to the provider’s web interface + """ + url: String + + """ + The URL to use when setting up webhooks from the provider to trigger Buildkite builds + """ + webhookUrl: String +} + +""" +A pipeline's repository is being provided by GitHub Enterprise +""" +type RepositoryProviderGithubEnterprise implements RepositoryProvider { + """ + The name of the provider + """ + name: String! + + """ + This URL to the provider’s web interface + """ + url: String + + """ + The URL to use when setting up webhooks from the provider to trigger Buildkite builds + """ + webhookUrl: String +} + +""" +A pipeline's repository is being provided by GitLab +""" +type RepositoryProviderGitlab implements RepositoryProvider { + """ + The name of the provider + """ + name: String! + + """ + This URL to the provider’s web interface + """ + url: String + + """ + The URL to use when setting up webhooks from the provider to trigger Buildkite builds + """ + webhookUrl: String +} + +""" +A pipeline's repository is being provided by GitLab Community Edition +""" +type RepositoryProviderGitlabCommunity implements RepositoryProvider { + """ + The name of the provider + """ + name: String! + + """ + This URL to the provider’s web interface + """ + url: String + + """ + The URL to use when setting up webhooks from the provider to trigger Buildkite builds + """ + webhookUrl: String +} + +""" +A pipeline's repository is being provided by GitLab Enterprise Edition +""" +type RepositoryProviderGitlabEnterprise implements RepositoryProvider { + """ + The name of the provider + """ + name: String! + + """ + This URL to the provider’s web interface + """ + url: String + + """ + The URL to use when setting up webhooks from the provider to trigger Buildkite builds + """ + webhookUrl: String +} + +""" +A pipeline's repository is being provided by a service unknown to Buildkite +""" +type RepositoryProviderUnknown implements RepositoryProvider { + """ + The name of the provider + """ + name: String! + + """ + This URL to the provider’s web interface + """ + url: String + + """ + The URL to use when setting up webhooks from the provider to trigger Buildkite builds + """ + webhookUrl: String +} + +""" +An aggregate of resource usage, grouped by day and resource. +""" +interface ResourceUsageInterface { + aggregatedOn: ISO8601Date! +} + +""" +All types of billable resources +""" +enum ResourceUsageType { + """ + These records represent a pipeline's job minutes usage for a single day + """ + JOB_MINUTES + + """ + These records represent a suite's test executions usage for a single day + """ + TEST_EXECUTIONS +} + +""" +API tokens with access to this organization will be automatically revoked after this many days of inactivity. +""" +enum RevokeInactiveTokenPeriod { + """ + Revoke organization access from API tokens after 180 days of inactivity + """ + DAYS_180 + + """ + Revoke organization access from API tokens after 30 days of inactivity + """ + DAYS_30 + + """ + Revoke organization access from API tokens after 365 days of inactivity + """ + DAYS_365 + + """ + Revoke organization access from API tokens after 60 days of inactivity + """ + DAYS_60 + + """ + Revoke organization access from API tokens after 90 days of inactivity + """ + DAYS_90 + + """ + Never revoke organization access from inactive API tokens + """ + NEVER +} + +type SCMPipelineSettings { + id: ID! +} + +type SCMRepositoryHost { + id: ID! +} + +type SCMService { + id: ID! +} + +type SSOAuthorization { + """ + The time when this SSO Authorization was created + """ + createdAt: DateTime! + + """ + The time when this SSO Authorization was expired + """ + expiredAt: DateTime + id: ID! + + """ + Details around the identity provided by the SSO provider + """ + identity: SSOAuthorizationIdentity + + """ + The time when this SSO Authorization was manually revoked + """ + revokedAt: DateTime + + """ + The SSO provider associated with this authorization + """ + ssoProvider: SSOProvider! + + """ + The current state of the SSO Authorization + """ + state: SSOAuthorizationState! + + """ + The user associated with this authorization + """ + user: User + + """ + The time when this SSO Authorization was destroyed because the user logged out + """ + userSessionDestroyedAt: DateTime + + """ + The public UUID for this SSO authorization + """ + uuid: String! +} + +type SSOAuthorizationConnection implements Connection { + count: Int! + edges: [SSOAuthorizationEdge] + pageInfo: PageInfo +} + +type SSOAuthorizationEdge { + cursor: String! + node: SSOAuthorization +} + +type SSOAuthorizationIdentity { + """ + The avatar URL provided in this identity + """ + avatarURL: String + + """ + The email addresses provided in this identity + """ + email: String + + """ + The name provided in this identity + """ + name: String + + """ + The identifier provided in this identity + """ + uid: String +} + +""" +All the possible states an SSO Authorization +""" +enum SSOAuthorizationState { + """ + The authorization has been verified and is in use + """ + VERIFIED + + """ + The authorization was verified but has since expired + """ + VERIFIED_EXPIRED + + """ + The authorization was verified but has since been manually revoked + """ + VERIFIED_REVOKED + + """ + The authorization was verified but has since been destroyed as the user logged out of that session + """ + VERIFIED_USER_SESSION_DESTROYED +} + +interface SSOProvider { + """ + The time when this SSO Provider was created + """ + createdAt: DateTime! + + """ + The user that created this SSO Provider + """ + createdBy: User! + + """ + The time when this SSO Provider was disabled + """ + disabledAt: DateTime + + """ + The user that disabled this SSO Provider + """ + disabledBy: User + + """ + The reason this SSO Provider was disabled + """ + disabledReason: String + + """ + An email domain whose addresses should be offered this SSO Provider during login. + """ + emailDomain: String + emailDomainVerificationAddress: String + emailDomainVerifiedAt: DateTime + + """ + The time when this SSO Provider was enabled + """ + enabledAt: DateTime + + """ + The user that enabled this SSO Provider + """ + enabledBy: User + id: ID! + + """ + An extra message that can be added the Authorization screen of an SSO Provider + """ + note: String + organization: Organization + + """ + Defaults to false. If true, users are required to re-authenticate when their IP address changes. + """ + pinSessionToIpAddress: Boolean + + """ + How long a session should last before requiring re-authorization. A `null` value indicates an infinite session. + """ + sessionDurationInHours: Int + + """ + The current state of the SSO Provider + """ + state: SSOProviderStates! + + """ + Whether the SSO Provider requires a test authorization. If true, the provider can not yet be activated. + """ + testAuthorizationRequired: Boolean + + """ + The type of SSO Provider + """ + type: SSOProviderTypes! + + """ + The authorization URL for this SSO Provider + """ + url: String! + + """ + The UUID for this SSO Provider + """ + uuid: ID! +} + +type SSOProviderConnection implements Connection { + count: Int! + edges: [SSOProviderEdge] + pageInfo: PageInfo +} + +""" +Autogenerated input type of SSOProviderCreate +""" +input SSOProviderCreateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + digestMethod: SSOProviderSAMLXMLSecurity + discloseGoogleHostedDomain: Boolean + emailDomain: String + emailDomainVerificationAddress: String + githubOrganizationName: String + googleHostedDomain: String + identityProvider: SSOProviderSAMLIdP + note: String + organizationId: ID! + + """ + When enabled, users will be required to re-authenticate if their IP address + changes. This feature is only available for some billing plans. + """ + pinSessionToIpAddress: Boolean + sessionDurationInHours: Int + signatureMethod: SSOProviderSAMLRSAXMLSecurity + type: SSOProviderTypes! +} + +""" +Autogenerated return type of SSOProviderCreate. +""" +type SSOProviderCreatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + organization: Organization! + ssoProvider: SSOProvider! + ssoProviderEdge: SSOProviderEdge! +} + +""" +Autogenerated input type of SSOProviderDelete +""" +input SSOProviderDeleteInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of SSOProviderDelete. +""" +type SSOProviderDeletePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + deletedSSOProviderId: ID! + organization: Organization! +} + +""" +Autogenerated input type of SSOProviderDisable +""" +input SSOProviderDisableInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + disabledReason: String + id: ID! +} + +""" +Autogenerated return type of SSOProviderDisable. +""" +type SSOProviderDisablePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + ssoProvider: SSOProvider! +} + +type SSOProviderEdge { + cursor: String! + node: SSOProvider +} + +""" +Autogenerated input type of SSOProviderEnable +""" +input SSOProviderEnableInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of SSOProviderEnable. +""" +type SSOProviderEnablePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + ssoProvider: SSOProvider! +} + +""" +Single sign-on provided by GitHub +""" +type SSOProviderGitHubApp implements Node & SSOProvider { + """ + The time when this SSO Provider was created + """ + createdAt: DateTime! + + """ + The user that created this SSO Provider + """ + createdBy: User! + + """ + The time when this SSO Provider was disabled + """ + disabledAt: DateTime + + """ + The user that disabled this SSO Provider + """ + disabledBy: User + + """ + The reason this SSO Provider was disabled + """ + disabledReason: String + + """ + An email domain whose addresses should be offered this SSO Provider during login. + """ + emailDomain: String + emailDomainVerificationAddress: String + emailDomainVerifiedAt: DateTime + + """ + The time when this SSO Provider was enabled + """ + enabledAt: DateTime + + """ + The user that enabled this SSO Provider + """ + enabledBy: User + + """ + The name of the organization on GitHub that the user must be in for an SSO authorization to be verified + """ + githubOrganizationName: String! + id: ID! + + """ + An extra message that can be added the Authorization screen of an SSO Provider + """ + note: String + organization: Organization + + """ + Defaults to false. If true, users are required to re-authenticate when their IP address changes. + """ + pinSessionToIpAddress: Boolean + + """ + How long a session should last before requiring re-authorization. A `null` value indicates an infinite session. + """ + sessionDurationInHours: Int + + """ + The current state of the SSO Provider + """ + state: SSOProviderStates! + + """ + Whether the SSO Provider requires a test authorization. If true, the provider can not yet be activated. + """ + testAuthorizationRequired: Boolean + + """ + The type of SSO Provider + """ + type: SSOProviderTypes! + + """ + The authorization URL for this SSO Provider + """ + url: String! + + """ + The UUID for this SSO Provider + """ + uuid: ID! +} + +""" +Single sign-on provided by Google +""" +type SSOProviderGoogleGSuite implements Node & SSOProvider { + """ + The time when this SSO Provider was created + """ + createdAt: DateTime! + + """ + The user that created this SSO Provider + """ + createdBy: User! + + """ + The time when this SSO Provider was disabled + """ + disabledAt: DateTime + + """ + The user that disabled this SSO Provider + """ + disabledBy: User + + """ + The reason this SSO Provider was disabled + """ + disabledReason: String + + """ + Whether or not the hosted domain should be presented to the user during SSO + """ + discloseGoogleHostedDomain: Boolean! + + """ + An email domain whose addresses should be offered this SSO Provider during login. + """ + emailDomain: String + emailDomainVerificationAddress: String + emailDomainVerifiedAt: DateTime + + """ + The time when this SSO Provider was enabled + """ + enabledAt: DateTime + + """ + The user that enabled this SSO Provider + """ + enabledBy: User + + """ + The Google hosted domain that is required to be present in OAuth + """ + googleHostedDomain: String! + id: ID! + + """ + An extra message that can be added the Authorization screen of an SSO Provider + """ + note: String + organization: Organization + + """ + Defaults to false. If true, users are required to re-authenticate when their IP address changes. + """ + pinSessionToIpAddress: Boolean + + """ + How long a session should last before requiring re-authorization. A `null` value indicates an infinite session. + """ + sessionDurationInHours: Int + + """ + The current state of the SSO Provider + """ + state: SSOProviderStates! + + """ + Whether the SSO Provider requires a test authorization. If true, the provider can not yet be activated. + """ + testAuthorizationRequired: Boolean + + """ + The type of SSO Provider + """ + type: SSOProviderTypes! + + """ + The authorization URL for this SSO Provider + """ + url: String! + + """ + The UUID for this SSO Provider + """ + uuid: ID! +} + +""" +Single sign-on provided via SAML +""" +type SSOProviderSAML implements Node & SSOProvider { + """ + The time when this SSO Provider was created + """ + createdAt: DateTime! + + """ + The user that created this SSO Provider + """ + createdBy: User! + + """ + The algorithm used to calculate the digest value during a SAML exchange + """ + digestMethod: SSOProviderSAMLXMLSecurity! + + """ + The time when this SSO Provider was disabled + """ + disabledAt: DateTime + + """ + The user that disabled this SSO Provider + """ + disabledBy: User + + """ + The reason this SSO Provider was disabled + """ + disabledReason: String + + """ + An email domain whose addresses should be offered this SSO Provider during login. + """ + emailDomain: String + emailDomainVerificationAddress: String + emailDomainVerifiedAt: DateTime + + """ + The time when this SSO Provider was enabled + """ + enabledAt: DateTime + + """ + The user that enabled this SSO Provider + """ + enabledBy: User + id: ID! + + """ + Information about the IdP + """ + identityProvider: SSOProviderSAMLIdPType + + """ + An extra message that can be added the Authorization screen of an SSO Provider + """ + note: String + organization: Organization + + """ + Defaults to false. If true, users are required to re-authenticate when their IP address changes. + """ + pinSessionToIpAddress: Boolean + serviceProvider: SSOProviderSAMLSPType! + + """ + How long a session should last before requiring re-authorization. A `null` value indicates an infinite session. + """ + sessionDurationInHours: Int + + """ + The algorithm used to calculate the signature value during a SAML exchange + """ + signatureMethod: SSOProviderSAMLRSAXMLSecurity! + + """ + The current state of the SSO Provider + """ + state: SSOProviderStates! + + """ + Whether the SSO Provider requires a test authorization. If true, the provider can not yet be activated. + """ + testAuthorizationRequired: Boolean + + """ + The type of SSO Provider + """ + type: SSOProviderTypes! + + """ + The authorization URL for this SSO Provider + """ + url: String! + + """ + The UUID for this SSO Provider + """ + uuid: ID! +} + +input SSOProviderSAMLIdP { + certificate: String + issuer: String + metadata: SSOProviderSAMLIdPMetadata + ssoURL: String +} + +input SSOProviderSAMLIdPMetadata { + url: String + xml: XML +} + +""" +Information about the IdP for a SAML SSO Provider +""" +type SSOProviderSAMLIdPType { + """ + The certificated provided by the IdP + """ + certificate: String + + """ + The IdP Issuer value for this SSO Provider + """ + issuer: String + + """ + The metadata used to configure this SSO provider if it was provided + """ + metadata: SSOProviderSAMLMetadataType + + """ + The name of the IdP Service. Returns nil if no name can be guessed from the SSO URL + """ + name: String + + """ + The IdP SSO URL for this SSO Provider + """ + ssoURL: String +} + +""" +SAML metadata used for configuration +""" +type SSOProviderSAMLMetadataType { + """ + The URL that this metadata can be publicly accessed at + """ + url: String + + """ + The XML for this metadata + """ + xml: XML +} + +""" +XML RSA security algorithms used in the SAML exchange +""" +enum SSOProviderSAMLRSAXMLSecurity { + """ + http://www.w3.org/2000/09/xmldsig#rsa-sha1 + """ + RSA_SHA1 + + """ + http://www.w3.org/2001/04/xmldsig-more#rsa-sha256 + """ + RSA_SHA256 + + """ + http://www.w3.org/2001/04/xmldsig-more#rsa-sha384 + """ + RSA_SHA384 + + """ + http://www.w3.org/2001/04/xmldsig-more#rsa-sha512 + """ + RSA_SHA512 +} + +""" +Information about Buildkite as a SAML Service Provider +""" +type SSOProviderSAMLSPType { + """ + The IdP Issuer value for this SSO Provider + """ + issuer: String + + """ + The metadata used to configure this SSO provider if it was provided + """ + metadata: SSOProviderSAMLMetadataType + + """ + The IdP SSO URL for this SSO Provider + """ + ssoURL: String +} + +""" +XML security algorithms used in the SAML exchange +""" +enum SSOProviderSAMLXMLSecurity { + """ + http://www.w3.org/2000/09/xmldsig#sha1 + """ + SHA1 + + """ + http://www.w3.org/2001/04/xmlenc#sha256 + """ + SHA256 + + """ + http://www.w3.org/2001/04/xmldsig-more#sha384 + """ + SHA384 + + """ + http://www.w3.org/2001/04/xmlenc#sha512 + """ + SHA512 +} + +""" +All the possible states an SSO Provider can be in +""" +enum SSOProviderStates { + """ + The SSO Provider has been created, but has not been enabled for use yet + """ + CREATED + + """ + The SSO Provider has been disabled and can't be used directly + """ + DISABLED + + """ + The SSO Provider has been setup correctly and can be used by users + """ + ENABLED +} + +""" +All the possible SSO Provider types +""" +enum SSOProviderTypes { + """ + A SSO Provider configured to use a GitHub App for authorization + """ + GITHUB_APP + + """ + A SSO Provider configured to use Google G Suite for authorization + """ + GOOGLE_GSUITE + + """ + An SSO Provider configured to use SAML + """ + SAML +} + +""" +Autogenerated input type of SSOProviderUpdate +""" +input SSOProviderUpdateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + digestMethod: SSOProviderSAMLXMLSecurity + discloseGoogleHostedDomain: Boolean + emailDomain: String + emailDomainVerificationAddress: String + githubOrganizationName: String + googleHostedDomain: String + id: ID! + identityProvider: SSOProviderSAMLIdP + note: String + + """ + When enabled, users will be required to re-authenticate if their IP address + changes. This feature is only available for some billing plans. + """ + pinSessionToIpAddress: Boolean + sessionDurationInHours: Int + signatureMethod: SSOProviderSAMLRSAXMLSecurity +} + +""" +Autogenerated return type of SSOProviderUpdate. +""" +type SSOProviderUpdatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + ssoProvider: SSOProvider! +} + +interface Step { + """ + The conditional evaluated for this step + """ + conditional: String + + """ + Dependencies of this job + """ + dependencies( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + ): DependencyConnection + + """ + The user-defined key for this step + """ + key: String + + """ + The UUID for this step + """ + uuid: String! +} + +""" +A step in a build that runs a command on an agent +""" +type StepCommand implements Step { + """ + The conditional evaluated for this step + """ + conditional: String + + """ + Dependencies of this job + """ + dependencies( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + ): DependencyConnection + + """ + The user-defined key for this step + """ + key: String + + """ + The UUID for this step + """ + uuid: String! +} + +""" +An input step collects information from a user +""" +type StepInput implements Step { + """ + The conditional evaluated for this step + """ + conditional: String + + """ + Dependencies of this job + """ + dependencies( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + ): DependencyConnection + + """ + The user-defined key for this step + """ + key: String + + """ + The UUID for this step + """ + uuid: String! +} + +""" +A trigger step creates a build on another pipeline +""" +type StepTrigger implements Step { + """ + The conditional evaluated for this step + """ + conditional: String + + """ + Dependencies of this job + """ + dependencies( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + ): DependencyConnection + + """ + The user-defined key for this step + """ + key: String + + """ + The UUID for this step + """ + uuid: String! +} + +""" +A wait step waits for all previous steps to have successfully completed before allowing following jobs to continue +""" +type StepWait implements Step { + """ + The conditional evaluated for this step + """ + conditional: String + + """ + Dependencies of this job + """ + dependencies( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + ): DependencyConnection + + """ + The user-defined key for this step + """ + key: String + + """ + The UUID for this step + """ + uuid: String! +} + +type Subscription { + id: ID! +} + +""" +A suite +""" +type Suite implements Node { + """ + The time when the suite was created + """ + createdAt: DateTime + + """ + The default branch for this suite + """ + defaultBranch: String + id: ID! + + """ + The name of the suite + """ + name: String! + organization: Organization! + + """ + The slug of the suite + """ + slug: String! + + """ + Teams associated with this suite + """ + teams( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + Order the suites returned + """ + order: TeamSuiteOrder = RECENTLY_CREATED + + """ + Search for teams associated that this suite is assigned to + """ + search: String + ): TeamSuiteConnection + + """ + The URL for the suite + """ + url: String! + uuid: String! +} + +""" +The access levels that can be assigned to a suite +""" +enum SuiteAccessLevels { + """ + Allows edits and reads + """ + MANAGE_AND_READ + + """ + Read only + """ + READ_ONLY +} + +type SuiteConnection implements Connection { + count: Int! + edges: [SuiteEdge] + pageInfo: PageInfo +} + +type SuiteEdge { + cursor: String! + node: Suite +} + +""" +The different orders you can sort suites by +""" +enum SuiteOrders { + """ + Order by name alphabetically + """ + NAME + + """ + Order by the most recently created suites first + """ + RECENTLY_CREATED + + """ + Order by relevance when searching for suites + """ + RELEVANCE +} + +""" +A TOTP configuration +""" +type TOTP { + id: ID! + + """ + The recovery code batch associated with this TOTP configuration + """ + recoveryCodes: RecoveryCodeBatch! + + """ + Whether the TOTP configuration has been verified yet + """ + verified: Boolean! +} + +""" +Autogenerated input type of TOTPActivate +""" +input TOTPActivateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! + + """ + The current one-time password associated with this TOTP configuration. + """ + token: String! +} + +""" +Autogenerated return type of TOTPActivate. +""" +type TOTPActivatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + totp: TOTP! + viewer: Viewer! +} + +""" +Autogenerated input type of TOTPCreate +""" +input TOTPCreateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String +} + +""" +Autogenerated return type of TOTPCreate. +""" +type TOTPCreatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + The URI to enter into your one-time password generator. Usually presented to the user as a QR Code + """ + provisioningUri: String! + totp: TOTP! +} + +""" +Autogenerated input type of TOTPDelete +""" +input TOTPDeleteInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of TOTPDelete. +""" +type TOTPDeletePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + viewer: Viewer! +} + +""" +Autogenerated input type of TOTPRecoveryCodesRegenerate +""" +input TOTPRecoveryCodesRegenerateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + The ID of the TOTP to generate the Recovery Codes for + """ + totpId: ID! +} + +""" +Autogenerated return type of TOTPRecoveryCodesRegenerate. +""" +type TOTPRecoveryCodesRegeneratePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + recoveryCodes: RecoveryCodeBatch! + totp: TOTP! +} + +""" +An organization team +""" +type Team implements Node { + """ + The time when this team was created + """ + createdAt: DateTime! + + """ + The user that created this team + """ + createdBy: User + + """ + New organization members will be granted this role on this team + """ + defaultMemberRole: TeamMemberRole! + + """ + A description of the team + """ + description: String + id: ID! + + """ + Add new organization members to this team by default + """ + isDefaultTeam: Boolean! + + """ + Users that are part of this team + """ + members( + after: String + before: String + first: Int + last: Int + + """ + Order the members returned + """ + order: TeamMemberOrder = RECENTLY_CREATED + + """ + Search team members by their role + """ + role: [TeamMemberRole!] + + """ + Search team members named like the given query case insensitively + """ + search: String + ): TeamMemberConnection + + """ + Whether or not team members can create new pipelines in this team + """ + membersCanCreatePipelines: Boolean! + + """ + Whether or not team members can delete pipelines in this team + """ + membersCanDeletePipelines: Boolean! @deprecated(reason: "This property has been removed without replacement") + + """ + The name of the team + """ + name: String! + + """ + The organization that this team is a part of + """ + organization: Organization + permissions: TeamPermissions! + + """ + Pipelines associated with this team + """ + pipelines( + after: String + before: String + first: Int + last: Int + + """ + Order the pipelines returned + """ + order: TeamPipelineOrder = RECENTLY_CREATED + + """ + Search pipelines named like the given query case insensitively + """ + search: String + ): TeamPipelineConnection + + """ + The privacy setting for this team + """ + privacy: TeamPrivacy! + + """ + The slug of the team + """ + slug: String! + + """ + Suites associated with this team + """ + suites( + after: String + before: String + first: Int + last: Int + + """ + Order the suites returned + """ + order: TeamSuiteOrder = RECENTLY_CREATED + ): TeamSuiteConnection + + """ + The public UUID for this team + """ + uuid: ID! +} + +type TeamConnection implements Connection { + count: Int! + edges: [TeamEdge] + pageInfo: PageInfo +} + +""" +Autogenerated input type of TeamCreate +""" +input TeamCreateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + New organization members will be granted this role on this team + """ + defaultMemberRole: TeamMemberRole! + description: String + + """ + Add new organization members to this team by default + """ + isDefaultTeam: Boolean! + + """ + If members in this team can create pipelines in it + """ + membersCanCreatePipelines: Boolean = true + + """ + Deprecated: If members in this team can delete pipelines assigned to it + """ + membersCanDeletePipelines: Boolean = true + name: String! + organizationID: ID! + + """ + The privacy setting for this team + """ + privacy: TeamPrivacy! +} + +""" +Autogenerated return type of TeamCreate. +""" +type TeamCreatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + organization: Organization! + teamEdge: TeamEdge! +} + +""" +Autogenerated input type of TeamDelete +""" +input TeamDeleteInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of TeamDelete. +""" +type TeamDeletePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + deletedTeamID: ID! + organization: Organization! +} + +type TeamEdge { + cursor: String! + node: Team +} + +""" +An member of a team +""" +type TeamMember implements Node { + """ + The time when the team member was added + """ + createdAt: DateTime! + + """ + The user that added this team member + """ + createdBy: User + id: ID! + + """ + The organization member associated with this team member + """ + organizationMember: OrganizationMember + permissions: TeamMemberPermissions! + + """ + The users role within the team + """ + role: TeamMemberRole! + + """ + The team associated with this team member + """ + team: Team + + """ + The user associated with this team member + """ + user: User + + """ + The public UUID for this team member + """ + uuid: ID! +} + +type TeamMemberConnection implements Connection { + count: Int! + edges: [TeamMemberEdge] + pageInfo: PageInfo +} + +""" +Autogenerated input type of TeamMemberCreate +""" +input TeamMemberCreateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + If no role is specified, the team member will be assigned the team's default role. + """ + role: TeamMemberRole + teamID: ID! + userID: ID! +} + +""" +Autogenerated return type of TeamMemberCreate. +""" +type TeamMemberCreatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + team: Team + teamMemberEdge: TeamMemberEdge +} + +""" +Autogenerated input type of TeamMemberDelete +""" +input TeamMemberDeleteInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of TeamMemberDelete. +""" +type TeamMemberDeletePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + deletedTeamMemberID: ID! + team: Team +} + +type TeamMemberEdge { + cursor: String! + node: TeamMember +} + +""" +The different orders you can sort team members by +""" +enum TeamMemberOrder { + """ + Order by name alphabetically + """ + NAME + + """ + Order by the most recently added members first + """ + RECENTLY_CREATED + + """ + Order by most relevant results when doing a search + """ + RELEVANCE +} + +""" +Permissions information about what actions the current user can do against the team membership record +""" +type TeamMemberPermissions { + """ + Whether the user can delete the user from the team + """ + teamMemberDelete: Permission + + """ + Whether the user can update the team's members admin status + """ + teamMemberUpdate: Permission +} + +""" +The roles a user can be within a team +""" +enum TeamMemberRole { + """ + The user can manage pipelines and users within the team + """ + MAINTAINER + + """ + The user is a regular member of the team + """ + MEMBER +} + +""" +Autogenerated input type of TeamMemberUpdate +""" +input TeamMemberUpdateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! + role: TeamMemberRole! +} + +""" +Autogenerated return type of TeamMemberUpdate. +""" +type TeamMemberUpdatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + teamMember: TeamMember! +} + +""" +The different orders you can sort teams by +""" +enum TeamOrder { + """ + Order by name alphabetically + """ + NAME + + """ + Order by the most recently created teams first + """ + RECENTLY_CREATED + + """ + Order by relevance when searching for teams + """ + RELEVANCE +} + +""" +Permissions information about what actions the current user can do against the team +""" +type TeamPermissions { + """ + Whether the user can see the pipelines within the team + """ + pipelineView: Permission + + """ + Whether the user can delete the team + """ + teamDelete: Permission + + """ + Whether the user can administer add members from the organization to this team + """ + teamMemberCreate: Permission + + """ + Whether the user can add pipelines from other teams to this one + """ + teamPipelineCreate: Permission + + """ + Whether the user can add suites from other teams to this one + """ + teamSuiteCreate: Permission + + """ + Whether the user can update the team's name and description + """ + teamUpdate: Permission +} + +""" +An pipeline that's been assigned to a team +""" +type TeamPipeline implements Node { + """ + The access level users have to this pipeline + """ + accessLevel: PipelineAccessLevels! + + """ + The time when the pipeline was added + """ + createdAt: DateTime! + + """ + The user that added this pipeline to the team + """ + createdBy: User + id: ID! + permissions: TeamPipelinePermissions! + + """ + The pipeline associated with this team member + """ + pipeline: Pipeline + + """ + The team associated with this team member + """ + team: Team + + """ + The public UUID for this team member + """ + uuid: ID! +} + +""" +A collection of TeamPipeline records +""" +type TeamPipelineConnection implements Connection { + count: Int! + edges: [TeamPipelineEdge] + pageInfo: PageInfo +} + +""" +Autogenerated input type of TeamPipelineCreate +""" +input TeamPipelineCreateInput { + accessLevel: PipelineAccessLevels = READ_ONLY + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + pipelineID: ID! + teamID: ID! +} + +""" +Autogenerated return type of TeamPipelineCreate. +""" +type TeamPipelineCreatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + pipeline: Pipeline + team: Team + teamPipeline: TeamPipeline + teamPipelineEdge: TeamPipelineEdge +} + +""" +Autogenerated input type of TeamPipelineDelete +""" +input TeamPipelineDeleteInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + force: Boolean + id: ID! +} + +""" +Autogenerated return type of TeamPipelineDelete. +""" +type TeamPipelineDeletePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + deletedTeamPipelineID: ID! + team: Team +} + +type TeamPipelineEdge { + cursor: String! + node: TeamPipeline +} + +""" +The different orders you can sort pipelines by +""" +enum TeamPipelineOrder { + """ + Order by name alphabetically + """ + NAME + + """ + Order by the most recently added pipelines first + """ + RECENTLY_CREATED + + """ + Order by most relevant results when doing a search + """ + RELEVANCE +} + +""" +Permission information about what actions the current user can do against the team pipelines +""" +type TeamPipelinePermissions { + """ + Whether the user can delete the pipeline from the team + """ + teamPipelineDelete: Permission + + """ + Whether the user can update the pipeline connection to the team + """ + teamPipelineUpdate: Permission +} + +""" +Autogenerated input type of TeamPipelineUpdate +""" +input TeamPipelineUpdateInput { + accessLevel: PipelineAccessLevels! + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of TeamPipelineUpdate. +""" +type TeamPipelineUpdatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + teamPipeline: TeamPipeline! +} + +""" +Whether a team is visible or secret within an organization +""" +enum TeamPrivacy { + """ + Visible to organization administrators and members + """ + SECRET + + """ + Visible to all members of the organization + """ + VISIBLE +} + +""" +A Team identifier using a slug, and optionally negated with a leading `!` +""" +scalar TeamSelector + +""" +A suite that's been assigned to a team +""" +type TeamSuite implements Node { + """ + The access level users have to this suite + """ + accessLevel: SuiteAccessLevels! + + """ + The time when the suite was added + """ + createdAt: DateTime! + + """ + The user that added this suite to the team + """ + createdBy: User + id: ID! + permissions: TeamSuitePermissions! + + """ + The suite associated with this team member + """ + suite: Suite + + """ + The team associated with this team member + """ + team: Team + + """ + The public UUID for this team suite + """ + uuid: String! +} + +""" +A collection of TeamSuite records +""" +type TeamSuiteConnection implements Connection { + count: Int! + edges: [TeamSuiteEdge] + pageInfo: PageInfo +} + +""" +Autogenerated input type of TeamSuiteCreate +""" +input TeamSuiteCreateInput { + accessLevel: SuiteAccessLevels = READ_ONLY + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + suiteID: ID! + teamID: ID! +} + +""" +Autogenerated return type of TeamSuiteCreate. +""" +type TeamSuiteCreatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + suite: Suite + team: Team + teamSuite: TeamSuite + teamSuiteEdge: TeamSuiteEdge +} + +""" +Autogenerated input type of TeamSuiteDelete +""" +input TeamSuiteDeleteInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + force: Boolean + id: ID! +} + +""" +Autogenerated return type of TeamSuiteDelete. +""" +type TeamSuiteDeletePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + deletedTeamSuiteID: ID! + team: Team +} + +type TeamSuiteEdge { + cursor: String! + node: TeamSuite +} + +""" +The different orders you can sort suites by +""" +enum TeamSuiteOrder { + """ + Order by name alphabetically + """ + NAME + + """ + Order by the most recently added suites first + """ + RECENTLY_CREATED + + """ + Order by most relevant results when doing a search + """ + RELEVANCE +} + +""" +Permission information about what actions the current user can do against the team suites +""" +type TeamSuitePermissions { + """ + Whether the user can delete the suite from the team + """ + teamSuiteDelete: Permission + + """ + Whether the user can update the suite connection to the team + """ + teamSuiteUpdate: Permission +} + +""" +Autogenerated input type of TeamSuiteUpdate +""" +input TeamSuiteUpdateInput { + accessLevel: SuiteAccessLevels! + + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + id: ID! +} + +""" +Autogenerated return type of TeamSuiteUpdate. +""" +type TeamSuiteUpdatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + teamSuite: TeamSuite! +} + +""" +Autogenerated input type of TeamUpdate +""" +input TeamUpdateInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + New organization members will be granted this role on this team + """ + defaultMemberRole: TeamMemberRole! + description: String + id: ID! + + """ + Add new organization members to this team by default + """ + isDefaultTeam: Boolean! + + """ + If members in this team can create pipelines in it + """ + membersCanCreatePipelines: Boolean + + """ + Deprecated: If members in this team can delete pipelines assigned to it + """ + membersCanDeletePipelines: Boolean = true + name: String! + + """ + The privacy setting for this team + """ + privacy: TeamPrivacy +} + +""" +Autogenerated return type of TeamUpdate. +""" +type TeamUpdatePayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + team: Team! +} + +""" +A record of test executions usage, aggregated by day and test suite. +""" +type TestExecutionsUsage implements ResourceUsageInterface { + aggregatedOn: ISO8601Date! + + """ + The recorded usage. + """ + executions: Int! + suite: Suite + suiteId: ID! +} + +""" +A person who hasn’t signed up to Buildkite +""" +type UnregisteredUser { + avatar: Avatar! + + """ + The email for the user + """ + email: String + + """ + The name of the user + """ + name: String +} + +""" +The possible resource usage types +""" +union UsageUnion = JobMinutesUsage | TestExecutionsUsage + +""" +The connection type for UsageUnion. +""" +type UsageUnionConnection { + """ + A list of edges. + """ + edges: [UsageUnionEdge] + + """ + A list of nodes. + """ + nodes: [UsageUnion] + + """ + Information to aid in pagination. + """ + pageInfo: PageInfo! +} + +""" +An edge in a connection. +""" +type UsageUnionEdge { + """ + A cursor for use in pagination. + """ + cursor: String! + + """ + The item at the end of the edge. + """ + node: UsageUnion +} + +""" +A user +""" +type User implements Node { + avatar: Avatar! + + """ + If this user account is an official bot managed by Buildkite + """ + bot: Boolean! + + """ + Returns builds that this user has created. + """ + builds(branch: [String!], first: Int, last: Int, metaData: [String!], state: [BuildStates!]): BuildConnection + + """ + The primary email for the user + """ + email: String! + + """ + Does the user have a password set + """ + hasPassword: Boolean! + id: ID! + + """ + The name of the user + """ + name: String! + + """ + The public UUID of the user + """ + uuid: String! +} + +""" +A User identifier using a UUID, and optionally negated with a leading `!` +""" +scalar UserSelector + +""" +Represents the current user session +""" +type Viewer implements Node { + authorizations( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + type: [AuthorizationType!] + ): AuthorizationConnection + builds(branch: String, first: Int, last: Int, metaData: [String!], state: [BuildStates!]): BuildConnection + changelogs(first: Int, last: Int, read: Boolean): ChangelogConnection + + """ + Emails associated with the current user + """ + emails( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + Filter by whether the email is verified or not + """ + verified: Boolean + ): EmailConnection + + """ + The ID of the current user + """ + id: ID! + jobs( + after: String + agentQueryRules: [String!] + before: String + first: Int + last: Int + + """ + Order the jobs + """ + order: JobOrder = RECENTLY_CREATED + priority: JobPrioritySearch + state: [JobStates!] + type: [JobTypes!] + ): JobConnection + notice(namespace: NoticeNamespaces!, scope: String!): Notice + organizations(first: Int, last: Int): OrganizationConnection + + """ + The current user's permissions + """ + permissions: ViewerPermissions! + + """ + The user's active TOTP configuration, if any. + + This field is private, requires an escalated session, and cannot be accessed via the public GraphQL API. + """ + totp(id: ID): TOTP + + """ + The current user + """ + user: User +} + +""" +Permissions information about what actions the current user can do +""" +type ViewerPermissions { + """ + Whether the viewer can configure two-factor authentication + """ + totpConfigure: Permission! +} + +""" +A blob of XML represented as a pretty formatted string +""" +scalar XML + +""" +A blob of YAML +""" +scalar YAML diff --git a/scripts/update-schema.sh b/scripts/update-schema.sh new file mode 100644 index 000000000000..806ff363ae2a --- /dev/null +++ b/scripts/update-schema.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +curl https://raw.githubusercontent.com/buildkite/docs/main/data/graphql/schema.graphql >schema.graphql diff --git a/src/api/withBuildkiteClient.tsx b/src/api/withBuildkiteClient.tsx new file mode 100644 index 000000000000..4b008abc8e72 --- /dev/null +++ b/src/api/withBuildkiteClient.tsx @@ -0,0 +1,49 @@ +import { GraphQLClient } from "graphql-request"; +import { useMemo, useState } from "react"; +import { Detail, environment, MenuBarExtra } from "@raycast/api"; +import { getSdk } from "../generated/graphql"; +import getPreferences from "../utils/preferences"; + +let buildkite: ReturnType | null = null; + +export function withBuildkiteClient(component: JSX.Element) { + const [x, forceRerender] = useState(0); + + // we use a `useMemo` instead of `useEffect` to avoid a render + useMemo(() => { + (async function () { + const { token } = getPreferences(); + + buildkite = getSdk( + new GraphQLClient("https://graphql.buildkite.com/v1", { + headers: { authorization: `Bearer ${token}` }, + }), + ); + + forceRerender(x + 1); + })(); + }, []); + + if (!buildkite) { + if (environment.commandMode === "view") { + // Using the component makes the placeholder buggy + return ; + } else if (environment.commandMode === "menu-bar") { + return ; + } else { + console.error("`withBuildkiteClient` is only supported in `view` and `menu-bar` mode"); + + return null; + } + } + + return component; +} + +export function getBuildkiteClient() { + if (!buildkite) { + throw new Error("getBuildkiteClient must be used when authenticated"); + } + + return buildkite; +} diff --git a/src/buildkite.graphql b/src/buildkite.graphql new file mode 100644 index 000000000000..1be48a76340d --- /dev/null +++ b/src/buildkite.graphql @@ -0,0 +1,65 @@ +fragment Build on Build { + id + branch + createdAt + message + number + state + url + pipeline { + name + } +} + +query myBuilds { + viewer { + user { + builds(first: 20) { + edges { + node { + ...Build + } + } + } + } + } +} + +query listBuilds($pipeline: ID!) { + pipeline(slug: $pipeline) { + builds(first: 20) { + edges { + node { + ...Build + } + } + } + } +} + +fragment Pipeline on Pipeline { + slug + name + description + favorite + url + builds(first: 1) { + edges { + node { + state + } + } + } +} + +query searchPipelines($org: ID!, $search: String) { + organization(slug: $org) { + pipelines(first: 20, archived: false, order: NAME_WITH_FAVORITES_FIRST, search: $search) { + edges { + node { + ...Pipeline + } + } + } + } +} diff --git a/src/components/BuildListItem.tsx b/src/components/BuildListItem.tsx new file mode 100644 index 000000000000..209a0a2a0130 --- /dev/null +++ b/src/components/BuildListItem.tsx @@ -0,0 +1,34 @@ +import { Action, ActionPanel, List } from "@raycast/api"; +import { unblockPipeline } from "../components/UnblockPipeline"; +import { BuildFragment } from "../generated/graphql"; +import { timeAgo } from "../utils/format"; +import { getStateIcon } from "../utils/states"; + +interface BuildListItemProps { + build: BuildFragment; +} + +export function BuildListItem({ build }: BuildListItemProps) { + return ( + + + + unblockPipeline(build.pipeline.name, build.number)} + /> + + } + /> + ); +} diff --git a/src/components/Builds.tsx b/src/components/Builds.tsx new file mode 100644 index 000000000000..cdb1f1fb2c61 --- /dev/null +++ b/src/components/Builds.tsx @@ -0,0 +1,51 @@ +import { getPreferenceValues, List } from "@raycast/api"; +import { useCachedPromise } from "@raycast/utils"; +import { getBuildkiteClient } from "../api/withBuildkiteClient"; +import { BuildFragment } from "../generated/graphql"; +import { truthy } from "../utils/truthy"; +import { BuildListItem } from "./BuildListItem"; + +function groupBranches(acc: Record, node: BuildFragment) { + acc[node.branch] = [...(acc[node.branch] ?? []), node]; + return acc; +} + +const preferences = getPreferenceValues<{ favoriteBranches: string }>(); +const favoriteBranches = new Set(preferences.favoriteBranches.split(",").map((branch) => branch.trim())); + +function sortBranches(a: [string, BuildFragment[]], b: [string, BuildFragment[]]) { + const hasA = favoriteBranches.has(a[0]); + const hasB = favoriteBranches.has(b[0]); + + return hasA && !hasB ? -1 : hasB && !hasA ? 1 : 0; +} + +interface BuildsProps { + pipeline: string; +} + +export function Builds({ pipeline }: BuildsProps) { + const buildkite = getBuildkiteClient(); + const { data, isLoading } = useCachedPromise( + async (pipeline: string) => { + const result = await buildkite.listBuilds({ pipeline }); + return result.pipeline?.builds?.edges?.map((edge) => edge?.node).filter(truthy); + }, + [pipeline], + { keepPreviousData: true }, + ); + + const branches = Object.entries((data ?? []).reduce(groupBranches, {})).sort(sortBranches); + + return ( + + {branches.map(([name, builds]) => ( + + {builds.map((build) => ( + + ))} + + ))} + + ); +} diff --git a/src/components/PipelineListItem.tsx b/src/components/PipelineListItem.tsx new file mode 100644 index 000000000000..470c355b7173 --- /dev/null +++ b/src/components/PipelineListItem.tsx @@ -0,0 +1,36 @@ +import { ActionPanel, Color, getPreferenceValues, Icon, List, Action } from "@raycast/api"; +import { PipelineFragment } from "../generated/graphql"; +import { getStateIcon } from "../utils/states"; +import { Builds } from "./Builds"; + +interface PipelineListItemProps { + pipeline: PipelineFragment; +} + +export function PipelineListItem({ pipeline }: PipelineListItemProps) { + const { org } = getPreferenceValues(); + const state = pipeline.builds?.edges?.[0]?.node?.state; + const favoriteIcon = pipeline.favorite ? { source: Icon.Star, tintColor: Color.Yellow } : undefined; + + return ( + + + + } + title="View Builds" + shortcut={{ modifiers: ["cmd"], key: "." }} + /> + + } + /> + ); +} diff --git a/src/components/PipelineListSection.tsx b/src/components/PipelineListSection.tsx new file mode 100644 index 000000000000..89342c59ffbd --- /dev/null +++ b/src/components/PipelineListSection.tsx @@ -0,0 +1,18 @@ +import { List } from "@raycast/api"; +import { PipelineFragment } from "../generated/graphql"; +import { PipelineListItem } from "./PipelineListItem"; + +export interface PipelineListSectionProps { + pipelines: PipelineFragment[]; + title: string; +} + +export function PipelineListSection({ pipelines, title }: PipelineListSectionProps) { + return ( + + {pipelines.map((node) => ( + + ))} + + ); +} diff --git a/src/components/UnblockPipeline.tsx b/src/components/UnblockPipeline.tsx new file mode 100644 index 000000000000..688eea8ac921 --- /dev/null +++ b/src/components/UnblockPipeline.tsx @@ -0,0 +1,71 @@ +import { getPreferenceValues, showToast, Toast } from "@raycast/api"; +import fetch from "cross-fetch"; + +export async function unblockPipeline(pipelineSlug: string, buildNumber: number) { + const preferences = getPreferenceValues<{ org: string; token: string }>(); + + try { + const buildResponse = await fetch( + `https://api.buildkite.com/v2/organizations/${preferences.org}/pipelines/${pipelineSlug}/builds/${buildNumber}`, + { + method: "GET", + headers: { + Authorization: `Bearer ${preferences.token}`, + "Content-Type": "application/json", + }, + }, + ); + + if (!buildResponse.ok) { + console.log("Status Code:", buildResponse.status); + console.log("Status Text:", buildResponse.statusText); + console.log("Response Body:", await buildResponse.text()); + throw new Error("Failed to fetch build details"); + } + + const build = await buildResponse.json(); + + const blockedJob = build.jobs.find((job: any) => job.type === "manual" && job.state.toLowerCase() === "blocked"); + + if (!blockedJob || !blockedJob.unblock_url) { + throw new Error("No blocked manual job found for this build"); +} + + if (!blockedJob || !blockedJob.unblock_url) { + throw new Error("No blocked manual job found for this build"); + } + + // Step 3: Unblock the Job + const unblockResponse = await fetch(blockedJob.unblock_url, { + method: "PUT", + headers: { + Authorization: `Bearer ${preferences.token}`, + "Content-Type": "application/json", + }, + body: JSON.stringify({}), + }); + + if (!unblockResponse.ok) { + throw new Error("Failed to unblock the job"); + } + + showToast({ + style: Toast.Style.Success, + title: "Job Unblocked Successfully", + }); + } catch (error) { + console.error("Error:", error); + if (error instanceof Error) { + showToast({ + style: Toast.Style.Failure, + title: "Error", + message: error.message, + }); + } else { + showToast({ + style: Toast.Style.Failure, + title: "Unknown Error", + }); + } + } +} diff --git a/src/components/View.tsx b/src/components/View.tsx new file mode 100644 index 000000000000..abe476754bbb --- /dev/null +++ b/src/components/View.tsx @@ -0,0 +1,8 @@ +import { withBuildkiteClient } from "../api/withBuildkiteClient"; + +/** + * Makes sure that we have a authenticated Buildkite client available in the children + */ +export default function View({ children }: { children: JSX.Element }) { + return withBuildkiteClient(children); +} diff --git a/src/generated/graphql.ts b/src/generated/graphql.ts new file mode 100644 index 000000000000..bbbc442d7e20 --- /dev/null +++ b/src/generated/graphql.ts @@ -0,0 +1,6252 @@ +import { GraphQLClient } from 'graphql-request'; +import { GraphQLClientRequestHeaders } from 'graphql-request/build/cjs/types'; +import gql from 'graphql-tag'; +export type Maybe = T | null; +export type InputMaybe = Maybe; +export type Exact = { [K in keyof T]: T[K] }; +export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; +export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; +export type MakeEmpty = { [_ in K]?: never }; +export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; +/** All built-in and custom scalars, mapped to their actual values */ +export type Scalars = { + ID: { input: string; output: string; } + String: { input: string; output: string; } + Boolean: { input: boolean; output: boolean; } + Int: { input: number; output: number; } + Float: { input: number; output: number; } + /** An ISO-8601 encoded UTC date string */ + DateTime: { input: any; output: any; } + /** An ISO 8601-encoded date */ + ISO8601Date: { input: any; output: any; } + /** + * Represents non-fractional signed whole numeric values. + * + * `JSInt` can represent values between -(2^53) + 1 and 2^53 - 1. + */ + JSInt: { input: any; output: any; } + /** A blob of JSON represented as a pretty formatted string */ + JSON: { input: any; output: any; } + /** A Pipeline identifier using a slug, and optionally negated with a leading `!` */ + PipelineSelector: { input: any; output: any; } + /** A Team identifier using a slug, and optionally negated with a leading `!` */ + TeamSelector: { input: any; output: any; } + /** A User identifier using a UUID, and optionally negated with a leading `!` */ + UserSelector: { input: any; output: any; } + /** A blob of XML represented as a pretty formatted string */ + XML: { input: any; output: any; } + /** A blob of YAML */ + YAML: { input: any; output: any; } +}; + +/** API access tokens for authentication with the Buildkite API */ +export type ApiAccessToken = Node & { + id: Scalars['ID']['output']; + /** The public UUID for the API Access Token */ + uuid: Scalars['ID']['output']; +}; + +/** A code that is used by an API Application to request an API Access Token */ +export type ApiAccessTokenCode = Node & { + application: Maybe; + /** The time when this code was authorized by a user */ + authorizedAt: Maybe; + /** The IP address of the client that authorized this code */ + authorizedIPAddress: Maybe; + /** The actual code used to find this API Access Token Code record */ + code: Scalars['String']['output']; + /** The description of the code provided by the API Application */ + description: Scalars['String']['output']; + /** The time when this code will expire */ + expiresAt: Scalars['DateTime']['output']; + id: Scalars['ID']['output']; +}; + +/** Autogenerated input type of APIAccessTokenCodeAuthorizeMutation */ +export type ApiAccessTokenCodeAuthorizeMutationInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of APIAccessTokenCodeAuthorizeMutation. */ +export type ApiAccessTokenCodeAuthorizeMutationPayload = { + apiAccessTokenCode: ApiAccessTokenCode; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; +}; + +/** All possible scopes on a user's API Access Token */ +export type ApiAccessTokenScopes = + | 'GRAPHQL' + | 'READ_AGENTS' + | 'READ_ARTIFACTS' + | 'READ_BUILDS' + | 'READ_BUILD_LOGS' + | 'READ_CLUSTERS' + | 'READ_JOB_ENV' + | 'READ_NOTIFICATION_SERVICES' + | 'READ_ORGANIZATIONS' + | 'READ_PIPELINES' + | 'READ_PIPELINE_TEMPLATES' + | 'READ_SUITES' + | 'READ_TEAMS' + | 'READ_USER' + | 'WRITE_AGENTS' + | 'WRITE_ARTIFACTS' + | 'WRITE_BUILDS' + | 'WRITE_BUILD_LOGS' + | 'WRITE_CLUSTERS' + | 'WRITE_NOTIFICATION_SERVICES' + | 'WRITE_PIPELINES' + | 'WRITE_PIPELINE_TEMPLATES' + | 'WRITE_SUITES'; + +/** An API Application */ +export type ApiApplication = Node & { + /** A description of the application */ + description: Scalars['String']['output']; + id: Scalars['ID']['output']; + /** The name of this application */ + name: Scalars['String']['output']; +}; + +/** An agent */ +export type Agent = Node & { + clusterQueue: Maybe; + /** The time when the agent connected to Buildkite */ + connectedAt: Maybe; + /** The connection state of the agent */ + connectionState: Scalars['String']['output']; + /** The date the agent was created */ + createdAt: Maybe; + /** The time when the agent disconnected from Buildkite */ + disconnectedAt: Maybe; + /** The last time the agent performed a `heartbeat` operation to the Agent API */ + heartbeatAt: Maybe; + /** The hostname of the machine running the agent */ + hostname: Maybe; + id: Scalars['ID']['output']; + /** The IP address that the agent has connected from */ + ipAddress: Maybe; + /** If this version of agent has been deprecated by Buildkite */ + isDeprecated: Scalars['Boolean']['output']; + /** + * Returns whether or not this agent is running a job. If isRunningJob true, but + * the `job` field is empty, the current user doesn't have access to view the job + */ + isRunningJob: Scalars['Boolean']['output']; + /** The currently running job */ + job: Maybe; + /** Jobs that have been assigned to this agent */ + jobs: Maybe; + /** The date the agent was lost from Buildkite if it didn't cleanly disconnect */ + lostAt: Maybe; + /** The meta data this agent was stared with */ + metaData: Maybe>; + /** The name of the agent */ + name: Scalars['String']['output']; + /** The operating system the agent is running on */ + operatingSystem: Maybe; + organization: Maybe; + permissions: AgentPermissions; + /** The process identifier (PID) of the agent process on the machine */ + pid: Maybe; + /** @deprecated DEPRECATED: please use heartbeatAt */ + pingedAt: Maybe; + /** The priority setting for the agent */ + priority: Maybe; + /** Whether this agent is visible to everyone, including people outside this organization */ + public: Scalars['Boolean']['output']; + /** The time this agent was forced to stop */ + stopForcedAt: Maybe; + /** The user that forced this agent to stop */ + stopForcedBy: Maybe; + /** + * The time the agent was first asked to stop + * @deprecated Use either `stoppedGracefullyAt` or `stopForcedAt` + */ + stoppedAt: Maybe; + /** + * The user that initially stopped this agent + * @deprecated Use either `stoppedGracefullyBy` or `stopForcedBy` + */ + stoppedBy: Maybe; + /** The time the agent was gracefully stopped by a user */ + stoppedGracefullyAt: Maybe; + /** The user that gracefully stopped this agent */ + stoppedGracefullyBy: Maybe; + /** The User-Agent of the program that is making Agent API requests to Buildkite */ + userAgent: Maybe; + /** The public UUID for the agent */ + uuid: Scalars['String']['output']; + /** The version of the agent */ + version: Maybe; + /** Whether this agent's version has known issues and should be upgraded */ + versionHasKnownIssues: Scalars['Boolean']['output']; +}; + + +/** An agent */ +export type AgentJobsArgs = { + after: InputMaybe; + agentQueryRules: InputMaybe>; + before: InputMaybe; + concurrency: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; + passed: InputMaybe; + priority: InputMaybe; + state: InputMaybe>; + step: InputMaybe; + type: InputMaybe>; +}; + +export type AgentConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type AgentEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** Permissions information about what actions the current user can do against this agent */ +export type AgentPermissions = { + /** Whether the user can stop the agent remotely */ + agentStop: Maybe; +}; + +/** Autogenerated input type of AgentStop */ +export type AgentStopInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + /** If this agent should finish the current job before stopping */ + graceful: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of AgentStop. */ +export type AgentStopPayload = { + agent: Agent; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; +}; + +/** A token used to connect an agent to Buildkite */ +export type AgentToken = Node & { + /** The time this agent token was created */ + createdAt: Maybe; + /** The user that created this agent token */ + createdBy: Maybe; + /** A description about what this agent token is used for */ + description: Maybe; + id: Scalars['ID']['output']; + organization: Maybe; + permissions: AgentTokenPermissions; + /** Whether agents registered with this token will be visible to everyone, including people outside this organization */ + public: Scalars['Boolean']['output']; + /** The time this agent token was revoked */ + revokedAt: Maybe; + /** The user that revoked this agent token */ + revokedBy: Maybe; + /** The reason as defined by the user why this token was revoked */ + revokedReason: Maybe; + /** + * The token value used to register a new agent + * @deprecated Hiding these after creation to improve security. Use the `token_value` field on AgentTokenCreate instead. + */ + token: Scalars['String']['output']; + /** The public UUID for the agent */ + uuid: Scalars['ID']['output']; +}; + +export type AgentTokenConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of AgentTokenCreate */ +export type AgentTokenCreateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + description: InputMaybe; + organizationID: Scalars['ID']['input']; + public: InputMaybe; +}; + +/** Autogenerated return type of AgentTokenCreate. */ +export type AgentTokenCreatePayload = { + agentTokenEdge: AgentTokenEdge; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + organization: Organization; + /** + * The token value used to register a new agent. Please ensure to securely copy + * this value immediately upon generation as it will not be displayed again. + */ + tokenValue: Scalars['String']['output']; +}; + +export type AgentTokenEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** Permissions information about what actions the current user can do against the agent token */ +export type AgentTokenPermissions = { + /** Whether the user can revoke this agent token */ + agentTokenRevoke: Maybe; +}; + +/** Autogenerated input type of AgentTokenRevoke */ +export type AgentTokenRevokeInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; + /** The reason why this agent token should be revoked */ + reason: Scalars['String']['input']; +}; + +/** Autogenerated return type of AgentTokenRevoke. */ +export type AgentTokenRevokePayload = { + agentToken: AgentToken; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; +}; + +/** An annotation allows you to add arbitrary content to the top of a build page in the Buildkite UI */ +export type Annotation = Node & { + /** The body of the annotation */ + body: Maybe; + /** The context of the annotation that helps you differentiate this one from others */ + context: Scalars['String']['output']; + /** The date the annotation was created */ + createdAt: Scalars['DateTime']['output']; + id: Scalars['ID']['output']; + /** The visual style of the annotation */ + style: Maybe; + /** The last time the annotation was changed */ + updatedAt: Maybe; + /** The public UUID for this annotation */ + uuid: Scalars['ID']['output']; +}; + +/** A body of an annotation */ +export type AnnotationBody = { + /** + * The body of the annotation rendered as HTML. The renderer result could be an + * empty string if the textual version has unsupported HTML tags + */ + html: Maybe; + /** The body of the annotation as text */ + text: Scalars['String']['output']; +}; + +export type AnnotationConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type AnnotationEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** The visual style of the annotation */ +export type AnnotationStyle = + /** The default styling of an annotation */ + | 'DEFAULT' + /** The annotation has a red border with a cross next to it */ + | 'ERROR' + /** The annotation has a blue border with an information icon next to it */ + | 'INFO' + /** The annotation has a green border with a tick next to it */ + | 'SUCCESS' + /** The annotation has an orange border with a warning icon next to it */ + | 'WARNING'; + +/** A file uploaded from the agent whilst running a job */ +export type Artifact = Node & { + /** + * The download URL for the artifact. Unless you've used your own artifact + * storage, the URL will be valid for only 10 minutes. + */ + downloadURL: Scalars['String']['output']; + /** The time when the artifact will, or did, expire */ + expiresAt: Maybe; + id: Scalars['ID']['output']; + /** The job that uploaded this artifact */ + job: Maybe; + /** The mime type of the file provided by the agent */ + mimeType: Scalars['String']['output']; + /** The path of the uploaded artifact */ + path: Scalars['String']['output']; + /** A SHA1SUM of the file */ + sha1sum: Scalars['String']['output']; + /** The size of the file in bytes that was uploaded */ + size: Scalars['Int']['output']; + /** The upload state of the artifact */ + state: Scalars['String']['output']; + /** The public UUID for this artifact */ + uuid: Scalars['ID']['output']; +}; + +export type ArtifactConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type ArtifactEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** Context for an audit event created during an REST/GraphQL API request */ +export type AuditApiContext = { + /** The remote IP which made the request */ + requestIpAddress: Maybe; + /** The client supplied user agent which made the request */ + requestUserAgent: Maybe; +}; + +/** The actor who caused an AuditEvent */ +export type AuditActor = { + /** The GraphQL ID for this actor */ + id: Scalars['ID']['output']; + /** The name or short description of this actor */ + name: Maybe; + /** The node corresponding to this actor, if available */ + node: Maybe; + /** The type of this actor */ + type: Maybe; + /** The public UUID of this actor */ + uuid: Scalars['ID']['output']; +}; + +/** Kinds of actors which can perform audit events */ +export type AuditActorNode = User; + +/** All the possible types of actors in an Audit Event */ +export type AuditActorType = + | 'USER'; + +/** Kinds of contexts in which an audit event can be performed */ +export type AuditContext = AuditApiContext | AuditWebContext; + +/** Audit record of an event which occurred in the system */ +export type AuditEvent = Node & { + /** The actor who caused this event */ + actor: Maybe; + /** The context in which this event occurred */ + context: Maybe; + /** The changed data in the event */ + data: Maybe; + id: Scalars['ID']['output']; + /** The time at which this event occurred */ + occurredAt: Scalars['DateTime']['output']; + /** The subject of this event */ + subject: Maybe; + /** The type of event */ + type: AuditEventType; + /** The public UUID for the event */ + uuid: Scalars['ID']['output']; +}; + +/** All the possible types of an Audit Event */ +export type AuditEventType = + | 'AGENT_TOKEN_CREATED' + | 'AGENT_TOKEN_REVOKED' + | 'AGENT_TOKEN_UPDATED' + | 'API_ACCESS_TOKEN_CREATED' + | 'API_ACCESS_TOKEN_DELETED' + | 'API_ACCESS_TOKEN_ORGANIZATION_ACCESS_REVOKED' + | 'API_ACCESS_TOKEN_UPDATED' + | 'AUTHORIZATION_CREATED' + | 'AUTHORIZATION_DELETED' + | 'CLUSTER_CREATED' + | 'CLUSTER_DELETED' + | 'CLUSTER_PERMISSION_CREATED' + | 'CLUSTER_PERMISSION_DELETED' + | 'CLUSTER_QUEUE_CREATED' + | 'CLUSTER_QUEUE_DELETED' + | 'CLUSTER_QUEUE_TOKEN_CREATED' + | 'CLUSTER_QUEUE_TOKEN_DELETED' + | 'CLUSTER_QUEUE_TOKEN_UPDATED' + | 'CLUSTER_QUEUE_UPDATED' + | 'CLUSTER_TOKEN_CREATED' + | 'CLUSTER_TOKEN_DELETED' + | 'CLUSTER_TOKEN_UPDATED' + | 'CLUSTER_UPDATED' + | 'NOTIFICATION_SERVICE_BROKEN' + | 'NOTIFICATION_SERVICE_CREATED' + | 'NOTIFICATION_SERVICE_DELETED' + | 'NOTIFICATION_SERVICE_DISABLED' + | 'NOTIFICATION_SERVICE_ENABLED' + | 'NOTIFICATION_SERVICE_UPDATED' + | 'ORGANIZATION_BANNER_CREATED' + | 'ORGANIZATION_BANNER_DELETED' + | 'ORGANIZATION_BANNER_UPDATED' + | 'ORGANIZATION_BUILD_EXPORT_UPDATED' + | 'ORGANIZATION_CREATED' + | 'ORGANIZATION_DELETED' + | 'ORGANIZATION_INVITATION_ACCEPTED' + | 'ORGANIZATION_INVITATION_CREATED' + | 'ORGANIZATION_INVITATION_RESENT' + | 'ORGANIZATION_INVITATION_REVOKED' + | 'ORGANIZATION_MEMBER_CREATED' + | 'ORGANIZATION_MEMBER_DELETED' + | 'ORGANIZATION_MEMBER_UPDATED' + | 'ORGANIZATION_TEAMS_DISABLED' + | 'ORGANIZATION_TEAMS_ENABLED' + | 'ORGANIZATION_UPDATED' + | 'PIPELINE_CREATED' + | 'PIPELINE_DELETED' + | 'PIPELINE_SCHEDULE_CREATED' + | 'PIPELINE_SCHEDULE_DELETED' + | 'PIPELINE_SCHEDULE_UPDATED' + | 'PIPELINE_TEMPLATE_CREATED' + | 'PIPELINE_TEMPLATE_DELETED' + | 'PIPELINE_TEMPLATE_UPDATED' + | 'PIPELINE_UPDATED' + | 'PIPELINE_VISIBILITY_CHANGED' + | 'PIPELINE_WEBHOOK_URL_ROTATED' + | 'SCM_PIPELINE_SETTINGS_CREATED' + | 'SCM_PIPELINE_SETTINGS_DELETED' + | 'SCM_PIPELINE_SETTINGS_UPDATED' + | 'SCM_REPOSITORY_HOST_CREATED' + | 'SCM_REPOSITORY_HOST_DESTROYED' + | 'SCM_REPOSITORY_HOST_UPDATED' + | 'SCM_SERVICE_CREATED' + | 'SCM_SERVICE_DELETED' + | 'SCM_SERVICE_UPDATED' + | 'SSO_PROVIDER_CREATED' + | 'SSO_PROVIDER_DELETED' + | 'SSO_PROVIDER_DISABLED' + | 'SSO_PROVIDER_ENABLED' + | 'SSO_PROVIDER_UPDATED' + | 'SUBSCRIPTION_PLAN_CHANGED' + | 'SUBSCRIPTION_PLAN_CHANGE_SCHEDULED' + | 'SUITE_API_TOKEN_REGENERATED' + | 'SUITE_CREATED' + | 'SUITE_DELETED' + | 'SUITE_MONITOR_CREATED' + | 'SUITE_MONITOR_DELETED' + | 'SUITE_MONITOR_UPDATED' + | 'SUITE_UPDATED' + | 'SUITE_VISIBILITY_CHANGED' + | 'TEAM_CREATED' + | 'TEAM_DELETED' + | 'TEAM_MEMBER_CREATED' + | 'TEAM_MEMBER_DELETED' + | 'TEAM_MEMBER_UPDATED' + | 'TEAM_PIPELINE_CREATED' + | 'TEAM_PIPELINE_DELETED' + | 'TEAM_PIPELINE_UPDATED' + | 'TEAM_SUITE_CREATED' + | 'TEAM_SUITE_DELETED' + | 'TEAM_SUITE_UPDATED' + | 'TEAM_UPDATED' + | 'USER_API_ACCESS_TOKEN_ORGANIZATION_ACCESS_ADDED' + | 'USER_API_ACCESS_TOKEN_ORGANIZATION_ACCESS_REMOVED' + | 'USER_EMAIL_CREATED' + | 'USER_EMAIL_DELETED' + | 'USER_EMAIL_MARKED_PRIMARY' + | 'USER_EMAIL_VERIFIED' + | 'USER_PASSWORD_RESET' + | 'USER_PASSWORD_RESET_REQUESTED' + | 'USER_TOTP_ACTIVATED' + | 'USER_TOTP_CREATED' + | 'USER_TOTP_DELETED' + | 'USER_UPDATED'; + +/** The subject of an AuditEvent */ +export type AuditSubject = { + /** The GraphQL ID for the subject */ + id: Scalars['ID']['output']; + /** The name or short description of this subject */ + name: Maybe; + /** The node corresponding to the subject, if available */ + node: Maybe; + /** The type of this subject */ + type: Maybe; + /** The public UUID of this subject */ + uuid: Scalars['ID']['output']; +}; + +/** Kinds of subjects which can have audit events performed on them */ +export type AuditSubjectNode = ApiAccessToken | AgentToken | AuthorizationBitbucket | AuthorizationGitHub | AuthorizationGitHubEnterprise | Cluster | ClusterPermission | ClusterQueue | ClusterQueueToken | ClusterToken | Email | NotificationServiceSlack | NotificationServiceWebhook | Organization | OrganizationBanner | OrganizationInvitation | OrganizationMember | Pipeline | PipelineSchedule | PipelineTemplate | ScmPipelineSettings | ScmRepositoryHost | ScmService | SsoProviderGitHubApp | SsoProviderGoogleGSuite | SsoProviderSaml | Subscription | Suite | Totp | Team | TeamMember | TeamPipeline | TeamSuite | User; + +/** All the possible types of subjects in an Audit Event */ +export type AuditSubjectType = + | 'AGENT_TOKEN' + | 'API_ACCESS_TOKEN' + | 'AUTHORIZATION' + | 'CLUSTER' + | 'CLUSTER_PERMISSION' + | 'CLUSTER_QUEUE' + | 'CLUSTER_QUEUE_TOKEN' + | 'CLUSTER_TOKEN' + | 'NOTIFICATION_SERVICE' + | 'ORGANIZATION' + | 'ORGANIZATION_BANNER' + | 'ORGANIZATION_INVITATION' + | 'ORGANIZATION_MEMBER' + | 'PIPELINE' + | 'PIPELINE_SCHEDULE' + | 'PIPELINE_TEMPLATE' + | 'SCM_PIPELINE_SETTINGS' + | 'SCM_REPOSITORY_HOST' + | 'SCM_SERVICE' + | 'SSO_PROVIDER' + | 'SUBSCRIPTION' + | 'SUITE' + | 'SUITE_MONITOR' + | 'TEAM' + | 'TEAM_MEMBER' + | 'TEAM_PIPELINE' + | 'TEAM_SUITE' + | 'USER' + | 'USER_EMAIL' + | 'USER_TOTP'; + +/** Context for an audit event created during a web request */ +export type AuditWebContext = { + /** The remote IP which made the request */ + requestIpAddress: Maybe; + /** The client supplied user agent which made the request */ + requestUserAgent: Maybe; + /** When the session started, if available */ + sessionCreatedAt: Maybe; + /** When the session was escalated, if available and escalated */ + sessionEscalatedAt: Maybe; + /** The session's authenticated user, if available */ + sessionUser: Maybe; + /** The session's authenticated user's uuid */ + sessionUserUuid: Maybe; +}; + +export type Authorization = { + /** ID of the object. */ + id: Scalars['ID']['output']; +}; + +/** A Bitbucket account authorized with a Buildkite account */ +export type AuthorizationBitbucket = Authorization & Node & { + /** ID of the object. */ + id: Scalars['ID']['output']; +}; + +export type AuthorizationConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type AuthorizationEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** A GitHub account authorized with a Buildkite account */ +export type AuthorizationGitHub = Authorization & Node & { + /** ID of the object. */ + id: Scalars['ID']['output']; +}; + +/** A GitHub app authorized with a Buildkite account */ +export type AuthorizationGitHubApp = Authorization & Node & { + /** ID of the object. */ + id: Scalars['ID']['output']; +}; + +/** A GitHub Enterprise account authorized with a Buildkite account */ +export type AuthorizationGitHubEnterprise = Authorization & Node & { + /** ID of the object. */ + id: Scalars['ID']['output']; +}; + +/** A Google account authorized with a Buildkite account */ +export type AuthorizationGoogle = Authorization & Node & { + /** ID of the object. */ + id: Scalars['ID']['output']; +}; + +/** A SAML account authorized with a Buildkite account */ +export type AuthorizationSaml = Authorization & Node & { + /** ID of the object. */ + id: Scalars['ID']['output']; +}; + +/** The type of the authorization */ +export type AuthorizationType = + /** Bitbucket Authorization */ + | 'BITBUCKET' + /** GitHub Authorization */ + | 'GITHUB' + /** GitHub Enterprise Authorization */ + | 'GITHUB_ENTERPRISE'; + +/** An avatar belonging to a user */ +export type Avatar = { + /** The URL of the avatar */ + url: Scalars['String']['output']; +}; + +/** A build from a pipeline */ +export type Build = Node & { + annotations: Maybe; + /** The current blocked state of the build */ + blockedState: Maybe; + /** The branch for the build */ + branch: Scalars['String']['output']; + /** The time when the build was cancelled */ + canceledAt: Maybe; + /** + * The user who canceled this build. If the build was canceled, and this value is + * null, then it was canceled automatically by Buildkite + */ + canceledBy: Maybe; + /** The fully-qualified commit for the build */ + commit: Scalars['String']['output']; + /** The time when the build was created */ + createdAt: Maybe; + createdBy: Maybe; + /** Custom environment variables passed to this build */ + env: Maybe>; + /** The time when the build finished */ + finishedAt: Maybe; + id: Scalars['ID']['output']; + jobs: Maybe; + /** The message for the build */ + message: Maybe; + metaData: Maybe; + /** The number of the build */ + number: Scalars['Int']['output']; + organization: Organization; + pipeline: Pipeline; + pullRequest: Maybe; + /** The build that this build was rebuilt from */ + rebuiltFrom: Maybe; + /** The time when the build became scheduled for running */ + scheduledAt: Maybe; + /** Where the build was created */ + source: BuildSource; + /** The time when the build started running */ + startedAt: Maybe; + /** The current state of the build */ + state: BuildStates; + /** The job that this build was triggered from */ + triggeredFrom: Maybe; + /** The URL for the build */ + url: Scalars['String']['output']; + /** The UUID for the build */ + uuid: Scalars['String']['output']; +}; + + +/** A build from a pipeline */ +export type BuildAnnotationsArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + style: InputMaybe>; +}; + + +/** A build from a pipeline */ +export type BuildJobsArgs = { + after: InputMaybe; + agentQueryRules: InputMaybe>; + before: InputMaybe; + concurrency: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; + passed: InputMaybe; + priority: InputMaybe; + state: InputMaybe>; + step: InputMaybe; + type: InputMaybe>; +}; + + +/** A build from a pipeline */ +export type BuildMetaDataArgs = { + first: InputMaybe; + last: InputMaybe; +}; + +/** Autogenerated input type of BuildAnnotate */ +export type BuildAnnotateInput = { + /** Append to an existing annotation */ + append: InputMaybe; + /** The body of the annotation. Markdown and some limited HTML is supported */ + body: InputMaybe; + /** The GraphQL ID of the build you want to annotate */ + buildID: Scalars['ID']['input']; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + /** A string label to differentiate this annotation from other annotations. The default is `default` */ + context: InputMaybe; + /** The style of the annotation. The default is `DEFAULT` */ + style: InputMaybe; +}; + +/** Autogenerated return type of BuildAnnotate. */ +export type BuildAnnotatePayload = { + annotation: Maybe; + annotationEdge: Maybe; + build: Maybe; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; +}; + +/** Author for a build */ +export type BuildAuthorInput = { + /** The email for the build author */ + email: Scalars['String']['input']; + /** The name for the build author */ + name: Scalars['String']['input']; +}; + +/** All the possible blocked states a build can be in */ +export type BuildBlockedStates = + /** The blocked build is failed */ + | 'FAILED' + /** The blocked build is passed */ + | 'PASSED' + /** The blocked build is running */ + | 'RUNNING'; + +/** Autogenerated input type of BuildCancel */ +export type BuildCancelInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of BuildCancel. */ +export type BuildCancelPayload = { + build: Build; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; +}; + +export type BuildConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of BuildCreate */ +export type BuildCreateInput = { + author: InputMaybe; + /** The branch for the build */ + branch: InputMaybe; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + /** The commit for the build */ + commit: InputMaybe; + /** Environment variables used for the build */ + env: InputMaybe>; + /** The message that is displayed on the build */ + message: InputMaybe; + metaData: InputMaybe>; + /** The GraphQL ID of the pipeline you want to create a build on */ + pipelineID: Scalars['ID']['input']; +}; + +/** Autogenerated return type of BuildCreate. */ +export type BuildCreatePayload = { + build: Maybe; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; +}; + +/** Either a `User` or an `UnregisteredUser` type */ +export type BuildCreator = UnregisteredUser | User; + +export type BuildEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** A comment on a build */ +export type BuildMetaData = { + /** The key used to set this meta data */ + key: Scalars['String']['output']; + /** The value set to this meta data */ + value: Scalars['String']['output']; +}; + +export type BuildMetaDataConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type BuildMetaDataEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** Meta-data key/value pairs for a build */ +export type BuildMetaDataInput = { + /** The key for this meta-data item */ + key: Scalars['String']['input']; + /** The value for this meta-data item */ + value: Scalars['String']['input']; +}; + +/** Autogenerated input type of BuildRebuild */ +export type BuildRebuildInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of BuildRebuild. */ +export type BuildRebuildPayload = { + build: Build; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + rebuild: Build; +}; + +/** All the possible build retention periods, depending on your billing plan */ +export type BuildRetentionPeriods = + /** 30 days */ + | 'DAYS_30' + /** 60 days */ + | 'DAYS_60' + /** 90 days */ + | 'DAYS_90' + /** 6 months */ + | 'MONTHS_6' + /** 12 months */ + | 'MONTHS_12' + /** 18 months */ + | 'MONTHS_18' + /** 2 years */ + | 'YEARS_2'; + +export type BuildSource = { + name: Scalars['String']['output']; +}; + +/** A build was triggered via an API */ +export type BuildSourceApi = BuildSource & { + name: Scalars['String']['output']; +}; + +/** A build was triggered manually via the frontend */ +export type BuildSourceFrontend = BuildSource & { + name: Scalars['String']['output']; +}; + +/** A build was triggered via a schedule */ +export type BuildSourceSchedule = BuildSource & { + name: Scalars['String']['output']; + /** The associated schedule that created this build. Will be `null` if the associated schedule has been deleted. */ + pipelineSchedule: Maybe; +}; + +/** A build was triggered via a trigger job */ +export type BuildSourceTriggerJob = BuildSource & { + name: Scalars['String']['output']; +}; + +/** A build was triggered via a Webhook */ +export type BuildSourceWebhook = BuildSource & { + /** Provider specific headers sent along with the webhook. This will return null if the webhook has been purged by Buildkite. */ + headers: Maybe>; + name: Scalars['String']['output']; + /** + * The body of the webhook. Buildkite only stores webhook data for a short period + * of time, so if this returns null - then the webhook data has been purged by Buildkite + */ + payload: Maybe; + /** The UUID for this webhook. This will return null if the webhook has been purged by Buildkite */ + uuid: Maybe; +}; + +/** All the possible states a build can be in */ +export type BuildStates = + /** The build is blocked */ + | 'BLOCKED' + /** The build was canceled */ + | 'CANCELED' + /** The build is currently being canceled */ + | 'CANCELING' + /** The build is currently being created */ + | 'CREATING' + /** The build failed */ + | 'FAILED' + /** The build is failing */ + | 'FAILING' + /** The build wasn't run */ + | 'NOT_RUN' + /** The build passed */ + | 'PASSED' + /** The build is currently running jobs */ + | 'RUNNING' + /** The build has yet to start running jobs */ + | 'SCHEDULED' + /** The build was skipped */ + | 'SKIPPED'; + +/** The results of a `buildkite-agent pipeline upload` */ +export type BuildStepUpload = { + /** The uploaded step definition */ + definition: BuildStepUploadDefinition; + id: Scalars['ID']['output']; + /** The UUID for this build step upload */ + uuid: Scalars['ID']['output']; +}; + +/** The pipeline definition for a step upload */ +export type BuildStepUploadDefinition = { + /** The uploaded step definition rendered as JSON */ + json: Scalars['String']['output']; + /** The uploaded step definition rendered as YAML */ + yaml: Scalars['String']['output']; +}; + +/** A changelog */ +export type Changelog = Node & { + author: Maybe; + /** The body of this changelog */ + body: Maybe; + id: Scalars['ID']['output']; + /** The date and time this changelog was published */ + publishedAt: Maybe; + /** The tag for this changelog */ + tag: Scalars['String']['output']; + /** The title for this changelog */ + title: Scalars['String']['output']; + /** The public UUID for this changelog */ + uuid: Scalars['String']['output']; +}; + +/** The author of the changelog */ +export type ChangelogAuthor = { + avatar: Avatar; + /** The name of the author */ + name: Scalars['String']['output']; +}; + +export type ChangelogConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type ChangelogEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +export type Cluster = Node & { + /** Returns agent tokens for the Cluster */ + agentTokens: Maybe; + /** Color hex code for the cluster */ + color: Maybe; + /** User who created the cluster */ + createdBy: Maybe; + /** The default queue that agents connecting to the cluster without specifying a queue will accept jobs from */ + defaultQueue: Maybe; + /** Description of the cluster */ + description: Maybe; + /** Emoji for the cluster using Buildkite emoji syntax */ + emoji: Maybe; + id: Scalars['ID']['output']; + /** Name of the cluster */ + name: Scalars['String']['output']; + organization: Maybe; + queues: Maybe; + /** The public UUID for this cluster */ + uuid: Scalars['ID']['output']; +}; + + +export type ClusterAgentTokensArgs = { + first: InputMaybe; + last: InputMaybe; +}; + + +export type ClusterQueuesArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; +}; + +export type ClusterAgentTokenConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of ClusterAgentTokenCreate */ +export type ClusterAgentTokenCreateInput = { + /** + * A list of CIDR-notation IPv4 addresses from which agents can use this token. + * Please note that this feature is not yet available to all organizations + */ + allowedIpAddresses: InputMaybe; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + clusterId: Scalars['ID']['input']; + description: Scalars['String']['input']; + /** + * Agents registered with this token will use a unique token for each job. Please + * note that this feature is not yet available to all organizations + */ + jobTokensEnabled: InputMaybe; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of ClusterAgentTokenCreate. */ +export type ClusterAgentTokenCreatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + clusterAgentToken: ClusterToken; + /** + * The token value used to register a new agent to this tokens cluster. Please + * ensure to securely copy this value immediately upon generation as it will not + * be displayed again. + */ + tokenValue: Scalars['String']['output']; +}; + +export type ClusterAgentTokenEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** Autogenerated input type of ClusterAgentTokenRevoke */ +export type ClusterAgentTokenRevokeInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of ClusterAgentTokenRevoke. */ +export type ClusterAgentTokenRevokePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + deletedClusterAgentTokenId: Scalars['ID']['output']; +}; + +/** Autogenerated input type of ClusterAgentTokenUpdate */ +export type ClusterAgentTokenUpdateInput = { + /** + * A list of CIDR-notation IPv4 addresses from which agents can use this token. + * Please note that this feature is not yet available to all organizations + */ + allowedIpAddresses: InputMaybe; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + description: Scalars['String']['input']; + id: Scalars['ID']['input']; + /** + * Agents registered with this token will use a unique token for each job. Please + * note that this feature is not yet available to all organizations + */ + jobTokensEnabled: InputMaybe; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of ClusterAgentTokenUpdate. */ +export type ClusterAgentTokenUpdatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + clusterAgentToken: ClusterToken; +}; + +export type ClusterConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of ClusterCreate */ +export type ClusterCreateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + /** Color hex code for the cluster */ + color: InputMaybe; + /** Description for the cluster */ + description: InputMaybe; + /** Emoji for the cluster using Buildkite emoji syntax */ + emoji: InputMaybe; + /** Name for the cluster */ + name: Scalars['String']['input']; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of ClusterCreate. */ +export type ClusterCreatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + cluster: Cluster; +}; + +/** Autogenerated input type of ClusterDelete */ +export type ClusterDeleteInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of ClusterDelete. */ +export type ClusterDeletePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + deletedClusterId: Scalars['ID']['output']; +}; + +export type ClusterEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** The different orders you can sort clusters by */ +export type ClusterOrder = + /** Order by name alphabetically */ + | 'NAME' + /** Order by the most recently created clusters first */ + | 'RECENTLY_CREATED'; + +export type ClusterPermission = { + actor: Maybe; + /** Whether the actor can add pipelines to this cluster */ + can_add_pipelines: Scalars['Boolean']['output']; + /** Whether the actor can manage the associated cluster */ + can_manage: Scalars['Boolean']['output']; + /** Whether the actor can see this cluster's tokens */ + can_see_tokens: Scalars['Boolean']['output']; + cluster: Maybe; + id: Scalars['ID']['output']; + /** The public UUID for this cluster permission */ + uuid: Scalars['ID']['output']; +}; + +/** Actor to whom a cluster permission is applied */ +export type ClusterPermissionActor = OrganizationMember | Team; + +export type ClusterQueue = Node & { + cluster: Maybe; + createdBy: Maybe; + description: Maybe; + /** States whether job dispatch is paused for this cluster queue */ + dispatchPaused: Scalars['Boolean']['output']; + /** The time this queue was paused */ + dispatchPausedAt: Maybe; + /** The user who paused this cluster queue */ + dispatchPausedBy: Maybe; + /** Note describing why job dispatch was paused for this cluster queue */ + dispatchPausedNote: Maybe; + id: Scalars['ID']['output']; + key: Scalars['String']['output']; + /** The public UUID for this cluster queue */ + uuid: Scalars['ID']['output']; +}; + +export type ClusterQueueConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of ClusterQueueCreate */ +export type ClusterQueueCreateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + clusterId: Scalars['ID']['input']; + /** Description for the queue */ + description: InputMaybe; + /** The queue tag used to connect an agent to the queue, this can't be updated later */ + key: Scalars['String']['input']; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of ClusterQueueCreate. */ +export type ClusterQueueCreatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + clusterQueue: ClusterQueue; +}; + +/** Autogenerated input type of ClusterQueueDelete */ +export type ClusterQueueDeleteInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of ClusterQueueDelete. */ +export type ClusterQueueDeletePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + deletedClusterQueueId: Scalars['ID']['output']; +}; + +export type ClusterQueueEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** The different orders you can sort cluster queues by */ +export type ClusterQueueOrder = + /** Order by key alphabetically */ + | 'KEY' + /** Order by the most recently created cluster queues first */ + | 'RECENTLY_CREATED'; + +/** Autogenerated input type of ClusterQueuePauseDispatch */ +export type ClusterQueuePauseDispatchInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; + /** An optional note describing the reason for pausing */ + note: InputMaybe; +}; + +/** Autogenerated return type of ClusterQueuePauseDispatch. */ +export type ClusterQueuePauseDispatchPayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + queue: ClusterQueue; +}; + +/** Autogenerated input type of ClusterQueueResumeDispatch */ +export type ClusterQueueResumeDispatchInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of ClusterQueueResumeDispatch. */ +export type ClusterQueueResumeDispatchPayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + queue: ClusterQueue; +}; + +/** A token used to register an agent with a Buildkite cluster queue */ +export type ClusterQueueToken = Node & { + /** + * A list of CIDR-notation IPv4 addresses from which agents can use this token. + * Please note that this feature is not yet available to all organizations + */ + allowedIpAddresses: Maybe; + cluster: Maybe; + clusterQueue: Maybe; + createdBy: Maybe; + /** A description for this cluster queue token */ + description: Scalars['String']['output']; + id: Scalars['ID']['output']; + /** + * Agents registered with this token will use a unique token for each job. Please + * note that this feature is not yet available to all organizations + */ + jobTokensEnabled: Maybe; + /** The public UUID for this cluster queue token */ + uuid: Scalars['ID']['output']; +}; + +/** Autogenerated input type of ClusterQueueUpdate */ +export type ClusterQueueUpdateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + /** Description for the queue */ + description: InputMaybe; + id: Scalars['ID']['input']; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of ClusterQueueUpdate. */ +export type ClusterQueueUpdatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + clusterQueue: ClusterQueue; +}; + +/** A token used to connect an agent in cluster to Buildkite */ +export type ClusterToken = Node & { + /** + * A list of CIDR-notation IPv4 addresses from which agents can use this token. + * Please note that this feature is not yet available to all organizations + */ + allowedIpAddresses: Maybe; + cluster: Maybe; + createdBy: Maybe; + /** A description about what this cluster agent token is used for */ + description: Maybe; + id: Scalars['ID']['output']; + /** + * Agents registered with this token will use a unique token for each job. Please + * note that this feature is not yet available to all organizations + */ + jobTokensEnabled: Maybe; + /** + * The token value used to register a new agent to this tokens cluster. This will + * soon return an empty string before we finally remove this field. + * @deprecated Hiding these after creation to improve security. Use the `token_value` field on ClusterAgentTokenCreate instead. + */ + token: Scalars['String']['output']; + /** The public UUID for this cluster token */ + uuid: Scalars['ID']['output']; +}; + +/** Autogenerated input type of ClusterUpdate */ +export type ClusterUpdateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + /** Color hex code for the cluster */ + color: InputMaybe; + /** ID of the queue to set as the cluster's default queue */ + defaultQueueId: InputMaybe; + /** Description for the cluster */ + description: InputMaybe; + /** Emoji for the cluster using Buildkite emoji syntax */ + emoji: InputMaybe; + id: Scalars['ID']['input']; + /** Name for the cluster */ + name: InputMaybe; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of ClusterUpdate. */ +export type ClusterUpdatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + cluster: Cluster; +}; + +export type Connection = { + count: Scalars['Int']['output']; + pageInfo: Maybe; +}; + +export type Dependency = { + /** Is this dependency allowed to fail */ + allowFailure: Scalars['Boolean']['output']; + id: Scalars['ID']['output']; + /** The step key or step identifier that this step depends on */ + key: Maybe; + /** The UUID for this dependency */ + uuid: Scalars['ID']['output']; +}; + +export type DependencyConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type DependencyEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** A job dispatch for a particular Organization */ +export type Dispatch = { + id: Scalars['ID']['output']; + /** The public UUID for this organization dispatch */ + uuid: Scalars['String']['output']; +}; + +/** An email address */ +export type Email = Node & { + /** The email address */ + address: Scalars['String']['output']; + id: Scalars['ID']['output']; + /** Whether the email address is the user's primary address */ + primary: Scalars['Boolean']['output']; + /** The public UUID for this email */ + uuid: Scalars['ID']['output']; + /** Whether the email address has been verified by the user */ + verified: Scalars['Boolean']['output']; +}; + +/** The connection type for Email. */ +export type EmailConnection = Connection & { + count: Scalars['Int']['output']; + /** A list of edges. */ + edges: Maybe>>; + /** A list of nodes. */ + nodes: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of EmailCreate */ +export type EmailCreateInput = { + address: Scalars['String']['input']; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; +}; + +/** Autogenerated return type of EmailCreate. */ +export type EmailCreatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + emailEdge: EmailEdge; + viewer: Viewer; +}; + +/** An edge in a connection. */ +export type EmailEdge = { + /** A cursor for use in pagination. */ + cursor: Scalars['String']['output']; + /** The item at the end of the edge. */ + node: Maybe; +}; + +/** Autogenerated input type of EmailResendVerification */ +export type EmailResendVerificationInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of EmailResendVerification. */ +export type EmailResendVerificationPayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + email: Email; +}; + +/** A shared GraphQL query */ +export type GraphQlSnippet = { + /** When this GraphQL snippet was created */ + createdAt: Scalars['DateTime']['output']; + id: Scalars['ID']['output']; + /** The default operation name for this snippet */ + operationName: Maybe; + /** The query of this GraphQL snippet */ + query: Scalars['String']['output']; + /** The URL for the GraphQL snippet */ + url: Scalars['String']['output']; + /** The public UUID for this snippet */ + uuid: Scalars['ID']['output']; +}; + +/** Autogenerated input type of GraphQLSnippetCreate */ +export type GraphQlSnippetCreateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + operationName: InputMaybe; + query: Scalars['String']['input']; +}; + +/** Autogenerated return type of GraphQLSnippetCreate. */ +export type GraphQlSnippetCreatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + graphQLSnippet: GraphQlSnippet; +}; + +/** Kinds of jobs that can exist on a build */ +export type Job = JobTypeBlock | JobTypeCommand | JobTypeTrigger | JobTypeWait; + +/** Concurrency configuration for a job */ +export type JobConcurrency = { + /** The concurrency group */ + group: Scalars['String']['output']; + /** The maximum amount of jobs in the concurrency that are allowed to run at any given time */ + limit: Scalars['Int']['output']; +}; + +/** Searching for concurrency groups on jobs */ +export type JobConcurrencySearch = { + /** The groups you want to search */ + group: InputMaybe>; +}; + +export type JobConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type JobEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +export type JobEvent = { + /** The actor that caused this event to occur */ + actor: JobEventActor; + id: Scalars['ID']['output']; + /** The job that this event belongs to */ + job: JobTypeCommand; + /** The time when the event occurred */ + timestamp: Scalars['DateTime']['output']; + /** The type of event */ + type: JobEventType; + /** The public UUID for this job event */ + uuid: Scalars['ID']['output']; +}; + +/** The actor who was responsible for the job event */ +export type JobEventActor = { + /** The node corresponding to this actor if available */ + node: Maybe; + /** The type of this actor */ + type: JobEventActorType; + /** The public UUID of this actor if available */ + uuid: Maybe; +}; + +/** Actor types that can create events on a job */ +export type JobEventActorNodeUnion = Agent | Dispatch | User; + +/** All the actors that can have created a job event */ +export type JobEventActorType = + /** The actor was an agent */ + | 'AGENT' + /** The actor was the dispatcher */ + | 'DISPATCH' + /** The actor was the system */ + | 'SYSTEM' + /** The actor was a user */ + | 'USER'; + +/** An event created when the dispatcher assigns the job to an agent */ +export type JobEventAssigned = JobEvent & Node & { + /** The actor that caused this event to occur */ + actor: JobEventActor; + /** The agent the job was assigned to */ + assignedAgent: Maybe; + id: Scalars['ID']['output']; + /** The job that this event belongs to */ + job: JobTypeCommand; + /** The time when the event occurred */ + timestamp: Scalars['DateTime']['output']; + /** The type of event */ + type: JobEventType; + /** The public UUID for this job event */ + uuid: Scalars['ID']['output']; +}; + +/** An event created when the job creates new build steps via pipeline upload */ +export type JobEventBuildStepUploadCreated = JobEvent & Node & { + /** The actor that caused this event to occur */ + actor: JobEventActor; + buildStepUpload: BuildStepUpload; + id: Scalars['ID']['output']; + /** The job that this event belongs to */ + job: JobTypeCommand; + /** The time when the event occurred */ + timestamp: Scalars['DateTime']['output']; + /** The type of event */ + type: JobEventType; + /** The public UUID for this job event */ + uuid: Scalars['ID']['output']; +}; + +/** An event created when the job is canceled */ +export type JobEventCanceled = JobEvent & Node & { + /** The actor that caused this event to occur */ + actor: JobEventActor; + exitStatus: Scalars['JSInt']['output']; + id: Scalars['ID']['output']; + /** The job that this event belongs to */ + job: JobTypeCommand; + /** The termination signal which killed the command, if the command was killed */ + signal: Maybe; + /** + * If the termination signal was sent by the agent, the reason the agent took + * that action. If this field is null, and the `signal` field is not null, the + * command was killed by another process or by the operating system. + */ + signalReason: Maybe; + /** The time when the event occurred */ + timestamp: Scalars['DateTime']['output']; + /** The type of event */ + type: JobEventType; + /** The public UUID for this job event */ + uuid: Scalars['ID']['output']; +}; + +export type JobEventConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type JobEventEdge = { + cursor: Scalars['String']['output']; + node: JobEvent; +}; + +/** An event created when the job is finished */ +export type JobEventFinished = JobEvent & Node & { + /** The actor that caused this event to occur */ + actor: JobEventActor; + /** + * The exit status returned by the command on the agent. A value of `-1` + * indicates either that the agent was lost or the process was killed. If the + * process was killed, the `signal` field will be non-null. + */ + exitStatus: Scalars['JSInt']['output']; + id: Scalars['ID']['output']; + /** The job that this event belongs to */ + job: JobTypeCommand; + /** The termination signal which killed the command, if the command was killed */ + signal: Maybe; + /** + * If the termination signal was sent by the agent, the reason the agent took + * that action. If this field is null, and the `signal` field is not null, the + * command was killed by another process or by the operating system. + */ + signalReason: Maybe; + /** The time when the event occurred */ + timestamp: Scalars['DateTime']['output']; + /** The type of event */ + type: JobEventType; + /** The public UUID for this job event */ + uuid: Scalars['ID']['output']; +}; + +/** A generic event type that doesn't have any additional meta-information associated with the event */ +export type JobEventGeneric = JobEvent & Node & { + /** The actor that caused this event to occur */ + actor: JobEventActor; + id: Scalars['ID']['output']; + /** The job that this event belongs to */ + job: JobTypeCommand; + /** The time when the event occurred */ + timestamp: Scalars['DateTime']['output']; + /** The type of event */ + type: JobEventType; + /** The public UUID for this job event */ + uuid: Scalars['ID']['output']; +}; + +/** An event created when the job is retried */ +export type JobEventRetried = JobEvent & Node & { + /** The actor that caused this event to occur */ + actor: JobEventActor; + automaticRule: Maybe; + id: Scalars['ID']['output']; + /** The job that this event belongs to */ + job: JobTypeCommand; + retriedInJob: Maybe; + /** The time when the event occurred */ + timestamp: Scalars['DateTime']['output']; + /** The type of event */ + type: JobEventType; + /** The public UUID for this job event */ + uuid: Scalars['ID']['output']; +}; + +/** The reason why a signal was sent to the job's process, or why the process did not start */ +export type JobEventSignalReason = + /** The agent refused the job. Note that in this case, no signal was sent to the process, the job was not run at all. */ + | 'AGENT_REFUSED' + /** The agent sent the signal to the process because the agent was stopped */ + | 'AGENT_STOP' + /** The agent sent the signal to the process because the job was canceled */ + | 'CANCEL' + /** + * The agent was unable to start the job process, often due to memory or resource + * constraints. Note that in this case, no signal was sent to the process, it + * simply never started. + */ + | 'PROCESS_RUN_ERROR' + /** + * The agent refused the job because the signature could not be verified. Note + * that in this case, no signal was sent to the process, the job was not run at all. + */ + | 'SIGNATURE_REJECTED'; + +/** An event created when the job is timed out */ +export type JobEventTimedOut = JobEvent & Node & { + /** The actor that caused this event to occur */ + actor: JobEventActor; + exitStatus: Scalars['JSInt']['output']; + id: Scalars['ID']['output']; + /** The job that this event belongs to */ + job: JobTypeCommand; + /** The termination signal which killed the command, if the command was killed */ + signal: Maybe; + /** + * If the termination signal was sent by the agent, the reason the agent took + * that action. If this field is null, and the `signal` field is not null, the + * command was killed by another process or by the operating system. + */ + signalReason: Maybe; + /** The time when the event occurred */ + timestamp: Scalars['DateTime']['output']; + /** The type of event */ + type: JobEventType; + /** The public UUID for this job event */ + uuid: Scalars['ID']['output']; +}; + +/** All the possible types of events that happen to a Job */ +export type JobEventType = + /** The Job was accepted by an agent */ + | 'ACCEPTED' + /** The agent took too long to start the job */ + | 'ACCEPTED_EXPIRED' + /** The agent disconnected while processing this job */ + | 'AGENT_DISCONNECTED' + /** The agent was lost while processing this job */ + | 'AGENT_LOST' + /** The agent was stopped while processing this job */ + | 'AGENT_STOPPED' + /** The Job was assigned to an agent */ + | 'ASSIGNED' + /** The agent took too long to accept the job */ + | 'ASSIGNED_EXPIRED' + /** The Job uploaded steps to the current build */ + | 'BUILD_STEP_UPLOAD_CREATED' + /** The Job was marked for cancelation by a user */ + | 'CANCELATION' + /** The Job was canceled */ + | 'CANCELED' + /** The Job was changed */ + | 'CHANGED' + /** The Job expired before it was started on an agent */ + | 'EXPIRED' + /** The Job was finished by an agent */ + | 'FINISHED' + /** The Job is limited by a concurrency group */ + | 'LIMITED' + /** The Job sent a notification */ + | 'NOTIFICATION' + /** The Job was retried either automatically or by a user */ + | 'RETRIED' + /** The Job was scheduled */ + | 'SCHEDULED' + /** The Job was started by an agent */ + | 'STARTED' + /** The Job was timed out */ + | 'TIMED_OUT' + /** The Job was unblocked by a user */ + | 'UNBLOCKED'; + +export type JobInterface = { + /** If this job has been retried */ + retried: Scalars['Boolean']['output']; + /** The user that retried this job */ + retriedBy: Maybe; + /** The number of times the job has been retried */ + retriesCount: Maybe; + /** The job that was retried to create this job */ + retrySource: Maybe; + /** The type of retry that was performed on this job */ + retryType: Maybe; + /** The UUID for this job */ + uuid: Scalars['String']['output']; +}; + +/** A record of job minutes usage, aggregated by day and pipeline. */ +export type JobMinutesUsage = ResourceUsageInterface & { + aggregatedOn: Scalars['ISO8601Date']['output']; + pipeline: Maybe; + pipelineId: Scalars['ID']['output']; + /** + * The recorded usage in seconds. For billing purposes, seconds are summed for a + * billing period and rounded down to the nearest minute. + */ + seconds: Scalars['Int']['output']; +}; + +/** The different orders you can sort jobs by */ +export type JobOrder = + /** Order by the most recently assigned jobs first */ + | 'RECENTLY_ASSIGNED' + /** Order by the most recently created jobs first */ + | 'RECENTLY_CREATED'; + +/** The priority with which a job will run */ +export type JobPriority = { + number: Maybe; +}; + +/** Search jobs by priority */ +export type JobPrioritySearch = { + /** The priority number to search */ + number: InputMaybe>; +}; + +/** Automatic retry rule configuration */ +export type JobRetryRuleAutomatic = { + exitStatus: Maybe; + limit: Maybe; + signal: Maybe; + signalReason: Maybe; +}; + +/** Retry Rules for a job */ +export type JobRetryRules = { + automatic: Maybe>>; + manual: Maybe; +}; + +/** The retry types that can be made on a Job */ +export type JobRetryTypes = + | 'AUTOMATIC' + | 'MANUAL'; + +/** All the possible states a job can be in */ +export type JobStates = + /** The job was accepted by the agent, and now it's waiting to start running */ + | 'ACCEPTED' + /** The job has been assigned to an agent, and it's waiting for it to accept */ + | 'ASSIGNED' + /** The job is waiting on a `block` step to finish */ + | 'BLOCKED' + /** The job was in a `BLOCKED` state when the build failed */ + | 'BLOCKED_FAILED' + /** The jobs configuration means that it can't be run */ + | 'BROKEN' + /** The job was canceled */ + | 'CANCELED' + /** The job is currently canceling */ + | 'CANCELING' + /** The job expired before it was started on an agent */ + | 'EXPIRED' + /** The job has finished */ + | 'FINISHED' + /** The job is waiting for jobs with the same concurrency group to finish */ + | 'LIMITED' + /** The job is waiting on a concurrency group check before becoming either `LIMITED` or `SCHEDULED` */ + | 'LIMITING' + /** The job has just been created and doesn't have a state yet */ + | 'PENDING' + /** The job is running */ + | 'RUNNING' + /** The job is scheduled and waiting for an agent */ + | 'SCHEDULED' + /** The job was skipped */ + | 'SKIPPED' + /** The job timed out */ + | 'TIMED_OUT' + /** The job is timing out for taking too long */ + | 'TIMING_OUT' + /** This `block` job has been manually unblocked */ + | 'UNBLOCKED' + /** This `block` job was in an `UNBLOCKED` state when the build failed */ + | 'UNBLOCKED_FAILED' + /** The job is waiting on a `wait` step to finish */ + | 'WAITING' + /** The job was in a `WAITING` state when the build failed */ + | 'WAITING_FAILED'; + +/** Searching for jobs based on step information */ +export type JobStepSearch = { + /** The key assigned to the step */ + key: InputMaybe>; +}; + +/** A type of job that requires a user to unblock it before proceeding in a build pipeline */ +export type JobTypeBlock = JobInterface & Node & { + /** The build that this job is a part of */ + build: Maybe; + id: Scalars['ID']['output']; + /** Whether or not this job can be unblocked yet (may be waiting on another job to finish) */ + isUnblockable: Maybe; + /** The label of this block step */ + label: Maybe; + /** If this job has been retried */ + retried: Scalars['Boolean']['output']; + /** The user that retried this job */ + retriedBy: Maybe; + /** The number of times the job has been retried */ + retriesCount: Maybe; + /** The job that was retried to create this job */ + retrySource: Maybe; + /** The type of retry that was performed on this job */ + retryType: Maybe; + /** The state of the job */ + state: JobStates; + /** The step that defined this job. Some older jobs in the system may not have an associated step */ + step: Maybe; + /** The time when the job was created */ + unblockedAt: Maybe; + /** The user that unblocked this job */ + unblockedBy: Maybe; + /** The UUID for this job */ + uuid: Scalars['String']['output']; +}; + +/** Autogenerated input type of JobTypeBlockUnblock */ +export type JobTypeBlockUnblockInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + /** Hash of values for the block step's fields. */ + fields: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of JobTypeBlockUnblock. */ +export type JobTypeBlockUnblockPayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + jobTypeBlock: JobTypeBlock; +}; + +/** A type of job that runs a command on an agent */ +export type JobTypeCommand = JobInterface & Node & { + /** The agent that is running the job */ + agent: Maybe; + /** The ruleset used to find an agent to run this job */ + agentQueryRules: Maybe>; + /** Artifacts uploaded to this job */ + artifacts: Maybe; + /** A glob of files to automatically upload after the job finishes */ + automaticArtifactUploadPaths: Maybe; + /** The build that this job is a part of */ + build: Maybe; + /** The time when the job was cancelled */ + canceledAt: Maybe; + /** The cluster of this job */ + cluster: Maybe; + /** The cluster queue of this job */ + clusterQueue: Maybe; + /** The command the job will run */ + command: Maybe; + /** Concurrency information related to a job */ + concurrency: Maybe; + /** The time when the job was created */ + createdAt: Maybe; + /** Environment variables for this job */ + env: Maybe>; + /** Job events */ + events: JobEventConnection; + /** The exit status returned by the command on the agent */ + exitStatus: Maybe; + /** The time when the job was expired */ + expiredAt: Maybe; + /** The time when the job finished */ + finishedAt: Maybe; + id: Scalars['ID']['output']; + /** The label of the job */ + label: Maybe; + /** The matrix configuration values for this particular job */ + matrix: Maybe; + /** The index of this job within the parallel job group it is a part of. Null if this job is not part of a parallel job group. */ + parallelGroupIndex: Maybe; + /** + * The total number of jobs in the parallel job group this job is a part of. Null + * if this job is not part of a parallel job group. + */ + parallelGroupTotal: Maybe; + /** If the job has finished and passed */ + passed: Scalars['Boolean']['output']; + /** The pipeline that this job is a part of */ + pipeline: Maybe; + /** The priority of this job */ + priority: JobPriority; + /** If this job has been retried */ + retried: Scalars['Boolean']['output']; + /** The user that retried this job */ + retriedBy: Maybe; + /** The number of times the job has been retried */ + retriesCount: Maybe; + /** Job retry rules */ + retryRules: Maybe; + /** The job that was retried to create this job */ + retrySource: Maybe; + /** The type of retry that was performed on this job */ + retryType: Maybe; + /** The time when the job became available to be run by an agent */ + runnableAt: Maybe; + /** The time when the job became scheduled for running */ + scheduledAt: Maybe; + /** The termination signal which killed the command, if the command was killed */ + signal: Maybe; + /** + * If the termination signal was sent by the agent, the reason the agent took + * that action. If this field is null, and the `signal` field is not null, the + * command was killed by another process or by the operating system. + */ + signalReason: Maybe; + /** If the job soft failed */ + softFailed: Scalars['Boolean']['output']; + /** The time when the job started running */ + startedAt: Maybe; + /** The state of the job */ + state: JobStates; + /** The step that defined this job. Some older jobs in the system may not have an associated step */ + step: Maybe; + /** The URL for the job */ + url: Scalars['String']['output']; + /** The UUID for this job */ + uuid: Scalars['String']['output']; +}; + + +/** A type of job that runs a command on an agent */ +export type JobTypeCommandArtifactsArgs = { + first: InputMaybe; + last: InputMaybe; +}; + + +/** A type of job that runs a command on an agent */ +export type JobTypeCommandEventsArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; +}; + +/** Autogenerated input type of JobTypeCommandCancel */ +export type JobTypeCommandCancelInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of JobTypeCommandCancel. */ +export type JobTypeCommandCancelPayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + jobTypeCommand: JobTypeCommand; +}; + +/** Autogenerated input type of JobTypeCommandRetry */ +export type JobTypeCommandRetryInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of JobTypeCommandRetry. */ +export type JobTypeCommandRetryPayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + jobTypeCommand: JobTypeCommand; + retriedInJobTypeCommand: JobTypeCommand; +}; + +/** A type of job that triggers another build on a pipeline */ +export type JobTypeTrigger = JobInterface & Node & { + /** The build that this job is a part of */ + build: Maybe; + id: Scalars['ID']['output']; + /** The label of this trigger step */ + label: Maybe; + /** If this job has been retried */ + retried: Scalars['Boolean']['output']; + /** The user that retried this job */ + retriedBy: Maybe; + /** The number of times the job has been retried */ + retriesCount: Maybe; + /** The job that was retried to create this job */ + retrySource: Maybe; + /** The type of retry that was performed on this job */ + retryType: Maybe; + /** The state of the job */ + state: JobStates; + /** The step that defined this job. Some older jobs in the system may not have an associated step */ + step: Maybe; + /** The build that this job triggered */ + triggered: Maybe; + /** The UUID for this job */ + uuid: Scalars['String']['output']; +}; + +/** A type of job that waits for all previous jobs to pass before proceeding the build pipeline */ +export type JobTypeWait = JobInterface & Node & { + /** The build that this job is a part of */ + build: Maybe; + id: Scalars['ID']['output']; + /** The label of this wait step */ + label: Maybe; + /** If this job has been retried */ + retried: Scalars['Boolean']['output']; + /** The user that retried this job */ + retriedBy: Maybe; + /** The number of times the job has been retried */ + retriesCount: Maybe; + /** The job that was retried to create this job */ + retrySource: Maybe; + /** The type of retry that was performed on this job */ + retryType: Maybe; + /** The state of the job */ + state: JobStates; + /** The step that defined this job. Some older jobs in the system may not have an associated step */ + step: Maybe; + /** The UUID for this job */ + uuid: Scalars['String']['output']; +}; + +/** All the possible types of jobs that can exist */ +export type JobTypes = + /** A job that blocks a pipeline from progressing until it's manually unblocked */ + | 'BLOCK' + /** A job that runs a command on an agent */ + | 'COMMAND' + /** A job that triggers another build on a pipeline */ + | 'TRIGGER' + /** A job that waits for all previous jobs to finish */ + | 'WAIT'; + +/** The root for mutations in this schema */ +export type Mutation = { + /** Instruct an agent to stop accepting new build jobs and shut itself down. */ + agentStop: Maybe; + /** Create a new agent registration token. */ + agentTokenCreate: Maybe; + /** Revoke an agent registration token. */ + agentTokenRevoke: Maybe; + /** + * Authorize an API Access Token Code generated by an API Application. Please + * note this mutation is private and cannot be executed externally. + */ + apiAccessTokenCodeAuthorize: Maybe; + /** Annotate a build with information to appear on the build page. */ + buildAnnotate: Maybe; + /** Cancel a build. */ + buildCancel: Maybe; + /** Create a build. */ + buildCreate: Maybe; + /** Rebuild a build. */ + buildRebuild: Maybe; + /** Create a new cluster agent token */ + clusterAgentTokenCreate: Maybe; + /** Revokes a cluster agent token */ + clusterAgentTokenRevoke: Maybe; + /** Updates a cluster agent token */ + clusterAgentTokenUpdate: Maybe; + /** Create a cluster. */ + clusterCreate: Maybe; + /** Delete a cluster. */ + clusterDelete: Maybe; + /** Create a cluster queue. */ + clusterQueueCreate: Maybe; + /** Delete a cluster queue. */ + clusterQueueDelete: Maybe; + /** + * This will prevent dispatch of jobs to agents on this queue. You can add an + * optional note describing the reason for pausing. + */ + clusterQueuePauseDispatch: Maybe; + /** This will resume dispatch of jobs on this queue. */ + clusterQueueResumeDispatch: Maybe; + /** Updates a cluster queue. */ + clusterQueueUpdate: Maybe; + /** Updates a cluster. */ + clusterUpdate: Maybe; + /** Add a new email address for the current user */ + emailCreate: Maybe; + /** Resend a verification email. */ + emailResendVerification: Maybe; + /** Create a GraphQL snippet. */ + graphQLSnippetCreate: Maybe; + /** Unblocks a build's "Block pipeline" job. */ + jobTypeBlockUnblock: Maybe; + /** Cancel a job. */ + jobTypeCommandCancel: Maybe; + /** Retry a job. */ + jobTypeCommandRetry: Maybe; + /** + * Dismisses a notice from the Buildkite UI. This mutation is idempotent so if + * you dismiss the same notice multiple times, it will return the original + * `dismissedAt` time + */ + noticeDismiss: Maybe; + /** + * Revokes access to an organization for a user's API access token. The + * organization can not be re-added to the same token, however the user can + * create a new token and add the organization to that token. + */ + organizationApiAccessTokenRevoke: Maybe; + /** + * Sets an allowlist of IP addresses for API access to an organization. Please + * note that this is a beta feature and is not yet available to all + * organizations. + */ + organizationApiIpAllowlistUpdate: Maybe; + /** Delete the system banner */ + organizationBannerDelete: Maybe; + /** + * Retrieves the active system banner for provided organization, then updates it + * with input data. If active banner is not found, a new banner is created with + * the provided input. + */ + organizationBannerUpsert: Maybe; + /** Sets whether the organization requires two-factor authentication for all members. */ + organizationEnforceTwoFactorAuthenticationForMembersUpdate: Maybe; + /** Send email invitations to this organization. */ + organizationInvitationCreate: Maybe; + /** Resend an organization invitation email. */ + organizationInvitationResend: Maybe; + /** Revoke an invitation to an organization so that it can no longer be accepted. */ + organizationInvitationRevoke: Maybe; + /** Remove a user from an organization. */ + organizationMemberDelete: Maybe; + /** Change a user's role within an organization. */ + organizationMemberUpdate: Maybe; + /** Specify the maximum timeframe to revoke organization access from inactive API tokens. */ + organizationRevokeInactiveTokensAfterUpdate: Maybe; + /** Archive a pipeline. */ + pipelineArchive: Maybe; + /** Create a pipeline. */ + pipelineCreate: Maybe; + /** Create SCM webhooks for a pipeline. */ + pipelineCreateWebhook: Maybe; + /** Delete a pipeline. */ + pipelineDelete: Maybe; + /** Favorite a pipeline. */ + pipelineFavorite: Maybe; + /** + * Rotate a pipeline's webhook URL. + * + * Note that the old webhook URL will stop working immediately and so must be updated quickly to avoid interruption. + */ + pipelineRotateWebhookURL: Maybe; + /** Create a scheduled build on pipeline. */ + pipelineScheduleCreate: Maybe; + /** Delete a scheduled build on pipeline. */ + pipelineScheduleDelete: Maybe; + /** Update a scheduled build on pipeline. */ + pipelineScheduleUpdate: Maybe; + /** Create a pipeline template. */ + pipelineTemplateCreate: Maybe; + /** Delete a pipeline template. */ + pipelineTemplateDelete: Maybe; + /** Update a pipeline template. */ + pipelineTemplateUpdate: Maybe; + /** Unarchive a pipeline. */ + pipelineUnarchive: Maybe; + /** Change the settings for a pipeline. */ + pipelineUpdate: Maybe; + /** Create a SSO provider. */ + ssoProviderCreate: Maybe; + /** Delete a SSO provider. */ + ssoProviderDelete: Maybe; + /** Disable a SSO provider. */ + ssoProviderDisable: Maybe; + /** Enable a SSO provider. */ + ssoProviderEnable: Maybe; + /** Change the settings for a SSO provider. */ + ssoProviderUpdate: Maybe; + /** Create a team. */ + teamCreate: Maybe; + /** Delete a team. */ + teamDelete: Maybe; + /** Add a user to a team. */ + teamMemberCreate: Maybe; + /** Remove a user from a team. */ + teamMemberDelete: Maybe; + /** Update a user's role in a team. */ + teamMemberUpdate: Maybe; + /** Add a pipeline to a team. */ + teamPipelineCreate: Maybe; + /** Remove a pipeline from a team. */ + teamPipelineDelete: Maybe; + /** Update a pipeline's access level within a team. */ + teamPipelineUpdate: Maybe; + /** Add a suite to a team. */ + teamSuiteCreate: Maybe; + /** Remove a suite from a team. */ + teamSuiteDelete: Maybe; + /** Update a suite's access level within a team. */ + teamSuiteUpdate: Maybe; + /** Change the settings for a team. */ + teamUpdate: Maybe; + /** + * Activate a previously-generated TOTP configuration, and its Recovery Codes. + * + * Once activated, both this TOTP configuration, and the associated Recovery Codes will become active for the user. + * Any previous TOTP configuration or Recovery Codes will no longer be usable. + * + * This mutation is private, requires an escalated session, and cannot be accessed via the public GraphQL API. + */ + totpActivate: Maybe; + /** + * Create a new TOTP configuration for the current user. + * + * This will produce a TOTP configuration with an associated set of Recovery + * Codes. The Recovery Codes must be presented to the user prior to the TOTP's + * activation with `totpActivate`. + * Neither TOTP configuration nor Recovery Codes will be usable until they have been activated. + * + * This mutation is private, requires an escalated session, and cannot be accessed via the public GraphQL API. + */ + totpCreate: Maybe; + /** + * Delete a TOTP configuration. + * + * If a TOTP configuration was active, it will no longer be used for logging on to the user's account. + * Any Recovery Codes associated with the TOTP configuration will also no longer be usable. + * + * This mutation is private, requires an escalated session, and cannot be accessed via the public GraphQL API. + */ + totpDelete: Maybe; + /** + * Generate a new set of Recovery Codes for a given TOTP. + * + * The new Recovery Codes will immediately replace any existing recovery codes. + * + * This mutation is private, requires an escalated session, and cannot be accessed via the public GraphQL API. + */ + totpRecoveryCodesRegenerate: Maybe; +}; + + +/** The root for mutations in this schema */ +export type MutationAgentStopArgs = { + input: AgentStopInput; +}; + + +/** The root for mutations in this schema */ +export type MutationAgentTokenCreateArgs = { + input: AgentTokenCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationAgentTokenRevokeArgs = { + input: AgentTokenRevokeInput; +}; + + +/** The root for mutations in this schema */ +export type MutationApiAccessTokenCodeAuthorizeArgs = { + input: ApiAccessTokenCodeAuthorizeMutationInput; +}; + + +/** The root for mutations in this schema */ +export type MutationBuildAnnotateArgs = { + input: BuildAnnotateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationBuildCancelArgs = { + input: BuildCancelInput; +}; + + +/** The root for mutations in this schema */ +export type MutationBuildCreateArgs = { + input: BuildCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationBuildRebuildArgs = { + input: BuildRebuildInput; +}; + + +/** The root for mutations in this schema */ +export type MutationClusterAgentTokenCreateArgs = { + input: ClusterAgentTokenCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationClusterAgentTokenRevokeArgs = { + input: ClusterAgentTokenRevokeInput; +}; + + +/** The root for mutations in this schema */ +export type MutationClusterAgentTokenUpdateArgs = { + input: ClusterAgentTokenUpdateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationClusterCreateArgs = { + input: ClusterCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationClusterDeleteArgs = { + input: ClusterDeleteInput; +}; + + +/** The root for mutations in this schema */ +export type MutationClusterQueueCreateArgs = { + input: ClusterQueueCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationClusterQueueDeleteArgs = { + input: ClusterQueueDeleteInput; +}; + + +/** The root for mutations in this schema */ +export type MutationClusterQueuePauseDispatchArgs = { + input: ClusterQueuePauseDispatchInput; +}; + + +/** The root for mutations in this schema */ +export type MutationClusterQueueResumeDispatchArgs = { + input: ClusterQueueResumeDispatchInput; +}; + + +/** The root for mutations in this schema */ +export type MutationClusterQueueUpdateArgs = { + input: ClusterQueueUpdateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationClusterUpdateArgs = { + input: ClusterUpdateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationEmailCreateArgs = { + input: EmailCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationEmailResendVerificationArgs = { + input: EmailResendVerificationInput; +}; + + +/** The root for mutations in this schema */ +export type MutationGraphQlSnippetCreateArgs = { + input: GraphQlSnippetCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationJobTypeBlockUnblockArgs = { + input: JobTypeBlockUnblockInput; +}; + + +/** The root for mutations in this schema */ +export type MutationJobTypeCommandCancelArgs = { + input: JobTypeCommandCancelInput; +}; + + +/** The root for mutations in this schema */ +export type MutationJobTypeCommandRetryArgs = { + input: JobTypeCommandRetryInput; +}; + + +/** The root for mutations in this schema */ +export type MutationNoticeDismissArgs = { + input: NoticeDismissInput; +}; + + +/** The root for mutations in this schema */ +export type MutationOrganizationApiAccessTokenRevokeArgs = { + input: OrganizationApiAccessTokenRevokeMutationInput; +}; + + +/** The root for mutations in this schema */ +export type MutationOrganizationApiIpAllowlistUpdateArgs = { + input: OrganizationApiipAllowlistUpdateMutationInput; +}; + + +/** The root for mutations in this schema */ +export type MutationOrganizationBannerDeleteArgs = { + input: OrganizationBannerDeleteInput; +}; + + +/** The root for mutations in this schema */ +export type MutationOrganizationBannerUpsertArgs = { + input: OrganizationBannerUpsertInput; +}; + + +/** The root for mutations in this schema */ +export type MutationOrganizationEnforceTwoFactorAuthenticationForMembersUpdateArgs = { + input: OrganizationEnforceTwoFactorAuthenticationForMembersUpdateMutationInput; +}; + + +/** The root for mutations in this schema */ +export type MutationOrganizationInvitationCreateArgs = { + input: OrganizationInvitationCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationOrganizationInvitationResendArgs = { + input: OrganizationInvitationResendInput; +}; + + +/** The root for mutations in this schema */ +export type MutationOrganizationInvitationRevokeArgs = { + input: OrganizationInvitationRevokeInput; +}; + + +/** The root for mutations in this schema */ +export type MutationOrganizationMemberDeleteArgs = { + input: OrganizationMemberDeleteInput; +}; + + +/** The root for mutations in this schema */ +export type MutationOrganizationMemberUpdateArgs = { + input: OrganizationMemberUpdateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationOrganizationRevokeInactiveTokensAfterUpdateArgs = { + input: OrganizationRevokeInactiveTokensAfterUpdateMutationInput; +}; + + +/** The root for mutations in this schema */ +export type MutationPipelineArchiveArgs = { + input: PipelineArchiveInput; +}; + + +/** The root for mutations in this schema */ +export type MutationPipelineCreateArgs = { + input: PipelineCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationPipelineCreateWebhookArgs = { + input: PipelineCreateWebhookInput; +}; + + +/** The root for mutations in this schema */ +export type MutationPipelineDeleteArgs = { + input: PipelineDeleteInput; +}; + + +/** The root for mutations in this schema */ +export type MutationPipelineFavoriteArgs = { + input: PipelineFavoriteInput; +}; + + +/** The root for mutations in this schema */ +export type MutationPipelineRotateWebhookUrlArgs = { + input: PipelineRotateWebhookUrlInput; +}; + + +/** The root for mutations in this schema */ +export type MutationPipelineScheduleCreateArgs = { + input: PipelineScheduleCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationPipelineScheduleDeleteArgs = { + input: PipelineScheduleDeleteInput; +}; + + +/** The root for mutations in this schema */ +export type MutationPipelineScheduleUpdateArgs = { + input: PipelineScheduleUpdateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationPipelineTemplateCreateArgs = { + input: PipelineTemplateCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationPipelineTemplateDeleteArgs = { + input: PipelineTemplateDeleteInput; +}; + + +/** The root for mutations in this schema */ +export type MutationPipelineTemplateUpdateArgs = { + input: PipelineTemplateUpdateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationPipelineUnarchiveArgs = { + input: PipelineUnarchiveInput; +}; + + +/** The root for mutations in this schema */ +export type MutationPipelineUpdateArgs = { + input: PipelineUpdateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationSsoProviderCreateArgs = { + input: SsoProviderCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationSsoProviderDeleteArgs = { + input: SsoProviderDeleteInput; +}; + + +/** The root for mutations in this schema */ +export type MutationSsoProviderDisableArgs = { + input: SsoProviderDisableInput; +}; + + +/** The root for mutations in this schema */ +export type MutationSsoProviderEnableArgs = { + input: SsoProviderEnableInput; +}; + + +/** The root for mutations in this schema */ +export type MutationSsoProviderUpdateArgs = { + input: SsoProviderUpdateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTeamCreateArgs = { + input: TeamCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTeamDeleteArgs = { + input: TeamDeleteInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTeamMemberCreateArgs = { + input: TeamMemberCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTeamMemberDeleteArgs = { + input: TeamMemberDeleteInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTeamMemberUpdateArgs = { + input: TeamMemberUpdateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTeamPipelineCreateArgs = { + input: TeamPipelineCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTeamPipelineDeleteArgs = { + input: TeamPipelineDeleteInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTeamPipelineUpdateArgs = { + input: TeamPipelineUpdateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTeamSuiteCreateArgs = { + input: TeamSuiteCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTeamSuiteDeleteArgs = { + input: TeamSuiteDeleteInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTeamSuiteUpdateArgs = { + input: TeamSuiteUpdateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTeamUpdateArgs = { + input: TeamUpdateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTotpActivateArgs = { + input: TotpActivateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTotpCreateArgs = { + input: TotpCreateInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTotpDeleteArgs = { + input: TotpDeleteInput; +}; + + +/** The root for mutations in this schema */ +export type MutationTotpRecoveryCodesRegenerateArgs = { + input: TotpRecoveryCodesRegenerateInput; +}; + +/** An object with an ID. */ +export type Node = { + /** ID of the object. */ + id: Scalars['ID']['output']; +}; + +/** A notice or notice that a user sees in the Buildkite UI */ +export type Notice = { + /** The time when this notice was dismissed from the UI */ + dismissedAt: Maybe; + id: Scalars['ID']['output']; + /** The namespace of this notice */ + namespace: NoticeNamespaces; + /** The scope within the namespace */ + scope: Scalars['String']['output']; +}; + +/** Autogenerated input type of NoticeDismiss */ +export type NoticeDismissInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of NoticeDismiss. */ +export type NoticeDismissPayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + notice: Maybe; +}; + +/** All the possible namespaces for a notice */ +export type NoticeNamespaces = + /** A change to an existing feature */ + | 'CHANGE' + /** The user has had an email suggested to them */ + | 'EMAIL_SUGGESTION' + /** An event announcement */ + | 'EVENT' + /** A new feature was added */ + | 'FEATURE'; + +export type NotificationService = { + /** The description of this service */ + description: Scalars['String']['output']; + id: Scalars['ID']['output']; + /** The name of the service provider */ + name: Scalars['String']['output']; +}; + +/** Deliver notifications to Slack */ +export type NotificationServiceSlack = Node & NotificationService & { + /** The description of this service */ + description: Scalars['String']['output']; + id: Scalars['ID']['output']; + /** The name of the service provider */ + name: Scalars['String']['output']; +}; + +/** Deliver notifications to a custom URL */ +export type NotificationServiceWebhook = NotificationService & { + /** The description of this service */ + description: Scalars['String']['output']; + id: Scalars['ID']['output']; + /** The name of the service provider */ + name: Scalars['String']['output']; +}; + +/** A operating system that an agent can run on */ +export type OperatingSystem = { + /** The name of the operating system */ + name: Scalars['String']['output']; +}; + +/** An organization */ +export type Organization = Node & { + /** Returns agent access tokens for an Organization. By default returns all tokens, whether revoked or non-revoked. */ + agentTokens: Maybe; + agents: Maybe; + /** A space-separated allowlist of IP addresses that can access the organization via the GraphQL or REST API */ + allowedApiIpAddresses: Maybe; + /** Returns user API access tokens that can access this organization */ + apiAccessTokens: OrganizationApiAccessTokenConnection; + auditEvents: Maybe; + /** Returns active banners for this organization. */ + banners: OrganizationBannerConnection; + /** Return cluster in the Organization by UUID */ + cluster: Maybe; + /** Returns clusters for an Organization */ + clusters: Maybe; + /** The URL to an icon representing this organization */ + iconUrl: Maybe; + id: Scalars['ID']['output']; + invitations: Maybe; + /** Whether teams is enabled for this organization */ + isTeamsEnabled: Scalars['Boolean']['output']; + jobs: Maybe; + /** Returns users within the organization */ + members: Maybe; + /** + * Whether this organization requires 2FA to access (Please note that this is a + * beta feature and is not yet available to all organizations.) + */ + membersRequireTwoFactorAuthentication: Scalars['Boolean']['output']; + /** The name of the organization */ + name: Scalars['String']['output']; + permissions: OrganizationPermissions; + /** Return all the pipeline templates the current user has access to for this organization */ + pipelineTemplates: Maybe; + /** Return all the pipelines the current user has access to for this organization */ + pipelines: Maybe; + /** Whether this organization is visible to everyone, including people outside it */ + public: Scalars['Boolean']['output']; + /** + * API tokens with access to this organization will be automatically revoked + * after this many seconds of inactivity. A `null` value indicates never revoke + * inactive tokens. + */ + revokeInactiveTokensAfter: Maybe; + /** The slug used to represent the organization in URLs */ + slug: Scalars['String']['output']; + /** The single sign-on configuration of this organization */ + sso: Maybe; + /** Single sign on providers created for an organization */ + ssoProviders: Maybe; + /** Return all the suite the current user has access to for this organization */ + suites: Maybe; + /** Returns teams within the organization that the viewer can see */ + teams: Maybe; + /** Returns the resource usage data for this organization. */ + usage: UsageUnionConnection; + /** The public UUID for this organization */ + uuid: Scalars['String']['output']; +}; + + +/** An organization */ +export type OrganizationAgentTokensArgs = { + first: InputMaybe; + last: InputMaybe; + revoked: InputMaybe; +}; + + +/** An organization */ +export type OrganizationAgentsArgs = { + after: InputMaybe; + before: InputMaybe; + cluster: InputMaybe; + clusterQueue: InputMaybe>; + clustered?: InputMaybe; + first: InputMaybe; + isRunningJob: InputMaybe; + last: InputMaybe; + metaData: InputMaybe>; + search: InputMaybe; +}; + + +/** An organization */ +export type OrganizationApiAccessTokensArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; +}; + + +/** An organization */ +export type OrganizationAuditEventsArgs = { + actor: InputMaybe>; + actorType: InputMaybe>; + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + occurredAtFrom: InputMaybe; + occurredAtTo: InputMaybe; + order?: InputMaybe; + subject: InputMaybe>; + subjectType: InputMaybe>; + subjectUUID: InputMaybe>; + type: InputMaybe>; +}; + + +/** An organization */ +export type OrganizationBannersArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; +}; + + +/** An organization */ +export type OrganizationClusterArgs = { + id: Scalars['ID']['input']; +}; + + +/** An organization */ +export type OrganizationClustersArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; +}; + + +/** An organization */ +export type OrganizationInvitationsArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; + state: InputMaybe>; +}; + + +/** An organization */ +export type OrganizationJobsArgs = { + after: InputMaybe; + agentQueryRules: InputMaybe>; + before: InputMaybe; + cluster: InputMaybe; + clusterQueue: InputMaybe>; + clustered?: InputMaybe; + concurrency: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; + passed: InputMaybe; + priority: InputMaybe; + state: InputMaybe>; + step: InputMaybe; + type: InputMaybe>; +}; + + +/** An organization */ +export type OrganizationMembersArgs = { + after: InputMaybe; + before: InputMaybe; + email: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; + role: InputMaybe>; + search: InputMaybe; + security: InputMaybe; + sso: InputMaybe; + team: InputMaybe; +}; + + +/** An organization */ +export type OrganizationPipelineTemplatesArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; +}; + + +/** An organization */ +export type OrganizationPipelinesArgs = { + after: InputMaybe; + archived: InputMaybe; + before: InputMaybe; + cluster: InputMaybe; + clustered?: InputMaybe; + createdAtFrom: InputMaybe; + createdAtTo: InputMaybe; + favorite: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; + repository: InputMaybe; + search: InputMaybe; + tags: InputMaybe>; + team: InputMaybe; +}; + + +/** An organization */ +export type OrganizationSsoProvidersArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; +}; + + +/** An organization */ +export type OrganizationSuitesArgs = { + after: InputMaybe; + before: InputMaybe; + createdAtFrom: InputMaybe; + createdAtTo: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; + search: InputMaybe; + team: InputMaybe; +}; + + +/** An organization */ +export type OrganizationTeamsArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; + pipeline: InputMaybe; + privacy: InputMaybe>; + search: InputMaybe; + user: InputMaybe; +}; + + +/** An organization */ +export type OrganizationUsageArgs = { + after: InputMaybe; + aggregatedOnFrom: InputMaybe; + aggregatedOnTo: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + pipelineIds?: InputMaybe>; + resource?: InputMaybe>; + suiteIds?: InputMaybe>; +}; + +/** Information on user API Access Tokens which can access the Organization. Excludes the token attribute */ +export type OrganizationApiAccessToken = { + createdAt: Scalars['DateTime']['output']; + /** A description of the token */ + description: Maybe; + id: Scalars['ID']['output']; + /** The IP address of the last request to the Buildkite API */ + ipAddress: Maybe; + /** The last time the token was used to access the Buildkite API */ + lastAccessedAt: Maybe; + /** The user associated with this token */ + owner: Maybe; + /** The organization scopes that the user's token has access to */ + scopes: Array; + /** The public UUID for the API Access Token */ + uuid: Scalars['ID']['output']; +}; + +/** The connection type for OrganizationAPIAccessToken. */ +export type OrganizationApiAccessTokenConnection = { + /** A list of edges. */ + edges: Maybe>>; + /** A list of nodes. */ + nodes: Maybe>>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; +}; + +/** An edge in a connection. */ +export type OrganizationApiAccessTokenEdge = { + /** A cursor for use in pagination. */ + cursor: Scalars['String']['output']; + /** The item at the end of the edge. */ + node: Maybe; +}; + +/** Autogenerated input type of OrganizationAPIAccessTokenRevokeMutation */ +export type OrganizationApiAccessTokenRevokeMutationInput = { + apiAccessTokenId: Scalars['ID']['input']; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of OrganizationAPIAccessTokenRevokeMutation. */ +export type OrganizationApiAccessTokenRevokeMutationPayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + revokedApiAccessTokenId: Scalars['ID']['output']; +}; + +/** Autogenerated input type of OrganizationAPIIPAllowlistUpdateMutation */ +export type OrganizationApiipAllowlistUpdateMutationInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + ipAddresses: Scalars['String']['input']; + organizationID: Scalars['ID']['input']; +}; + +/** Autogenerated return type of OrganizationAPIIPAllowlistUpdateMutation. */ +export type OrganizationApiipAllowlistUpdateMutationPayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + organization: Maybe; +}; + +export type OrganizationAuditEventConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type OrganizationAuditEventEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** The different orders you can sort audit events by */ +export type OrganizationAuditEventOrders = + /** Order by the most recently occurring events first */ + | 'RECENTLY_OCCURRED'; + +/** System banner of an organization */ +export type OrganizationBanner = Node & { + id: Scalars['ID']['output']; + /** The banner message */ + message: Scalars['String']['output']; + /** The UUID of the organization banner */ + uuid: Scalars['String']['output']; +}; + +/** The connection type for OrganizationBanner. */ +export type OrganizationBannerConnection = { + /** A list of edges. */ + edges: Maybe>>; + /** A list of nodes. */ + nodes: Maybe>>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; +}; + +/** Autogenerated input type of OrganizationBannerDelete */ +export type OrganizationBannerDeleteInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of OrganizationBannerDelete. */ +export type OrganizationBannerDeletePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + deletedBannerId: Scalars['ID']['output']; +}; + +/** An edge in a connection. */ +export type OrganizationBannerEdge = { + /** A cursor for use in pagination. */ + cursor: Scalars['String']['output']; + /** The item at the end of the edge. */ + node: Maybe; +}; + +/** Autogenerated input type of OrganizationBannerUpsert */ +export type OrganizationBannerUpsertInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + message: Scalars['String']['input']; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of OrganizationBannerUpsert. */ +export type OrganizationBannerUpsertPayload = { + banner: OrganizationBanner; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; +}; + +export type OrganizationConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type OrganizationEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** Autogenerated input type of OrganizationEnforceTwoFactorAuthenticationForMembersUpdateMutation */ +export type OrganizationEnforceTwoFactorAuthenticationForMembersUpdateMutationInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + membersRequireTwoFactorAuthentication: Scalars['Boolean']['input']; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of OrganizationEnforceTwoFactorAuthenticationForMembersUpdateMutation. */ +export type OrganizationEnforceTwoFactorAuthenticationForMembersUpdateMutationPayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + organization: Organization; +}; + +/** A pending invitation to a user to join this organization */ +export type OrganizationInvitation = Node & { + /** The time when the invitation was accepted */ + acceptedAt: Maybe; + /** The user that accepted this invite */ + acceptedBy: Maybe; + /** The time when the invitation was created */ + createdAt: Maybe; + /** The user that added invited this email address */ + createdBy: Maybe; + /** The email address of this invitation */ + email: Scalars['String']['output']; + /** The time when the invitation was automatically expired */ + expiredAt: Maybe; + id: Scalars['ID']['output']; + organization: Maybe; + permissions: OrganizationInvitationPermissions; + /** The time when this invitation was revoked */ + revokedAt: Maybe; + /** The user that revoked this invitation */ + revokedBy: Maybe; + /** The role the user will have in the organization once they've accepted the invitation */ + role: OrganizationMemberRole; + /** The slug of the invitation that can be used to find an invitation in the query root */ + slug: Scalars['String']['output']; + sso: OrganizationInvitationSsoType; + /** The current state of the invitation */ + state: OrganizationInvitationStates; + /** Teams that have been assigned to this invitation */ + teams: Maybe; + /** The UUID of the invitation */ + uuid: Scalars['String']['output']; +}; + + +/** A pending invitation to a user to join this organization */ +export type OrganizationInvitationTeamsArgs = { + first: InputMaybe; +}; + +export type OrganizationInvitationConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of OrganizationInvitationCreate */ +export type OrganizationInvitationCreateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + emails: Array; + organizationID: Scalars['ID']['input']; + role: InputMaybe; + sso: InputMaybe; + teams: InputMaybe>; +}; + +/** Autogenerated return type of OrganizationInvitationCreate. */ +export type OrganizationInvitationCreatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + invitationEdges: Maybe>>; + organization: Maybe; +}; + +export type OrganizationInvitationEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** The different orders you can sort organization invitations by */ +export type OrganizationInvitationOrders = + /** Order by email address alphabetically */ + | 'EMAIL' + /** Order by the most recently created invitations first */ + | 'RECENTLY_CREATED'; + +/** Permissions information about what actions the current user can do against this invitation */ +export type OrganizationInvitationPermissions = { + /** Whether the user can resend this invitation */ + organizationInvitationResend: Maybe; + /** Whether the user can revoke this invitation */ + organizationInvitationRevoke: Maybe; +}; + +/** Autogenerated input type of OrganizationInvitationResend */ +export type OrganizationInvitationResendInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of OrganizationInvitationResend. */ +export type OrganizationInvitationResendPayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + organizationInvitation: OrganizationInvitation; +}; + +/** Autogenerated input type of OrganizationInvitationRevoke */ +export type OrganizationInvitationRevokeInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of OrganizationInvitationRevoke. */ +export type OrganizationInvitationRevokePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + organization: Organization; + organizationInvitation: OrganizationInvitation; + organizationInvitationEdge: OrganizationInvitationEdge; +}; + +export type OrganizationInvitationSsoInput = { + mode: OrganizationMemberSsoModeEnum; +}; + +/** Information about the SSO setup for this invited organization member */ +export type OrganizationInvitationSsoType = { + /** The SSO mode of the invited organization member */ + mode: Maybe; +}; + +/** All the possible states that an organization invitation can be */ +export type OrganizationInvitationStates = + /** The invitation was accepted by the person it was sent to */ + | 'ACCEPTED' + /** The invitation wasn't accepted and the link has expired */ + | 'EXPIRED' + /** The invitation is waiting for a user to accept it */ + | 'PENDING' + /** The invitation was revoked and can no longer be accepted */ + | 'REVOKED'; + +/** A team that has been assigned to an invitation */ +export type OrganizationInvitationTeamAssignment = { + id: Scalars['ID']['output']; + /** The role that the user will have once they've accepted the invite */ + role: TeamMemberRole; + /** The team that this assignment refers to */ + team: Team; +}; + +export type OrganizationInvitationTeamAssignmentConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type OrganizationInvitationTeamAssignmentEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** Used to assign teams to organization invitation in mutations */ +export type OrganizationInvitationTeamAssignmentInput = { + /** The ID of the team you want the user to join once they've accepted the invite */ + id: Scalars['ID']['input']; + /** The role in the team you want the user to have */ + role: TeamMemberRole; +}; + +/** A member of an organization */ +export type OrganizationMember = Node & { + /** Whether or not organizations are required to pay for this user */ + complimentary: Scalars['Boolean']['output']; + /** The time when this user was added to the organization */ + createdAt: Scalars['DateTime']['output']; + /** The user that added invited this user */ + createdBy: Maybe; + id: Scalars['ID']['output']; + organization: Organization; + permissions: OrganizationMemberPermissions; + /** Pipelines the user has access to within the organization */ + pipelines: OrganizationMemberPipelineConnection; + /** The users role within the organization */ + role: OrganizationMemberRole; + security: OrganizationMemberSecurity; + sso: OrganizationMemberSso; + /** Teams that this user is a part of within the organization */ + teams: TeamMemberConnection; + user: User; + /** The public UUID for this organization member */ + uuid: Scalars['String']['output']; +}; + + +/** A member of an organization */ +export type OrganizationMemberPipelinesArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; + search: InputMaybe; +}; + + +/** A member of an organization */ +export type OrganizationMemberTeamsArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; +}; + +export type OrganizationMemberConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of OrganizationMemberDelete */ +export type OrganizationMemberDeleteInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of OrganizationMemberDelete. */ +export type OrganizationMemberDeletePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + deletedOrganizationMemberID: Scalars['ID']['output']; + organization: Maybe; + user: Maybe; +}; + +export type OrganizationMemberEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** The different orders you can sort members by */ +export type OrganizationMemberOrder = + /** Order by name alphabetically */ + | 'NAME' + /** Order by the most recently created members first */ + | 'RECENTLY_CREATED' + /** Order by relevance when searching for members */ + | 'RELEVANCE'; + +/** Permissions information about what actions the current user can do against the organization membership record */ +export type OrganizationMemberPermissions = { + /** Whether the user can delete the user from the organization */ + organizationMemberDelete: Maybe; + /** Whether the user can update the organization's members role information */ + organizationMemberUpdate: Maybe; +}; + +/** Represents the connection between a user an a pipeline within an organization */ +export type OrganizationMemberPipeline = { + /** The pipeline the user has access to within the organization */ + pipeline: Pipeline; +}; + +export type OrganizationMemberPipelineConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type OrganizationMemberPipelineEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** The roles a user can be within an organization */ +export type OrganizationMemberRole = + /** Has full access to the entire organization */ + | 'ADMIN' + /** The user is a regular member of the organization */ + | 'MEMBER'; + +/** Information about the SSO setup for this organization member */ +export type OrganizationMemberSso = { + /** SSO authorizations provided by your organization that have been created for this user */ + authorizations: Maybe; + /** The SSO mode of the organization member */ + mode: Maybe; +}; + + +/** Information about the SSO setup for this organization member */ +export type OrganizationMemberSsoAuthorizationsArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + state: InputMaybe>; +}; + +export type OrganizationMemberSsoInput = { + mode: OrganizationMemberSsoModeEnum; +}; + +/** The SSO authorization modes you can use on a member */ +export type OrganizationMemberSsoModeEnum = + /** The member can either use SSO or their email & password */ + | 'OPTIONAL' + /** The member must use SSO to access your organization */ + | 'REQUIRED'; + +/** Information about what security settings the user has enabled in Buildkite */ +export type OrganizationMemberSecurity = { + /** If the user has secured their Buildkite user account with a password */ + passwordProtected: Scalars['Boolean']['output']; + /** If the user has enabled Two Factor Authentication */ + twoFactorEnabled: Scalars['Boolean']['output']; +}; + +export type OrganizationMemberSecurityInput = { + passwordProtected: InputMaybe; + twoFactorEnabled: InputMaybe; +}; + +/** Autogenerated input type of OrganizationMemberUpdate */ +export type OrganizationMemberUpdateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; + role: InputMaybe; + sso: InputMaybe; +}; + +/** Autogenerated return type of OrganizationMemberUpdate. */ +export type OrganizationMemberUpdatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + organizationMember: Maybe; +}; + +/** Permissions information about what actions the current user can do against the organization */ +export type OrganizationPermissions = { + /** Whether the user can create agent tokens */ + agentTokenCreate: Maybe; + /** Whether the user can access agent tokens */ + agentTokenView: Maybe; + /** Whether the user can create a see a list of agents in organization */ + agentView: Maybe; + /** Whether the user can access audit events for the organization */ + auditEventsView: Maybe; + /** Whether the user can change the notification services for the organization */ + notificationServiceUpdate: Maybe; + /** Whether the user can view and manage billing for the organization */ + organizationBillingUpdate: Maybe; + /** Whether the user can invite members from an organization */ + organizationInvitationCreate: Maybe; + /** Whether the user can update/remove members from an organization */ + organizationMemberUpdate: Maybe; + /** Whether the user can see members in the organization */ + organizationMemberView: Maybe; + /** Whether the user can see sensitive information about members in the organization */ + organizationMemberViewSensitive: Maybe; + /** Whether the user can change the organization name and related source code provider settings */ + organizationUpdate: Maybe; + /** Whether the user can create a new pipeline in the organization */ + pipelineCreate: Maybe; + /** Whether the user can create a new pipeline without adding it to any teams within the organization */ + pipelineCreateWithoutTeams: Maybe; + /** Whether the user can create a see a list of pipelines in organization */ + pipelineView: Maybe; + /** Whether the user can change SSO Providers for the organization */ + ssoProviderCreate: Maybe; + /** Whether the user can change SSO Providers for the organization */ + ssoProviderUpdate: Maybe; + /** Whether the user can create a see a list of suites in organization */ + suiteView: Maybe; + /** Whether the user can administer one or all the teams in the organization */ + teamAdmin: Maybe; + /** Whether the user can create teams for the organization */ + teamCreate: Maybe; + /** Whether the user can toggle teams on/off for the organization */ + teamEnabledChange: Maybe; + /** Whether the user can see teams in the organization */ + teamView: Maybe; +}; + +/** Autogenerated input type of OrganizationRevokeInactiveTokensAfterUpdateMutation */ +export type OrganizationRevokeInactiveTokensAfterUpdateMutationInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + organizationId: Scalars['ID']['input']; + revokeInactiveTokensAfter: RevokeInactiveTokenPeriod; +}; + +/** Autogenerated return type of OrganizationRevokeInactiveTokensAfterUpdateMutation. */ +export type OrganizationRevokeInactiveTokensAfterUpdateMutationPayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + organization: Maybe; +}; + +/** Single sign-on settings for an organization */ +export type OrganizationSso = { + /** Whether this account is configured for single sign-on */ + isEnabled: Scalars['Boolean']['output']; + /** The single sign-on provider for this organization */ + provider: Maybe; +}; + +/** Single sign-on provider information for an organization */ +export type OrganizationSsoProvider = { + name: Scalars['String']['output']; +}; + +/** Information about pagination in a connection. */ +export type PageInfo = { + /** 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 result of checking a permissions */ +export type Permission = { + allowed: Scalars['Boolean']['output']; + code: Maybe; + message: Maybe; +}; + +/** A pipeline */ +export type Pipeline = Node & { + /** Whether existing builds can be rebuilt as new builds. */ + allowRebuilds: Maybe; + /** Whether this pipeline has been archived */ + archived: Scalars['Boolean']['output']; + /** The time when the pipeline was archived */ + archivedAt: Maybe; + /** The user that archived this pipeline */ + archivedBy: Maybe; + /** A branch filter pattern to limit which pushed branches trigger builds on this pipeline. */ + branchConfiguration: Maybe; + /** + * Choose to keep builds or remove them after a set time period. Pipelines are + * scanned once a day for builds that can be removed according to these settings. + * @deprecated Build retention is now determined by your billing plan. This field is no longer used and always returns null. + */ + buildRetentionEnabled: Maybe; + /** + * The minimum number of builds to keep in the pipeline regardless of how old the builds are. + * @deprecated Build retention is now determined by your billing plan. This field is no longer used and always returns null. + */ + buildRetentionNumber: Maybe; + /** + * How long is a build kept before it is automatically removed. + * @deprecated Build retention is now determined by your billing plan. This field is no longer used and always returns null. + */ + buildRetentionPeriod: Maybe; + /** Returns the builds for this pipeline */ + builds: Maybe; + /** + * When a new build is created on a branch, any previous builds that are running + * on the same branch will be automatically cancelled + */ + cancelIntermediateBuilds: Scalars['Boolean']['output']; + /** + * Limit which branches build cancelling applies to, for example `!main` will + * ensure that the main branch won't have it's builds automatically cancelled. + */ + cancelIntermediateBuildsBranchFilter: Maybe; + cluster: Maybe; + /** The color of the pipeline */ + color: Maybe; + /** The shortest length to which any git commit ID may be truncated while guaranteeing referring to a unique commit */ + commitShortLength: Scalars['Int']['output']; + /** The time when the pipeline was created */ + createdAt: Maybe; + /** The user who created the pipeline */ + createdBy: Maybe; + /** The default branch for this pipeline */ + defaultBranch: Maybe; + /** The default timeout in minutes for all command steps in this pipeline. This can still be overridden in any command step */ + defaultTimeoutInMinutes: Maybe; + /** The short description of the pipeline */ + description: Maybe; + /** The emoji of the pipeline */ + emoji: Maybe; + /** Returns true if the viewer has favorited this pipeline */ + favorite: Scalars['Boolean']['output']; + id: Scalars['ID']['output']; + jobs: Maybe; + /** + * The maximum timeout in minutes for all command steps in this pipeline. Any + * command step without a timeout or with a timeout greater than this value will + * be set to this value. + */ + maximumTimeoutInMinutes: Maybe; + metrics: Maybe; + /** The name of the pipeline */ + name: Scalars['String']['output']; + /** The next build number in the sequence */ + nextBuildNumber: Scalars['Int']['output']; + organization: Organization; + permissions: PipelinePermissions; + pipelineTemplate: Maybe; + /** + * Whether this pipeline is visible to everyone, including people outside this organization + * @deprecated Use `visibility` + */ + public: Scalars['Boolean']['output']; + /** The repository for this pipeline */ + repository: Maybe; + /** Schedules for this pipeline */ + schedules: Maybe; + /** + * When a new build is created on a branch, any previous builds that haven't yet + * started on the same branch will be automatically marked as skipped. + */ + skipIntermediateBuilds: Scalars['Boolean']['output']; + /** + * Limit which branches build skipping applies to, for example `!main` will + * ensure that the main branch won't have it's builds automatically skipped. + */ + skipIntermediateBuildsBranchFilter: Maybe; + /** The slug of the pipeline */ + slug: Scalars['String']['output']; + steps: Maybe; + /** Tags that have been given to this pipeline */ + tags: Array; + /** Teams associated with this pipeline */ + teams: Maybe; + /** The URL for the pipeline */ + url: Scalars['String']['output']; + /** The UUID of the pipeline */ + uuid: Scalars['String']['output']; + /** Whether this pipeline is visible to everyone, including people outside this organization */ + visibility: PipelineVisibility; + /** The URL to use in your repository settings for commit webhooks */ + webhookURL: Scalars['String']['output']; +}; + + +/** A pipeline */ +export type PipelineBuildsArgs = { + after: InputMaybe; + before: InputMaybe; + branch: InputMaybe>; + commit: InputMaybe>; + createdAtFrom: InputMaybe; + createdAtTo: InputMaybe; + first: InputMaybe; + last: InputMaybe; + metaData: InputMaybe>; + state: InputMaybe>; +}; + + +/** A pipeline */ +export type PipelineJobsArgs = { + after: InputMaybe; + agentQueryRules: InputMaybe>; + before: InputMaybe; + concurrency: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; + passed: InputMaybe; + priority: InputMaybe; + state: InputMaybe>; + step: InputMaybe; + type: InputMaybe>; +}; + + +/** A pipeline */ +export type PipelineMetricsArgs = { + first: InputMaybe; + last: InputMaybe; +}; + + +/** A pipeline */ +export type PipelineSchedulesArgs = { + first: InputMaybe; +}; + + +/** A pipeline */ +export type PipelineTeamsArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; + search: InputMaybe; +}; + +/** The access levels that can be assigned to a pipeline */ +export type PipelineAccessLevels = + /** Allows builds and read only */ + | 'BUILD_AND_READ' + /** Allows edits, builds and reads */ + | 'MANAGE_BUILD_AND_READ' + /** Read only - no builds or edits */ + | 'READ_ONLY'; + +/** Autogenerated input type of PipelineArchive */ +export type PipelineArchiveInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of PipelineArchive. */ +export type PipelineArchivePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + pipeline: Pipeline; +}; + +export type PipelineConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of PipelineCreate */ +export type PipelineCreateInput = { + /** If existing builds can be rebuilt as new builds. */ + allowRebuilds: InputMaybe; + /** A branch filter pattern to limit which pushed branches trigger builds on this pipeline. */ + branchConfiguration: InputMaybe; + /** If intermediate builds should be canceled as new builds are created */ + cancelIntermediateBuilds: InputMaybe; + /** A branch filter to scope which builds this is applied to */ + cancelIntermediateBuildsBranchFilter: InputMaybe; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + /** The GraphQL ID of the cluster you want to use for the pipeline */ + clusterId: InputMaybe; + /** A color hex code to represent this pipeline. */ + color: InputMaybe; + /** The default branch used to show statistics about the build */ + defaultBranch: InputMaybe; + /** The default timeout in minutes for all command steps in this pipeline. This can still be overridden in any command step. */ + defaultTimeoutInMinutes: InputMaybe; + /** A description of this pipeline. */ + description: InputMaybe; + /** An emoji to represent this pipeline. */ + emoji: InputMaybe; + /** + * The maximum timeout in minutes for all command steps in this pipeline. Any + * command step without a timeout or with a timeout greater than this value will + * be set to this value. + */ + maximumTimeoutInMinutes: InputMaybe; + /** The `graphql_name` of the pipeline. */ + name: Scalars['String']['input']; + /** The initial build number to use in the sequence */ + nextBuildNumber: InputMaybe; + organizationId: Scalars['ID']['input']; + /** The GraphQL ID of the pipeline template you want to use for the pipeline */ + pipelineTemplateId: InputMaybe; + /** A source code repository that will back this pipeline */ + repository: PipelineRepositoryInput; + /** If intermediate builds should be skipped as new builds are created */ + skipIntermediateBuilds: InputMaybe; + /** A branch filter to scope which builds this is applied to */ + skipIntermediateBuildsBranchFilter: InputMaybe; + /** Steps used by this pipeline defined as YAML */ + steps: InputMaybe; + /** Tags you want this pipeline to have */ + tags: InputMaybe>; + /** Which teams this pipeline should be assigned to */ + teams: InputMaybe>; + /** The visibility of the pipeline, either PUBLIC or PRIVATE. */ + visibility: InputMaybe; +}; + +/** Autogenerated return type of PipelineCreate. */ +export type PipelineCreatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + cluster: Maybe; + organization: Organization; + pipeline: Pipeline; + pipelineEdge: PipelineEdge; + pipelineTemplate: Maybe; +}; + +/** Autogenerated input type of PipelineCreateWebhook */ +export type PipelineCreateWebhookInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of PipelineCreateWebhook. */ +export type PipelineCreateWebhookPayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + pipelineID: Scalars['ID']['output']; +}; + +/** Autogenerated input type of PipelineDelete */ +export type PipelineDeleteInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of PipelineDelete. */ +export type PipelineDeletePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + deletedPipelineID: Scalars['ID']['output']; + organization: Organization; +}; + +export type PipelineEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** Autogenerated input type of PipelineFavorite */ +export type PipelineFavoriteInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + favorite: Scalars['Boolean']['input']; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of PipelineFavorite. */ +export type PipelineFavoritePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + pipeline: Maybe; +}; + +/** A metric for a pipeline */ +export type PipelineMetric = Node & { + id: Scalars['ID']['output']; + /** The label of this metric */ + label: Scalars['ID']['output']; + /** The URL for this metric */ + url: Maybe; + /** The value for this metric */ + value: Maybe; +}; + +export type PipelineMetricConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type PipelineMetricEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** The different orders you can sort pipelines by */ +export type PipelineOrders = + /** Order by name alphabetically */ + | 'NAME' + /** Order by favorites first alphabetically, then the rest of the pipelines alphabetically */ + | 'NAME_WITH_FAVORITES_FIRST' + /** Order by the most recently created pipelines first */ + | 'RECENTLY_CREATED' + /** Order by relevance when searching for pipelines */ + | 'RELEVANCE'; + +/** Permission information about what actions the current user can do against the pipeline */ +export type PipelinePermissions = { + /** Whether the user can create builds on this pipeline */ + buildCreate: Permission; + /** Whether the user can delete this pipeline */ + pipelineDelete: Permission; + /** Whether the user can favorite this pipeline */ + pipelineFavorite: Permission; + /** Whether the user can create schedules on this pipeline */ + pipelineScheduleCreate: Permission; + /** Whether the user can edit the settings of this pipeline */ + pipelineUpdate: Permission; +}; + +/** Repository information for a pipeline */ +export type PipelineRepositoryInput = { + /** The remote URL for this repository i.e. git@github.com:foo/bar.git */ + url: Scalars['String']['input']; +}; + +/** Autogenerated input type of PipelineRotateWebhookURL */ +export type PipelineRotateWebhookUrlInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of PipelineRotateWebhookURL. */ +export type PipelineRotateWebhookUrlPayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + pipeline: Pipeline; +}; + +/** A schedule of when a build should automatically triggered for a Pipeline */ +export type PipelineSchedule = Node & { + /** The branch to use for builds that this schedule triggers. Defaults to to the default branch in the Pipeline */ + branch: Maybe; + /** Returns the builds created by this schedule */ + builds: Maybe; + /** The commit to use for builds that this schedule triggers. Defaults to `HEAD` */ + commit: Maybe; + /** The time when this schedule was created */ + createdAt: Maybe; + createdBy: Maybe; + /** A definition of the trigger build schedule in cron syntax */ + cronline: Scalars['String']['output']; + /** If this Pipeline schedule is currently enabled */ + enabled: Maybe; + /** Environment variables passed to any triggered builds */ + env: Maybe>; + /** The time when this schedule failed */ + failedAt: Maybe; + /** If the last attempt at triggering this scheduled build fails, this will be the reason */ + failedMessage: Maybe; + id: Scalars['ID']['output']; + /** A short description of the Pipeline schedule */ + label: Scalars['String']['output']; + /** The message to use for builds that this schedule triggers */ + message: Maybe; + /** The time when this schedule will create a build next */ + nextBuildAt: Maybe; + permissions: PipelineSchedulePermissions; + pipeline: Maybe; + /** The UUID of the Pipeline schedule */ + uuid: Scalars['String']['output']; +}; + + +/** A schedule of when a build should automatically triggered for a Pipeline */ +export type PipelineScheduleBuildsArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; +}; + +export type PipelineScheduleConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of PipelineScheduleCreate */ +export type PipelineScheduleCreateInput = { + branch: InputMaybe; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + commit: InputMaybe; + cronline: InputMaybe; + enabled: InputMaybe; + env: InputMaybe; + label: InputMaybe; + message: InputMaybe; + pipelineID: Scalars['ID']['input']; +}; + +/** Autogenerated return type of PipelineScheduleCreate. */ +export type PipelineScheduleCreatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + pipeline: Pipeline; + pipelineScheduleEdge: PipelineScheduleEdge; +}; + +/** Autogenerated input type of PipelineScheduleDelete */ +export type PipelineScheduleDeleteInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of PipelineScheduleDelete. */ +export type PipelineScheduleDeletePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + deletedPipelineScheduleID: Scalars['ID']['output']; + pipeline: Maybe; +}; + +export type PipelineScheduleEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** Permission information about what actions the current user can do against the pipeline schedule */ +export type PipelineSchedulePermissions = { + /** Whether the user can delete the schedule */ + pipelineScheduleDelete: Maybe; + /** Whether the user can update the schedule */ + pipelineScheduleUpdate: Maybe; +}; + +/** Autogenerated input type of PipelineScheduleUpdate */ +export type PipelineScheduleUpdateInput = { + branch: InputMaybe; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + commit: InputMaybe; + cronline: InputMaybe; + enabled: InputMaybe; + env: InputMaybe; + id: Scalars['ID']['input']; + label: InputMaybe; + message: InputMaybe; +}; + +/** Autogenerated return type of PipelineScheduleUpdate. */ +export type PipelineScheduleUpdatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + pipelineSchedule: PipelineSchedule; +}; + +/** Steps defined on a pipeline */ +export type PipelineSteps = { + /** A YAML representation of the pipeline steps */ + yaml: Maybe; +}; + +/** Step definition for a pipeline */ +export type PipelineStepsInput = { + /** A YAML representation of the steps in this pipeline. This is formatted the same as `buildkite-agent pipeline upload */ + yaml: Scalars['String']['input']; +}; + +/** A tag associated with a pipeline */ +export type PipelineTag = { + /** The label for this tag */ + label: Scalars['String']['output']; +}; + +/** Tag associated with a pipeline */ +export type PipelineTagInput = { + /** The label of this tag */ + label: Scalars['String']['input']; +}; + +/** Used to assign teams to pipelines */ +export type PipelineTeamAssignmentInput = { + /** The access level members within the team have to the pipeline */ + accessLevel: InputMaybe; + /** The ID of the team you want to be assigned */ + id: Scalars['ID']['input']; +}; + +/** A template defining a fixed step configuration for a pipeline */ +export type PipelineTemplate = Node & { + /** If the pipeline template is available for assignment by non admin users */ + available: Scalars['Boolean']['output']; + /** A YAML representation of the step configuration */ + configuration: Scalars['YAML']['output']; + /** The time when the template was created */ + createdAt: Scalars['DateTime']['output']; + /** The user who created the template */ + createdBy: User; + /** The short description of the template */ + description: Maybe; + id: Scalars['ID']['output']; + /** The name of the template */ + name: Scalars['String']['output']; + /** The last time the template was changed */ + updatedAt: Scalars['DateTime']['output']; + /** The user who last updated the template */ + updatedBy: User; + /** The UUID for the template */ + uuid: Scalars['ID']['output']; +}; + +export type PipelineTemplateConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of PipelineTemplateCreate */ +export type PipelineTemplateCreateInput = { + /** If the pipeline template is available for assignment by non admin users */ + available: InputMaybe; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + /** YAML step configuration for the pipeline template */ + configuration: Scalars['String']['input']; + /** Description for the pipeline template */ + description: InputMaybe; + /** Name for the pipeline template */ + name: Scalars['String']['input']; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of PipelineTemplateCreate. */ +export type PipelineTemplateCreatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + pipelineTemplate: PipelineTemplate; +}; + +/** Autogenerated input type of PipelineTemplateDelete */ +export type PipelineTemplateDeleteInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of PipelineTemplateDelete. */ +export type PipelineTemplateDeletePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + deletedPipelineTemplateId: Scalars['ID']['output']; +}; + +export type PipelineTemplateEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** The different orders you can sort pipeline templates by */ +export type PipelineTemplateOrder = + /** Order by name alphabetically */ + | 'NAME' + /** Order by the most recently created pipeline templates first */ + | 'RECENTLY_CREATED'; + +/** Autogenerated input type of PipelineTemplateUpdate */ +export type PipelineTemplateUpdateInput = { + /** If the pipeline template is available for assignment by non admin users */ + available: InputMaybe; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + /** YAML step configuration for the pipeline template */ + configuration: InputMaybe; + /** Description for the pipeline template */ + description: InputMaybe; + id: Scalars['ID']['input']; + /** Name for the pipeline template */ + name: InputMaybe; + organizationId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of PipelineTemplateUpdate. */ +export type PipelineTemplateUpdatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + pipelineTemplate: PipelineTemplate; +}; + +/** Autogenerated input type of PipelineUnarchive */ +export type PipelineUnarchiveInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of PipelineUnarchive. */ +export type PipelineUnarchivePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + pipeline: Pipeline; +}; + +/** Autogenerated input type of PipelineUpdate */ +export type PipelineUpdateInput = { + /** If existing builds can be rebuilt as new builds. */ + allowRebuilds: InputMaybe; + /** + * Whether or not this pipeline should be archived. This field is deprecated and + * will be removed on 2022-06-01. Use ArchivePipeline and UnarchivePipeline + * mutations instead. + */ + archived: InputMaybe; + /** A branch filter pattern to limit which pushed branches trigger builds on this pipeline. */ + branchConfiguration: InputMaybe; + /** If intermediate builds should be canceled as new builds are created */ + cancelIntermediateBuilds: InputMaybe; + /** A branch filter to scope which builds this is applied to */ + cancelIntermediateBuildsBranchFilter: InputMaybe; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + /** The GraphQL ID of the cluster you want to update for the pipeline */ + clusterId: InputMaybe; + /** A color hex code to represent this pipeline. */ + color: InputMaybe; + /** The default branch used to show statistics about the build */ + defaultBranch: InputMaybe; + /** The default timeout in minutes for all command steps in this pipeline. This can still be overridden in any command step. */ + defaultTimeoutInMinutes: InputMaybe; + /** A description of this pipeline. */ + description: InputMaybe; + /** An emoji to represent this pipeline. */ + emoji: InputMaybe; + id: Scalars['ID']['input']; + /** + * The maximum timeout in minutes for all command steps in this pipeline. Any + * command step without a timeout or with a timeout greater than this value will + * be set to this value. + */ + maximumTimeoutInMinutes: InputMaybe; + /** The `graphql_name` of the pipeline. */ + name: InputMaybe; + /** The next build number to use in the sequence */ + nextBuildNumber: InputMaybe; + /** The GraphQL ID of the pipeline template you want to apply to this pipeline */ + pipelineTemplateId: InputMaybe; + /** A source code repository that will back this pipeline */ + repository: InputMaybe; + /** If intermediate builds should be skipped as new builds are created */ + skipIntermediateBuilds: InputMaybe; + /** A branch filter to scope which builds this is applied to */ + skipIntermediateBuildsBranchFilter: InputMaybe; + /** Steps used by this pipeline defined as YAML */ + steps: InputMaybe; + /** Tags you want this pipeline to have */ + tags: InputMaybe>; + /** The visibility of the pipeline, either PUBLIC or PRIVATE. */ + visibility: InputMaybe; +}; + +/** Autogenerated return type of PipelineUpdate. */ +export type PipelineUpdatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + pipeline: Pipeline; +}; + +/** The visibility of the pipeline */ +export type PipelineVisibility = + /** The pipeline is private */ + | 'PRIVATE' + /** The pipeline is public */ + | 'PUBLIC'; + +/** A pull request on a provider */ +export type PullRequest = { + id: Scalars['String']['output']; +}; + +/** The query root for this schema */ +export type Query = { + /** Find an agent by its slug */ + agent: Maybe; + /** Find an agent token by its slug */ + agentToken: Maybe; + /** Find a API Access Token code */ + apiAccessTokenCode: Maybe; + /** Find an artifact by its UUID */ + artifact: Maybe; + /** Find an audit event via its uuid */ + auditEvent: Maybe; + /** Find a build */ + build: Maybe; + /** Find a GraphQL snippet */ + graphQLSnippet: Maybe; + /** Find a build job */ + job: Maybe; + /** Fetches an object given its ID. */ + node: Maybe; + /** Find a notification service via its UUID */ + notificationService: Maybe; + /** Find an organization */ + organization: Maybe; + /** Find an organization invitation via its slug */ + organizationInvitation: Maybe; + /** Find an organization membership via its slug */ + organizationMember: Maybe; + /** Find a pipeline */ + pipeline: Maybe; + /** Find a pipeline schedule by its slug */ + pipelineSchedule: Maybe; + /** Find a pipeline template */ + pipelineTemplate: Maybe; + /** Find an sso provider either using it's slug, or UUID */ + ssoProvider: Maybe; + /** Find a team */ + team: Maybe; + /** Context of the current user using the GraphQL API */ + viewer: Maybe; +}; + + +/** The query root for this schema */ +export type QueryAgentArgs = { + slug: Scalars['ID']['input']; +}; + + +/** The query root for this schema */ +export type QueryAgentTokenArgs = { + slug: Scalars['ID']['input']; +}; + + +/** The query root for this schema */ +export type QueryApiAccessTokenCodeArgs = { + code: Scalars['ID']['input']; +}; + + +/** The query root for this schema */ +export type QueryArtifactArgs = { + uuid: Scalars['ID']['input']; +}; + + +/** The query root for this schema */ +export type QueryAuditEventArgs = { + uuid: Scalars['ID']['input']; +}; + + +/** The query root for this schema */ +export type QueryBuildArgs = { + slug: InputMaybe; + uuid: InputMaybe; +}; + + +/** The query root for this schema */ +export type QueryGraphQlSnippetArgs = { + uuid: Scalars['String']['input']; +}; + + +/** The query root for this schema */ +export type QueryJobArgs = { + uuid: Scalars['ID']['input']; +}; + + +/** The query root for this schema */ +export type QueryNodeArgs = { + id: Scalars['ID']['input']; +}; + + +/** The query root for this schema */ +export type QueryNotificationServiceArgs = { + uuid: Scalars['ID']['input']; +}; + + +/** The query root for this schema */ +export type QueryOrganizationArgs = { + slug: InputMaybe; + uuid: InputMaybe; +}; + + +/** The query root for this schema */ +export type QueryOrganizationInvitationArgs = { + slug: Scalars['ID']['input']; +}; + + +/** The query root for this schema */ +export type QueryOrganizationMemberArgs = { + slug: Scalars['ID']['input']; +}; + + +/** The query root for this schema */ +export type QueryPipelineArgs = { + slug: InputMaybe; + uuid: InputMaybe; +}; + + +/** The query root for this schema */ +export type QueryPipelineScheduleArgs = { + slug: Scalars['ID']['input']; +}; + + +/** The query root for this schema */ +export type QueryPipelineTemplateArgs = { + uuid: Scalars['ID']['input']; +}; + + +/** The query root for this schema */ +export type QuerySsoProviderArgs = { + slug: InputMaybe; + uuid: InputMaybe; +}; + + +/** The query root for this schema */ +export type QueryTeamArgs = { + slug: Scalars['ID']['input']; +}; + +/** A recovery code */ +export type RecoveryCode = { + /** The recovery code. */ + code: Scalars['String']['output']; + /** Whether the recovery codes is used */ + consumed: Scalars['Boolean']['output']; + /** Foo */ + consumedAt: Maybe; +}; + +/** A batch of recovery codes */ +export type RecoveryCodeBatch = { + /** Whether the batch of recovery codes is active */ + active: Scalars['Boolean']['output']; + /** + * The recovery codes from this batch. Codes are consumed when used, and codes + * will be included in this list whether consumed or not + */ + codes: Array; + id: Scalars['ID']['output']; +}; + +/** A repository associated with a pipeline */ +export type Repository = { + /** The repository’s provider */ + provider: Maybe; + /** The git URL for this repository */ + url: Scalars['String']['output']; +}; + +export type RepositoryProvider = { + /** The name of the provider */ + name: Scalars['String']['output']; + /** This URL to the provider’s web interface */ + url: Maybe; + /** The URL to use when setting up webhooks from the provider to trigger Buildkite builds */ + webhookUrl: Maybe; +}; + +/** A pipeline's repository is being provided by Beanstalk */ +export type RepositoryProviderBeanstalk = RepositoryProvider & { + /** The name of the provider */ + name: Scalars['String']['output']; + /** This URL to the provider’s web interface */ + url: Maybe; + /** The URL to use when setting up webhooks from the provider to trigger Buildkite builds */ + webhookUrl: Maybe; +}; + +/** A pipeline's repository is being provided by Bitbucket */ +export type RepositoryProviderBitbucket = RepositoryProvider & { + /** The name of the provider */ + name: Scalars['String']['output']; + /** This URL to the provider’s web interface */ + url: Maybe; + /** The URL to use when setting up webhooks from the provider to trigger Buildkite builds */ + webhookUrl: Maybe; +}; + +/** A pipeline's repository is being provided by Bitbucket Server */ +export type RepositoryProviderBitbucketServer = RepositoryProvider & { + /** The name of the provider */ + name: Scalars['String']['output']; + /** This URL to the provider’s web interface */ + url: Maybe; + /** The URL to use when setting up webhooks from the provider to trigger Buildkite builds */ + webhookUrl: Maybe; +}; + +/** A pipeline's repository is being provided by Codebase */ +export type RepositoryProviderCodebase = RepositoryProvider & { + /** The name of the provider */ + name: Scalars['String']['output']; + /** This URL to the provider’s web interface */ + url: Maybe; + /** The URL to use when setting up webhooks from the provider to trigger Buildkite builds */ + webhookUrl: Maybe; +}; + +/** A pipeline's repository is being provided by GitHub */ +export type RepositoryProviderGithub = RepositoryProvider & { + /** The name of the provider */ + name: Scalars['String']['output']; + /** This URL to the provider’s web interface */ + url: Maybe; + /** The URL to use when setting up webhooks from the provider to trigger Buildkite builds */ + webhookUrl: Maybe; +}; + +/** A pipeline's repository is being provided by GitHub Enterprise */ +export type RepositoryProviderGithubEnterprise = RepositoryProvider & { + /** The name of the provider */ + name: Scalars['String']['output']; + /** This URL to the provider’s web interface */ + url: Maybe; + /** The URL to use when setting up webhooks from the provider to trigger Buildkite builds */ + webhookUrl: Maybe; +}; + +/** A pipeline's repository is being provided by GitLab */ +export type RepositoryProviderGitlab = RepositoryProvider & { + /** The name of the provider */ + name: Scalars['String']['output']; + /** This URL to the provider’s web interface */ + url: Maybe; + /** The URL to use when setting up webhooks from the provider to trigger Buildkite builds */ + webhookUrl: Maybe; +}; + +/** A pipeline's repository is being provided by GitLab Community Edition */ +export type RepositoryProviderGitlabCommunity = RepositoryProvider & { + /** The name of the provider */ + name: Scalars['String']['output']; + /** This URL to the provider’s web interface */ + url: Maybe; + /** The URL to use when setting up webhooks from the provider to trigger Buildkite builds */ + webhookUrl: Maybe; +}; + +/** A pipeline's repository is being provided by GitLab Enterprise Edition */ +export type RepositoryProviderGitlabEnterprise = RepositoryProvider & { + /** The name of the provider */ + name: Scalars['String']['output']; + /** This URL to the provider’s web interface */ + url: Maybe; + /** The URL to use when setting up webhooks from the provider to trigger Buildkite builds */ + webhookUrl: Maybe; +}; + +/** A pipeline's repository is being provided by a service unknown to Buildkite */ +export type RepositoryProviderUnknown = RepositoryProvider & { + /** The name of the provider */ + name: Scalars['String']['output']; + /** This URL to the provider’s web interface */ + url: Maybe; + /** The URL to use when setting up webhooks from the provider to trigger Buildkite builds */ + webhookUrl: Maybe; +}; + +/** An aggregate of resource usage, grouped by day and resource. */ +export type ResourceUsageInterface = { + aggregatedOn: Scalars['ISO8601Date']['output']; +}; + +/** All types of billable resources */ +export type ResourceUsageType = + /** These records represent a pipeline's job minutes usage for a single day */ + | 'JOB_MINUTES' + /** These records represent a suite's test executions usage for a single day */ + | 'TEST_EXECUTIONS'; + +/** API tokens with access to this organization will be automatically revoked after this many days of inactivity. */ +export type RevokeInactiveTokenPeriod = + /** Revoke organization access from API tokens after 30 days of inactivity */ + | 'DAYS_30' + /** Revoke organization access from API tokens after 60 days of inactivity */ + | 'DAYS_60' + /** Revoke organization access from API tokens after 90 days of inactivity */ + | 'DAYS_90' + /** Revoke organization access from API tokens after 180 days of inactivity */ + | 'DAYS_180' + /** Revoke organization access from API tokens after 365 days of inactivity */ + | 'DAYS_365' + /** Never revoke organization access from inactive API tokens */ + | 'NEVER'; + +export type ScmPipelineSettings = { + id: Scalars['ID']['output']; +}; + +export type ScmRepositoryHost = { + id: Scalars['ID']['output']; +}; + +export type ScmService = { + id: Scalars['ID']['output']; +}; + +export type SsoAuthorization = { + /** The time when this SSO Authorization was created */ + createdAt: Scalars['DateTime']['output']; + /** The time when this SSO Authorization was expired */ + expiredAt: Maybe; + id: Scalars['ID']['output']; + /** Details around the identity provided by the SSO provider */ + identity: Maybe; + /** The time when this SSO Authorization was manually revoked */ + revokedAt: Maybe; + /** The SSO provider associated with this authorization */ + ssoProvider: SsoProvider; + /** The current state of the SSO Authorization */ + state: SsoAuthorizationState; + /** The user associated with this authorization */ + user: Maybe; + /** The time when this SSO Authorization was destroyed because the user logged out */ + userSessionDestroyedAt: Maybe; + /** The public UUID for this SSO authorization */ + uuid: Scalars['String']['output']; +}; + +export type SsoAuthorizationConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type SsoAuthorizationEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +export type SsoAuthorizationIdentity = { + /** The avatar URL provided in this identity */ + avatarURL: Maybe; + /** The email addresses provided in this identity */ + email: Maybe; + /** The name provided in this identity */ + name: Maybe; + /** The identifier provided in this identity */ + uid: Maybe; +}; + +/** All the possible states an SSO Authorization */ +export type SsoAuthorizationState = + /** The authorization has been verified and is in use */ + | 'VERIFIED' + /** The authorization was verified but has since expired */ + | 'VERIFIED_EXPIRED' + /** The authorization was verified but has since been manually revoked */ + | 'VERIFIED_REVOKED' + /** The authorization was verified but has since been destroyed as the user logged out of that session */ + | 'VERIFIED_USER_SESSION_DESTROYED'; + +export type SsoProvider = { + /** The time when this SSO Provider was created */ + createdAt: Scalars['DateTime']['output']; + /** The user that created this SSO Provider */ + createdBy: User; + /** The time when this SSO Provider was disabled */ + disabledAt: Maybe; + /** The user that disabled this SSO Provider */ + disabledBy: Maybe; + /** The reason this SSO Provider was disabled */ + disabledReason: Maybe; + /** An email domain whose addresses should be offered this SSO Provider during login. */ + emailDomain: Maybe; + emailDomainVerificationAddress: Maybe; + emailDomainVerifiedAt: Maybe; + /** The time when this SSO Provider was enabled */ + enabledAt: Maybe; + /** The user that enabled this SSO Provider */ + enabledBy: Maybe; + id: Scalars['ID']['output']; + /** An extra message that can be added the Authorization screen of an SSO Provider */ + note: Maybe; + organization: Maybe; + /** Defaults to false. If true, users are required to re-authenticate when their IP address changes. */ + pinSessionToIpAddress: Maybe; + /** How long a session should last before requiring re-authorization. A `null` value indicates an infinite session. */ + sessionDurationInHours: Maybe; + /** The current state of the SSO Provider */ + state: SsoProviderStates; + /** Whether the SSO Provider requires a test authorization. If true, the provider can not yet be activated. */ + testAuthorizationRequired: Maybe; + /** The type of SSO Provider */ + type: SsoProviderTypes; + /** The authorization URL for this SSO Provider */ + url: Scalars['String']['output']; + /** The UUID for this SSO Provider */ + uuid: Scalars['ID']['output']; +}; + +export type SsoProviderConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of SSOProviderCreate */ +export type SsoProviderCreateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + digestMethod: InputMaybe; + discloseGoogleHostedDomain: InputMaybe; + emailDomain: InputMaybe; + emailDomainVerificationAddress: InputMaybe; + githubOrganizationName: InputMaybe; + googleHostedDomain: InputMaybe; + identityProvider: InputMaybe; + note: InputMaybe; + organizationId: Scalars['ID']['input']; + /** + * When enabled, users will be required to re-authenticate if their IP address + * changes. This feature is only available for some billing plans. + */ + pinSessionToIpAddress: InputMaybe; + sessionDurationInHours: InputMaybe; + signatureMethod: InputMaybe; + type: SsoProviderTypes; +}; + +/** Autogenerated return type of SSOProviderCreate. */ +export type SsoProviderCreatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + organization: Organization; + ssoProvider: SsoProvider; + ssoProviderEdge: SsoProviderEdge; +}; + +/** Autogenerated input type of SSOProviderDelete */ +export type SsoProviderDeleteInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of SSOProviderDelete. */ +export type SsoProviderDeletePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + deletedSSOProviderId: Scalars['ID']['output']; + organization: Organization; +}; + +/** Autogenerated input type of SSOProviderDisable */ +export type SsoProviderDisableInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + disabledReason: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of SSOProviderDisable. */ +export type SsoProviderDisablePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + ssoProvider: SsoProvider; +}; + +export type SsoProviderEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** Autogenerated input type of SSOProviderEnable */ +export type SsoProviderEnableInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of SSOProviderEnable. */ +export type SsoProviderEnablePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + ssoProvider: SsoProvider; +}; + +/** Single sign-on provided by GitHub */ +export type SsoProviderGitHubApp = Node & SsoProvider & { + /** The time when this SSO Provider was created */ + createdAt: Scalars['DateTime']['output']; + /** The user that created this SSO Provider */ + createdBy: User; + /** The time when this SSO Provider was disabled */ + disabledAt: Maybe; + /** The user that disabled this SSO Provider */ + disabledBy: Maybe; + /** The reason this SSO Provider was disabled */ + disabledReason: Maybe; + /** An email domain whose addresses should be offered this SSO Provider during login. */ + emailDomain: Maybe; + emailDomainVerificationAddress: Maybe; + emailDomainVerifiedAt: Maybe; + /** The time when this SSO Provider was enabled */ + enabledAt: Maybe; + /** The user that enabled this SSO Provider */ + enabledBy: Maybe; + /** The name of the organization on GitHub that the user must be in for an SSO authorization to be verified */ + githubOrganizationName: Scalars['String']['output']; + id: Scalars['ID']['output']; + /** An extra message that can be added the Authorization screen of an SSO Provider */ + note: Maybe; + organization: Maybe; + /** Defaults to false. If true, users are required to re-authenticate when their IP address changes. */ + pinSessionToIpAddress: Maybe; + /** How long a session should last before requiring re-authorization. A `null` value indicates an infinite session. */ + sessionDurationInHours: Maybe; + /** The current state of the SSO Provider */ + state: SsoProviderStates; + /** Whether the SSO Provider requires a test authorization. If true, the provider can not yet be activated. */ + testAuthorizationRequired: Maybe; + /** The type of SSO Provider */ + type: SsoProviderTypes; + /** The authorization URL for this SSO Provider */ + url: Scalars['String']['output']; + /** The UUID for this SSO Provider */ + uuid: Scalars['ID']['output']; +}; + +/** Single sign-on provided by Google */ +export type SsoProviderGoogleGSuite = Node & SsoProvider & { + /** The time when this SSO Provider was created */ + createdAt: Scalars['DateTime']['output']; + /** The user that created this SSO Provider */ + createdBy: User; + /** The time when this SSO Provider was disabled */ + disabledAt: Maybe; + /** The user that disabled this SSO Provider */ + disabledBy: Maybe; + /** The reason this SSO Provider was disabled */ + disabledReason: Maybe; + /** Whether or not the hosted domain should be presented to the user during SSO */ + discloseGoogleHostedDomain: Scalars['Boolean']['output']; + /** An email domain whose addresses should be offered this SSO Provider during login. */ + emailDomain: Maybe; + emailDomainVerificationAddress: Maybe; + emailDomainVerifiedAt: Maybe; + /** The time when this SSO Provider was enabled */ + enabledAt: Maybe; + /** The user that enabled this SSO Provider */ + enabledBy: Maybe; + /** The Google hosted domain that is required to be present in OAuth */ + googleHostedDomain: Scalars['String']['output']; + id: Scalars['ID']['output']; + /** An extra message that can be added the Authorization screen of an SSO Provider */ + note: Maybe; + organization: Maybe; + /** Defaults to false. If true, users are required to re-authenticate when their IP address changes. */ + pinSessionToIpAddress: Maybe; + /** How long a session should last before requiring re-authorization. A `null` value indicates an infinite session. */ + sessionDurationInHours: Maybe; + /** The current state of the SSO Provider */ + state: SsoProviderStates; + /** Whether the SSO Provider requires a test authorization. If true, the provider can not yet be activated. */ + testAuthorizationRequired: Maybe; + /** The type of SSO Provider */ + type: SsoProviderTypes; + /** The authorization URL for this SSO Provider */ + url: Scalars['String']['output']; + /** The UUID for this SSO Provider */ + uuid: Scalars['ID']['output']; +}; + +/** Single sign-on provided via SAML */ +export type SsoProviderSaml = Node & SsoProvider & { + /** The time when this SSO Provider was created */ + createdAt: Scalars['DateTime']['output']; + /** The user that created this SSO Provider */ + createdBy: User; + /** The algorithm used to calculate the digest value during a SAML exchange */ + digestMethod: SsoProviderSamlxmlSecurity; + /** The time when this SSO Provider was disabled */ + disabledAt: Maybe; + /** The user that disabled this SSO Provider */ + disabledBy: Maybe; + /** The reason this SSO Provider was disabled */ + disabledReason: Maybe; + /** An email domain whose addresses should be offered this SSO Provider during login. */ + emailDomain: Maybe; + emailDomainVerificationAddress: Maybe; + emailDomainVerifiedAt: Maybe; + /** The time when this SSO Provider was enabled */ + enabledAt: Maybe; + /** The user that enabled this SSO Provider */ + enabledBy: Maybe; + id: Scalars['ID']['output']; + /** Information about the IdP */ + identityProvider: Maybe; + /** An extra message that can be added the Authorization screen of an SSO Provider */ + note: Maybe; + organization: Maybe; + /** Defaults to false. If true, users are required to re-authenticate when their IP address changes. */ + pinSessionToIpAddress: Maybe; + serviceProvider: SsoProviderSamlspType; + /** How long a session should last before requiring re-authorization. A `null` value indicates an infinite session. */ + sessionDurationInHours: Maybe; + /** The algorithm used to calculate the signature value during a SAML exchange */ + signatureMethod: SsoProviderSamlrsaxmlSecurity; + /** The current state of the SSO Provider */ + state: SsoProviderStates; + /** Whether the SSO Provider requires a test authorization. If true, the provider can not yet be activated. */ + testAuthorizationRequired: Maybe; + /** The type of SSO Provider */ + type: SsoProviderTypes; + /** The authorization URL for this SSO Provider */ + url: Scalars['String']['output']; + /** The UUID for this SSO Provider */ + uuid: Scalars['ID']['output']; +}; + +export type SsoProviderSamlIdP = { + certificate: InputMaybe; + issuer: InputMaybe; + metadata: InputMaybe; + ssoURL: InputMaybe; +}; + +export type SsoProviderSamlIdPMetadata = { + url: InputMaybe; + xml: InputMaybe; +}; + +/** Information about the IdP for a SAML SSO Provider */ +export type SsoProviderSamlIdPType = { + /** The certificated provided by the IdP */ + certificate: Maybe; + /** The IdP Issuer value for this SSO Provider */ + issuer: Maybe; + /** The metadata used to configure this SSO provider if it was provided */ + metadata: Maybe; + /** The name of the IdP Service. Returns nil if no name can be guessed from the SSO URL */ + name: Maybe; + /** The IdP SSO URL for this SSO Provider */ + ssoURL: Maybe; +}; + +/** SAML metadata used for configuration */ +export type SsoProviderSamlMetadataType = { + /** The URL that this metadata can be publicly accessed at */ + url: Maybe; + /** The XML for this metadata */ + xml: Maybe; +}; + +/** XML RSA security algorithms used in the SAML exchange */ +export type SsoProviderSamlrsaxmlSecurity = + /** http://www.w3.org/2000/09/xmldsig#rsa-sha1 */ + | 'RSA_SHA1' + /** http://www.w3.org/2001/04/xmldsig-more#rsa-sha256 */ + | 'RSA_SHA256' + /** http://www.w3.org/2001/04/xmldsig-more#rsa-sha384 */ + | 'RSA_SHA384' + /** http://www.w3.org/2001/04/xmldsig-more#rsa-sha512 */ + | 'RSA_SHA512'; + +/** Information about Buildkite as a SAML Service Provider */ +export type SsoProviderSamlspType = { + /** The IdP Issuer value for this SSO Provider */ + issuer: Maybe; + /** The metadata used to configure this SSO provider if it was provided */ + metadata: Maybe; + /** The IdP SSO URL for this SSO Provider */ + ssoURL: Maybe; +}; + +/** XML security algorithms used in the SAML exchange */ +export type SsoProviderSamlxmlSecurity = + /** http://www.w3.org/2000/09/xmldsig#sha1 */ + | 'SHA1' + /** http://www.w3.org/2001/04/xmlenc#sha256 */ + | 'SHA256' + /** http://www.w3.org/2001/04/xmldsig-more#sha384 */ + | 'SHA384' + /** http://www.w3.org/2001/04/xmlenc#sha512 */ + | 'SHA512'; + +/** All the possible states an SSO Provider can be in */ +export type SsoProviderStates = + /** The SSO Provider has been created, but has not been enabled for use yet */ + | 'CREATED' + /** The SSO Provider has been disabled and can't be used directly */ + | 'DISABLED' + /** The SSO Provider has been setup correctly and can be used by users */ + | 'ENABLED'; + +/** All the possible SSO Provider types */ +export type SsoProviderTypes = + /** A SSO Provider configured to use a GitHub App for authorization */ + | 'GITHUB_APP' + /** A SSO Provider configured to use Google G Suite for authorization */ + | 'GOOGLE_GSUITE' + /** An SSO Provider configured to use SAML */ + | 'SAML'; + +/** Autogenerated input type of SSOProviderUpdate */ +export type SsoProviderUpdateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + digestMethod: InputMaybe; + discloseGoogleHostedDomain: InputMaybe; + emailDomain: InputMaybe; + emailDomainVerificationAddress: InputMaybe; + githubOrganizationName: InputMaybe; + googleHostedDomain: InputMaybe; + id: Scalars['ID']['input']; + identityProvider: InputMaybe; + note: InputMaybe; + /** + * When enabled, users will be required to re-authenticate if their IP address + * changes. This feature is only available for some billing plans. + */ + pinSessionToIpAddress: InputMaybe; + sessionDurationInHours: InputMaybe; + signatureMethod: InputMaybe; +}; + +/** Autogenerated return type of SSOProviderUpdate. */ +export type SsoProviderUpdatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + ssoProvider: SsoProvider; +}; + +export type Step = { + /** The conditional evaluated for this step */ + conditional: Maybe; + /** Dependencies of this job */ + dependencies: Maybe; + /** The user-defined key for this step */ + key: Maybe; + /** The UUID for this step */ + uuid: Scalars['String']['output']; +}; + + +export type StepDependenciesArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; +}; + +/** A step in a build that runs a command on an agent */ +export type StepCommand = Step & { + /** The conditional evaluated for this step */ + conditional: Maybe; + /** Dependencies of this job */ + dependencies: Maybe; + /** The user-defined key for this step */ + key: Maybe; + /** The UUID for this step */ + uuid: Scalars['String']['output']; +}; + + +/** A step in a build that runs a command on an agent */ +export type StepCommandDependenciesArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; +}; + +/** An input step collects information from a user */ +export type StepInput = Step & { + /** The conditional evaluated for this step */ + conditional: Maybe; + /** Dependencies of this job */ + dependencies: Maybe; + /** The user-defined key for this step */ + key: Maybe; + /** The UUID for this step */ + uuid: Scalars['String']['output']; +}; + + +/** An input step collects information from a user */ +export type StepInputDependenciesArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; +}; + +/** A trigger step creates a build on another pipeline */ +export type StepTrigger = Step & { + /** The conditional evaluated for this step */ + conditional: Maybe; + /** Dependencies of this job */ + dependencies: Maybe; + /** The user-defined key for this step */ + key: Maybe; + /** The UUID for this step */ + uuid: Scalars['String']['output']; +}; + + +/** A trigger step creates a build on another pipeline */ +export type StepTriggerDependenciesArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; +}; + +/** A wait step waits for all previous steps to have successfully completed before allowing following jobs to continue */ +export type StepWait = Step & { + /** The conditional evaluated for this step */ + conditional: Maybe; + /** Dependencies of this job */ + dependencies: Maybe; + /** The user-defined key for this step */ + key: Maybe; + /** The UUID for this step */ + uuid: Scalars['String']['output']; +}; + + +/** A wait step waits for all previous steps to have successfully completed before allowing following jobs to continue */ +export type StepWaitDependenciesArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; +}; + +export type Subscription = { + id: Scalars['ID']['output']; +}; + +/** A suite */ +export type Suite = Node & { + /** The time when the suite was created */ + createdAt: Maybe; + /** The default branch for this suite */ + defaultBranch: Maybe; + id: Scalars['ID']['output']; + /** The name of the suite */ + name: Scalars['String']['output']; + organization: Organization; + /** The slug of the suite */ + slug: Scalars['String']['output']; + /** Teams associated with this suite */ + teams: Maybe; + /** The URL for the suite */ + url: Scalars['String']['output']; + uuid: Scalars['String']['output']; +}; + + +/** A suite */ +export type SuiteTeamsArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; + search: InputMaybe; +}; + +/** The access levels that can be assigned to a suite */ +export type SuiteAccessLevels = + /** Allows edits and reads */ + | 'MANAGE_AND_READ' + /** Read only */ + | 'READ_ONLY'; + +export type SuiteConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +export type SuiteEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** The different orders you can sort suites by */ +export type SuiteOrders = + /** Order by name alphabetically */ + | 'NAME' + /** Order by the most recently created suites first */ + | 'RECENTLY_CREATED' + /** Order by relevance when searching for suites */ + | 'RELEVANCE'; + +/** A TOTP configuration */ +export type Totp = { + id: Scalars['ID']['output']; + /** The recovery code batch associated with this TOTP configuration */ + recoveryCodes: RecoveryCodeBatch; + /** Whether the TOTP configuration has been verified yet */ + verified: Scalars['Boolean']['output']; +}; + +/** Autogenerated input type of TOTPActivate */ +export type TotpActivateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; + /** The current one-time password associated with this TOTP configuration. */ + token: Scalars['String']['input']; +}; + +/** Autogenerated return type of TOTPActivate. */ +export type TotpActivatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + totp: Totp; + viewer: Viewer; +}; + +/** Autogenerated input type of TOTPCreate */ +export type TotpCreateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; +}; + +/** Autogenerated return type of TOTPCreate. */ +export type TotpCreatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + /** The URI to enter into your one-time password generator. Usually presented to the user as a QR Code */ + provisioningUri: Scalars['String']['output']; + totp: Totp; +}; + +/** Autogenerated input type of TOTPDelete */ +export type TotpDeleteInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of TOTPDelete. */ +export type TotpDeletePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + viewer: Viewer; +}; + +/** Autogenerated input type of TOTPRecoveryCodesRegenerate */ +export type TotpRecoveryCodesRegenerateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + /** The ID of the TOTP to generate the Recovery Codes for */ + totpId: Scalars['ID']['input']; +}; + +/** Autogenerated return type of TOTPRecoveryCodesRegenerate. */ +export type TotpRecoveryCodesRegeneratePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + recoveryCodes: RecoveryCodeBatch; + totp: Totp; +}; + +/** An organization team */ +export type Team = Node & { + /** The time when this team was created */ + createdAt: Scalars['DateTime']['output']; + /** The user that created this team */ + createdBy: Maybe; + /** New organization members will be granted this role on this team */ + defaultMemberRole: TeamMemberRole; + /** A description of the team */ + description: Maybe; + id: Scalars['ID']['output']; + /** Add new organization members to this team by default */ + isDefaultTeam: Scalars['Boolean']['output']; + /** Users that are part of this team */ + members: Maybe; + /** Whether or not team members can create new pipelines in this team */ + membersCanCreatePipelines: Scalars['Boolean']['output']; + /** + * Whether or not team members can delete pipelines in this team + * @deprecated This property has been removed without replacement + */ + membersCanDeletePipelines: Scalars['Boolean']['output']; + /** The name of the team */ + name: Scalars['String']['output']; + /** The organization that this team is a part of */ + organization: Maybe; + permissions: TeamPermissions; + /** Pipelines associated with this team */ + pipelines: Maybe; + /** The privacy setting for this team */ + privacy: TeamPrivacy; + /** The slug of the team */ + slug: Scalars['String']['output']; + /** Suites associated with this team */ + suites: Maybe; + /** The public UUID for this team */ + uuid: Scalars['ID']['output']; +}; + + +/** An organization team */ +export type TeamMembersArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; + role: InputMaybe>; + search: InputMaybe; +}; + + +/** An organization team */ +export type TeamPipelinesArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; + search: InputMaybe; +}; + + +/** An organization team */ +export type TeamSuitesArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; +}; + +export type TeamConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of TeamCreate */ +export type TeamCreateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + /** New organization members will be granted this role on this team */ + defaultMemberRole: TeamMemberRole; + description: InputMaybe; + /** Add new organization members to this team by default */ + isDefaultTeam: Scalars['Boolean']['input']; + /** If members in this team can create pipelines in it */ + membersCanCreatePipelines: InputMaybe; + /** Deprecated: If members in this team can delete pipelines assigned to it */ + membersCanDeletePipelines: InputMaybe; + name: Scalars['String']['input']; + organizationID: Scalars['ID']['input']; + /** The privacy setting for this team */ + privacy: TeamPrivacy; +}; + +/** Autogenerated return type of TeamCreate. */ +export type TeamCreatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + organization: Organization; + teamEdge: TeamEdge; +}; + +/** Autogenerated input type of TeamDelete */ +export type TeamDeleteInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of TeamDelete. */ +export type TeamDeletePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + deletedTeamID: Scalars['ID']['output']; + organization: Organization; +}; + +export type TeamEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** An member of a team */ +export type TeamMember = Node & { + /** The time when the team member was added */ + createdAt: Scalars['DateTime']['output']; + /** The user that added this team member */ + createdBy: Maybe; + id: Scalars['ID']['output']; + /** The organization member associated with this team member */ + organizationMember: Maybe; + permissions: TeamMemberPermissions; + /** The users role within the team */ + role: TeamMemberRole; + /** The team associated with this team member */ + team: Maybe; + /** The user associated with this team member */ + user: Maybe; + /** The public UUID for this team member */ + uuid: Scalars['ID']['output']; +}; + +export type TeamMemberConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of TeamMemberCreate */ +export type TeamMemberCreateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + /** If no role is specified, the team member will be assigned the team's default role. */ + role: InputMaybe; + teamID: Scalars['ID']['input']; + userID: Scalars['ID']['input']; +}; + +/** Autogenerated return type of TeamMemberCreate. */ +export type TeamMemberCreatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + team: Maybe; + teamMemberEdge: Maybe; +}; + +/** Autogenerated input type of TeamMemberDelete */ +export type TeamMemberDeleteInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of TeamMemberDelete. */ +export type TeamMemberDeletePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + deletedTeamMemberID: Scalars['ID']['output']; + team: Maybe; +}; + +export type TeamMemberEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** The different orders you can sort team members by */ +export type TeamMemberOrder = + /** Order by name alphabetically */ + | 'NAME' + /** Order by the most recently added members first */ + | 'RECENTLY_CREATED' + /** Order by most relevant results when doing a search */ + | 'RELEVANCE'; + +/** Permissions information about what actions the current user can do against the team membership record */ +export type TeamMemberPermissions = { + /** Whether the user can delete the user from the team */ + teamMemberDelete: Maybe; + /** Whether the user can update the team's members admin status */ + teamMemberUpdate: Maybe; +}; + +/** The roles a user can be within a team */ +export type TeamMemberRole = + /** The user can manage pipelines and users within the team */ + | 'MAINTAINER' + /** The user is a regular member of the team */ + | 'MEMBER'; + +/** Autogenerated input type of TeamMemberUpdate */ +export type TeamMemberUpdateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; + role: TeamMemberRole; +}; + +/** Autogenerated return type of TeamMemberUpdate. */ +export type TeamMemberUpdatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + teamMember: TeamMember; +}; + +/** The different orders you can sort teams by */ +export type TeamOrder = + /** Order by name alphabetically */ + | 'NAME' + /** Order by the most recently created teams first */ + | 'RECENTLY_CREATED' + /** Order by relevance when searching for teams */ + | 'RELEVANCE'; + +/** Permissions information about what actions the current user can do against the team */ +export type TeamPermissions = { + /** Whether the user can see the pipelines within the team */ + pipelineView: Maybe; + /** Whether the user can delete the team */ + teamDelete: Maybe; + /** Whether the user can administer add members from the organization to this team */ + teamMemberCreate: Maybe; + /** Whether the user can add pipelines from other teams to this one */ + teamPipelineCreate: Maybe; + /** Whether the user can add suites from other teams to this one */ + teamSuiteCreate: Maybe; + /** Whether the user can update the team's name and description */ + teamUpdate: Maybe; +}; + +/** An pipeline that's been assigned to a team */ +export type TeamPipeline = Node & { + /** The access level users have to this pipeline */ + accessLevel: PipelineAccessLevels; + /** The time when the pipeline was added */ + createdAt: Scalars['DateTime']['output']; + /** The user that added this pipeline to the team */ + createdBy: Maybe; + id: Scalars['ID']['output']; + permissions: TeamPipelinePermissions; + /** The pipeline associated with this team member */ + pipeline: Maybe; + /** The team associated with this team member */ + team: Maybe; + /** The public UUID for this team member */ + uuid: Scalars['ID']['output']; +}; + +/** A collection of TeamPipeline records */ +export type TeamPipelineConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of TeamPipelineCreate */ +export type TeamPipelineCreateInput = { + accessLevel: InputMaybe; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + pipelineID: Scalars['ID']['input']; + teamID: Scalars['ID']['input']; +}; + +/** Autogenerated return type of TeamPipelineCreate. */ +export type TeamPipelineCreatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + pipeline: Maybe; + team: Maybe; + teamPipeline: Maybe; + teamPipelineEdge: Maybe; +}; + +/** Autogenerated input type of TeamPipelineDelete */ +export type TeamPipelineDeleteInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + force: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of TeamPipelineDelete. */ +export type TeamPipelineDeletePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + deletedTeamPipelineID: Scalars['ID']['output']; + team: Maybe; +}; + +export type TeamPipelineEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** The different orders you can sort pipelines by */ +export type TeamPipelineOrder = + /** Order by name alphabetically */ + | 'NAME' + /** Order by the most recently added pipelines first */ + | 'RECENTLY_CREATED' + /** Order by most relevant results when doing a search */ + | 'RELEVANCE'; + +/** Permission information about what actions the current user can do against the team pipelines */ +export type TeamPipelinePermissions = { + /** Whether the user can delete the pipeline from the team */ + teamPipelineDelete: Maybe; + /** Whether the user can update the pipeline connection to the team */ + teamPipelineUpdate: Maybe; +}; + +/** Autogenerated input type of TeamPipelineUpdate */ +export type TeamPipelineUpdateInput = { + accessLevel: PipelineAccessLevels; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of TeamPipelineUpdate. */ +export type TeamPipelineUpdatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + teamPipeline: TeamPipeline; +}; + +/** Whether a team is visible or secret within an organization */ +export type TeamPrivacy = + /** Visible to organization administrators and members */ + | 'SECRET' + /** Visible to all members of the organization */ + | 'VISIBLE'; + +/** A suite that's been assigned to a team */ +export type TeamSuite = Node & { + /** The access level users have to this suite */ + accessLevel: SuiteAccessLevels; + /** The time when the suite was added */ + createdAt: Scalars['DateTime']['output']; + /** The user that added this suite to the team */ + createdBy: Maybe; + id: Scalars['ID']['output']; + permissions: TeamSuitePermissions; + /** The suite associated with this team member */ + suite: Maybe; + /** The team associated with this team member */ + team: Maybe; + /** The public UUID for this team suite */ + uuid: Scalars['String']['output']; +}; + +/** A collection of TeamSuite records */ +export type TeamSuiteConnection = Connection & { + count: Scalars['Int']['output']; + edges: Maybe>>; + pageInfo: Maybe; +}; + +/** Autogenerated input type of TeamSuiteCreate */ +export type TeamSuiteCreateInput = { + accessLevel: InputMaybe; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + suiteID: Scalars['ID']['input']; + teamID: Scalars['ID']['input']; +}; + +/** Autogenerated return type of TeamSuiteCreate. */ +export type TeamSuiteCreatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + suite: Maybe; + team: Maybe; + teamSuite: Maybe; + teamSuiteEdge: Maybe; +}; + +/** Autogenerated input type of TeamSuiteDelete */ +export type TeamSuiteDeleteInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + force: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of TeamSuiteDelete. */ +export type TeamSuiteDeletePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + deletedTeamSuiteID: Scalars['ID']['output']; + team: Maybe; +}; + +export type TeamSuiteEdge = { + cursor: Scalars['String']['output']; + node: Maybe; +}; + +/** The different orders you can sort suites by */ +export type TeamSuiteOrder = + /** Order by name alphabetically */ + | 'NAME' + /** Order by the most recently added suites first */ + | 'RECENTLY_CREATED' + /** Order by most relevant results when doing a search */ + | 'RELEVANCE'; + +/** Permission information about what actions the current user can do against the team suites */ +export type TeamSuitePermissions = { + /** Whether the user can delete the suite from the team */ + teamSuiteDelete: Maybe; + /** Whether the user can update the suite connection to the team */ + teamSuiteUpdate: Maybe; +}; + +/** Autogenerated input type of TeamSuiteUpdate */ +export type TeamSuiteUpdateInput = { + accessLevel: SuiteAccessLevels; + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + id: Scalars['ID']['input']; +}; + +/** Autogenerated return type of TeamSuiteUpdate. */ +export type TeamSuiteUpdatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + teamSuite: TeamSuite; +}; + +/** Autogenerated input type of TeamUpdate */ +export type TeamUpdateInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: InputMaybe; + /** New organization members will be granted this role on this team */ + defaultMemberRole: TeamMemberRole; + description: InputMaybe; + id: Scalars['ID']['input']; + /** Add new organization members to this team by default */ + isDefaultTeam: Scalars['Boolean']['input']; + /** If members in this team can create pipelines in it */ + membersCanCreatePipelines: InputMaybe; + /** Deprecated: If members in this team can delete pipelines assigned to it */ + membersCanDeletePipelines: InputMaybe; + name: Scalars['String']['input']; + /** The privacy setting for this team */ + privacy: InputMaybe; +}; + +/** Autogenerated return type of TeamUpdate. */ +export type TeamUpdatePayload = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId: Maybe; + team: Team; +}; + +/** A record of test executions usage, aggregated by day and test suite. */ +export type TestExecutionsUsage = ResourceUsageInterface & { + aggregatedOn: Scalars['ISO8601Date']['output']; + /** The recorded usage. */ + executions: Scalars['Int']['output']; + suite: Maybe; + suiteId: Scalars['ID']['output']; +}; + +/** A person who hasn’t signed up to Buildkite */ +export type UnregisteredUser = { + avatar: Avatar; + /** The email for the user */ + email: Maybe; + /** The name of the user */ + name: Maybe; +}; + +/** The possible resource usage types */ +export type UsageUnion = JobMinutesUsage | TestExecutionsUsage; + +/** The connection type for UsageUnion. */ +export type UsageUnionConnection = { + /** A list of edges. */ + edges: Maybe>>; + /** A list of nodes. */ + nodes: Maybe>>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; +}; + +/** An edge in a connection. */ +export type UsageUnionEdge = { + /** A cursor for use in pagination. */ + cursor: Scalars['String']['output']; + /** The item at the end of the edge. */ + node: Maybe; +}; + +/** A user */ +export type User = Node & { + avatar: Avatar; + /** If this user account is an official bot managed by Buildkite */ + bot: Scalars['Boolean']['output']; + /** Returns builds that this user has created. */ + builds: Maybe; + /** The primary email for the user */ + email: Scalars['String']['output']; + /** Does the user have a password set */ + hasPassword: Scalars['Boolean']['output']; + id: Scalars['ID']['output']; + /** The name of the user */ + name: Scalars['String']['output']; + /** The public UUID of the user */ + uuid: Scalars['String']['output']; +}; + + +/** A user */ +export type UserBuildsArgs = { + branch: InputMaybe>; + first: InputMaybe; + last: InputMaybe; + metaData: InputMaybe>; + state: InputMaybe>; +}; + +/** Represents the current user session */ +export type Viewer = Node & { + authorizations: Maybe; + builds: Maybe; + changelogs: Maybe; + /** Emails associated with the current user */ + emails: Maybe; + /** The ID of the current user */ + id: Scalars['ID']['output']; + jobs: Maybe; + notice: Maybe; + organizations: Maybe; + /** The current user's permissions */ + permissions: ViewerPermissions; + /** + * The user's active TOTP configuration, if any. + * + * This field is private, requires an escalated session, and cannot be accessed via the public GraphQL API. + */ + totp: Maybe; + /** The current user */ + user: Maybe; +}; + + +/** Represents the current user session */ +export type ViewerAuthorizationsArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + type: InputMaybe>; +}; + + +/** Represents the current user session */ +export type ViewerBuildsArgs = { + branch: InputMaybe; + first: InputMaybe; + last: InputMaybe; + metaData: InputMaybe>; + state: InputMaybe>; +}; + + +/** Represents the current user session */ +export type ViewerChangelogsArgs = { + first: InputMaybe; + last: InputMaybe; + read: InputMaybe; +}; + + +/** Represents the current user session */ +export type ViewerEmailsArgs = { + after: InputMaybe; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + verified: InputMaybe; +}; + + +/** Represents the current user session */ +export type ViewerJobsArgs = { + after: InputMaybe; + agentQueryRules: InputMaybe>; + before: InputMaybe; + first: InputMaybe; + last: InputMaybe; + order?: InputMaybe; + priority: InputMaybe; + state: InputMaybe>; + type: InputMaybe>; +}; + + +/** Represents the current user session */ +export type ViewerNoticeArgs = { + namespace: NoticeNamespaces; + scope: Scalars['String']['input']; +}; + + +/** Represents the current user session */ +export type ViewerOrganizationsArgs = { + first: InputMaybe; + last: InputMaybe; +}; + + +/** Represents the current user session */ +export type ViewerTotpArgs = { + id: InputMaybe; +}; + +/** Permissions information about what actions the current user can do */ +export type ViewerPermissions = { + /** Whether the viewer can configure two-factor authentication */ + totpConfigure: Permission; +}; + +export type BuildFragment = { id: string, branch: string, createdAt: any | null, message: string | null, number: number, state: BuildStates, url: string, pipeline: { name: string } }; + +export type MyBuildsQueryVariables = Exact<{ [key: string]: never; }>; + + +export type MyBuildsQuery = { viewer: { user: { builds: { edges: Array<{ node: { id: string, branch: string, createdAt: any | null, message: string | null, number: number, state: BuildStates, url: string, pipeline: { name: string } } | null } | null> | null } | null } | null } | null }; + +export type ListBuildsQueryVariables = Exact<{ + pipeline: Scalars['ID']['input']; +}>; + + +export type ListBuildsQuery = { pipeline: { builds: { edges: Array<{ node: { id: string, branch: string, createdAt: any | null, message: string | null, number: number, state: BuildStates, url: string, pipeline: { name: string } } | null } | null> | null } | null } | null }; + +export type PipelineFragment = { slug: string, name: string, description: string | null, favorite: boolean, url: string, builds: { edges: Array<{ node: { state: BuildStates } | null } | null> | null } | null }; + +export type SearchPipelinesQueryVariables = Exact<{ + org: Scalars['ID']['input']; + search: InputMaybe; +}>; + + +export type SearchPipelinesQuery = { organization: { pipelines: { edges: Array<{ node: { slug: string, name: string, description: string | null, favorite: boolean, url: string, builds: { edges: Array<{ node: { state: BuildStates } | null } | null> | null } | null } | null } | null> | null } | null } | null }; + +export const BuildFragmentDoc = gql` + fragment Build on Build { + id + branch + createdAt + message + number + state + url + pipeline { + name + } +} + `; +export const PipelineFragmentDoc = gql` + fragment Pipeline on Pipeline { + slug + name + description + favorite + url + builds(first: 1) { + edges { + node { + state + } + } + } +} + `; +export const MyBuildsDocument = gql` + query myBuilds { + viewer { + user { + builds(first: 20) { + edges { + node { + ...Build + } + } + } + } + } +} + ${BuildFragmentDoc}`; +export const ListBuildsDocument = gql` + query listBuilds($pipeline: ID!) { + pipeline(slug: $pipeline) { + builds(first: 20) { + edges { + node { + ...Build + } + } + } + } +} + ${BuildFragmentDoc}`; +export const SearchPipelinesDocument = gql` + query searchPipelines($org: ID!, $search: String) { + organization(slug: $org) { + pipelines( + first: 20 + archived: false + order: NAME_WITH_FAVORITES_FIRST + search: $search + ) { + edges { + node { + ...Pipeline + } + } + } + } +} + ${PipelineFragmentDoc}`; + +export type SdkFunctionWrapper = (action: (requestHeaders?:Record) => Promise, operationName: string, operationType?: string) => Promise; + + +const defaultWrapper: SdkFunctionWrapper = (action, _operationName, _operationType) => action(); + +export function getSdk(client: GraphQLClient, withWrapper: SdkFunctionWrapper = defaultWrapper) { + return { + myBuilds(variables?: MyBuildsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise { + return withWrapper((wrappedRequestHeaders) => client.request(MyBuildsDocument, variables, {...requestHeaders, ...wrappedRequestHeaders}), 'myBuilds', 'query'); + }, + listBuilds(variables: ListBuildsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise { + return withWrapper((wrappedRequestHeaders) => client.request(ListBuildsDocument, variables, {...requestHeaders, ...wrappedRequestHeaders}), 'listBuilds', 'query'); + }, + searchPipelines(variables: SearchPipelinesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise { + return withWrapper((wrappedRequestHeaders) => client.request(SearchPipelinesDocument, variables, {...requestHeaders, ...wrappedRequestHeaders}), 'searchPipelines', 'query'); + } + }; +} +export type Sdk = ReturnType; \ No newline at end of file diff --git a/src/my-builds.tsx b/src/my-builds.tsx new file mode 100644 index 000000000000..ca4c01fa7ff4 --- /dev/null +++ b/src/my-builds.tsx @@ -0,0 +1,32 @@ +import { List } from "@raycast/api"; +import { useCachedPromise } from "@raycast/utils"; +import { getBuildkiteClient } from "./api/withBuildkiteClient"; +import { BuildListItem } from "./components/BuildListItem"; +import View from "./components/View"; +import { truthy } from "./utils/truthy"; + +function MyBuilds() { + const buildkite = getBuildkiteClient(); + const { data, isLoading } = useCachedPromise( + async () => { + const result = await buildkite.myBuilds(); + return result.viewer?.user?.builds?.edges?.map((edge) => edge?.node).filter(truthy); + }, + [], + { keepPreviousData: true }, + ); + + return ( + + {data?.map((node) => )} + + ); +} + +export default function Command() { + return ( + + + + ); +} diff --git a/src/search-pipelines.tsx b/src/search-pipelines.tsx new file mode 100644 index 000000000000..0bb49cc763f0 --- /dev/null +++ b/src/search-pipelines.tsx @@ -0,0 +1,41 @@ +import { getPreferenceValues, List } from "@raycast/api"; +import { useState } from "react"; +import { PipelineListSection } from "./components/PipelineListSection"; +import { getBuildkiteClient } from "./api/withBuildkiteClient"; +import { useCachedPromise } from "@raycast/utils"; +import { truthy } from "./utils/truthy"; +import View from "./components/View"; + +function Pipelines() { + const { org } = getPreferenceValues(); + const [search, setSearch] = useState(""); + const buildkite = getBuildkiteClient(); + const { data, isLoading } = useCachedPromise( + async (org: string, search: string) => { + const result = await buildkite.searchPipelines({ org, search }); + return result.organization?.pipelines?.edges?.map((edge) => edge?.node).filter(truthy); + }, + [org, search], + { keepPreviousData: true }, + ); + + return ( + setSearch(search)} + throttle + > + node.favorite) ?? []} /> + !node.favorite) ?? []} /> + + ); +} + +export default function Command() { + return ( + + + + ); +} diff --git a/src/utils/format.ts b/src/utils/format.ts new file mode 100644 index 000000000000..04666db28bd0 --- /dev/null +++ b/src/utils/format.ts @@ -0,0 +1,21 @@ +export function timeAgo(date: string) { + const formatter = new Intl.RelativeTimeFormat("en"); + const ranges = { + years: 3600 * 24 * 365, + months: 3600 * 24 * 30, + weeks: 3600 * 24 * 7, + days: 3600 * 24, + hours: 3600, + minutes: 60, + }; + + const secondsElapsed = (new Date(date).getTime() - Date.now()) / 1000; + + for (const [unit, range] of Object.entries(ranges)) { + if (range < Math.abs(secondsElapsed)) { + return formatter.format(Math.round(secondsElapsed / range), unit as Intl.RelativeTimeFormatUnit); + } + } + + return "Just now"; +} diff --git a/src/utils/preferences.ts b/src/utils/preferences.ts new file mode 100644 index 000000000000..1a6765cc5c44 --- /dev/null +++ b/src/utils/preferences.ts @@ -0,0 +1,9 @@ +import { getPreferenceValues } from "@raycast/api"; + +interface Preferences { + token?: string; +} + +export default function getPreferences() { + return getPreferenceValues(); +} diff --git a/src/utils/states.ts b/src/utils/states.ts new file mode 100644 index 000000000000..3f693ca7ec6e --- /dev/null +++ b/src/utils/states.ts @@ -0,0 +1,23 @@ +import { Color, Icon, Image } from "@raycast/api"; +import { BuildStates } from "../generated/graphql"; + +export function getStateIcon(state: BuildStates | undefined): Image.ImageLike | undefined { + switch (state) { + case "CREATING": + case "RUNNING": + return { tintColor: Color.Yellow, source: Icon.Circle }; + + case "PASSED": + case "BLOCKED": + return { tintColor: Color.Green, source: Icon.Checkmark }; + + case "CANCELED": + case "CANCELING": + case "FAILED": + return { tintColor: Color.Red, source: Icon.XMarkCircle }; + + case "SCHEDULED": + default: + return Icon.Circle; + } +} diff --git a/src/utils/truthy.ts b/src/utils/truthy.ts new file mode 100644 index 000000000000..0f8e3c123322 --- /dev/null +++ b/src/utils/truthy.ts @@ -0,0 +1 @@ +export const truthy = Boolean as unknown as (value: T | undefined | null | false | 0 | "") => value is T; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 000000000000..6bd85946e9e7 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,16 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "display": "Node 16", + "include": ["src/**/*"], + "compilerOptions": { + "lib": ["es2020"], + "module": "commonjs", + "target": "es2020", + "strict": true, + "isolatedModules": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "jsx": "react-jsx" + } +}